#line 2 "gengtype-lex.c" /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #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. */ #define YY_BUF_SIZE 16384 typedef struct yy_buffer_state *YY_BUFFER_STATE; 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 /* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. */ /* Return all but the first 'n' matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - 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). */ typedef unsigned int yy_size_t; 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; /* 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 }; static YY_BUFFER_STATE yy_current_buffer = 0; /* 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". */ #define YY_CURRENT_BUFFER yy_current_buffer /* 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 YY_PROTO(( FILE *input_file )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); void yy_load_buffer_state YY_PROTO(( void )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); static void yy_flex_free YY_PROTO(( void * )); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) #define yywrap() 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state YY_PROTO(( void )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); static int yy_get_next_buffer YY_PROTO(( void )); static void yy_fatal_error YY_PROTO(( 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 = (int) (yy_cp - yy_bp); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #define YY_NUM_RULES 54 #define YY_END_OF_BUFFER 55 static yyconst short int yy_accept[825] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 37, 34, 52, 37, 52, 37, 35, 37, 32, 13, 13, 32, 32, 29, 32, 20, 30, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 42, 40, 53, 53, 48, 46, 51, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 33, 39, 39, 39, 39, 35, 0, 13, 0, 25, 0, 0, 0, 10, 20, 24, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 27, 11, 12, 0, 43, 45, 44, 0, 49, 50, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 22, 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, 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, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 22, 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, 21, 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, 0, 0, 0, 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, 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, 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, 24, 24, 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, 23, 0, 0, 0, 41, 47, 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, 1, 0, 0, 3, 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, 7, 0, 5, 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, 3, 3, 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 } ; static yyconst int 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, 1, 1, 5, 1, 6, 7, 8, 9, 1, 10, 1, 1, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 10, 13, 10, 14, 10, 1, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 18, 18, 25, 26, 27, 28, 29, 18, 30, 31, 32, 33, 18, 34, 18, 35, 18, 36, 37, 38, 1, 39, 1, 40, 41, 42, 43, 44, 45, 46, 47, 48, 18, 18, 49, 50, 51, 52, 53, 18, 54, 55, 56, 57, 18, 18, 58, 59, 60, 61, 1, 62, 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 int yy_meta[63] = { 0, 1, 2, 3, 1, 4, 1, 5, 6, 7, 1, 1, 8, 9, 1, 1, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 1, 1, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 12, 1 } ; static yyconst short int yy_base[903] = { 0, 0, 62, 124, 11, 14, 15, 16, 18, 17, 25, 3173, 0, 3, 46, 49, 40, 3671, 0, 63, 3671, 29, 31, 41, 3127, 3671, 3151, 3143, 3671, 186, 248, 12, 14, 3125, 3094, 1, 61, 59, 60, 57, 170, 180, 63, 199, 3116, 0, 3671, 3119, 3118, 0, 0, 3066, 3069, 3060, 3048, 3052, 44, 3671, 0, 207, 208, 209, 229, 3086, 3080, 209, 213, 35, 29, 3671, 3671, 3021, 3012, 3000, 3004, 0, 2993, 49, 75, 3671, 3032, 3025, 3017, 3671, 2999, 3671, 2979, 2967, 88, 87, 174, 2953, 3671, 178, 181, 186, 175, 26, 188, 189, 242, 179, 243, 244, 245, 3671, 0, 3671, 0, 0, 3671, 3671, 3671, 0, 3671, 3671, 2913, 180, 2895, 2896, 238, 237, 274, 275, 3671, 2892, 3671, 210, 255, 327, 197, 259, 260, 262, 190, 389, 267, 264, 277, 271, 269, 274, 287, 254, 273, 0, 0, 0, 0, 2894, 2881, 2879, 2891, 2882, 315, 318, 320, 335, 349, 2879, 315, 317, 3671, 319, 320, 451, 3671, 512, 318, 321, 322, 323, 332, 338, 334, 341, 0, 0, 2829, 2760, 2765, 2763, 2754, 369, 371, 378, 379, 377, 2753, 390, 393, 377, 569, 3671, 0, 2775, 2774, 2749, 2753, 2748, 2746, 365, 2746, 405, 381, 396, 407, 412, 631, 0, 0, 2745, 2753, 2738, 2749, 429, 430, 432, 434, 433, 439, 443, 451, 454, 456, 3671, 2764, 2756, 2733, 2744, 2726, 2727, 2724, 324, 2716, 471, 401, 444, 693, 3671, 0, 0, 445, 2724, 483, 491, 487, 755, 494, 470, 472, 488, 2728, 2718, 2699, 2692, 503, 2699, 2686, 2677, 2681, 2676, 475, 480, 3671, 0, 0, 515, 519, 523, 544, 548, 817, 531, 510, 515, 481, 2684, 2666, 3671, 0, 2645, 2654, 2643, 2624, 879, 513, 0, 0, 2632, 940, 537, 542, 554, 997, 586, 1059, 590, 495, 570, 571, 2640, 2615, 2604, 2574, 3671, 1121, 0, 0, 2589, 593, 615, 645, 612, 663, 654, 672, 680, 730, 2584, 616, 1183, 1245, 2567, 535, 279, 514, 573, 630, 575, 623, 2557, 529, 536, 585, 2555, 2541, 3671, 0, 0, 3671, 709, 682, 712, 738, 769, 777, 787, 796, 804, 840, 843, 741, 854, 863, 2525, 612, 1307, 831, 894, 2519, 2494, 631, 576, 648, 693, 662, 694, 692, 681, 747, 834, 2471, 698, 749, 755, 2435, 2433, 0, 0, 807, 897, 812, 900, 919, 927, 930, 1079, 943, 946, 1091, 1099, 1102, 1082, 1110, 1158, 3671, 1369, 910, 1431, 1073, 760, 772, 601, 697, 907, 813, 820, 816, 483, 801, 823, 725, 901, 3671, 652, 845, 892, 2429, 2417, 0, 0, 958, 874, 964, 966, 1135, 1161, 1492, 1145, 1169, 1200, 1215, 1223, 1226, 1234, 1549, 1611, 1673, 923, 936, 1735, 928, 926, 944, 569, 876, 930, 1259, 2399, 2368, 0, 0, 3671, 2318, 983, 1262, 1202, 1277, 1290, 1138, 1153, 1275, 1287, 1334, 1338, 1346, 1352, 1350, 1323, 1355, 1401, 1326, 1079, 1330, 1383, 1390, 1797, 1062, 943, 1859, 1921, 2301, 1121, 1071, 945, 1125, 1167, 1064, 950, 1152, 1171, 1240, 1209, 1273, 2263, 2252, 0, 0, 2215, 1419, 3671, 2129, 1447, 1456, 1459, 1410, 3671, 1472, 1474, 1412, 1415, 1476, 1494, 1509, 1522, 1514, 1501, 1301, 1563, 1230, 1482, 966, 1079, 1570, 2077, 1319, 2008, 1267, 1401, 1362, 1332, 1276, 1432, 1543, 1059, 1983, 1511, 1299, 1393, 1518, 1886, 1871, 0, 0, 1677, 1513, 1595, 1626, 1628, 1577, 1526, 1592, 1535, 1648, 1641, 1653, 1655, 1657, 1660, 1486, 1602, 1147, 1212, 1445, 1419, 1636, 1115, 1687, 1550, 1242, 1455, 1502, 1553, 2045, 1634, 3671, 1689, 1472, 1310, 3671, 3671, 1259, 1207, 1699, 1710, 1811, 1813, 2106, 1815, 1834, 1817, 1829, 1877, 1719, 1722, 1692, 1839, 1050, 714, 1322, 1503, 2163, 1396, 1670, 1688, 1606, 2225, 2287, 2349, 949, 836, 1820, 1880, 1836, 1899, 1838, 1890, 1935, 1937, 1902, 1953, 1958, 1949, 1965, 1967, 1962, 2001, 2008, 2020, 2029, 2022, 1907, 1634, 2002, 1560, 1818, 1860, 1820, 2411, 2473, 809, 1793, 1889, 1853, 1672, 1974, 2015, 1857, 1548, 1916, 2062, 2535, 2597, 1875, 0, 3671, 781, 2065, 2086, 2073, 2077, 2101, 2109, 2113, 2115, 2129, 2253, 2239, 2247, 2255, 2262, 2267, 2271, 2131, 2136, 3671, 2269, 2305, 1909, 2003, 1516, 1679, 1866, 1919, 2307, 689, 534, 1914, 895, 2042, 2001, 1971, 2045, 2050, 2097, 1612, 2328, 441, 2062, 1941, 1947, 3671, 2336, 2364, 2366, 2375, 2379, 2425, 2387, 2334, 2431, 2149, 2393, 2438, 2440, 2452, 2456, 2433, 2487, 2083, 2096, 1454, 2108, 2225, 2102, 2128, 2300, 2049, 2223, 2373, 2239, 2318, 2289, 2109, 1797, 85, 2227, 2505, 2461, 2492, 2513, 2458, 2515, 2549, 2658, 2518, 2565, 2553, 2567, 2612, 2293, 2287, 1388, 1988, 2294, 2369, 2220, 2556, 2314, 2365, 2417, 2356, 2348, 2615, 2580, 2574, 2618, 2624, 2640, 2638, 2643, 2438, 2491, 2536, 2371, 2250, 1565, 2471, 1701, 2660, 2664, 2666, 2684, 2682, 2689, 2072, 2474, 2501, 2533, 64, 11, 2701, 2707, 2709, 2714, 2404, 2403, 2556, 2504, 2716, 2729, 2734, 2736, 2562, 2604, 1953, 2130, 2741, 2749, 2620, 2650, 2755, 2757, 2566, 2626, 2761, 2764, 2668, 2595, 2770, 2777, 2702, 2644, 3671, 2809, 2821, 2833, 2845, 2857, 2869, 2874, 2884, 2896, 2908, 2920, 2929, 2941, 2953, 2965, 2977, 2982, 2992, 3004, 3016, 3028, 3040, 3052, 3064, 3076, 3088, 3100, 3112, 3123, 3133, 3145, 3157, 3169, 3180, 3190, 3202, 3214, 3225, 3235, 3247, 3258, 3268, 3280, 3292, 3303, 3313, 3325, 3337, 3348, 3357, 3367, 3379, 3391, 3403, 3414, 3423, 3433, 3445, 3457, 3468, 3478, 3489, 3499, 3511, 3522, 3532, 3543, 3553, 3565, 3576, 3586, 3597, 3606, 3616, 3627, 3636, 3646, 3658 } ; static yyconst short int yy_def[903] = { 0, 825, 825, 824, 3, 826, 826, 826, 826, 827, 827, 824, 824, 824, 828, 829, 830, 824, 831, 824, 824, 824, 824, 832, 833, 824, 824, 824, 824, 834, 834, 30, 30, 30, 835, 30, 30, 30, 30, 30, 30, 30, 30, 836, 824, 837, 824, 838, 838, 839, 839, 840, 824, 824, 824, 824, 828, 824, 828, 828, 828, 828, 828, 824, 829, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 831, 824, 824, 832, 824, 832, 824, 833, 824, 824, 824, 30, 30, 30, 30, 30, 835, 824, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 824, 841, 824, 842, 843, 824, 824, 824, 844, 824, 824, 824, 824, 824, 824, 828, 828, 828, 828, 824, 824, 824, 30, 30, 834, 30, 30, 30, 30, 30, 834, 30, 30, 30, 30, 30, 30, 30, 30, 30, 841, 842, 845, 846, 824, 824, 824, 824, 824, 828, 828, 828, 828, 828, 824, 30, 30, 824, 30, 30, 834, 824, 824, 30, 30, 30, 30, 30, 30, 30, 30, 847, 848, 824, 824, 824, 824, 824, 828, 828, 828, 828, 828, 824, 30, 30, 30, 834, 824, 167, 824, 824, 824, 824, 824, 824, 824, 824, 30, 30, 30, 30, 30, 834, 849, 850, 824, 824, 824, 824, 824, 828, 828, 828, 828, 828, 824, 30, 30, 30, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 30, 30, 30, 834, 824, 851, 852, 824, 824, 853, 828, 828, 854, 853, 30, 30, 30, 824, 824, 824, 824, 855, 824, 824, 824, 824, 824, 30, 30, 824, 856, 857, 824, 824, 858, 828, 828, 859, 824, 30, 30, 30, 824, 824, 824, 167, 824, 824, 824, 824, 834, 30, 860, 861, 824, 862, 824, 858, 828, 824, 828, 859, 824, 30, 30, 30, 824, 824, 824, 824, 824, 834, 863, 864, 824, 865, 865, 865, 865, 865, 865, 865, 865, 865, 824, 828, 866, 866, 322, 322, 322, 322, 322, 322, 322, 828, 824, 30, 30, 30, 824, 824, 824, 867, 868, 824, 869, 824, 824, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 824, 828, 870, 828, 828, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 828, 824, 30, 30, 30, 824, 824, 871, 872, 873, 824, 874, 824, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 824, 875, 828, 876, 828, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 828, 824, 30, 30, 30, 824, 824, 877, 878, 824, 873, 874, 879, 865, 865, 880, 865, 865, 865, 865, 865, 865, 828, 875, 876, 881, 322, 322, 824, 322, 322, 322, 322, 322, 322, 30, 824, 824, 882, 883, 824, 824, 824, 824, 879, 865, 865, 884, 884, 884, 884, 884, 884, 884, 884, 884, 865, 865, 865, 865, 828, 828, 828, 828, 881, 322, 322, 885, 885, 481, 481, 481, 481, 481, 481, 481, 322, 322, 322, 322, 824, 886, 824, 824, 887, 888, 824, 824, 824, 824, 865, 865, 824, 884, 824, 884, 884, 884, 884, 884, 884, 884, 884, 884, 889, 828, 828, 828, 828, 322, 322, 828, 481, 828, 481, 481, 481, 481, 481, 481, 481, 481, 481, 890, 824, 886, 886, 891, 824, 824, 892, 893, 824, 824, 865, 865, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 894, 828, 828, 322, 322, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 895, 824, 824, 891, 824, 824, 824, 824, 824, 824, 865, 865, 884, 884, 896, 884, 884, 884, 884, 897, 897, 894, 828, 828, 322, 322, 481, 481, 824, 481, 481, 481, 481, 898, 898, 895, 824, 824, 865, 865, 884, 884, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 884, 884, 897, 900, 900, 900, 897, 828, 828, 322, 322, 481, 481, 901, 901, 640, 640, 640, 640, 640, 640, 640, 640, 481, 481, 608, 902, 902, 653, 608, 824, 824, 865, 865, 884, 884, 824, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 824, 900, 824, 900, 900, 828, 828, 322, 322, 481, 481, 828, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 828, 653, 828, 653, 653, 824, 865, 865, 884, 884, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 900, 900, 828, 322, 322, 481, 481, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 653, 653, 865, 865, 884, 884, 899, 899, 899, 896, 899, 899, 899, 899, 900, 322, 322, 481, 481, 640, 640, 640, 602, 640, 640, 640, 640, 653, 884, 884, 899, 899, 899, 899, 899, 900, 481, 481, 640, 640, 640, 640, 640, 653, 884, 884, 899, 899, 899, 900, 481, 481, 640, 640, 640, 653, 884, 884, 899, 899, 481, 481, 640, 640, 884, 884, 899, 899, 481, 481, 640, 640, 899, 899, 640, 640, 899, 899, 640, 640, 899, 899, 640, 640, 899, 899, 640, 640, 0, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824 } ; static yyconst short int yy_nxt[3734] = { 0, 12, 12, 13, 14, 12, 15, 12, 12, 12, 12, 16, 17, 12, 12, 12, 43, 46, 46, 46, 50, 46, 51, 47, 47, 48, 44, 48, 50, 86, 51, 77, 77, 77, 77, 124, 12, 12, 12, 88, 86, 124, 86, 698, 52, 79, 89, 52, 57, 70, 57, 77, 77, 93, 86, 53, 54, 55, 53, 54, 55, 12, 12, 12, 12, 13, 14, 19, 15, 12, 12, 12, 12, 16, 17, 12, 12, 12, 80, 79, 119, 58, 135, 58, 71, 86, 64, 86, 86, 86, 59, 86, 686, 65, 118, 72, 73, 74, 12, 12, 12, 60, 61, 62, 66, 67, 68, 52, 94, 98, 96, 97, 80, 95, 104, 86, 86, 698, 53, 54, 76, 128, 129, 12, 12, 20, 21, 22, 23, 20, 24, 25, 25, 25, 25, 26, 27, 28, 28, 20, 29, 30, 29, 29, 31, 29, 32, 33, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 34, 20, 20, 29, 29, 35, 36, 29, 37, 29, 29, 29, 38, 39, 29, 29, 29, 40, 29, 41, 29, 42, 29, 29, 29, 25, 25, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 86, 85, 85, 85, 86, 86, 105, 130, 86, 86, 86, 86, 99, 57, 57, 57, 86, 124, 86, 86, 86, 124, 150, 132, 85, 85, 85, 86, 100, 101, 102, 163, 131, 139, 134, 57, 151, 160, 103, 133, 86, 136, 165, 57, 57, 137, 58, 58, 58, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 107, 85, 85, 85, 121, 120, 58, 116, 122, 117, 86, 86, 86, 86, 58, 58, 87, 155, 57, 57, 123, 161, 86, 86, 85, 85, 85, 86, 86, 140, 86, 156, 86, 143, 154, 86, 138, 86, 142, 86, 144, 86, 86, 141, 168, 86, 174, 360, 135, 85, 85, 58, 58, 135, 135, 86, 169, 164, 172, 57, 171, 175, 57, 158, 57, 170, 364, 157, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 57, 162, 162, 162, 86, 173, 86, 86, 86, 86, 86, 86, 86, 58, 57, 189, 58, 190, 58, 191, 183, 86, 204, 86, 162, 162, 162, 86, 205, 203, 86, 259, 206, 58, 57, 184, 57, 192, 185, 135, 186, 207, 57, 57, 57, 260, 208, 58, 140, 162, 162, 166, 167, 167, 166, 166, 166, 166, 166, 166, 166, 166, 187, 166, 166, 166, 86, 58, 222, 58, 86, 223, 224, 232, 233, 58, 58, 58, 235, 86, 217, 218, 86, 219, 216, 86, 166, 166, 166, 220, 86, 237, 244, 244, 86, 57, 86, 57, 57, 57, 135, 86, 247, 247, 57, 236, 248, 248, 267, 267, 262, 166, 166, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 135, 193, 193, 193, 58, 238, 58, 58, 58, 86, 698, 245, 249, 58, 246, 250, 86, 251, 245, 86, 235, 86, 244, 244, 193, 193, 193, 220, 57, 263, 270, 270, 57, 248, 248, 86, 86, 86, 300, 274, 86, 275, 280, 280, 276, 86, 86, 236, 360, 193, 193, 194, 194, 86, 267, 267, 332, 286, 290, 290, 86, 58, 291, 291, 444, 58, 195, 285, 298, 271, 297, 297, 196, 299, 289, 86, 291, 291, 86, 360, 86, 291, 291, 270, 270, 57, 373, 294, 294, 57, 197, 198, 273, 374, 86, 57, 319, 199, 200, 725, 360, 86, 365, 293, 201, 306, 202, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 58, 225, 225, 225, 58, 320, 363, 295, 295, 57, 58, 297, 297, 333, 341, 341, 360, 86, 86, 342, 360, 343, 360, 360, 225, 225, 225, 330, 375, 334, 491, 331, 86, 341, 341, 57, 341, 341, 342, 57, 343, 342, 58, 343, 366, 370, 57, 403, 360, 225, 225, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 345, 239, 239, 239, 341, 341, 58, 405, 356, 342, 58, 343, 371, 341, 341, 360, 360, 58, 342, 402, 343, 347, 341, 341, 239, 239, 239, 342, 135, 343, 346, 341, 341, 360, 367, 368, 342, 86, 343, 341, 341, 381, 381, 369, 342, 404, 343, 360, 382, 239, 239, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 349, 264, 264, 264, 360, 348, 341, 341, 406, 383, 383, 342, 686, 343, 342, 360, 360, 360, 415, 350, 360, 86, 351, 352, 264, 264, 264, 341, 341, 636, 410, 353, 342, 408, 343, 341, 341, 360, 341, 341, 342, 407, 343, 342, 405, 343, 405, 409, 360, 264, 264, 56, 247, 247, 57, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 341, 341, 447, 416, 360, 342, 86, 343, 341, 341, 354, 417, 86, 342, 439, 343, 391, 360, 341, 341, 56, 58, 56, 342, 411, 343, 384, 341, 341, 360, 392, 412, 342, 440, 343, 341, 341, 385, 422, 422, 342, 702, 343, 424, 424, 56, 56, 56, 295, 295, 57, 56, 56, 56, 56, 56, 56, 56, 360, 56, 56, 56, 398, 398, 57, 387, 688, 57, 386, 399, 360, 341, 341, 360, 341, 341, 342, 360, 343, 342, 360, 343, 56, 58, 56, 341, 341, 445, 405, 388, 342, 657, 343, 448, 341, 341, 443, 58, 413, 342, 58, 343, 86, 442, 446, 422, 422, 56, 56, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 389, 305, 305, 305, 390, 400, 400, 57, 381, 381, 358, 383, 383, 360, 57, 382, 342, 393, 441, 441, 394, 398, 398, 57, 305, 305, 305, 395, 399, 86, 341, 341, 686, 135, 727, 342, 492, 343, 341, 341, 58, 341, 341, 342, 360, 343, 342, 58, 343, 305, 305, 290, 290, 426, 428, 428, 58, 341, 341, 342, 360, 343, 342, 360, 343, 360, 311, 360, 427, 422, 422, 478, 312, 360, 453, 424, 424, 455, 455, 489, 360, 360, 525, 456, 479, 408, 523, 360, 388, 656, 313, 314, 490, 405, 455, 455, 454, 315, 316, 562, 456, 388, 405, 360, 317, 531, 318, 56, 294, 294, 57, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 321, 322, 321, 321, 321, 321, 321, 323, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 56, 58, 56, 321, 321, 324, 325, 321, 321, 321, 321, 321, 326, 327, 321, 321, 321, 321, 321, 328, 321, 329, 321, 321, 321, 56, 56, 56, 295, 295, 57, 56, 56, 56, 56, 56, 56, 56, 635, 56, 56, 56, 400, 400, 57, 360, 522, 358, 341, 341, 57, 341, 341, 342, 525, 343, 342, 360, 343, 525, 341, 341, 56, 58, 56, 342, 525, 343, 341, 341, 563, 341, 341, 342, 360, 343, 342, 58, 343, 341, 341, 573, 535, 58, 342, 530, 343, 56, 56, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 388, 337, 337, 337, 341, 341, 432, 505, 505, 342, 525, 343, 429, 431, 341, 341, 525, 430, 507, 342, 525, 343, 505, 505, 337, 337, 337, 341, 341, 433, 341, 341, 342, 507, 343, 342, 568, 343, 341, 341, 529, 458, 360, 342, 532, 343, 598, 360, 508, 337, 337, 56, 357, 357, 57, 56, 56, 358, 56, 359, 56, 56, 525, 56, 56, 56, 360, 459, 388, 341, 341, 455, 455, 434, 342, 405, 343, 456, 537, 537, 469, 533, 534, 538, 341, 341, 56, 58, 56, 342, 611, 343, 341, 341, 492, 341, 341, 342, 599, 343, 342, 57, 343, 435, 435, 57, 470, 360, 473, 536, 536, 56, 56, 56, 357, 357, 57, 56, 56, 358, 56, 359, 56, 56, 471, 56, 56, 56, 493, 493, 474, 500, 500, 494, 58, 360, 501, 525, 58, 391, 361, 472, 539, 539, 505, 505, 341, 341, 56, 58, 56, 342, 610, 343, 86, 507, 505, 505, 502, 341, 341, 503, 525, 603, 342, 565, 343, 507, 539, 539, 509, 525, 57, 56, 56, 56, 357, 357, 57, 56, 56, 358, 56, 359, 56, 56, 56, 56, 56, 56, 57, 504, 341, 341, 569, 517, 517, 342, 560, 343, 342, 57, 343, 505, 505, 58, 510, 505, 505, 256, 56, 58, 56, 518, 507, 505, 505, 525, 507, 505, 505, 505, 505, 58, 341, 341, 507, 525, 637, 342, 507, 343, 507, 388, 58, 56, 56, 56, 435, 435, 57, 56, 56, 56, 56, 56, 56, 56, 511, 56, 56, 56, 475, 475, 57, 568, 512, 525, 476, 519, 519, 57, 539, 539, 520, 513, 514, 515, 516, 567, 341, 341, 56, 58, 56, 342, 772, 343, 388, 505, 505, 505, 505, 525, 505, 505, 521, 58, 500, 500, 507, 525, 507, 501, 58, 507, 525, 56, 56, 56, 437, 437, 57, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 525, 502, 341, 341, 601, 568, 566, 342, 552, 343, 472, 341, 341, 525, 505, 505, 342, 551, 343, 453, 56, 58, 56, 600, 547, 507, 525, 505, 505, 505, 505, 505, 505, 548, 752, 360, 525, 570, 507, 57, 507, 454, 507, 57, 256, 56, 56, 428, 428, 505, 505, 561, 342, 549, 343, 596, 517, 517, 550, 604, 507, 342, 461, 343, 505, 505, 537, 537, 462, 505, 505, 538, 58, 575, 575, 507, 58, 505, 505, 576, 507, 505, 505, 525, 525, 553, 463, 464, 507, 721, 588, 588, 507, 465, 466, 638, 583, 360, 554, 605, 467, 507, 468, 56, 435, 435, 57, 56, 56, 56, 56, 56, 56, 56, 555, 56, 56, 56, 519, 519, 57, 556, 558, 520, 525, 524, 524, 57, 553, 525, 473, 525, 505, 505, 525, 557, 526, 681, 56, 58, 56, 360, 571, 507, 568, 521, 686, 505, 505, 568, 341, 341, 474, 58, 606, 342, 572, 343, 507, 57, 58, 730, 587, 56, 56, 56, 437, 437, 57, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 584, 341, 341, 505, 505, 597, 342, 525, 343, 575, 575, 57, 58, 686, 507, 576, 505, 505, 585, 553, 56, 58, 56, 505, 505, 571, 586, 507, 505, 505, 505, 505, 505, 505, 507, 593, 593, 525, 679, 507, 735, 507, 594, 507, 58, 56, 56, 56, 475, 475, 57, 56, 56, 56, 476, 56, 56, 56, 568, 56, 56, 56, 602, 602, 575, 575, 582, 553, 589, 57, 576, 525, 591, 686, 341, 341, 722, 590, 592, 342, 360, 343, 56, 58, 56, 341, 341, 649, 525, 525, 342, 633, 343, 612, 632, 632, 692, 593, 593, 824, 650, 824, 58, 613, 594, 791, 698, 56, 56, 56, 441, 441, 57, 56, 56, 358, 56, 359, 56, 56, 56, 56, 56, 56, 480, 481, 480, 480, 480, 480, 480, 482, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 56, 58, 56, 480, 480, 483, 484, 480, 480, 480, 480, 480, 485, 486, 480, 480, 480, 480, 480, 487, 480, 488, 480, 480, 480, 56, 56, 56, 475, 475, 57, 56, 56, 56, 476, 56, 56, 56, 689, 56, 56, 56, 505, 505, 505, 505, 505, 505, 505, 505, 686, 341, 341, 507, 686, 507, 342, 507, 343, 507, 505, 505, 56, 58, 56, 505, 505, 505, 505, 662, 662, 507, 57, 658, 762, 360, 507, 525, 507, 614, 507, 615, 660, 684, 634, 627, 682, 56, 56, 56, 524, 524, 57, 56, 56, 56, 56, 56, 56, 56, 553, 526, 56, 56, 556, 58, 683, 626, 628, 628, 686, 341, 341, 453, 686, 594, 342, 525, 343, 723, 701, 662, 662, 525, 56, 58, 56, 579, 630, 691, 505, 505, 507, 662, 662, 631, 698, 696, 632, 632, 578, 507, 57, 824, 507, 824, 686, 664, 659, 56, 56, 56, 524, 524, 57, 56, 56, 56, 56, 56, 56, 56, 661, 526, 56, 56, 662, 662, 662, 662, 690, 686, 724, 525, 726, 58, 525, 507, 527, 507, 662, 662, 666, 667, 662, 662, 56, 58, 56, 662, 662, 507, 665, 505, 505, 507, 662, 662, 662, 662, 507, 568, 698, 810, 507, 736, 737, 507, 698, 507, 686, 56, 56, 56, 536, 536, 57, 56, 56, 358, 56, 359, 56, 56, 56, 56, 56, 56, 686, 668, 670, 686, 505, 505, 553, 57, 57, 773, 669, 628, 628, 671, 672, 507, 453, 525, 594, 673, 56, 58, 56, 674, 674, 674, 674, 693, 730, 680, 686, 630, 674, 674, 676, 720, 676, 564, 631, 678, 58, 58, 729, 676, 686, 56, 56, 56, 607, 607, 57, 56, 56, 56, 56, 608, 56, 56, 553, 56, 56, 56, 677, 694, 695, 651, 651, 57, 341, 341, 473, 686, 608, 342, 686, 343, 505, 505, 686, 686, 505, 505, 56, 58, 56, 653, 703, 507, 57, 341, 341, 507, 654, 796, 342, 728, 343, 731, 705, 730, 58, 525, 706, 732, 662, 662, 525, 56, 56, 588, 588, 704, 662, 662, 453, 507, 662, 662, 662, 662, 507, 58, 751, 507, 617, 360, 686, 507, 755, 507, 618, 686, 662, 662, 674, 674, 619, 525, 686, 674, 674, 753, 707, 507, 733, 676, 546, 708, 620, 621, 676, 811, 745, 745, 761, 622, 623, 686, 734, 686, 709, 756, 624, 507, 625, 56, 602, 602, 57, 56, 56, 473, 56, 56, 56, 56, 56, 526, 56, 56, 639, 640, 639, 639, 639, 639, 639, 641, 639, 639, 639, 639, 639, 642, 639, 639, 639, 639, 639, 639, 56, 58, 56, 639, 639, 643, 644, 639, 639, 639, 639, 639, 645, 646, 639, 639, 639, 639, 639, 647, 639, 648, 639, 639, 639, 56, 56, 56, 651, 651, 57, 56, 56, 473, 56, 608, 56, 56, 56, 56, 56, 56, 662, 662, 763, 754, 545, 776, 653, 686, 662, 662, 686, 507, 525, 654, 662, 662, 662, 662, 698, 507, 56, 58, 56, 662, 662, 507, 686, 507, 662, 662, 674, 674, 662, 662, 507, 542, 730, 686, 711, 507, 790, 676, 541, 507, 730, 56, 56, 56, 655, 655, 57, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 712, 718, 710, 713, 674, 674, 685, 685, 57, 405, 715, 714, 360, 757, 686, 676, 405, 526, 360, 686, 56, 58, 56, 717, 716, 686, 528, 697, 697, 57, 774, 499, 719, 662, 662, 341, 341, 760, 699, 686, 342, 58, 343, 686, 507, 56, 56, 56, 607, 607, 57, 56, 56, 56, 56, 608, 56, 56, 738, 56, 56, 56, 58, 341, 341, 505, 505, 730, 342, 759, 343, 779, 758, 758, 505, 505, 507, 698, 662, 662, 712, 686, 56, 58, 56, 507, 662, 662, 739, 507, 686, 741, 662, 662, 686, 740, 686, 507, 686, 733, 744, 742, 789, 507, 496, 775, 777, 56, 56, 56, 685, 685, 57, 56, 56, 56, 56, 56, 56, 56, 495, 526, 56, 56, 662, 662, 804, 805, 525, 525, 662, 662, 674, 674, 450, 507, 712, 662, 662, 662, 662, 507, 686, 676, 56, 58, 56, 449, 507, 419, 507, 662, 662, 778, 743, 662, 662, 662, 662, 786, 341, 341, 507, 525, 418, 342, 507, 343, 507, 56, 56, 56, 685, 685, 57, 56, 56, 56, 56, 56, 56, 56, 712, 526, 56, 56, 674, 674, 747, 746, 388, 505, 505, 748, 766, 797, 686, 676, 687, 525, 750, 749, 507, 414, 341, 341, 56, 58, 56, 342, 764, 343, 505, 505, 662, 662, 525, 662, 662, 401, 807, 388, 798, 507, 730, 507, 686, 787, 507, 686, 765, 56, 56, 56, 697, 697, 57, 56, 56, 56, 56, 56, 56, 56, 360, 699, 56, 56, 662, 662, 788, 767, 662, 662, 799, 758, 758, 396, 686, 507, 56, 686, 377, 507, 662, 662, 662, 662, 56, 58, 56, 712, 768, 662, 662, 507, 376, 507, 568, 505, 505, 686, 639, 818, 507, 806, 372, 525, 782, 770, 507, 686, 362, 56, 56, 56, 697, 697, 57, 56, 56, 56, 56, 56, 56, 56, 769, 699, 56, 56, 715, 674, 674, 355, 505, 505, 781, 662, 662, 823, 686, 340, 676, 662, 662, 507, 700, 256, 507, 525, 56, 58, 56, 568, 507, 771, 780, 662, 662, 662, 662, 814, 674, 674, 256, 686, 336, 819, 507, 783, 507, 686, 784, 676, 335, 56, 56, 745, 745, 505, 505, 309, 824, 505, 505, 662, 662, 259, 507, 686, 507, 785, 617, 730, 507, 686, 507, 792, 618, 304, 712, 662, 662, 662, 662, 793, 815, 794, 674, 674, 822, 712, 507, 686, 507, 303, 620, 621, 256, 676, 505, 505, 302, 622, 623, 795, 505, 505, 662, 662, 624, 507, 625, 662, 662, 505, 505, 507, 730, 507, 301, 284, 283, 800, 507, 282, 507, 686, 505, 505, 803, 801, 553, 662, 662, 662, 662, 281, 802, 507, 662, 662, 256, 256, 507, 256, 507, 278, 662, 662, 277, 507, 808, 809, 662, 662, 662, 662, 553, 507, 662, 662, 812, 662, 662, 507, 268, 507, 261, 662, 662, 507, 816, 258, 507, 257, 662, 662, 817, 256, 507, 255, 254, 820, 253, 813, 712, 507, 821, 252, 243, 215, 242, 242, 234, 231, 230, 229, 228, 227, 226, 221, 215, 214, 213, 212, 712, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 75, 211, 75, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 188, 91, 106, 182, 181, 180, 179, 178, 106, 159, 106, 109, 109, 153, 109, 109, 109, 152, 109, 109, 109, 109, 109, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 113, 113, 113, 149, 113, 113, 113, 113, 113, 113, 113, 113, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 145, 92, 145, 146, 146, 127, 146, 146, 146, 146, 146, 146, 146, 146, 146, 147, 147, 86, 147, 147, 147, 84, 147, 147, 147, 147, 147, 148, 148, 148, 824, 148, 148, 148, 148, 148, 148, 148, 148, 176, 176, 126, 176, 176, 176, 824, 176, 176, 176, 176, 176, 177, 177, 177, 125, 177, 177, 177, 177, 177, 177, 177, 177, 209, 209, 119, 209, 209, 209, 118, 209, 209, 209, 209, 209, 210, 210, 210, 117, 210, 210, 210, 210, 210, 210, 210, 210, 240, 240, 116, 240, 240, 240, 824, 240, 240, 240, 240, 240, 241, 241, 241, 124, 241, 241, 241, 241, 241, 241, 241, 241, 265, 265, 119, 265, 265, 265, 118, 265, 265, 265, 265, 265, 266, 266, 266, 117, 266, 266, 266, 266, 266, 266, 266, 266, 269, 269, 116, 115, 112, 111, 108, 92, 269, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 279, 279, 279, 279, 279, 279, 279, 90, 279, 84, 279, 279, 287, 287, 83, 287, 287, 287, 82, 287, 287, 287, 287, 287, 288, 288, 288, 824, 288, 288, 288, 288, 288, 288, 288, 288, 292, 292, 824, 824, 824, 824, 292, 824, 292, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 307, 307, 824, 307, 307, 307, 824, 307, 307, 307, 307, 307, 308, 308, 308, 824, 308, 308, 308, 308, 308, 308, 308, 308, 310, 310, 824, 824, 824, 824, 824, 824, 310, 338, 338, 824, 338, 338, 338, 824, 338, 338, 338, 338, 338, 339, 339, 339, 824, 339, 339, 339, 339, 339, 339, 339, 339, 344, 344, 824, 344, 824, 344, 344, 824, 344, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 378, 378, 824, 378, 378, 378, 824, 378, 378, 378, 378, 378, 379, 379, 379, 824, 379, 379, 379, 379, 379, 379, 379, 379, 380, 380, 824, 380, 824, 380, 824, 824, 380, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 420, 420, 824, 420, 420, 420, 824, 420, 420, 420, 420, 420, 421, 421, 421, 824, 421, 421, 421, 421, 421, 421, 421, 421, 423, 423, 824, 824, 824, 824, 423, 824, 423, 425, 425, 824, 824, 824, 824, 824, 824, 425, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 451, 451, 824, 451, 451, 451, 824, 451, 451, 451, 451, 451, 452, 452, 452, 824, 452, 452, 452, 452, 452, 452, 452, 452, 457, 457, 824, 824, 457, 824, 457, 824, 457, 460, 460, 824, 460, 824, 460, 824, 824, 460, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 497, 497, 824, 497, 497, 497, 824, 497, 497, 497, 497, 497, 498, 498, 498, 824, 498, 498, 498, 498, 498, 498, 498, 498, 506, 506, 824, 824, 824, 824, 506, 506, 506, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 525, 540, 540, 824, 824, 824, 824, 824, 824, 540, 543, 543, 824, 543, 543, 543, 824, 543, 543, 543, 543, 543, 544, 544, 544, 824, 544, 544, 544, 544, 544, 544, 544, 544, 559, 559, 824, 559, 824, 559, 824, 824, 559, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 577, 577, 824, 824, 577, 824, 577, 824, 577, 580, 580, 824, 580, 580, 580, 824, 580, 580, 580, 580, 580, 581, 581, 581, 824, 581, 581, 581, 581, 581, 581, 581, 581, 595, 595, 824, 824, 824, 595, 595, 824, 595, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 616, 616, 824, 616, 824, 824, 824, 616, 616, 629, 629, 824, 629, 824, 629, 824, 824, 629, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 663, 663, 824, 824, 824, 824, 663, 663, 663, 675, 675, 824, 824, 824, 824, 675, 675, 675, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 686, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 698, 11, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824 } ; static yyconst short int yy_chk[3734] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 5, 6, 7, 9, 8, 9, 5, 6, 7, 4, 8, 10, 35, 10, 21, 21, 22, 22, 68, 1, 1, 1, 31, 31, 67, 32, 791, 12, 23, 32, 13, 56, 16, 14, 77, 77, 35, 97, 12, 12, 12, 13, 13, 13, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 23, 78, 68, 56, 97, 14, 16, 39, 15, 37, 38, 36, 14, 42, 790, 15, 67, 16, 16, 16, 2, 2, 2, 14, 14, 14, 15, 15, 15, 19, 36, 39, 37, 38, 78, 36, 42, 89, 88, 736, 19, 19, 19, 88, 89, 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, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 40, 29, 29, 29, 90, 96, 43, 90, 93, 101, 41, 94, 40, 59, 60, 61, 95, 65, 98, 99, 134, 66, 117, 94, 29, 29, 29, 130, 40, 41, 41, 130, 93, 101, 96, 62, 117, 127, 41, 95, 127, 98, 134, 121, 120, 99, 59, 60, 61, 29, 29, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 43, 30, 30, 30, 60, 59, 62, 65, 61, 66, 100, 102, 103, 104, 121, 120, 30, 121, 122, 123, 62, 128, 143, 128, 30, 30, 30, 131, 132, 102, 133, 121, 137, 104, 120, 136, 100, 140, 103, 139, 104, 144, 141, 102, 137, 138, 143, 325, 131, 30, 30, 122, 123, 136, 132, 142, 138, 133, 141, 154, 140, 144, 155, 123, 156, 139, 325, 122, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 157, 129, 129, 129, 160, 142, 161, 168, 163, 164, 169, 170, 171, 154, 158, 160, 155, 161, 156, 163, 154, 172, 169, 174, 129, 129, 129, 173, 171, 168, 175, 233, 172, 157, 183, 155, 184, 164, 156, 170, 157, 173, 187, 185, 186, 233, 174, 158, 175, 129, 129, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 158, 135, 135, 135, 191, 183, 189, 184, 204, 190, 191, 201, 201, 187, 185, 186, 203, 189, 184, 185, 190, 186, 183, 205, 135, 135, 135, 187, 236, 204, 215, 215, 203, 216, 206, 217, 219, 218, 205, 207, 220, 220, 220, 203, 221, 221, 242, 242, 236, 135, 135, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 206, 165, 165, 165, 216, 207, 217, 219, 218, 237, 698, 217, 222, 220, 219, 223, 222, 224, 216, 223, 235, 224, 244, 244, 165, 165, 165, 218, 246, 237, 245, 245, 245, 248, 248, 249, 235, 250, 276, 249, 262, 250, 256, 256, 251, 263, 276, 235, 409, 165, 165, 167, 167, 251, 267, 267, 298, 263, 268, 268, 298, 246, 269, 269, 409, 245, 167, 262, 274, 246, 273, 273, 167, 275, 267, 274, 291, 291, 286, 326, 275, 292, 292, 270, 270, 270, 332, 271, 271, 271, 167, 167, 248, 333, 332, 293, 291, 167, 167, 687, 324, 333, 326, 270, 167, 286, 167, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 270, 192, 192, 192, 271, 293, 324, 295, 295, 295, 293, 297, 297, 299, 310, 310, 445, 299, 300, 310, 327, 310, 329, 363, 192, 192, 192, 295, 334, 300, 445, 297, 334, 313, 313, 356, 311, 311, 313, 320, 313, 311, 295, 311, 327, 329, 330, 363, 403, 192, 192, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 311, 208, 208, 208, 312, 312, 356, 403, 320, 312, 320, 312, 330, 315, 315, 328, 362, 330, 315, 362, 315, 313, 314, 314, 208, 208, 208, 314, 415, 314, 312, 316, 316, 364, 328, 328, 316, 415, 316, 317, 317, 342, 342, 328, 317, 364, 317, 366, 342, 208, 208, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 238, 315, 238, 238, 238, 369, 314, 341, 341, 366, 343, 343, 341, 686, 341, 343, 368, 365, 367, 373, 316, 404, 373, 317, 317, 238, 238, 238, 318, 318, 599, 369, 317, 318, 368, 318, 344, 344, 599, 352, 352, 344, 367, 344, 352, 365, 352, 404, 368, 412, 238, 238, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 345, 345, 412, 374, 370, 345, 374, 345, 346, 346, 318, 375, 375, 346, 401, 346, 352, 401, 347, 347, 247, 247, 247, 347, 370, 347, 345, 348, 348, 402, 352, 370, 348, 402, 348, 349, 349, 346, 380, 380, 349, 657, 349, 382, 382, 247, 247, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 410, 272, 272, 272, 358, 358, 358, 348, 641, 371, 347, 358, 406, 350, 350, 408, 351, 351, 350, 407, 350, 351, 411, 351, 272, 272, 272, 353, 353, 410, 406, 349, 353, 611, 353, 416, 354, 354, 408, 358, 371, 354, 371, 354, 416, 407, 411, 423, 423, 272, 272, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 350, 285, 285, 285, 351, 359, 359, 359, 381, 381, 359, 383, 383, 446, 413, 381, 383, 353, 405, 405, 354, 398, 398, 398, 285, 285, 285, 354, 398, 417, 384, 384, 689, 417, 689, 384, 446, 384, 385, 385, 359, 386, 386, 385, 405, 385, 386, 413, 386, 285, 285, 290, 290, 384, 388, 388, 398, 389, 389, 388, 439, 388, 389, 443, 389, 442, 290, 447, 385, 422, 422, 439, 290, 440, 422, 424, 424, 425, 425, 443, 479, 444, 485, 425, 440, 447, 479, 489, 386, 610, 290, 290, 444, 442, 455, 455, 422, 290, 290, 522, 455, 389, 489, 522, 290, 485, 290, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 598, 296, 296, 296, 400, 400, 400, 598, 478, 400, 387, 387, 473, 393, 393, 387, 535, 387, 393, 478, 393, 488, 390, 390, 296, 296, 296, 390, 484, 390, 391, 391, 523, 392, 392, 391, 523, 391, 392, 400, 392, 394, 394, 535, 488, 473, 394, 484, 394, 296, 296, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 387, 306, 306, 306, 426, 426, 393, 460, 460, 426, 567, 426, 390, 392, 429, 429, 483, 391, 460, 429, 486, 429, 461, 461, 306, 306, 306, 395, 395, 394, 427, 427, 395, 461, 395, 427, 567, 427, 430, 430, 483, 426, 562, 430, 486, 430, 562, 490, 461, 306, 306, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 487, 321, 321, 321, 491, 427, 429, 431, 431, 457, 457, 395, 431, 490, 431, 457, 493, 493, 430, 487, 487, 493, 432, 432, 321, 321, 321, 432, 583, 432, 433, 433, 491, 434, 434, 433, 563, 433, 434, 520, 434, 435, 435, 435, 431, 563, 435, 492, 492, 321, 321, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 432, 322, 322, 322, 448, 448, 435, 456, 456, 448, 520, 492, 456, 570, 435, 434, 322, 433, 494, 494, 462, 462, 458, 458, 322, 322, 322, 458, 582, 458, 448, 462, 463, 463, 456, 459, 459, 458, 528, 570, 459, 528, 459, 463, 538, 538, 462, 532, 518, 322, 322, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 526, 459, 469, 469, 532, 472, 472, 469, 518, 469, 472, 474, 472, 464, 464, 518, 463, 465, 465, 579, 357, 357, 357, 474, 464, 466, 466, 600, 465, 468, 468, 467, 467, 526, 470, 470, 466, 531, 600, 470, 468, 470, 467, 469, 474, 357, 357, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 464, 397, 397, 397, 475, 475, 475, 531, 465, 530, 475, 476, 476, 476, 539, 539, 476, 466, 467, 467, 468, 530, 471, 471, 397, 397, 397, 471, 753, 471, 470, 506, 506, 510, 510, 753, 511, 511, 476, 475, 500, 500, 506, 603, 510, 500, 476, 511, 529, 397, 397, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, 565, 500, 503, 503, 565, 603, 529, 503, 511, 503, 471, 504, 504, 533, 505, 505, 504, 510, 504, 505, 399, 399, 399, 564, 503, 505, 564, 508, 508, 509, 509, 512, 512, 504, 722, 722, 571, 533, 508, 521, 509, 505, 512, 560, 578, 399, 399, 428, 428, 513, 513, 521, 428, 508, 428, 560, 517, 517, 509, 571, 513, 517, 428, 517, 514, 514, 537, 537, 428, 516, 516, 537, 521, 540, 540, 514, 560, 515, 515, 540, 516, 551, 551, 572, 601, 512, 428, 428, 515, 681, 553, 553, 551, 428, 428, 601, 546, 681, 513, 572, 428, 553, 428, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 514, 436, 436, 436, 519, 519, 519, 515, 516, 519, 534, 524, 524, 524, 551, 649, 524, 569, 550, 550, 573, 515, 524, 635, 436, 436, 436, 635, 534, 550, 649, 519, 777, 552, 552, 569, 547, 547, 524, 519, 573, 547, 534, 547, 552, 561, 524, 777, 550, 436, 436, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 547, 548, 548, 549, 549, 561, 548, 606, 548, 575, 575, 633, 561, 696, 549, 575, 555, 555, 548, 552, 437, 437, 437, 554, 554, 606, 549, 555, 556, 556, 557, 557, 558, 558, 554, 559, 559, 566, 633, 556, 696, 557, 559, 558, 633, 437, 437, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 566, 438, 438, 438, 568, 568, 577, 577, 545, 554, 555, 596, 577, 604, 557, 645, 584, 584, 682, 556, 558, 584, 682, 584, 438, 438, 438, 585, 585, 604, 568, 605, 585, 596, 585, 584, 594, 594, 645, 595, 595, 594, 605, 594, 596, 585, 595, 779, 779, 438, 438, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 477, 642, 477, 477, 477, 586, 586, 587, 587, 589, 589, 591, 591, 642, 612, 612, 586, 735, 587, 612, 589, 612, 591, 592, 592, 477, 477, 477, 590, 590, 614, 614, 616, 616, 592, 597, 612, 735, 636, 590, 638, 614, 586, 616, 587, 614, 638, 597, 591, 636, 477, 477, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 480, 589, 480, 480, 480, 592, 597, 637, 590, 593, 593, 644, 613, 613, 593, 648, 593, 613, 637, 613, 683, 654, 617, 617, 683, 480, 480, 480, 542, 593, 644, 615, 615, 617, 620, 620, 593, 654, 648, 632, 632, 541, 615, 679, 632, 620, 632, 643, 617, 613, 480, 480, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 615, 481, 481, 481, 618, 618, 619, 619, 643, 688, 684, 650, 688, 679, 684, 618, 481, 619, 623, 623, 619, 620, 621, 621, 481, 481, 481, 622, 622, 623, 618, 626, 626, 621, 624, 624, 625, 625, 622, 650, 700, 806, 626, 700, 701, 624, 701, 625, 806, 481, 481, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 692, 621, 623, 646, 627, 627, 626, 634, 680, 754, 622, 628, 628, 624, 624, 627, 628, 754, 628, 625, 536, 536, 536, 629, 629, 631, 631, 646, 692, 634, 691, 628, 630, 630, 629, 680, 631, 527, 628, 631, 634, 680, 691, 630, 647, 536, 536, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 574, 627, 574, 574, 574, 630, 647, 647, 651, 651, 699, 658, 658, 651, 690, 651, 658, 693, 658, 660, 660, 728, 694, 661, 661, 574, 574, 574, 651, 658, 660, 720, 659, 659, 661, 651, 786, 659, 690, 659, 693, 660, 728, 699, 786, 661, 694, 662, 662, 525, 574, 574, 588, 588, 659, 663, 663, 588, 662, 664, 664, 665, 665, 588, 720, 721, 663, 588, 721, 695, 664, 725, 665, 588, 725, 666, 666, 674, 674, 588, 723, 734, 675, 675, 723, 664, 666, 695, 674, 502, 665, 588, 588, 675, 807, 712, 712, 734, 588, 588, 726, 695, 807, 666, 726, 588, 712, 588, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 668, 668, 737, 724, 499, 757, 607, 757, 669, 669, 729, 668, 724, 607, 667, 667, 670, 670, 737, 669, 607, 607, 607, 671, 671, 667, 731, 670, 672, 672, 677, 677, 673, 673, 671, 496, 729, 776, 668, 672, 776, 677, 495, 673, 731, 607, 607, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 669, 677, 667, 670, 678, 678, 685, 685, 685, 751, 672, 671, 752, 727, 733, 678, 752, 685, 751, 755, 608, 608, 608, 673, 672, 727, 482, 697, 697, 697, 755, 454, 678, 710, 710, 703, 703, 733, 697, 759, 703, 685, 703, 732, 710, 608, 608, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 609, 703, 609, 609, 609, 697, 704, 704, 705, 705, 759, 704, 732, 704, 763, 730, 730, 706, 706, 705, 763, 707, 707, 710, 762, 609, 609, 609, 706, 709, 709, 704, 707, 760, 706, 713, 713, 756, 705, 775, 709, 730, 762, 709, 707, 775, 713, 450, 756, 760, 609, 609, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 449, 639, 639, 639, 708, 708, 796, 797, 797, 796, 711, 711, 718, 718, 419, 708, 713, 714, 714, 715, 715, 711, 761, 718, 639, 639, 639, 418, 714, 377, 715, 716, 716, 761, 708, 717, 717, 742, 742, 772, 739, 739, 716, 772, 376, 739, 717, 739, 742, 639, 639, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 711, 640, 640, 640, 719, 719, 715, 714, 739, 740, 740, 716, 742, 787, 778, 719, 640, 787, 719, 717, 740, 372, 738, 738, 640, 640, 640, 738, 740, 738, 741, 741, 743, 743, 773, 746, 746, 361, 799, 738, 788, 741, 778, 743, 788, 773, 746, 799, 741, 640, 640, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 652, 360, 652, 652, 652, 744, 744, 774, 743, 748, 748, 789, 758, 758, 355, 789, 744, 758, 774, 336, 748, 747, 747, 749, 749, 652, 652, 652, 746, 744, 766, 766, 747, 335, 749, 804, 765, 765, 798, 758, 814, 766, 798, 331, 804, 766, 748, 765, 814, 323, 652, 652, 653, 653, 653, 653, 653, 653, 653, 653, 653, 653, 653, 747, 653, 653, 653, 749, 750, 750, 319, 764, 764, 765, 767, 767, 819, 819, 309, 750, 768, 768, 764, 653, 304, 767, 805, 653, 653, 653, 805, 768, 750, 764, 770, 770, 769, 769, 810, 771, 771, 303, 810, 302, 815, 770, 767, 769, 815, 768, 771, 301, 653, 653, 745, 745, 780, 780, 289, 745, 781, 781, 782, 782, 284, 745, 823, 780, 771, 745, 823, 781, 811, 782, 780, 745, 283, 769, 784, 784, 783, 783, 781, 811, 782, 785, 785, 818, 770, 784, 818, 783, 282, 745, 745, 281, 785, 792, 792, 278, 745, 745, 783, 793, 793, 794, 794, 745, 792, 745, 795, 795, 800, 800, 793, 822, 794, 277, 261, 260, 792, 795, 259, 800, 822, 801, 801, 795, 793, 800, 802, 802, 803, 803, 258, 794, 801, 808, 808, 257, 255, 802, 254, 803, 253, 809, 809, 252, 808, 802, 803, 812, 812, 813, 813, 801, 809, 816, 816, 808, 817, 817, 812, 243, 813, 234, 820, 820, 816, 812, 232, 817, 231, 821, 821, 813, 230, 820, 229, 228, 816, 227, 809, 820, 821, 817, 226, 214, 213, 212, 211, 202, 200, 199, 198, 197, 196, 195, 188, 182, 181, 180, 179, 821, 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 826, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 828, 828, 828, 828, 828, 828, 828, 828, 828, 828, 828, 828, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 830, 830, 830, 830, 830, 830, 830, 830, 830, 830, 830, 830, 831, 178, 831, 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, 832, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 159, 835, 836, 153, 152, 151, 150, 149, 836, 125, 836, 837, 837, 119, 837, 837, 837, 118, 837, 837, 837, 837, 837, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 839, 839, 839, 116, 839, 839, 839, 839, 839, 839, 839, 839, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, 841, 91, 841, 842, 842, 87, 842, 842, 842, 842, 842, 842, 842, 842, 842, 843, 843, 86, 843, 843, 843, 84, 843, 843, 843, 843, 843, 844, 844, 844, 82, 844, 844, 844, 844, 844, 844, 844, 844, 845, 845, 81, 845, 845, 845, 80, 845, 845, 845, 845, 845, 846, 846, 846, 76, 846, 846, 846, 846, 846, 846, 846, 846, 847, 847, 74, 847, 847, 847, 73, 847, 847, 847, 847, 847, 848, 848, 848, 72, 848, 848, 848, 848, 848, 848, 848, 848, 849, 849, 71, 849, 849, 849, 64, 849, 849, 849, 849, 849, 850, 850, 850, 63, 850, 850, 850, 850, 850, 850, 850, 850, 851, 851, 55, 851, 851, 851, 54, 851, 851, 851, 851, 851, 852, 852, 852, 53, 852, 852, 852, 852, 852, 852, 852, 852, 853, 853, 52, 51, 48, 47, 44, 34, 853, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 855, 855, 855, 855, 855, 855, 855, 33, 855, 27, 855, 855, 856, 856, 26, 856, 856, 856, 24, 856, 856, 856, 856, 856, 857, 857, 857, 11, 857, 857, 857, 857, 857, 857, 857, 857, 858, 858, 0, 0, 0, 0, 858, 0, 858, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 860, 860, 0, 860, 860, 860, 0, 860, 860, 860, 860, 860, 861, 861, 861, 0, 861, 861, 861, 861, 861, 861, 861, 861, 862, 862, 0, 0, 0, 0, 0, 0, 862, 863, 863, 0, 863, 863, 863, 0, 863, 863, 863, 863, 863, 864, 864, 864, 0, 864, 864, 864, 864, 864, 864, 864, 864, 865, 865, 0, 865, 0, 865, 865, 0, 865, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 867, 867, 0, 867, 867, 867, 0, 867, 867, 867, 867, 867, 868, 868, 868, 0, 868, 868, 868, 868, 868, 868, 868, 868, 869, 869, 0, 869, 0, 869, 0, 0, 869, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 871, 871, 0, 871, 871, 871, 0, 871, 871, 871, 871, 871, 872, 872, 872, 0, 872, 872, 872, 872, 872, 872, 872, 872, 873, 873, 0, 0, 0, 0, 873, 0, 873, 874, 874, 0, 0, 0, 0, 0, 0, 874, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 877, 877, 0, 877, 877, 877, 0, 877, 877, 877, 877, 877, 878, 878, 878, 0, 878, 878, 878, 878, 878, 878, 878, 878, 879, 879, 0, 0, 879, 0, 879, 0, 879, 880, 880, 0, 880, 0, 880, 0, 0, 880, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 882, 882, 0, 882, 882, 882, 0, 882, 882, 882, 882, 882, 883, 883, 883, 0, 883, 883, 883, 883, 883, 883, 883, 883, 884, 884, 0, 0, 0, 0, 884, 884, 884, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 886, 886, 0, 0, 0, 0, 0, 0, 886, 887, 887, 0, 887, 887, 887, 0, 887, 887, 887, 887, 887, 888, 888, 888, 0, 888, 888, 888, 888, 888, 888, 888, 888, 889, 889, 0, 889, 0, 889, 0, 0, 889, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, 891, 891, 0, 0, 891, 0, 891, 0, 891, 892, 892, 0, 892, 892, 892, 0, 892, 892, 892, 892, 892, 893, 893, 893, 0, 893, 893, 893, 893, 893, 893, 893, 893, 894, 894, 0, 0, 0, 894, 894, 0, 894, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 896, 896, 0, 896, 0, 0, 0, 896, 896, 897, 897, 0, 897, 0, 897, 0, 0, 897, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 899, 899, 0, 0, 0, 0, 899, 899, 899, 900, 900, 0, 0, 0, 0, 900, 900, 900, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824, 824 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; /* 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 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" #define INITIAL 0 /* -*- indented-text -*- */ /* Process source files and output type information. Copyright (C) 2002, 2003 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #line 23 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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" 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++; } #define in_struct 1 #define in_struct_comment 2 #define in_comment 3 #define in_yacc_escape 4 #define YY_NO_UNPUT 1 #define YY_NEVER_INTERACTIVE 1 #line 1532 "gengtype-lex.c" /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap YY_PROTO(( void )); #else extern int yywrap YY_PROTO(( void )); #endif #endif #ifndef YY_NO_UNPUT static void yyunput YY_PROTO(( int c, char *buf_ptr )); #endif #ifndef yytext_ptr static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen YY_PROTO(( yyconst char * )); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput YY_PROTO(( void )); #else static int input YY_PROTO(( void )); #endif #endif #if YY_STACK_USED static int yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = 0; #ifndef YY_NO_PUSH_STATE static void yy_push_state YY_PROTO(( int new_state )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( void )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( void )); #endif #else #define YY_NO_PUSH_STATE 1 #define YY_NO_POP_STATE 1 #define YY_NO_TOP_STATE 1 #endif #ifdef YY_MALLOC_DECL YY_MALLOC_DECL #else #if __STDC__ #ifndef __cplusplus #include #endif #else /* Just try to get by without declaring the routines. This will fail * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) * or sizeof(void*) != sizeof(int). */ #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->yy_is_interactive ) \ { \ int c = '*', 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 if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #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 /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL int yylex YY_PROTO(( void )) #endif /* 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->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 56 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" #line 1689 "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 ) yy_current_buffer = 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 >= 825 ) 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_base[yy_current_state] != 3671 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = yy_last_accepting_cpos; yy_current_state = yy_last_accepting_state; 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: YY_RULE_SETUP #line 58 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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 (xmemdup (tagstart, taglen, taglen+1), union_p); if (is_pointer) t = create_pointer (t); do_typedef (xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 2: YY_RULE_SETUP #line 90 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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 (xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 3: YY_RULE_SETUP #line 117 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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 (xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 4: YY_RULE_SETUP #line 133 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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 (xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 5: YY_RULE_SETUP #line 149 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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 (xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 6: YY_RULE_SETUP #line 165 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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 (xmemdup (namestart, namelen, namelen+1), t, &lexer_line); update_lineno (yytext, yyleng); } YY_BREAK case 7: *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 181 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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 (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: *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 209 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(in_struct); update_lineno (yytext, yyleng); return ENT_EXTERNSTATIC; } YY_BREAK case 9: *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 215 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(in_struct); update_lineno (yytext, yyleng); return ENT_YACCUNION; } YY_BREAK case 10: YY_RULE_SETUP #line 223 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(in_struct_comment); } YY_BREAK case 11: YY_RULE_SETUP #line 225 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(in_yacc_escape); } YY_BREAK case 12: YY_RULE_SETUP #line 227 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" /* Used for c-parse.in C/ObjC demarcation. */ YY_BREAK case 13: YY_RULE_SETUP #line 229 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { update_lineno (yytext, yyleng); } YY_BREAK case 14: *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 231 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" /* don't care */ YY_BREAK case 15: *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 233 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { return GTY_TOKEN; } YY_BREAK case 16: *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 234 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { return UNION; } YY_BREAK case 17: *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 235 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { return STRUCT; } YY_BREAK case 18: *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 236 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { return ENUM; } YY_BREAK case 19: *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 237 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { return ALIAS; } YY_BREAK case 20: YY_RULE_SETUP #line 238 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { return NUM; } YY_BREAK case 21: *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 239 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { yylval.s = xmemdup (yytext, yyleng, yyleng+1); return PARAM_IS; } YY_BREAK case 22: *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 245 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" case 23: YY_RULE_SETUP #line 245 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/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 24: *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 256 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { yylval.s = xmemdup (yytext, yyleng, yyleng+1); return ID; } YY_BREAK case 25: YY_RULE_SETUP #line 261 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { yylval.s = xmemdup (yytext+1, yyleng-2, yyleng-1); return STRING; } YY_BREAK case 26: YY_RULE_SETUP #line 265 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { yylval.s = xmemdup (yytext+1, yyleng-2, yyleng-1); return ARRAY; } YY_BREAK case 27: YY_RULE_SETUP #line 269 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { yylval.s = xmemdup (yytext+1, yyleng-1, yyleng); return PERCENT_ID; } YY_BREAK case 28: YY_RULE_SETUP #line 273 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { yylval.s = xmemdup (yytext+1, yyleng-2, yyleng); return CHAR; } YY_BREAK case 29: YY_RULE_SETUP #line 278 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { return yytext[0]; } YY_BREAK case 30: YY_RULE_SETUP #line 280 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { if (lexer_toplevel_done) { BEGIN(INITIAL); lexer_toplevel_done = 0; } return yytext[0]; } YY_BREAK case 31: YY_RULE_SETUP #line 289 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(INITIAL); return PERCENTPERCENT; } YY_BREAK case 32: YY_RULE_SETUP #line 294 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { error_at_line (&lexer_line, "unexpected character `%s'", yytext); } YY_BREAK case 33: YY_RULE_SETUP #line 299 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(in_comment); } YY_BREAK case 34: YY_RULE_SETUP #line 300 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { lexer_line.line++; } YY_BREAK case 35: #line 302 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" case 36: #line 303 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" case 37: YY_RULE_SETUP #line 303 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 38: YY_RULE_SETUP #line 304 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { update_lineno (yytext, yyleng); } YY_BREAK case 39: *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 305 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 40: YY_RULE_SETUP #line 308 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { lexer_line.line++; } YY_BREAK case 41: #line 310 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" case 42: YY_RULE_SETUP #line 310 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 43: *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 311 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 44: YY_RULE_SETUP #line 313 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(INITIAL); } YY_BREAK case 45: YY_RULE_SETUP #line 314 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(in_struct); } YY_BREAK case 46: YY_RULE_SETUP #line 317 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { lexer_line.line++; } YY_BREAK case 47: #line 319 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" case 48: YY_RULE_SETUP #line 319 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 49: *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 320 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" /* do nothing */ YY_BREAK case 50: YY_RULE_SETUP #line 321 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { BEGIN(in_struct); } YY_BREAK case 51: YY_RULE_SETUP #line 322 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { error_at_line (&lexer_line, "unterminated %%{; unexpected EOF"); } YY_BREAK case 52: #line 330 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" case 53: YY_RULE_SETUP #line 330 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" { error_at_line (&lexer_line, "unterminated comment or string; unexpected EOF"); } YY_BREAK case 54: YY_RULE_SETUP #line 335 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" YY_FATAL_ERROR( "flex scanner jammed" ); YY_BREAK #line 2266 "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->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->yy_n_chars; yy_current_buffer->yy_input_file = yyin; yy_current_buffer->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->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_c_buf_p; 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->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() { register char *dest = yy_current_buffer->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->yy_ch_buf[yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( yy_current_buffer->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->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->yy_n_chars = yy_n_chars = 0; else { int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ #ifdef YY_USES_REJECT YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); #else /* 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. */ yy_flex_realloc( (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->yy_buf_size - number_to_move - 1; #endif } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), yy_n_chars, num_to_read ); yy_current_buffer->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->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; yy_n_chars += number_to_move; yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yytext_ptr = &yy_current_buffer->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() { 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 >= 825 ) 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 ); */ #ifdef YY_USE_PROTOS static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) #else static yy_state_type yy_try_NUL_trans( yy_current_state ) yy_state_type yy_current_state; #endif { 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 >= 825 ) 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 == 824); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #ifdef YY_USE_PROTOS static void yyunput( int c, register char *yy_bp ) #else static void yyunput( c, yy_bp ) int c; register char *yy_bp; #endif { register char *yy_cp = yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yy_hold_char; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = yy_n_chars + 2; register char *dest = &yy_current_buffer->yy_ch_buf[ yy_current_buffer->yy_buf_size + 2]; register char *source = &yy_current_buffer->yy_ch_buf[number_to_move]; while ( source > yy_current_buffer->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); yy_current_buffer->yy_n_chars = yy_n_chars = yy_current_buffer->yy_buf_size; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; yytext_ptr = yy_bp; yy_hold_char = *yy_cp; yy_c_buf_p = yy_cp; } #endif /* ifndef YY_NO_UNPUT */ #ifdef __cplusplus static int yyinput() #else static int input() #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->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 ); /* fall through */ 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->yy_at_bol = (c == '\n'); return c; } #ifdef YY_USE_PROTOS void yyrestart( FILE *input_file ) #else void yyrestart( input_file ) FILE *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_init_buffer( yy_current_buffer, input_file ); yy_load_buffer_state(); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) #else void yy_switch_to_buffer( new_buffer ) YY_BUFFER_STATE new_buffer; #endif { 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->yy_buf_pos = yy_c_buf_p; yy_current_buffer->yy_n_chars = yy_n_chars; } yy_current_buffer = 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; } #ifdef YY_USE_PROTOS void yy_load_buffer_state( void ) #else void yy_load_buffer_state() #endif { yy_n_chars = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; yyin = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) #else YY_BUFFER_STATE yy_create_buffer( file, size ) FILE *file; int size; #endif { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yy_flex_alloc( 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 *) yy_flex_alloc( 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; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b ) #else void yy_delete_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; if ( b == yy_current_buffer ) yy_current_buffer = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yy_flex_free( (void *) b->yy_ch_buf ); yy_flex_free( (void *) b ); } #ifndef YY_ALWAYS_INTERACTIVE #ifndef YY_NEVER_INTERACTIVE extern int isatty YY_PROTO(( int )); #endif #endif #ifdef YY_USE_PROTOS void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) #else void yy_init_buffer( b, file ) YY_BUFFER_STATE b; FILE *file; #endif { yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; #if YY_ALWAYS_INTERACTIVE b->yy_is_interactive = 1; #else #if YY_NEVER_INTERACTIVE b->yy_is_interactive = 0; #else b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b ) #else void yy_flush_buffer( b ) YY_BUFFER_STATE b; #endif { 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(); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) #else YY_BUFFER_STATE yy_scan_buffer( base, size ) char *base; yy_size_t size; #endif { 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) yy_flex_alloc( 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; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) #else YY_BUFFER_STATE yy_scan_string( yy_str ) yyconst char *yy_str; #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len ) yyconst char *bytes; int len; #endif { 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 *) yy_flex_alloc( 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; } #endif #ifndef YY_NO_PUSH_STATE #ifdef YY_USE_PROTOS static void yy_push_state( int new_state ) #else static void yy_push_state( new_state ) int new_state; #endif { if ( yy_start_stack_ptr >= yy_start_stack_depth ) { yy_size_t new_size; yy_start_stack_depth += YY_START_STACK_INCR; new_size = yy_start_stack_depth * sizeof( int ); if ( ! yy_start_stack ) yy_start_stack = (int *) yy_flex_alloc( new_size ); else yy_start_stack = (int *) yy_flex_realloc( (void *) yy_start_stack, new_size ); if ( ! yy_start_stack ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } yy_start_stack[yy_start_stack_ptr++] = YY_START; BEGIN(new_state); } #endif #ifndef YY_NO_POP_STATE static void yy_pop_state() { if ( --yy_start_stack_ptr < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN(yy_start_stack[yy_start_stack_ptr]); } #endif #ifndef YY_NO_TOP_STATE static int yy_top_state() { return yy_start_stack[yy_start_stack_ptr - 1]; } #endif #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif #ifdef YY_USE_PROTOS static void yy_fatal_error( yyconst char msg[] ) #else static void yy_fatal_error( msg ) char msg[]; #endif { (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. */ \ yytext[yyleng] = yy_hold_char; \ yy_c_buf_p = yytext + n; \ yy_hold_char = *yy_c_buf_p; \ *yy_c_buf_p = '\0'; \ yyleng = n; \ } \ while ( 0 ) /* Internal utility routines. */ #ifndef yytext_ptr #ifdef YY_USE_PROTOS static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) #else static void yy_flex_strncpy( s1, s2, n ) char *s1; yyconst char *s2; int n; #endif { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN #ifdef YY_USE_PROTOS static int yy_flex_strlen( yyconst char *s ) #else static int yy_flex_strlen( s ) yyconst char *s; #endif { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif #ifdef YY_USE_PROTOS static void *yy_flex_alloc( yy_size_t size ) #else static void *yy_flex_alloc( size ) yy_size_t size; #endif { return (void *) malloc( size ); } #ifdef YY_USE_PROTOS static void *yy_flex_realloc( void *ptr, yy_size_t size ) #else static void *yy_flex_realloc( ptr, size ) void *ptr; yy_size_t size; #endif { /* 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 ); } #ifdef YY_USE_PROTOS static void yy_flex_free( void *ptr ) #else static void yy_flex_free( ptr ) void *ptr; #endif { free( ptr ); } #if YY_MAIN int main() { yylex(); return 0; } #endif #line 335 "/home/gdr/build/gcc-3.4.5/gcc-3.4.5/gcc/gengtype-lex.l" 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); }