#line 2 "gengtype-lex.c" #line 4 "gengtype-lex.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 31 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; #endif /* ! C99 */ /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #endif #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef unsigned int yy_size_t; #endif #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 1; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ #define yywrap(n) 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ yyleng = (size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 59 #define YY_END_OF_BUFFER 60 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static yyconst flex_int16_t yy_accept[939] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 40, 40, 37, 55, 40, 55, 40, 38, 40, 40, 38, 35, 13, 13, 35, 35, 35, 31, 35, 21, 32, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 45, 43, 56, 56, 51, 49, 54, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 36, 42, 42, 42, 42, 38, 0, 0, 38, 13, 0, 27, 0, 0, 0, 0, 11, 21, 26, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 29, 12, 0, 46, 48, 47, 0, 52, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 38, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 15, 0, 26, 26, 0, 0, 23, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 25, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 34, 0, 0, 0, 0, 0, 0, 0, 23, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 57, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 44, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 5, 1, 6, 1, 7, 8, 9, 10, 1, 11, 1, 1, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 15, 14, 16, 14, 1, 1, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 26, 27, 28, 29, 30, 31, 26, 32, 33, 34, 35, 36, 37, 26, 38, 26, 39, 40, 41, 1, 42, 1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 26, 26, 52, 53, 54, 55, 56, 26, 57, 58, 59, 60, 26, 26, 61, 62, 63, 64, 1, 65, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[66] = { 0, 1, 2, 3, 1, 1, 4, 1, 5, 6, 7, 8, 1, 9, 1, 10, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 1, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 13, 1 } ; static yyconst flex_int16_t yy_base[1026] = { 0, 0, 65, 130, 3616, 14, 15, 16, 17, 25, 26, 3621, 0, 40, 194, 49, 43, 35, 4144, 0, 64, 67, 3588, 4144, 19, 31, 44, 3553, 3555, 4144, 3581, 3576, 4144, 254, 319, 6, 16, 3558, 31, 3546, 0, 7, 58, 61, 62, 168, 169, 170, 67, 203, 0, 4144, 3573, 3556, 0, 0, 3501, 3504, 3505, 3501, 3508, 199, 3516, 199, 4144, 0, 210, 232, 234, 233, 3533, 3533, 216, 217, 218, 197, 4144, 4144, 3470, 3470, 3457, 3462, 0, 3467, 3459, 3461, 116, 202, 4144, 3479, 3434, 3473, 3476, 4144, 3465, 4144, 3447, 3435, 14, 90, 21, 186, 3414, 4144, 177, 183, 180, 26, 181, 189, 188, 178, 218, 248, 249, 251, 253, 4144, 0, 4144, 0, 4144, 4144, 4144, 0, 4144, 4144, 3392, 187, 3391, 3395, 3407, 296, 245, 297, 301, 4144, 3396, 3392, 3400, 3393, 4144, 86, 203, 384, 252, 336, 254, 259, 284, 260, 449, 302, 287, 267, 315, 310, 317, 262, 313, 320, 318, 0, 0, 0, 3382, 3360, 3355, 3364, 3353, 360, 357, 361, 366, 368, 372, 3355, 3350, 3357, 3332, 372, 375, 4144, 377, 408, 375, 344, 514, 4144, 578, 334, 326, 379, 383, 388, 391, 398, 408, 417, 0, 0, 3322, 3324, 3329, 3327, 3318, 428, 4144, 428, 430, 433, 436, 437, 3317, 3316, 3348, 3303, 449, 453, 409, 472, 442, 484, 490, 638, 4144, 0, 3317, 3313, 3276, 3271, 3263, 3258, 444, 3235, 269, 497, 454, 466, 439, 472, 703, 0, 0, 3212, 3217, 3199, 3209, 501, 493, 496, 503, 504, 546, 3208, 532, 3235, 3206, 507, 515, 527, 556, 4144, 558, 561, 4144, 3222, 3218, 3193, 3153, 3056, 3060, 3058, 493, 3054, 541, 555, 536, 539, 768, 4144, 0, 0, 571, 3062, 573, 591, 573, 833, 586, 596, 3067, 3104, 475, 570, 562, 603, 605, 3079, 3071, 3052, 3046, 607, 3053, 3044, 3046, 3052, 3044, 324, 554, 581, 4144, 0, 0, 632, 615, 617, 659, 624, 898, 663, 630, 665, 3090, 4144, 516, 629, 650, 672, 682, 3048, 3047, 4144, 0, 3012, 3023, 3026, 3012, 628, 963, 639, 0, 0, 3020, 1027, 693, 654, 686, 1087, 725, 1152, 3017, 698, 686, 720, 722, 706, 707, 705, 3027, 3001, 2976, 2957, 703, 4144, 1217, 0, 0, 2977, 743, 756, 785, 747, 802, 811, 814, 868, 877, 2979, 752, 1282, 1347, 2975, 751, 197, 561, 768, 800, 571, 757, 2956, 2946, 737, 851, 733, 764, 642, 771, 2858, 2851, 1412, 4144, 0, 0, 4144, 853, 865, 823, 880, 913, 922, 926, 939, 942, 951, 981, 984, 1004, 1007, 2819, 694, 1477, 1016, 1035, 2704, 2667, 770, 834, 851, 759, 863, 836, 927, 827, 769, 882, 2687, 2627, 1039, 4144, 826, 1051, 865, 921, 916, 966, 2596, 2604, 4144, 0, 0, 995, 1021, 997, 1032, 1167, 1170, 1187, 1197, 1066, 1200, 1238, 1257, 1260, 1242, 1269, 1317, 4144, 1542, 1233, 1607, 1272, 958, 926, 640, 992, 1179, 828, 995, 881, 1016, 866, 1002, 711, 976, 4144, 4144, 1064, 1297, 991, 1050, 983, 1025, 2575, 2568, 0, 0, 1301, 1079, 1081, 1326, 1328, 1331, 1671, 1372, 1382, 1391, 1394, 1440, 1452, 1432, 1731, 1796, 1861, 1141, 1144, 1926, 1014, 1149, 1146, 1168, 1157, 1135, 1435, 1455, 1465, 1185, 2517, 1044, 0, 0, 4144, 2447, 1362, 1364, 1494, 1496, 1518, 1311, 1376, 1507, 1509, 1574, 1571, 1576, 1582, 1585, 1557, 1591, 1626, 1505, 1202, 1521, 1530, 1651, 1991, 1248, 903, 2056, 2121, 2344, 1200, 1287, 1286, 1288, 1359, 1315, 1155, 1285, 1346, 1472, 1527, 1405, 1204, 2301, 2248, 2216, 0, 0, 2069, 1635, 4144, 2026, 1655, 1659, 1675, 1560, 4144, 1673, 1684, 1649, 1705, 1690, 1698, 1695, 1764, 1758, 1716, 1564, 1751, 1265, 1740, 1373, 1400, 1815, 1821, 1465, 1700, 1231, 1415, 1493, 1402, 1411, 1550, 1726, 1568, 2186, 1760, 1569, 1638, 1774, 1685, 1593, 1471, 0, 0, 1439, 1351, 1818, 1830, 1876, 1878, 1842, 1839, 1880, 2020, 2018, 2022, 2026, 2036, 1782, 1747, 1754, 1217, 1429, 1539, 1497, 1597, 1664, 1856, 1351, 1758, 1417, 1681, 1489, 2251, 1822, 4144, 1895, 1340, 1317, 1219, 4144, 4144, 1184, 1047, 2076, 1903, 2011, 2097, 2315, 2079, 2087, 2101, 2103, 2145, 1882, 1846, 2006, 1870, 1638, 1280, 1560, 1600, 2375, 1666, 1792, 1614, 1744, 2440, 2505, 2570, 964, 778, 724, 2155, 2107, 1905, 2167, 2139, 2203, 2205, 2164, 2169, 2214, 2219, 2228, 2234, 2266, 2273, 2284, 2298, 2208, 2292, 2294, 2009, 2012, 2014, 1684, 1748, 1891, 1885, 2635, 2700, 607, 1817, 1615, 1869, 1799, 1672, 1997, 2020, 2047, 1784, 2332, 2765, 2830, 2074, 0, 569, 4144, 478, 2348, 2236, 2302, 2322, 2329, 2346, 2350, 2455, 2457, 2459, 2473, 2480, 2463, 2484, 2528, 2538, 2532, 2522, 2524, 4144, 2553, 2590, 2000, 2179, 2062, 1735, 2019, 2055, 2089, 2548, 442, 399, 1562, 1884, 2058, 2116, 1858, 2120, 2148, 2179, 1978, 2592, 348, 2173, 2073, 2141, 4144, 2596, 2490, 2269, 2614, 2546, 2600, 2618, 2611, 2616, 2656, 2651, 2670, 2667, 2675, 2678, 2681, 2718, 2720, 2274, 2218, 2114, 2185, 2259, 2283, 2311, 2334, 2340, 2250, 2217, 2466, 2115, 2315, 2443, 2437, 2503, 273, 2460, 2740, 2654, 2684, 2780, 2742, 2744, 2782, 2785, 2894, 2788, 2796, 2806, 2812, 2847, 2537, 2534, 2528, 2210, 2341, 2459, 2570, 2633, 2820, 1859, 2578, 2625, 2668, 1981, 2850, 2852, 2871, 2863, 2885, 2888, 2890, 2896, 2904, 2473, 2535, 2719, 2708, 2499, 2658, 2732, 2630, 2694, 2922, 2912, 2914, 2932, 2938, 2947, 2956, 2958, 2721, 2771, 2724, 2706, 2764, 2782, 215, 4, 2962, 2964, 2966, 2973, 2981, 2726, 2826, 2787, 2829, 2790, 2983, 2989, 2997, 3006, 3008, 2852, 2855, 2940, 2306, 2880, 3015, 3017, 3022, 2789, 2859, 2960, 3024, 3031, 3033, 3038, 2948, 2921, 3013, 2898, 3047, 3054, 3057, 2766, 2878, 2796, 3063, 3073, 3077, 2967, 2901, 3043, 3079, 2914, 3082, 3057, 4144, 3116, 3129, 3142, 3155, 3168, 3181, 3186, 3197, 3210, 3223, 3236, 3246, 3259, 3272, 3285, 3298, 3303, 3314, 3327, 3340, 3353, 3365, 3376, 3389, 3401, 3412, 3425, 3437, 3448, 3461, 3473, 3484, 3497, 3509, 3520, 3533, 3546, 3558, 3569, 3581, 3592, 3605, 3617, 3627, 3638, 3651, 3663, 3674, 3686, 3697, 3710, 3722, 3733, 3745, 3756, 3769, 3781, 3791, 3802, 3815, 3827, 3838, 3851, 3863, 3873, 3884, 3897, 3910, 3922, 3933, 3945, 3956, 3969, 3981, 3992, 4004, 4015, 4028, 4040, 4051, 4063, 4073, 4084, 4096, 4106, 4117, 4130 } ; static yyconst flex_int16_t yy_def[1026] = { 0, 939, 939, 938, 3, 940, 940, 940, 940, 941, 941, 938, 938, 938, 938, 942, 943, 944, 938, 945, 938, 938, 945, 938, 938, 938, 946, 938, 947, 938, 938, 938, 938, 948, 948, 34, 34, 34, 34, 949, 34, 34, 34, 34, 34, 34, 34, 34, 34, 950, 951, 938, 952, 952, 953, 953, 954, 938, 938, 938, 938, 938, 938, 942, 938, 942, 942, 942, 942, 942, 938, 943, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 945, 938, 938, 945, 938, 946, 938, 946, 938, 938, 947, 938, 938, 938, 34, 34, 34, 34, 34, 34, 949, 938, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 938, 955, 938, 956, 938, 938, 938, 957, 938, 938, 938, 938, 938, 938, 938, 942, 942, 942, 942, 938, 938, 938, 945, 938, 938, 34, 34, 948, 34, 34, 34, 34, 34, 34, 948, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 955, 958, 959, 938, 938, 938, 938, 938, 938, 942, 942, 942, 942, 942, 938, 938, 945, 938, 34, 34, 938, 34, 938, 960, 34, 948, 938, 938, 34, 34, 34, 34, 34, 34, 34, 34, 34, 961, 962, 938, 938, 938, 938, 938, 938, 938, 942, 942, 942, 942, 942, 938, 938, 945, 938, 34, 34, 34, 938, 960, 960, 963, 948, 938, 189, 938, 938, 938, 938, 938, 938, 938, 938, 34, 34, 34, 34, 34, 34, 948, 964, 965, 938, 938, 938, 938, 938, 942, 942, 942, 942, 942, 938, 938, 945, 938, 34, 34, 34, 938, 938, 966, 963, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 34, 34, 34, 34, 948, 938, 967, 968, 938, 938, 969, 942, 942, 970, 938, 969, 945, 971, 34, 34, 34, 966, 972, 938, 938, 938, 938, 973, 938, 938, 938, 938, 938, 34, 34, 34, 938, 974, 975, 938, 938, 976, 942, 942, 977, 938, 938, 978, 971, 938, 34, 34, 34, 938, 972, 938, 938, 938, 189, 938, 938, 938, 938, 34, 948, 34, 979, 980, 938, 981, 938, 976, 942, 938, 942, 977, 938, 938, 938, 982, 978, 34, 34, 34, 938, 938, 938, 938, 34, 938, 948, 983, 984, 938, 985, 985, 985, 985, 985, 985, 985, 985, 985, 938, 942, 986, 986, 381, 381, 381, 381, 381, 381, 381, 942, 938, 938, 982, 987, 34, 34, 34, 34, 938, 938, 948, 938, 988, 989, 938, 990, 938, 938, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 938, 942, 991, 942, 942, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 942, 938, 938, 938, 938, 992, 987, 34, 34, 34, 34, 938, 938, 938, 993, 994, 995, 938, 996, 938, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 938, 997, 942, 998, 942, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 942, 938, 938, 992, 999, 34, 34, 34, 34, 938, 938, 1000, 1001, 938, 995, 996, 1002, 985, 985, 1003, 985, 985, 985, 985, 985, 985, 942, 997, 998, 1004, 381, 381, 938, 381, 381, 381, 381, 381, 381, 938, 999, 34, 34, 938, 938, 1005, 1006, 938, 938, 938, 938, 1002, 985, 985, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 985, 985, 985, 985, 942, 942, 942, 942, 1004, 381, 381, 1008, 1008, 559, 559, 559, 559, 559, 559, 559, 381, 381, 381, 381, 938, 1009, 34, 938, 938, 938, 1010, 1011, 938, 938, 938, 938, 985, 985, 938, 1007, 938, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1012, 942, 942, 942, 942, 381, 381, 942, 559, 942, 559, 559, 559, 559, 559, 559, 559, 559, 559, 1013, 938, 1009, 1009, 1014, 938, 938, 938, 1015, 1016, 938, 938, 985, 985, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1017, 942, 942, 381, 381, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 1018, 938, 938, 1014, 938, 938, 938, 938, 938, 938, 938, 985, 985, 1007, 1007, 1019, 1007, 1007, 1007, 1007, 1020, 1020, 1017, 942, 942, 381, 381, 559, 559, 938, 559, 559, 559, 559, 1021, 1021, 1018, 938, 938, 938, 985, 985, 1007, 1007, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1007, 1007, 1020, 1023, 1023, 1023, 1020, 942, 942, 381, 381, 559, 559, 1024, 1024, 723, 723, 723, 723, 723, 723, 723, 723, 559, 559, 690, 1025, 1025, 736, 690, 938, 938, 938, 985, 985, 985, 1007, 1007, 938, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 938, 1023, 938, 1023, 1023, 942, 942, 381, 381, 381, 559, 559, 942, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 942, 736, 942, 736, 736, 938, 985, 985, 985, 1007, 1007, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1023, 1023, 942, 381, 381, 381, 559, 559, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 736, 736, 985, 985, 985, 1007, 1007, 1022, 1022, 1022, 1019, 1022, 1022, 1022, 1022, 1023, 381, 381, 381, 559, 559, 723, 723, 723, 684, 723, 723, 723, 723, 736, 985, 1007, 1007, 1022, 1022, 1022, 1022, 1022, 1023, 381, 559, 559, 723, 723, 723, 723, 723, 736, 985, 1007, 1007, 1007, 1022, 1022, 1022, 1023, 381, 559, 559, 559, 723, 723, 723, 736, 1007, 1007, 1007, 1022, 1022, 559, 559, 559, 723, 723, 1007, 1007, 1007, 1022, 1022, 559, 559, 559, 723, 723, 1007, 1022, 1022, 559, 723, 723, 1007, 1022, 1022, 1022, 559, 723, 723, 723, 1022, 1022, 1022, 723, 723, 723, 1022, 1022, 1022, 723, 723, 723, 1022, 723, 1022, 723, 0, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938 } ; static yyconst flex_int16_t yy_nxt[4210] = { 0, 12, 13, 14, 15, 12, 12, 16, 12, 12, 12, 12, 17, 18, 12, 12, 12, 51, 51, 51, 51, 86, 86, 938, 52, 52, 53, 53, 55, 55, 96, 56, 56, 86, 86, 98, 96, 96, 784, 12, 12, 12, 61, 61, 96, 77, 96, 57, 88, 143, 99, 96, 101, 64, 145, 104, 96, 105, 58, 59, 60, 96, 106, 62, 12, 12, 12, 13, 14, 15, 20, 21, 16, 12, 12, 12, 12, 17, 18, 12, 12, 12, 78, 71, 89, 22, 150, 57, 96, 65, 72, 96, 96, 79, 80, 81, 66, 96, 58, 59, 60, 73, 74, 75, 12, 12, 12, 67, 68, 69, 83, 57, 107, 180, 57, 108, 96, 109, 86, 86, 96, 116, 58, 59, 60, 58, 59, 84, 144, 12, 12, 23, 24, 25, 26, 27, 23, 28, 29, 29, 29, 29, 30, 31, 29, 32, 32, 33, 34, 33, 33, 35, 33, 36, 37, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 38, 33, 33, 39, 23, 23, 33, 33, 40, 41, 33, 42, 33, 33, 33, 43, 44, 33, 45, 33, 46, 33, 47, 33, 48, 33, 33, 33, 29, 29, 61, 61, 96, 96, 96, 61, 61, 64, 136, 146, 88, 96, 96, 117, 96, 96, 111, 96, 64, 110, 96, 62, 96, 96, 113, 114, 62, 136, 136, 136, 148, 424, 112, 115, 166, 181, 147, 96, 149, 154, 64, 64, 64, 65, 151, 57, 89, 152, 167, 772, 153, 428, 96, 64, 65, 130, 58, 59, 60, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 119, 95, 95, 95, 132, 65, 65, 65, 155, 128, 127, 96, 96, 129, 96, 96, 96, 96, 65, 183, 135, 172, 96, 96, 133, 96, 95, 95, 95, 134, 96, 157, 96, 64, 64, 173, 156, 160, 64, 151, 784, 159, 195, 191, 161, 158, 187, 96, 275, 151, 96, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 96, 95, 95, 95, 65, 65, 184, 184, 96, 65, 186, 96, 185, 96, 190, 96, 96, 97, 96, 151, 175, 174, 96, 171, 96, 192, 95, 95, 95, 64, 206, 206, 96, 64, 96, 193, 207, 198, 64, 194, 64, 196, 96, 197, 64, 222, 222, 236, 338, 235, 784, 95, 95, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 65, 182, 182, 182, 65, 96, 224, 208, 96, 65, 96, 65, 96, 220, 220, 65, 96, 217, 211, 221, 218, 96, 219, 209, 96, 237, 182, 182, 182, 210, 212, 96, 813, 206, 206, 64, 239, 64, 238, 207, 64, 96, 96, 64, 64, 151, 240, 222, 222, 260, 96, 182, 182, 188, 189, 189, 188, 188, 188, 188, 188, 188, 188, 188, 188, 241, 188, 188, 188, 157, 258, 65, 96, 65, 259, 772, 65, 220, 220, 65, 65, 251, 96, 221, 250, 252, 96, 96, 249, 222, 222, 188, 188, 188, 253, 261, 261, 272, 273, 96, 64, 151, 262, 64, 263, 96, 285, 285, 96, 278, 64, 64, 325, 276, 788, 151, 188, 188, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 96, 225, 225, 225, 279, 293, 65, 290, 290, 65, 96, 356, 277, 294, 286, 305, 65, 65, 96, 96, 286, 288, 288, 64, 287, 295, 225, 225, 225, 306, 96, 261, 261, 296, 296, 253, 261, 261, 262, 96, 263, 276, 96, 262, 96, 263, 314, 314, 285, 285, 64, 225, 225, 226, 226, 327, 308, 96, 96, 65, 309, 320, 320, 310, 424, 96, 317, 317, 64, 227, 277, 290, 290, 96, 424, 228, 302, 326, 296, 296, 328, 328, 333, 333, 96, 339, 65, 262, 429, 263, 344, 344, 345, 345, 318, 229, 230, 340, 434, 348, 348, 64, 231, 232, 65, 352, 352, 314, 314, 233, 774, 234, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 357, 265, 265, 265, 343, 345, 345, 96, 96, 321, 317, 317, 64, 65, 320, 320, 353, 353, 96, 424, 358, 96, 354, 328, 328, 444, 265, 265, 265, 96, 262, 347, 263, 328, 328, 351, 363, 353, 353, 64, 262, 476, 263, 354, 345, 345, 365, 64, 65, 352, 352, 265, 265, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 378, 280, 280, 280, 379, 391, 392, 392, 353, 353, 65, 349, 349, 64, 354, 394, 395, 96, 65, 96, 96, 96, 396, 392, 392, 424, 280, 280, 280, 405, 405, 397, 389, 405, 405, 406, 741, 407, 442, 406, 64, 407, 405, 405, 400, 64, 522, 96, 406, 65, 407, 280, 280, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 424, 311, 311, 311, 443, 409, 405, 405, 424, 420, 435, 65, 406, 96, 407, 445, 65, 424, 424, 424, 96, 411, 473, 405, 405, 427, 311, 311, 311, 406, 740, 407, 405, 405, 410, 405, 405, 476, 406, 482, 407, 406, 430, 407, 454, 454, 483, 487, 487, 424, 406, 311, 311, 63, 288, 288, 64, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 431, 432, 412, 438, 438, 405, 405, 424, 424, 433, 439, 406, 440, 407, 424, 413, 424, 452, 452, 414, 405, 405, 63, 65, 63, 453, 406, 476, 407, 405, 405, 424, 405, 405, 481, 406, 64, 407, 406, 474, 407, 478, 489, 424, 475, 96, 424, 63, 63, 63, 349, 349, 64, 63, 63, 63, 63, 63, 63, 63, 63, 424, 63, 63, 63, 405, 405, 477, 415, 416, 484, 406, 65, 407, 405, 405, 520, 417, 405, 405, 406, 418, 407, 424, 406, 518, 407, 63, 65, 63, 603, 405, 405, 455, 405, 405, 96, 406, 490, 407, 406, 96, 407, 405, 405, 456, 424, 424, 491, 406, 515, 407, 63, 63, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 479, 364, 364, 364, 64, 457, 458, 405, 405, 514, 405, 405, 424, 406, 480, 407, 406, 739, 407, 492, 96, 497, 497, 499, 499, 459, 364, 364, 364, 460, 405, 405, 526, 405, 405, 151, 406, 96, 407, 406, 65, 407, 469, 469, 64, 96, 424, 452, 452, 424, 470, 364, 364, 344, 344, 453, 424, 462, 454, 454, 461, 471, 471, 64, 406, 438, 438, 422, 424, 370, 424, 463, 439, 476, 440, 371, 517, 438, 438, 96, 65, 521, 465, 151, 439, 464, 440, 519, 694, 466, 487, 487, 503, 503, 525, 372, 373, 476, 406, 65, 407, 575, 374, 375, 96, 497, 497, 499, 499, 376, 576, 377, 63, 348, 348, 64, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 380, 381, 380, 380, 380, 380, 380, 382, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 63, 65, 63, 380, 380, 383, 384, 380, 380, 380, 380, 380, 385, 386, 380, 380, 380, 380, 380, 387, 380, 388, 380, 380, 380, 63, 63, 63, 349, 349, 64, 63, 63, 63, 63, 63, 63, 63, 63, 424, 63, 63, 63, 405, 405, 424, 405, 405, 424, 406, 424, 407, 406, 424, 407, 516, 516, 556, 479, 424, 557, 424, 568, 405, 405, 63, 65, 63, 501, 406, 567, 407, 424, 405, 405, 476, 405, 405, 502, 406, 64, 407, 406, 424, 407, 570, 693, 569, 573, 96, 63, 63, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 605, 401, 401, 401, 96, 469, 469, 64, 151, 459, 405, 405, 65, 470, 405, 405, 406, 424, 407, 459, 406, 680, 407, 302, 459, 609, 401, 401, 401, 405, 405, 605, 405, 405, 646, 406, 602, 407, 406, 64, 407, 405, 405, 65, 471, 471, 64, 406, 424, 407, 422, 401, 401, 63, 421, 421, 64, 63, 63, 63, 422, 63, 423, 63, 63, 504, 63, 63, 63, 523, 523, 719, 507, 497, 497, 65, 439, 506, 440, 531, 424, 505, 65, 585, 585, 424, 605, 605, 605, 405, 405, 63, 65, 63, 508, 406, 587, 407, 533, 533, 405, 405, 532, 405, 405, 534, 406, 610, 407, 406, 611, 407, 692, 612, 476, 605, 63, 63, 63, 421, 421, 64, 63, 63, 63, 422, 63, 423, 63, 63, 302, 63, 63, 63, 533, 533, 580, 580, 509, 615, 536, 534, 581, 537, 405, 405, 424, 425, 585, 585, 406, 605, 407, 665, 405, 405, 63, 65, 63, 605, 406, 587, 407, 405, 405, 582, 405, 405, 643, 406, 649, 407, 406, 424, 407, 570, 588, 619, 619, 613, 614, 63, 63, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, 644, 448, 448, 448, 547, 424, 459, 605, 548, 510, 510, 64, 523, 523, 549, 551, 605, 405, 405, 439, 605, 440, 605, 406, 681, 407, 448, 448, 448, 405, 405, 664, 523, 523, 424, 406, 649, 407, 552, 439, 650, 440, 571, 571, 64, 647, 686, 65, 572, 616, 616, 448, 448, 63, 421, 421, 64, 63, 63, 63, 422, 63, 423, 63, 63, 63, 63, 63, 63, 550, 96, 533, 533, 405, 405, 661, 462, 424, 534, 406, 65, 407, 597, 597, 585, 585, 585, 585, 406, 583, 407, 63, 65, 63, 605, 405, 405, 587, 605, 587, 64, 406, 605, 407, 617, 617, 683, 553, 553, 64, 618, 648, 589, 598, 554, 688, 63, 63, 63, 510, 510, 64, 63, 63, 63, 63, 63, 63, 63, 63, 584, 63, 63, 63, 405, 405, 65, 585, 585, 590, 406, 682, 407, 64, 605, 65, 619, 619, 585, 585, 587, 585, 585, 585, 585, 605, 63, 65, 63, 585, 585, 587, 585, 585, 587, 605, 587, 772, 405, 405, 814, 641, 587, 605, 406, 587, 407, 720, 459, 65, 651, 63, 63, 63, 512, 512, 64, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 591, 592, 654, 605, 405, 405, 605, 593, 594, 595, 406, 660, 407, 580, 580, 596, 619, 619, 721, 581, 605, 772, 63, 65, 63, 649, 459, 585, 585, 599, 599, 64, 733, 405, 405, 600, 718, 405, 405, 406, 587, 407, 582, 406, 424, 407, 776, 63, 63, 503, 503, 585, 585, 585, 585, 406, 628, 407, 601, 531, 629, 550, 585, 585, 587, 539, 587, 65, 585, 585, 605, 540, 605, 585, 585, 587, 585, 585, 772, 630, 632, 587, 532, 585, 585, 766, 587, 605, 659, 587, 424, 541, 542, 631, 597, 597, 587, 649, 543, 544, 406, 649, 407, 779, 687, 545, 645, 546, 63, 510, 510, 64, 63, 63, 63, 63, 63, 63, 63, 63, 64, 63, 63, 63, 633, 634, 636, 64, 635, 599, 599, 64, 605, 642, 64, 600, 585, 585, 617, 617, 678, 424, 585, 585, 618, 809, 63, 65, 63, 587, 605, 652, 656, 656, 424, 587, 65, 767, 601, 657, 675, 675, 679, 65, 605, 653, 768, 65, 676, 652, 65, 63, 63, 63, 512, 512, 64, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 637, 605, 685, 639, 604, 604, 64, 405, 405, 605, 551, 656, 656, 406, 638, 407, 772, 606, 657, 405, 405, 775, 63, 65, 63, 406, 732, 407, 585, 585, 649, 585, 585, 552, 772, 675, 675, 667, 605, 666, 778, 587, 65, 676, 587, 684, 684, 63, 63, 63, 553, 553, 64, 63, 63, 63, 63, 554, 63, 63, 63, 64, 63, 63, 63, 585, 585, 585, 585, 670, 670, 715, 715, 605, 717, 772, 772, 938, 587, 938, 587, 634, 587, 634, 656, 656, 772, 63, 65, 63, 668, 657, 405, 405, 585, 585, 769, 65, 406, 669, 407, 772, 605, 815, 818, 818, 777, 587, 605, 770, 745, 696, 63, 63, 63, 516, 516, 64, 63, 63, 63, 422, 63, 423, 63, 63, 63, 63, 63, 63, 558, 559, 558, 558, 558, 558, 558, 560, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 63, 65, 63, 558, 558, 561, 562, 558, 558, 558, 558, 558, 563, 564, 558, 558, 558, 558, 558, 565, 558, 566, 558, 558, 558, 63, 63, 63, 553, 553, 64, 63, 63, 63, 63, 554, 63, 63, 63, 64, 63, 63, 63, 772, 871, 64, 715, 715, 585, 585, 784, 64, 938, 64, 938, 585, 585, 585, 585, 585, 585, 587, 772, 585, 585, 63, 65, 63, 587, 716, 587, 823, 587, 585, 585, 65, 587, 765, 627, 810, 764, 65, 780, 781, 424, 772, 587, 65, 697, 65, 63, 63, 63, 604, 604, 64, 63, 63, 63, 63, 63, 63, 63, 63, 634, 63, 606, 63, 673, 782, 671, 672, 605, 405, 405, 811, 585, 585, 808, 406, 605, 407, 674, 772, 585, 585, 787, 424, 649, 587, 63, 65, 63, 695, 585, 585, 626, 587, 585, 585, 585, 585, 784, 784, 405, 405, 824, 587, 816, 812, 406, 587, 407, 587, 605, 63, 63, 63, 604, 604, 64, 63, 63, 63, 63, 63, 63, 63, 63, 709, 63, 606, 63, 634, 698, 743, 747, 747, 710, 424, 772, 772, 711, 711, 744, 772, 607, 637, 531, 587, 676, 841, 405, 405, 817, 63, 65, 63, 406, 818, 407, 747, 747, 713, 585, 585, 747, 747, 825, 819, 784, 714, 64, 772, 587, 742, 751, 587, 64, 587, 63, 63, 63, 616, 616, 64, 63, 63, 63, 422, 63, 423, 63, 63, 63, 63, 63, 63, 820, 746, 747, 747, 747, 747, 772, 759, 759, 807, 65, 842, 424, 747, 747, 587, 65, 587, 747, 747, 761, 752, 63, 65, 63, 821, 587, 747, 747, 864, 749, 587, 750, 747, 747, 405, 405, 605, 623, 822, 587, 406, 840, 407, 772, 424, 587, 63, 63, 63, 689, 689, 64, 63, 63, 63, 63, 63, 690, 63, 63, 753, 63, 63, 63, 747, 747, 790, 405, 405, 754, 818, 585, 585, 406, 64, 407, 772, 587, 622, 755, 756, 757, 585, 585, 587, 605, 63, 65, 63, 843, 759, 759, 759, 759, 828, 587, 711, 711, 818, 844, 405, 405, 531, 761, 676, 761, 406, 763, 407, 605, 65, 63, 63, 670, 670, 634, 758, 713, 621, 531, 585, 585, 762, 791, 912, 714, 587, 585, 585, 700, 734, 734, 772, 587, 845, 701, 551, 772, 690, 634, 587, 772, 702, 792, 747, 747, 405, 405, 747, 747, 793, 736, 406, 847, 407, 703, 704, 587, 865, 737, 772, 587, 705, 706, 846, 789, 772, 605, 849, 707, 608, 708, 63, 684, 684, 64, 63, 63, 63, 551, 63, 63, 63, 63, 63, 63, 606, 63, 722, 723, 722, 722, 722, 722, 722, 724, 722, 722, 722, 722, 722, 722, 725, 722, 722, 722, 722, 722, 722, 722, 63, 65, 63, 722, 722, 726, 727, 722, 722, 722, 722, 722, 728, 729, 722, 722, 722, 722, 722, 730, 722, 731, 722, 722, 722, 63, 63, 63, 734, 734, 64, 63, 63, 63, 551, 63, 690, 63, 63, 63, 63, 63, 63, 747, 747, 747, 747, 747, 747, 736, 579, 747, 747, 772, 848, 848, 587, 737, 587, 772, 587, 747, 747, 853, 587, 63, 65, 63, 747, 747, 851, 794, 747, 747, 587, 772, 795, 796, 405, 405, 784, 587, 772, 850, 406, 587, 407, 866, 880, 424, 63, 63, 63, 738, 738, 64, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 799, 798, 759, 759, 759, 759, 797, 772, 747, 747, 827, 772, 747, 747, 885, 761, 800, 761, 747, 747, 574, 587, 63, 65, 63, 587, 585, 585, 771, 771, 64, 587, 852, 759, 759, 476, 424, 863, 881, 587, 476, 606, 424, 605, 830, 424, 761, 63, 63, 63, 689, 689, 64, 63, 63, 63, 63, 63, 690, 63, 63, 801, 63, 63, 63, 802, 65, 528, 804, 805, 759, 759, 783, 783, 64, 527, 405, 405, 772, 803, 747, 747, 406, 761, 407, 785, 772, 63, 65, 63, 867, 747, 747, 587, 585, 585, 747, 747, 747, 747, 806, 826, 494, 869, 587, 831, 833, 587, 493, 587, 65, 587, 63, 63, 63, 771, 771, 64, 63, 63, 63, 63, 63, 63, 63, 63, 829, 63, 606, 63, 832, 834, 834, 772, 405, 405, 747, 747, 772, 868, 406, 772, 407, 486, 587, 870, 799, 747, 747, 587, 747, 747, 63, 65, 63, 747, 747, 854, 747, 747, 587, 747, 747, 587, 405, 405, 772, 818, 587, 886, 406, 587, 407, 485, 587, 472, 772, 63, 63, 63, 771, 771, 64, 63, 63, 63, 63, 63, 63, 63, 63, 799, 63, 606, 63, 821, 459, 799, 759, 759, 759, 759, 835, 837, 884, 887, 784, 836, 773, 895, 838, 761, 424, 761, 605, 839, 772, 63, 65, 63, 405, 405, 585, 585, 747, 747, 406, 605, 407, 424, 882, 903, 605, 476, 605, 587, 894, 587, 459, 883, 772, 856, 63, 63, 63, 783, 783, 64, 63, 63, 63, 63, 63, 63, 63, 63, 818, 63, 785, 63, 585, 585, 747, 747, 857, 747, 747, 896, 747, 747, 893, 931, 772, 587, 772, 587, 747, 747, 587, 605, 855, 587, 63, 65, 63, 897, 747, 747, 907, 587, 772, 859, 747, 747, 905, 605, 918, 605, 772, 587, 848, 848, 858, 933, 772, 587, 63, 63, 63, 63, 783, 783, 64, 63, 63, 63, 63, 63, 63, 63, 63, 860, 63, 785, 63, 799, 861, 759, 759, 722, 405, 405, 585, 585, 605, 467, 406, 772, 407, 802, 761, 906, 786, 747, 747, 587, 904, 63, 65, 63, 649, 585, 585, 862, 447, 873, 587, 872, 911, 876, 605, 446, 919, 605, 587, 747, 747, 772, 747, 747, 747, 747, 63, 63, 834, 834, 747, 747, 587, 913, 938, 587, 874, 587, 759, 759, 772, 587, 772, 587, 700, 875, 585, 585, 585, 585, 701, 761, 932, 878, 877, 927, 405, 405, 935, 587, 772, 587, 406, 772, 407, 888, 585, 585, 799, 879, 703, 704, 747, 747, 925, 937, 772, 705, 706, 587, 889, 747, 747, 772, 707, 587, 708, 799, 459, 890, 747, 747, 759, 759, 587, 891, 585, 585, 585, 585, 585, 585, 605, 587, 892, 761, 649, 747, 747, 587, 605, 587, 437, 587, 649, 747, 747, 585, 585, 818, 587, 898, 772, 585, 585, 920, 436, 900, 587, 772, 587, 585, 585, 902, 921, 634, 587, 426, 899, 901, 747, 747, 747, 747, 587, 419, 908, 404, 302, 585, 585, 747, 747, 587, 302, 587, 747, 747, 585, 585, 909, 910, 587, 634, 587, 747, 747, 747, 747, 587, 399, 587, 747, 747, 915, 772, 914, 398, 587, 926, 587, 747, 747, 390, 922, 587, 368, 916, 747, 747, 634, 747, 747, 305, 587, 924, 917, 747, 747, 923, 362, 587, 361, 302, 587, 772, 928, 747, 747, 818, 587, 747, 747, 747, 747, 799, 747, 747, 930, 772, 587, 360, 359, 818, 587, 324, 587, 337, 929, 587, 934, 336, 335, 334, 302, 302, 302, 331, 330, 324, 936, 322, 315, 799, 307, 304, 303, 302, 799, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 82, 301, 82, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 300, 102, 118, 299, 298, 292, 291, 289, 284, 118, 248, 118, 120, 120, 283, 120, 120, 120, 283, 120, 120, 120, 120, 120, 120, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 121, 124, 124, 124, 274, 124, 124, 124, 124, 124, 124, 124, 124, 124, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 162, 271, 162, 163, 163, 270, 163, 163, 163, 269, 163, 163, 163, 163, 163, 163, 164, 164, 164, 268, 164, 164, 164, 164, 164, 164, 164, 164, 164, 199, 199, 267, 199, 199, 199, 266, 199, 199, 199, 199, 199, 199, 200, 200, 200, 257, 200, 200, 200, 200, 200, 200, 200, 200, 200, 223, 223, 256, 255, 254, 248, 247, 246, 245, 223, 242, 242, 244, 242, 242, 242, 216, 242, 242, 242, 242, 242, 242, 243, 243, 243, 215, 243, 243, 243, 243, 243, 243, 243, 243, 243, 264, 264, 214, 213, 264, 205, 264, 264, 204, 264, 281, 281, 203, 281, 281, 281, 202, 281, 281, 281, 281, 281, 281, 282, 282, 282, 201, 282, 282, 282, 282, 282, 282, 282, 282, 282, 297, 297, 179, 178, 177, 176, 170, 169, 168, 297, 312, 312, 165, 312, 312, 312, 103, 312, 312, 312, 312, 312, 312, 313, 313, 313, 142, 313, 313, 313, 313, 313, 313, 313, 313, 313, 316, 316, 96, 94, 938, 141, 140, 938, 139, 316, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 329, 329, 138, 137, 329, 130, 329, 329, 129, 329, 332, 332, 332, 332, 332, 332, 332, 332, 128, 332, 127, 332, 332, 341, 341, 938, 341, 341, 341, 136, 341, 341, 341, 341, 341, 341, 342, 342, 342, 131, 342, 342, 342, 342, 342, 342, 342, 342, 342, 346, 346, 130, 129, 128, 127, 126, 346, 123, 346, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 355, 355, 122, 355, 103, 100, 94, 355, 93, 355, 366, 366, 92, 366, 366, 366, 90, 366, 366, 366, 366, 366, 366, 367, 367, 367, 85, 367, 367, 367, 367, 367, 367, 367, 367, 367, 369, 369, 938, 49, 938, 938, 938, 938, 938, 369, 393, 393, 938, 938, 938, 938, 938, 938, 938, 393, 402, 402, 938, 402, 402, 402, 938, 402, 402, 402, 402, 402, 402, 403, 403, 403, 938, 403, 403, 403, 403, 403, 403, 403, 403, 403, 408, 408, 938, 408, 938, 408, 938, 408, 938, 408, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 441, 441, 938, 938, 441, 938, 441, 441, 938, 441, 449, 449, 938, 449, 449, 449, 938, 449, 449, 449, 449, 449, 449, 450, 450, 450, 938, 450, 450, 450, 450, 450, 450, 450, 450, 450, 451, 451, 938, 451, 938, 451, 938, 938, 938, 451, 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, 488, 488, 938, 938, 938, 938, 938, 938, 938, 488, 495, 495, 938, 495, 495, 495, 938, 495, 495, 495, 495, 495, 495, 496, 496, 496, 938, 496, 496, 496, 496, 496, 496, 496, 496, 496, 498, 498, 938, 938, 938, 938, 938, 498, 938, 498, 500, 500, 938, 938, 938, 938, 938, 938, 938, 500, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 524, 524, 938, 938, 524, 938, 524, 524, 938, 524, 529, 529, 938, 529, 529, 529, 938, 529, 529, 529, 529, 529, 529, 530, 530, 530, 938, 530, 530, 530, 530, 530, 530, 530, 530, 530, 535, 535, 938, 938, 535, 938, 938, 535, 938, 535, 538, 538, 938, 538, 938, 538, 938, 938, 938, 538, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 577, 577, 938, 577, 577, 577, 938, 577, 577, 577, 577, 577, 577, 578, 578, 578, 938, 578, 578, 578, 578, 578, 578, 578, 578, 578, 586, 586, 938, 938, 938, 938, 938, 586, 586, 586, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 620, 620, 938, 938, 938, 938, 938, 938, 938, 620, 624, 624, 938, 624, 624, 624, 938, 624, 624, 624, 624, 624, 624, 625, 625, 625, 938, 625, 625, 625, 625, 625, 625, 625, 625, 625, 640, 640, 938, 640, 938, 640, 938, 938, 938, 640, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 658, 658, 938, 938, 658, 938, 938, 658, 938, 658, 662, 662, 938, 662, 662, 662, 938, 662, 662, 662, 662, 662, 662, 663, 663, 663, 938, 663, 663, 663, 663, 663, 663, 663, 663, 663, 677, 677, 938, 938, 938, 677, 938, 677, 938, 677, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 699, 699, 938, 699, 938, 938, 938, 938, 699, 699, 712, 712, 938, 712, 938, 712, 938, 938, 938, 712, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 748, 748, 938, 938, 938, 938, 938, 748, 748, 748, 760, 760, 938, 938, 938, 938, 938, 760, 760, 760, 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 784, 11, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938 } ; static yyconst flex_int16_t yy_chk[4210] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 6, 7, 8, 24, 24, 0, 5, 6, 7, 8, 9, 10, 40, 9, 10, 25, 25, 35, 35, 41, 887, 1, 1, 1, 13, 13, 98, 17, 36, 12, 26, 98, 36, 100, 38, 15, 100, 40, 107, 41, 12, 12, 12, 38, 41, 13, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 17, 16, 26, 2, 107, 13, 42, 15, 16, 43, 44, 17, 17, 17, 15, 48, 13, 13, 13, 16, 16, 16, 2, 2, 2, 15, 15, 15, 20, 20, 42, 142, 21, 43, 142, 44, 86, 86, 99, 48, 20, 20, 20, 21, 21, 21, 99, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 14, 14, 45, 46, 47, 61, 61, 63, 75, 101, 87, 104, 111, 49, 106, 108, 46, 105, 66, 45, 101, 14, 110, 109, 47, 47, 61, 72, 73, 74, 105, 384, 46, 47, 128, 143, 104, 143, 106, 111, 67, 69, 68, 63, 108, 14, 87, 109, 128, 886, 110, 384, 112, 133, 66, 75, 14, 14, 14, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 49, 33, 33, 33, 66, 67, 69, 68, 112, 73, 72, 113, 114, 74, 115, 145, 116, 147, 133, 145, 69, 133, 148, 150, 67, 158, 33, 33, 33, 68, 154, 114, 235, 132, 134, 133, 113, 116, 135, 147, 824, 115, 158, 154, 116, 114, 150, 149, 235, 148, 153, 33, 33, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 152, 34, 34, 34, 132, 134, 146, 146, 156, 135, 149, 159, 146, 155, 153, 157, 161, 34, 160, 152, 135, 134, 308, 132, 191, 155, 34, 34, 34, 171, 170, 170, 190, 172, 146, 156, 170, 161, 173, 157, 174, 159, 186, 160, 175, 185, 185, 191, 308, 190, 784, 34, 34, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 171, 144, 144, 144, 172, 180, 186, 171, 181, 173, 183, 174, 192, 184, 184, 175, 193, 180, 174, 184, 181, 194, 183, 172, 195, 192, 144, 144, 144, 173, 175, 196, 773, 206, 206, 208, 195, 209, 194, 206, 210, 197, 219, 211, 212, 193, 196, 221, 221, 219, 198, 144, 144, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 197, 151, 151, 151, 198, 217, 208, 239, 209, 218, 772, 210, 220, 220, 211, 212, 210, 217, 220, 209, 211, 218, 237, 208, 222, 222, 151, 151, 151, 212, 223, 223, 233, 233, 238, 249, 239, 223, 250, 223, 240, 248, 248, 293, 237, 251, 252, 293, 236, 741, 238, 151, 151, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 236, 187, 187, 187, 240, 258, 249, 255, 255, 250, 258, 325, 236, 259, 250, 273, 251, 252, 259, 325, 249, 253, 253, 253, 252, 260, 187, 187, 187, 273, 260, 261, 261, 263, 263, 251, 264, 264, 261, 277, 261, 276, 278, 264, 275, 264, 283, 283, 285, 285, 287, 187, 187, 189, 189, 295, 275, 309, 276, 253, 277, 289, 289, 278, 385, 295, 286, 286, 286, 189, 276, 290, 290, 294, 388, 189, 739, 294, 296, 296, 297, 297, 302, 302, 310, 309, 287, 297, 385, 297, 315, 315, 316, 316, 287, 189, 189, 310, 388, 318, 318, 318, 189, 189, 286, 321, 321, 314, 314, 189, 724, 189, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 326, 224, 224, 224, 314, 346, 346, 338, 326, 290, 317, 317, 317, 318, 320, 320, 322, 322, 340, 474, 327, 396, 322, 328, 328, 396, 224, 224, 224, 327, 328, 317, 328, 329, 329, 320, 338, 353, 353, 347, 329, 474, 329, 353, 345, 345, 340, 420, 317, 352, 352, 224, 224, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 345, 241, 241, 241, 347, 352, 354, 354, 355, 355, 347, 349, 349, 349, 355, 356, 357, 363, 420, 358, 356, 357, 358, 392, 392, 483, 241, 241, 241, 369, 369, 358, 349, 372, 372, 369, 694, 369, 394, 372, 379, 372, 370, 370, 363, 389, 483, 394, 370, 349, 370, 241, 241, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 383, 279, 279, 279, 395, 370, 371, 371, 429, 379, 389, 379, 371, 395, 371, 397, 389, 386, 434, 426, 397, 372, 426, 373, 373, 383, 279, 279, 279, 373, 693, 373, 374, 374, 371, 375, 375, 429, 374, 434, 374, 375, 386, 375, 407, 407, 434, 440, 440, 387, 407, 279, 279, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 387, 387, 373, 393, 393, 405, 405, 433, 477, 387, 393, 405, 393, 405, 427, 374, 431, 406, 406, 375, 376, 376, 288, 288, 288, 406, 376, 477, 376, 377, 377, 428, 408, 408, 433, 377, 435, 377, 408, 427, 408, 431, 442, 430, 428, 442, 481, 288, 288, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 479, 319, 319, 319, 409, 409, 430, 376, 376, 435, 409, 435, 409, 410, 410, 481, 376, 411, 411, 410, 377, 410, 557, 411, 479, 411, 319, 319, 319, 557, 412, 412, 409, 413, 413, 444, 412, 443, 412, 413, 443, 413, 414, 414, 410, 473, 432, 444, 414, 473, 414, 319, 319, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 432, 339, 339, 339, 484, 411, 412, 415, 415, 472, 416, 416, 472, 415, 432, 415, 416, 692, 416, 445, 445, 451, 451, 453, 453, 413, 339, 339, 339, 414, 417, 417, 491, 418, 418, 489, 417, 491, 417, 418, 484, 418, 422, 422, 422, 489, 475, 452, 452, 478, 422, 339, 339, 344, 344, 452, 482, 416, 454, 454, 415, 423, 423, 423, 454, 438, 438, 423, 517, 344, 480, 416, 438, 475, 438, 344, 478, 441, 441, 492, 422, 482, 418, 492, 441, 417, 441, 480, 665, 418, 487, 487, 459, 459, 490, 344, 344, 517, 459, 423, 459, 528, 344, 344, 490, 498, 498, 499, 499, 344, 528, 344, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 522, 350, 350, 350, 455, 455, 514, 456, 456, 515, 455, 519, 455, 456, 518, 456, 476, 476, 514, 522, 567, 515, 521, 519, 457, 457, 350, 350, 350, 455, 457, 518, 457, 520, 458, 458, 567, 460, 460, 456, 458, 551, 458, 460, 476, 460, 521, 664, 520, 526, 526, 350, 350, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 561, 365, 365, 365, 573, 469, 469, 469, 573, 457, 461, 461, 551, 469, 464, 464, 461, 643, 461, 460, 464, 643, 464, 661, 458, 561, 365, 365, 365, 462, 462, 608, 463, 463, 608, 462, 556, 462, 463, 600, 463, 465, 465, 469, 471, 471, 471, 465, 556, 465, 471, 365, 365, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 461, 380, 380, 380, 488, 488, 681, 464, 497, 497, 600, 488, 463, 488, 497, 681, 462, 471, 538, 538, 568, 563, 562, 564, 466, 466, 380, 380, 380, 465, 466, 538, 466, 500, 500, 501, 501, 497, 502, 502, 500, 501, 562, 501, 502, 563, 502, 660, 564, 568, 566, 380, 380, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 659, 381, 381, 381, 533, 533, 534, 534, 466, 566, 501, 533, 534, 502, 504, 504, 569, 381, 539, 539, 504, 650, 504, 627, 505, 505, 381, 381, 381, 565, 505, 539, 505, 506, 506, 534, 507, 507, 602, 506, 650, 506, 507, 602, 507, 569, 539, 572, 572, 565, 565, 381, 381, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 603, 400, 400, 400, 505, 603, 504, 611, 506, 510, 510, 510, 523, 523, 507, 510, 612, 508, 508, 523, 609, 523, 652, 508, 644, 508, 400, 400, 400, 509, 509, 626, 524, 524, 644, 509, 611, 509, 510, 524, 612, 524, 525, 525, 606, 609, 652, 510, 525, 570, 570, 400, 400, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 508, 525, 535, 535, 536, 536, 623, 509, 570, 535, 536, 606, 536, 550, 550, 540, 540, 541, 541, 550, 536, 550, 421, 421, 421, 654, 537, 537, 540, 610, 541, 552, 537, 646, 537, 571, 571, 646, 553, 553, 553, 571, 610, 540, 552, 553, 654, 421, 421, 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, 537, 468, 468, 468, 547, 547, 552, 586, 586, 541, 547, 645, 547, 598, 645, 553, 618, 618, 543, 543, 586, 542, 542, 544, 544, 613, 468, 468, 468, 545, 545, 543, 546, 546, 542, 682, 544, 774, 548, 548, 774, 598, 545, 615, 548, 546, 548, 682, 547, 598, 613, 468, 468, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 542, 543, 615, 647, 549, 549, 683, 544, 545, 545, 549, 622, 549, 580, 580, 546, 619, 619, 683, 580, 687, 726, 470, 470, 470, 647, 548, 590, 590, 554, 554, 554, 687, 583, 583, 554, 680, 584, 584, 583, 590, 583, 580, 584, 680, 584, 726, 470, 470, 503, 503, 588, 588, 585, 585, 503, 583, 503, 554, 585, 584, 549, 589, 589, 588, 503, 585, 554, 592, 592, 648, 503, 685, 594, 594, 589, 593, 593, 729, 588, 590, 592, 585, 591, 591, 718, 594, 653, 621, 593, 718, 503, 503, 589, 597, 597, 591, 648, 503, 503, 597, 685, 597, 729, 653, 503, 607, 503, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 601, 511, 511, 511, 591, 592, 594, 641, 593, 599, 599, 599, 614, 601, 642, 599, 596, 596, 617, 617, 641, 767, 595, 595, 617, 767, 511, 511, 511, 596, 688, 614, 620, 620, 719, 595, 601, 719, 599, 620, 640, 640, 642, 641, 651, 614, 719, 599, 640, 688, 642, 511, 511, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 512, 595, 733, 651, 596, 604, 604, 604, 628, 628, 686, 604, 656, 656, 628, 595, 628, 728, 604, 656, 629, 629, 725, 512, 512, 512, 629, 686, 629, 633, 633, 733, 632, 632, 604, 725, 677, 677, 629, 605, 628, 728, 633, 604, 677, 632, 649, 649, 512, 512, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, 679, 513, 513, 513, 630, 630, 631, 631, 634, 634, 676, 676, 649, 679, 778, 849, 676, 630, 676, 631, 632, 634, 633, 658, 658, 727, 513, 513, 513, 630, 658, 667, 667, 697, 697, 720, 679, 667, 631, 667, 775, 721, 775, 778, 849, 727, 697, 720, 721, 697, 667, 513, 513, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, 764, 555, 555, 555, 782, 853, 678, 715, 715, 668, 668, 853, 716, 715, 717, 715, 636, 636, 635, 635, 637, 637, 668, 730, 638, 638, 555, 555, 555, 636, 678, 635, 782, 637, 639, 639, 764, 638, 717, 582, 768, 716, 678, 730, 730, 768, 731, 639, 716, 668, 717, 555, 555, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, 635, 558, 558, 558, 638, 731, 636, 637, 732, 666, 666, 769, 671, 671, 766, 666, 769, 666, 639, 776, 672, 672, 737, 766, 732, 671, 558, 558, 558, 666, 669, 669, 579, 672, 673, 673, 674, 674, 786, 737, 696, 696, 786, 669, 776, 770, 696, 673, 696, 674, 770, 558, 558, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 559, 672, 559, 559, 559, 671, 669, 696, 699, 699, 673, 809, 819, 777, 675, 675, 696, 779, 559, 674, 675, 699, 675, 809, 695, 695, 777, 559, 559, 559, 695, 819, 695, 702, 702, 675, 698, 698, 703, 703, 787, 779, 787, 675, 785, 780, 702, 695, 702, 698, 765, 703, 559, 559, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, 780, 698, 700, 700, 701, 701, 781, 712, 712, 765, 785, 810, 810, 704, 704, 700, 765, 701, 705, 705, 712, 703, 616, 616, 616, 781, 704, 706, 706, 843, 700, 705, 701, 707, 707, 743, 743, 843, 576, 781, 706, 743, 808, 743, 817, 808, 707, 616, 616, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 704, 655, 655, 655, 708, 708, 743, 791, 791, 705, 817, 709, 709, 791, 807, 791, 816, 708, 575, 706, 707, 707, 710, 710, 709, 811, 655, 655, 655, 811, 713, 713, 714, 714, 791, 710, 711, 711, 816, 812, 744, 744, 711, 713, 711, 714, 744, 714, 744, 812, 807, 655, 655, 670, 670, 709, 708, 711, 574, 670, 745, 745, 713, 744, 906, 711, 670, 746, 746, 670, 734, 734, 906, 745, 813, 670, 734, 813, 734, 710, 746, 820, 670, 745, 747, 747, 742, 742, 748, 748, 746, 734, 742, 815, 742, 670, 670, 747, 844, 734, 814, 748, 670, 670, 814, 742, 815, 844, 820, 670, 560, 670, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 684, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 749, 749, 750, 750, 751, 751, 689, 532, 754, 754, 822, 818, 818, 749, 689, 750, 821, 751, 752, 752, 825, 754, 689, 689, 689, 753, 753, 822, 749, 755, 755, 752, 845, 750, 751, 790, 790, 825, 753, 818, 821, 790, 755, 790, 845, 863, 863, 689, 689, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, 754, 753, 759, 759, 760, 760, 752, 867, 756, 756, 790, 823, 758, 758, 867, 759, 755, 760, 757, 757, 527, 756, 690, 690, 690, 758, 793, 793, 771, 771, 771, 757, 823, 762, 762, 840, 842, 841, 864, 793, 842, 771, 841, 864, 793, 840, 762, 690, 690, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 756, 691, 691, 691, 757, 771, 494, 758, 762, 763, 763, 783, 783, 783, 493, 789, 789, 846, 757, 794, 794, 789, 763, 789, 783, 850, 691, 691, 691, 846, 796, 796, 794, 792, 792, 797, 797, 795, 795, 763, 789, 447, 850, 796, 794, 796, 792, 446, 797, 783, 795, 691, 691, 722, 722, 722, 722, 722, 722, 722, 722, 722, 722, 722, 722, 792, 722, 722, 722, 795, 799, 799, 851, 827, 827, 798, 798, 870, 847, 827, 847, 827, 437, 799, 851, 797, 801, 801, 798, 800, 800, 722, 722, 722, 802, 802, 827, 803, 803, 801, 804, 804, 800, 828, 828, 868, 870, 802, 868, 828, 803, 828, 436, 804, 425, 852, 722, 722, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 798, 723, 723, 723, 852, 828, 800, 805, 805, 806, 806, 801, 803, 866, 871, 871, 802, 723, 883, 804, 805, 424, 806, 883, 806, 866, 723, 723, 723, 826, 826, 830, 830, 831, 831, 826, 865, 826, 880, 865, 893, 882, 880, 893, 830, 882, 831, 826, 865, 869, 830, 723, 723, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 869, 735, 735, 735, 829, 829, 832, 832, 831, 833, 833, 884, 835, 835, 881, 925, 884, 829, 925, 832, 836, 836, 833, 881, 829, 835, 735, 735, 735, 885, 837, 837, 897, 836, 885, 833, 838, 838, 895, 895, 911, 911, 897, 837, 848, 848, 832, 927, 927, 838, 848, 735, 735, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 836, 736, 736, 736, 835, 837, 839, 839, 848, 854, 854, 855, 855, 894, 419, 854, 896, 854, 838, 839, 896, 736, 857, 857, 855, 894, 736, 736, 736, 903, 856, 856, 839, 399, 855, 857, 854, 904, 857, 903, 398, 912, 904, 856, 858, 858, 912, 859, 859, 860, 860, 736, 736, 834, 834, 861, 861, 858, 907, 834, 859, 856, 860, 862, 862, 926, 834, 907, 861, 834, 856, 873, 873, 874, 874, 834, 862, 926, 859, 858, 921, 872, 872, 932, 873, 921, 874, 872, 932, 872, 873, 875, 875, 860, 862, 834, 834, 876, 876, 919, 935, 935, 834, 834, 875, 874, 877, 877, 919, 834, 876, 834, 861, 872, 875, 878, 878, 879, 879, 877, 876, 888, 888, 889, 889, 890, 890, 905, 878, 877, 879, 905, 891, 891, 888, 918, 889, 391, 890, 918, 892, 892, 898, 898, 931, 891, 888, 913, 899, 899, 913, 390, 890, 892, 931, 898, 900, 900, 892, 913, 898, 899, 382, 889, 891, 901, 901, 902, 902, 900, 378, 899, 368, 362, 908, 908, 909, 909, 901, 361, 902, 910, 910, 914, 914, 901, 902, 908, 900, 909, 915, 915, 916, 916, 910, 360, 914, 917, 917, 909, 920, 908, 359, 915, 920, 916, 922, 922, 351, 915, 917, 343, 910, 923, 923, 914, 924, 924, 337, 922, 917, 910, 928, 928, 916, 336, 923, 335, 334, 924, 933, 922, 929, 929, 933, 928, 930, 930, 934, 934, 928, 936, 936, 924, 937, 929, 331, 330, 937, 930, 323, 934, 307, 923, 936, 929, 306, 305, 304, 303, 301, 300, 299, 298, 292, 934, 291, 284, 930, 274, 272, 271, 270, 936, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 940, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 945, 269, 945, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 268, 949, 950, 267, 266, 257, 256, 254, 247, 950, 246, 950, 951, 951, 245, 951, 951, 951, 244, 951, 951, 951, 951, 951, 951, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 953, 953, 953, 234, 953, 953, 953, 953, 953, 953, 953, 953, 953, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 955, 232, 955, 956, 956, 231, 956, 956, 956, 230, 956, 956, 956, 956, 956, 956, 957, 957, 957, 229, 957, 957, 957, 957, 957, 957, 957, 957, 957, 958, 958, 228, 958, 958, 958, 227, 958, 958, 958, 958, 958, 958, 959, 959, 959, 216, 959, 959, 959, 959, 959, 959, 959, 959, 959, 960, 960, 215, 214, 213, 205, 204, 203, 202, 960, 961, 961, 201, 961, 961, 961, 179, 961, 961, 961, 961, 961, 961, 962, 962, 962, 178, 962, 962, 962, 962, 962, 962, 962, 962, 962, 963, 963, 177, 176, 963, 169, 963, 963, 168, 963, 964, 964, 167, 964, 964, 964, 166, 964, 964, 964, 964, 964, 964, 965, 965, 965, 165, 965, 965, 965, 965, 965, 965, 965, 965, 965, 966, 966, 140, 139, 138, 137, 131, 130, 129, 966, 967, 967, 127, 967, 967, 967, 102, 967, 967, 967, 967, 967, 967, 968, 968, 968, 97, 968, 968, 968, 968, 968, 968, 968, 968, 968, 969, 969, 96, 94, 92, 91, 90, 89, 85, 969, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 972, 972, 84, 83, 972, 81, 972, 972, 80, 972, 973, 973, 973, 973, 973, 973, 973, 973, 79, 973, 78, 973, 973, 974, 974, 71, 974, 974, 974, 70, 974, 974, 974, 974, 974, 974, 975, 975, 975, 62, 975, 975, 975, 975, 975, 975, 975, 975, 975, 976, 976, 60, 59, 58, 57, 56, 976, 53, 976, 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, 978, 978, 52, 978, 39, 37, 31, 978, 30, 978, 979, 979, 28, 979, 979, 979, 27, 979, 979, 979, 979, 979, 979, 980, 980, 980, 22, 980, 980, 980, 980, 980, 980, 980, 980, 980, 981, 981, 11, 4, 0, 0, 0, 0, 0, 981, 982, 982, 0, 0, 0, 0, 0, 0, 0, 982, 983, 983, 0, 983, 983, 983, 0, 983, 983, 983, 983, 983, 983, 984, 984, 984, 0, 984, 984, 984, 984, 984, 984, 984, 984, 984, 985, 985, 0, 985, 0, 985, 0, 985, 0, 985, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 987, 987, 0, 0, 987, 0, 987, 987, 0, 987, 988, 988, 0, 988, 988, 988, 0, 988, 988, 988, 988, 988, 988, 989, 989, 989, 0, 989, 989, 989, 989, 989, 989, 989, 989, 989, 990, 990, 0, 990, 0, 990, 0, 0, 0, 990, 991, 991, 991, 991, 991, 991, 991, 991, 991, 991, 991, 991, 991, 992, 992, 0, 0, 0, 0, 0, 0, 0, 992, 993, 993, 0, 993, 993, 993, 0, 993, 993, 993, 993, 993, 993, 994, 994, 994, 0, 994, 994, 994, 994, 994, 994, 994, 994, 994, 995, 995, 0, 0, 0, 0, 0, 995, 0, 995, 996, 996, 0, 0, 0, 0, 0, 0, 0, 996, 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, 999, 999, 0, 0, 999, 0, 999, 999, 0, 999, 1000, 1000, 0, 1000, 1000, 1000, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1001, 1001, 1001, 0, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1002, 1002, 0, 0, 1002, 0, 0, 1002, 0, 1002, 1003, 1003, 0, 1003, 0, 1003, 0, 0, 0, 1003, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1005, 1005, 0, 1005, 1005, 1005, 0, 1005, 1005, 1005, 1005, 1005, 1005, 1006, 1006, 1006, 0, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1007, 1007, 0, 0, 0, 0, 0, 1007, 1007, 1007, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1009, 1009, 0, 0, 0, 0, 0, 0, 0, 1009, 1010, 1010, 0, 1010, 1010, 1010, 0, 1010, 1010, 1010, 1010, 1010, 1010, 1011, 1011, 1011, 0, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1012, 1012, 0, 1012, 0, 1012, 0, 0, 0, 1012, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1014, 1014, 0, 0, 1014, 0, 0, 1014, 0, 1014, 1015, 1015, 0, 1015, 1015, 1015, 0, 1015, 1015, 1015, 1015, 1015, 1015, 1016, 1016, 1016, 0, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1017, 1017, 0, 0, 0, 1017, 0, 1017, 0, 1017, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1019, 1019, 0, 1019, 0, 0, 0, 0, 1019, 1019, 1020, 1020, 0, 1020, 0, 1020, 0, 0, 0, 1020, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1022, 1022, 0, 0, 0, 0, 0, 1022, 1022, 1022, 1023, 1023, 0, 0, 0, 0, 0, 1023, 1023, 1023, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 0; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* -*- indented-text -*- */ /* Process source files and output type information. Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #line 23 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" #include "bconfig.h" #include "coretypes.h" #include "system.h" #define malloc xmalloc #define realloc xrealloc #include "gengtype.h" #include "gengtype-yacc.h" #define YY_INPUT(BUF,RESULT,SIZE) ((RESULT) = macro_input (BUF,SIZE)) static unsigned macro_input (char *buffer, unsigned); static const char *push_macro_expansion (const char *, unsigned, const char *, unsigned); static char *mangle_macro_name (const char *, unsigned, const char *, unsigned); static void update_lineno (const char *l, size_t len); struct fileloc lexer_line; int lexer_toplevel_done; static void update_lineno (const char *l, size_t len) { while (len-- > 0) if (*l++ == '\n') lexer_line.line++; } #line 1753 "gengtype-lex.c" #define INITIAL 0 #define in_struct 1 #define in_struct_comment 2 #define in_comment 3 #define in_yacc_escape 4 /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ if ( yyleng > 0 ) \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 63 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" #line 1910 "gengtype-lex.c" if ( (yy_init) ) { (yy_init) = 0; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 939 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_current_state != 938 ); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_find_action: yy_act = yy_accept[yy_current_state]; YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: /* rule 1 can match eol */ YY_RULE_SETUP #line 65 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *tagstart; size_t taglen; char *namestart; size_t namelen; int is_pointer = 0; struct type *t; int union_p; tagstart = yytext + strlen (" typedef "); while (ISSPACE (*tagstart)) tagstart++; union_p = tagstart[0] == 'u'; tagstart += strlen ("union "); while (ISSPACE (*tagstart)) tagstart++; for (taglen = 1; ISIDNUM (tagstart[taglen]); taglen++) ; for (namestart = tagstart + taglen; ! ISIDNUM (*namestart); namestart++) if (*namestart == '*') is_pointer = 1; for (namelen = 1; ISIDNUM (namestart[namelen]); namelen++) ; t = find_structure ((const char *) xmemdup (tagstart, taglen, taglen+1), union_p); if (is_pointer) t = create_pointer (t); namestart = (char *) xmemdup (namestart, namelen, namelen+1); #ifdef USE_MAPPED_LOCATION /* temporary kludge - gentype doesn't handle cpp conditionals */ if (strcmp (namestart, "location_t") != 0 && strcmp (namestart, "expanded_location") != 0) #endif do_typedef (namestart, t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 2: /* rule 2 can match eol */ YY_RULE_SETUP #line 104 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *namestart; size_t namelen; struct type *t; char *typestart; size_t typelen; for (namestart = yytext + yyleng - 2; ISSPACE (*namestart); namestart--) ; for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++) ; namestart -= namelen - 1; for (typestart = yytext + strlen (" typedef "); ISSPACE(*typestart); typestart++) ; for (typelen = namestart - typestart; ISSPACE (typestart[typelen-1]); typelen--) ; t = create_scalar_type (typestart, typelen); do_typedef ((const char *) xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 3: /* rule 3 can match eol */ YY_RULE_SETUP #line 132 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *namestart; size_t namelen; struct type *t; for (namestart = yytext + yyleng - 7; ISSPACE (*namestart); namestart--) ; for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++) ; namestart -= namelen - 1; t = create_scalar_type ("function type", sizeof ("function type")-1); do_typedef ((const char *) xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 4: /* rule 4 can match eol */ YY_RULE_SETUP #line 149 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *namestart; size_t namelen; struct type *t; for (namestart = yytext + yyleng - 2; ISSPACE (*namestart); namestart--) ; for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++) ; namestart -= namelen - 1; t = create_scalar_type ("function type", sizeof ("function type")-1); do_typedef ((const char *) xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 5: /* rule 5 can match eol */ YY_RULE_SETUP #line 166 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *namestart; size_t namelen; struct type *t; for (namestart = yytext + yyleng - 7; !ISIDNUM (*namestart); namestart--) ; for (namelen = 1; ISIDNUM (namestart[-namelen]); namelen++) ; namestart -= namelen - 1; t = create_scalar_type ("function type", sizeof ("function type")-1); do_typedef ((const char *) xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 6: /* rule 6 can match eol */ YY_RULE_SETUP #line 183 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *namestart; size_t namelen; struct type *t; for (namestart = yytext + yyleng - 2; !ISIDNUM (*namestart); namestart--) ; for (namelen = 1; ISIDNUM (namestart[-namelen]); namelen++) ; namestart -= namelen - 1; t = create_scalar_type ("function type", sizeof ("function type")-1); do_typedef ((const char *) xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 7: /* rule 7 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 3; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 200 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *tagstart; size_t taglen; int typedef_p; int union_p; typedef_p = yytext[1] == 't'; if (typedef_p) for (tagstart = yytext + strlen (" typedef "); ISSPACE(*tagstart); tagstart++) ; else tagstart = yytext + 1; union_p = tagstart[0] == 'u'; tagstart += strlen ("union "); while (ISSPACE (*tagstart)) tagstart++; for (taglen = 1; ISIDNUM (tagstart[taglen]); taglen++) ; yylval.t = find_structure ((const char *) xmemdup (tagstart, taglen, taglen + 1), union_p); BEGIN(in_struct); update_lineno (yytext, yyleng); return typedef_p ? ENT_TYPEDEF_STRUCT : ENT_STRUCT; } YY_BREAK case 8: /* rule 8 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 3; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 230 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(in_struct); update_lineno (yytext, yyleng); return ENT_EXTERNSTATIC; } YY_BREAK case 9: /* rule 9 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 3; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 236 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(in_struct); update_lineno (yytext, yyleng); return ENT_YACCUNION; } YY_BREAK case 10: /* rule 10 can match eol */ YY_RULE_SETUP #line 242 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *macro, *arg; unsigned macro_len, arg_len; char *ptr = yytext; const char *additional; type_p t; /* Find the macro name. */ for (macro = ptr; *ptr != '(' && !ISSPACE (*ptr); ptr++) continue; for (macro_len = ptr - macro; !(ISALNUM (*ptr) || *ptr == '_'); ptr++) continue; /* Find the argument(s). */ for (arg = ptr; *ptr != ')'; ptr++) continue; arg_len = ptr - arg; /* Create the struct and typedef. */ ptr = mangle_macro_name ("VEC", 3, arg, arg_len); t = find_structure (ptr, 0); do_typedef (ptr, t, &lexer_line); /* Push the macro for later expansion. */ additional = push_macro_expansion (macro, macro_len, arg, arg_len); if (additional) { ptr = mangle_macro_name (ptr, strlen (ptr), additional, strlen (additional)); t = find_structure (ptr, 0); do_typedef (ptr, t, &lexer_line); } } YY_BREAK case 11: YY_RULE_SETUP #line 280 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(in_struct_comment); } YY_BREAK case 12: YY_RULE_SETUP #line 282 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(in_yacc_escape); } /* } */ YY_BREAK case 13: /* rule 13 can match eol */ YY_RULE_SETUP #line 284 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { update_lineno (yytext, yyleng); } YY_BREAK case 14: /* rule 14 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 5; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 286 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* don't care */ YY_BREAK case 15: /* rule 15 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 3; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 287 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { return GTY_TOKEN; } YY_BREAK case 16: /* rule 16 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 5; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 288 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { return UNION; } YY_BREAK case 17: /* rule 17 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 6; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 289 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { return STRUCT; } YY_BREAK case 18: /* rule 18 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 4; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 290 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { return ENUM; } YY_BREAK case 19: /* rule 19 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 291 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { return ALIAS; } YY_BREAK case 20: /* rule 20 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 10; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 292 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { return NESTED_PTR; } YY_BREAK case 21: YY_RULE_SETUP #line 293 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { return NUM; } YY_BREAK case 22: /* rule 22 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 294 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { yylval.s = (const char *) xmemdup (yytext, yyleng, yyleng+1); return PARAM_IS; } YY_BREAK case 23: /* rule 23 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ #line 300 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" case 24: /* rule 24 can match eol */ YY_RULE_SETUP #line 300 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { size_t len; for (len = yyleng; ISSPACE (yytext[len-1]); len--) ; yylval.t = create_scalar_type (yytext, len); update_lineno (yytext, yyleng); return SCALAR; } YY_BREAK case 25: /* rule 25 can match eol */ YY_RULE_SETUP #line 311 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { char *macro, *arg; unsigned macro_len, arg_len; char *ptr = yytext; /* Find the macro name */ for (macro = ptr; *ptr != '(' && !ISSPACE (*ptr); ptr++) continue; for (macro_len = ptr - macro; !(ISALNUM(*ptr) || *ptr == '_'); ptr++) continue; /* Find the arguments. */ for (arg = ptr; *ptr != ')'; ptr++) continue; arg_len = ptr - arg; ptr = mangle_macro_name (macro, macro_len, arg, arg_len); yylval.s = ptr; return ID; } YY_BREAK case 26: /* rule 26 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 332 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { yylval.s = (const char *) xmemdup (yytext, yyleng, yyleng+1); return ID; } YY_BREAK case 27: /* rule 27 can match eol */ YY_RULE_SETUP #line 337 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { yylval.s = (const char *) xmemdup (yytext+1, yyleng-2, yyleng-1); return STRING; } YY_BREAK case 28: /* rule 28 can match eol */ YY_RULE_SETUP #line 341 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { yylval.s = (const char *) xmemdup (yytext+1, yyleng-2, yyleng-1); return ARRAY; } YY_BREAK case 29: YY_RULE_SETUP #line 345 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { yylval.s = (const char *) xmemdup (yytext+1, yyleng-1, yyleng); return PERCENT_ID; } YY_BREAK case 30: /* rule 30 can match eol */ YY_RULE_SETUP #line 349 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { yylval.s = (const char *) xmemdup (yytext+1, yyleng-2, yyleng); return CHAR; } YY_BREAK case 31: YY_RULE_SETUP #line 354 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { return yytext[0]; } YY_BREAK case 32: YY_RULE_SETUP #line 356 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { if (lexer_toplevel_done) { BEGIN(INITIAL); lexer_toplevel_done = 0; } return yytext[0]; } YY_BREAK case 33: YY_RULE_SETUP #line 365 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(INITIAL); return PERCENTPERCENT; } YY_BREAK case 34: /* rule 34 can match eol */ YY_RULE_SETUP #line 370 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" {lexer_line.line++;} YY_BREAK case 35: YY_RULE_SETUP #line 372 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { error_at_line (&lexer_line, "unexpected character `%s'", yytext); } YY_BREAK case 36: YY_RULE_SETUP #line 377 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(in_comment); } YY_BREAK case 37: /* rule 37 can match eol */ YY_RULE_SETUP #line 378 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { lexer_line.line++; } YY_BREAK case 38: #line 380 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" case 39: /* rule 39 can match eol */ #line 381 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" case 40: /* rule 40 can match eol */ YY_RULE_SETUP #line 381 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 41: /* rule 41 can match eol */ YY_RULE_SETUP #line 382 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { update_lineno (yytext, yyleng); } YY_BREAK case 42: /* rule 42 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 383 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 43: /* rule 43 can match eol */ YY_RULE_SETUP #line 386 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { lexer_line.line++; } YY_BREAK case 44: #line 388 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" case 45: YY_RULE_SETUP #line 388 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 46: /* rule 46 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 389 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 47: YY_RULE_SETUP #line 391 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(INITIAL); } YY_BREAK case 48: YY_RULE_SETUP #line 392 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(in_struct); } YY_BREAK case 49: /* rule 49 can match eol */ YY_RULE_SETUP #line 395 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { lexer_line.line++; } YY_BREAK case 50: /* rule 50 can match eol */ #line 397 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" case 51: /* rule 51 can match eol */ YY_RULE_SETUP #line 397 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 52: /* rule 52 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 398 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 53: YY_RULE_SETUP #line 399 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { BEGIN(in_struct); } YY_BREAK case 54: YY_RULE_SETUP #line 400 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { error_at_line (&lexer_line, "unterminated %%{; unexpected EOF"); } YY_BREAK case 55: #line 408 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" case 56: YY_RULE_SETUP #line 408 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { error_at_line (&lexer_line, "unterminated comment or string; unexpected EOF"); } YY_BREAK case 57: /* rule 57 can match eol */ YY_RULE_SETUP #line 413 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 58: /* rule 58 can match eol */ YY_RULE_SETUP #line 414 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" { error_at_line (&lexer_line, "stray GTY marker"); } YY_BREAK case 59: YY_RULE_SETUP #line 418 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" YY_FATAL_ERROR( "flex scanner jammed" ); YY_BREAK #line 2620 "gengtype-lex.c" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(in_struct): case YY_STATE_EOF(in_struct_comment): case YY_STATE_EOF(in_comment): case YY_STATE_EOF(in_yacc_escape): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { size_t num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 939 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { register int yy_is_jam; register char *yy_cp = (yy_c_buf_p); register YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 939 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 938); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ int offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n'); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { int num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param str a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * str ) { return yy_scan_bytes(str,strlen(str) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param bytes the byte buffer to scan * @param len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * bytes, int len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < len; ++i ) buf[i] = bytes[i]; buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } void yyset_out (FILE * out_str ) { yyout = out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int bdebug ) { yy_flex_debug = bdebug ; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #undef YY_NEW_FILE #undef YY_FLUSH_BUFFER #undef yy_set_bol #undef yy_new_buffer #undef yy_set_interactive #undef yytext_ptr #undef YY_DO_BEFORE_ACTION #ifdef YY_DECL_IS_OURS #undef YY_DECL_IS_OURS #undef YY_DECL #endif #line 418 "/scratch/mitchell/gcc-releases/gcc-4.2.1/gcc-4.2.1/gcc/gengtype-lex.l" /* Deal with the expansion caused by the DEF_VEC_x macros. */ /* Mangle a macro and argument list as done by cpp concatenation in the compiler proper. */ static char * mangle_macro_name (const char *macro, unsigned macro_len, const char *arg, unsigned arg_len) { char *ptr = (char *) xmemdup (macro, macro_len, macro_len + arg_len + 2); /* Now copy and concatenate each argument */ while (arg_len) { ptr[macro_len++] = '_'; for (; arg_len && (ISALNUM(*arg) || *arg == '_'); arg_len--) ptr[macro_len++] = *arg++; for (; arg_len && !(ISALNUM(*arg) || *arg == '_'); arg_len--) arg++; } ptr[macro_len] = 0; return ptr; } typedef struct macro_def { const char *name; const char *expansion; const char *additional; } macro_def_t; typedef struct macro { const macro_def_t *def; struct macro *next; const char *args[10]; } macro_t; static const macro_def_t macro_defs[] = { #define IN_GENGTYPE 1 #include "vec.h" {NULL, NULL, NULL} }; /* Chain of macro expansions to do at end of scanning. */ static macro_t *macro_expns; static macro_t *macro_expns_end; /* Push macro NAME (NAME_LEN) with argument ARG (ARG_LEN) onto the expansion queue. We ensure NAME is known at this point. */ static const char * push_macro_expansion (const char *name, unsigned name_len, const char *arg, unsigned arg_len) { unsigned ix; for (ix = 0; macro_defs[ix].name; ix++) if (strlen (macro_defs[ix].name) == name_len && !memcmp (name, macro_defs[ix].name, name_len)) { macro_t *expansion = XNEW (macro_t); char *args; unsigned argno, last_arg; expansion->def = ¯o_defs[ix]; expansion->next = NULL; args = (char *) xmemdup (arg, arg_len, arg_len+1); args[arg_len] = 0; for (argno = 0; *args;) { expansion->args[argno++] = args; while (*args && (ISALNUM (*args) || *args == '_')) args++; if (argno == 1) expansion->args[argno++] = "base"; if (!*args) break; *args++ = 0; while (*args && !(ISALNUM (*args) || *args == '_')) args++; } last_arg = argno; for (; argno != 10; argno++) expansion->args[argno] = NULL; if (macro_expns_end) macro_expns_end->next = expansion; else macro_expns = expansion; macro_expns_end = expansion; if (macro_defs[ix].additional) { macro_t *expn2 = XNEW (macro_t); memcpy (expn2, expansion, sizeof (*expn2)); expansion = expn2; expansion->def += 1; expansion->args[last_arg++] = macro_defs[ix].additional; macro_expns_end->next = expansion; macro_expns_end = expansion; } if (last_arg > 2 && strcmp (expansion->args[last_arg - 1], "heap")) expansion->args[last_arg++] = "GTY (())"; return macro_defs[ix].additional; } error_at_line (&lexer_line, "unrecognized macro `%.*s(%.*s)'", name_len, name, arg_len, arg); return NULL; } /* Attempt to read some input. Use fread until we're at the end of file. At end of file expand the next queued macro. We presume the buffer is large enough for the entire expansion. */ static unsigned macro_input (char *buffer, unsigned size) { unsigned result; result = fread (buffer, 1, size, yyin); if (result) /*NOP*/; else if (ferror (yyin)) YY_FATAL_ERROR ("read of source file failed"); else if (macro_expns) { const char *expn; unsigned len; for (expn = macro_expns->def->expansion; *expn; expn++) { if (*expn == '#') { int argno; argno = expn[1] - '0'; expn += 1; /* Remove inserted space? */ if (buffer[result-1] == ' ' && buffer[result-2] == '_') result--; /* Insert the argument value */ if (macro_expns->args[argno]) { len = strlen (macro_expns->args[argno]); memcpy (&buffer[result], macro_expns->args[argno], len); result += len; } /* Skip next space? */ if (expn[1] == ' ' && expn[2] == '_') expn++; } else { buffer[result++] = *expn; if (*expn == ';' || *expn == '{') buffer[result++] = '\n'; } } if (result > size) YY_FATAL_ERROR ("buffer too small to expand macro"); macro_expns = macro_expns->next; if (!macro_expns) macro_expns_end = NULL; } return result; } void yyerror (const char *s) { error_at_line (&lexer_line, s); } void parse_file (const char *fname) { yyin = fopen (fname, "r"); lexer_line.file = fname; lexer_line.line = 1; if (yyin == NULL) { perror (fname); exit (1); } if (yyparse() != 0) exit (1); fclose (yyin); }