/* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /cvs/OpenBSD/src/gnu/usr.bin/binutils/ld/Attic/ldlex.c,v 1.1 1996/01/08 11:09:19 niklas 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_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 *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) 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 144 #define YY_END_OF_BUFFER 145 static yyconst short int yy_accept[895] = { 0, 0, 0, 137, 137, 0, 0, 0, 0, 0, 0, 0, 0, 145, 144, 142, 141, 139, 140, 32, 142, 137, 38, 29, 44, 43, 34, 35, 28, 36, 137, 37, 8, 8, 45, 46, 39, 40, 27, 33, 8, 8, 8, 8, 8, 8, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 10, 9, 8, 88, 86, 137, 42, 30, 41, 31, 143, 141, 140, 32, 143, 135, 38, 29, 44, 43, 34, 35, 28, 36, 135, 37, 8, 8, 45, 46, 39, 40, 27, 33, 8, 8, 8, 135, 135, 135, 10, 9, 8, 135, 42, 30, 41, 31, 135, 8, 8, 8, 8, 8, 8, 8, 8, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 8, 8, 88, 86, 4, 3, 2, 4, 5, 4, 94, 95, 93, 134, 34, 35, 28, 36, 134, 37, 8, 8, 45, 46, 40, 8, 8, 8, 8, 8, 8, 134, 134, 134, 134, 134, 134, 10, 9, 8, 8, 8, 8, 8, 134, 134, 134, 134, 134, 134, 31, 15, 0, 138, 137, 8, 8, 26, 24, 22, 20, 21, 1, 23, 8, 137, 18, 17, 14, 16, 19, 8, 8, 137, 91, 137, 137, 137, 137, 8, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 8, 137, 137, 137, 25, 13, 135, 6, 6, 20, 21, 0, 23, 8, 7, 7, 8, 7, 14, 8, 7, 7, 7, 8, 135, 91, 7, 8, 135, 135, 135, 135, 7, 135, 8, 8, 8, 0, 8, 8, 135, 135, 135, 135, 8, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 8, 135, 135, 4, 4, 4, 4, 93, 93, 134, 6, 6, 96, 22, 23, 97, 8, 7, 7, 7, 8, 134, 8, 8, 7, 134, 7, 7, 134, 134, 134, 134, 134, 134, 134, 134, 7, 134, 8, 8, 7, 134, 7, 7, 134, 134, 134, 134, 134, 134, 134, 134, 11, 12, 137, 8, 137, 137, 137, 137, 137, 137, 8, 137, 137, 137, 137, 137, 137, 73, 137, 137, 137, 137, 137, 57, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 89, 87, 137, 135, 136, 135, 7, 135, 8, 135, 135, 135, 135, 135, 135, 8, 135, 135, 135, 135, 135, 8, 135, 135, 135, 135, 135, 135, 73, 135, 135, 135, 135, 135, 57, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 89, 87, 4, 93, 134, 134, 134, 134, 134, 134, 98, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 116, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 137, 52, 137, 137, 79, 137, 83, 137, 137, 137, 137, 69, 137, 137, 137, 137, 84, 137, 137, 77, 137, 54, 137, 137, 137, 137, 137, 137, 76, 137, 137, 137, 137, 137, 137, 137, 137, 137, 135, 52, 135, 135, 54, 135, 135, 135, 135, 135, 135, 79, 135, 83, 135, 135, 135, 69, 135, 135, 135, 135, 84, 135, 135, 77, 135, 135, 135, 135, 135, 76, 135, 135, 135, 135, 135, 135, 8, 134, 134, 134, 102, 110, 101, 134, 134, 113, 105, 108, 134, 134, 114, 134, 134, 134, 134, 134, 120, 128, 119, 134, 134, 131, 123, 126, 134, 134, 132, 134, 134, 137, 51, 49, 137, 137, 137, 82, 53, 75, 137, 63, 137, 62, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 78, 137, 137, 137, 137, 137, 137, 135, 51, 135, 135, 135, 135, 135, 135, 49, 135, 135, 82, 53, 75, 135, 63, 135, 62, 135, 135, 135, 135, 135, 135, 135, 135, 78, 135, 135, 135, 134, 103, 100, 134, 134, 113, 113, 107, 134, 112, 134, 134, 121, 118, 134, 134, 131, 131, 125, 134, 130, 134, 137, 137, 137, 137, 137, 137, 50, 47, 137, 81, 48, 61, 137, 137, 137, 137, 58, 137, 74, 59, 137, 137, 135, 135, 81, 135, 58, 135, 135, 135, 135, 135, 135, 50, 47, 135, 48, 61, 135, 135, 135, 135, 74, 59, 134, 134, 111, 109, 106, 134, 134, 134, 129, 127, 124, 134, 137, 137, 137, 64, 137, 90, 80, 137, 85, 92, 137, 137, 137, 70, 137, 137, 135, 64, 92, 135, 135, 135, 135, 135, 135, 90, 80, 135, 85, 135, 135, 70, 134, 134, 134, 134, 134, 134, 115, 137, 137, 137, 137, 137, 137, 68, 137, 133, 137, 115, 135, 133, 135, 135, 135, 135, 135, 135, 135, 68, 115, 99, 104, 133, 117, 122, 137, 137, 137, 137, 137, 137, 137, 137, 135, 135, 135, 135, 135, 135, 135, 135, 137, 137, 137, 137, 137, 60, 137, 137, 135, 135, 135, 135, 135, 135, 135, 60, 137, 137, 137, 72, 137, 137, 137, 135, 135, 135, 135, 135, 72, 135, 66, 137, 137, 137, 137, 137, 135, 135, 66, 135, 135, 135, 137, 137, 71, 137, 137, 135, 135, 135, 135, 71, 137, 137, 56, 55, 56, 55, 135, 135, 137, 137, 135, 135, 137, 137, 135, 135, 137, 137, 135, 135, 137, 137, 135, 135, 137, 137, 135, 135, 137, 137, 135, 135, 65, 137, 65, 135, 137, 135, 67, 67, 0 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 6, 7, 8, 9, 10, 1, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21, 22, 23, 24, 25, 26, 1, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 17, 49, 50, 51, 52, 17, 53, 1, 54, 1, 55, 56, 57, 58, 59, 60, 61, 62, 63, 17, 64, 65, 66, 67, 68, 69, 17, 70, 71, 72, 73, 17, 17, 74, 17, 75, 76, 77, 78, 79, 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[80] = { 0, 1, 1, 2, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 4, 3, 5, 5, 6, 6, 3, 1, 1, 4, 1, 1, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 6, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 5, 6, 6, 6, 6, 6, 6, 5, 5, 5, 6, 5, 6, 5, 5, 5, 5, 5, 5, 5, 6, 5, 1, 1, 1, 3 } ; static yyconst short int yy_base[910] = { 0, 0, 0, 0, 0, 79, 0, 151, 0, 219, 0, 298, 0, 1628, 1629, 1629, 1629, 1629, 1629, 1603, 1620, 359, 1629, 150, 1629, 1629, 1601, 1600, 0, 1599, 0, 148, 401, 1548, 0, 1629, 139, 1597, 140, 1629, 365, 138, 125, 349, 127, 361, 1576, 1581, 1578, 146, 171, 162, 170, 1573, 1569, 391, 1588, 0, 0, 139, 1555, 1543, 1549, 1629, 357, 1629, 0, 1629, 1629, 1629, 1587, 1604, 457, 1629, 373, 1629, 1629, 1585, 1584, 1629, 377, 0, 191, 499, 1533, 1629, 1629, 361, 1582, 380, 1629, 555, 416, 417, 351, 1561, 1569, 1629, 1629, 436, 1540, 1629, 374, 1629, 0, 611, 431, 432, 504, 471, 558, 589, 485, 613, 1558, 1563, 1560, 369, 381, 412, 455, 1552, 626, 1571, 625, 541, 1538, 1526, 673, 1629, 1629, 0, 1629, 715, 1629, 1629, 1592, 763, 1570, 1569, 1629, 1568, 0, 1567, 0, 1516, 1629, 0, 1565, 805, 445, 473, 453, 541, 608, 372, 1561, 1543, 1539, 378, 1541, 1629, 1629, 560, 635, 656, 647, 538, 105, 1529, 1513, 1509, 377, 1511, 0, 1629, 1574, 1629, 0, 0, 1505, 1629, 1629, 1629, 0, 0, 1629, 0, 0, 643, 1554, 1629, 0, 1629, 1553, 405, 490, 1541, 0, 1534, 1528, 438, 1542, 420, 1541, 1525, 1532, 1528, 1524, 1526, 1528, 654, 1525, 1524, 1521, 1523, 1512, 507, 1525, 1513, 1527, 1516, 1529, 517, 1514, 1503, 1526, 1507, 1507, 529, 1483, 1488, 1473, 1629, 1629, 0, 861, 1473, 1629, 1629, 0, 0, 1472, 1471, 1629, 1629, 658, 1629, 710, 721, 730, 0, 0, 1509, 0, 750, 769, 1494, 1504, 1500, 1489, 770, 1464, 792, 791, 0, 0, 808, 864, 1497, 1491, 593, 1505, 865, 1504, 1488, 1495, 1491, 1487, 1489, 1491, 681, 1488, 1487, 1484, 1486, 515, 1489, 1477, 1491, 1494, 618, 1479, 1492, 1473, 1473, 868, 1449, 1454, 0, 1440, 0, 0, 1510, 1508, 0, 921, 1437, 0, 0, 1629, 0, 524, 670, 599, 0, 0, 1475, 840, 868, 1474, 1478, 1461, 1462, 1460, 1477, 1464, 1472, 1473, 1471, 1472, 1451, 698, 1434, 871, 884, 1433, 1437, 1422, 1423, 1421, 1436, 1424, 1431, 1432, 1430, 1431, 1412, 1629, 1629, 1443, 131, 1450, 1453, 1450, 1435, 1429, 1451, 653, 1448, 1432, 1437, 1447, 1444, 1425, 0, 1433, 1429, 1422, 1435, 1434, 0, 1425, 1419, 1426, 1422, 1429, 1419, 1416, 1411, 1428, 1413, 1406, 1402, 1409, 1390, 1386, 1385, 1346, 0, 0, 1322, 1361, 0, 1338, 926, 1345, 954, 1331, 1335, 1327, 1343, 1305, 1313, 924, 1342, 1339, 1324, 1318, 1340, 964, 1337, 1321, 1326, 1336, 1333, 1314, 0, 1322, 1318, 1311, 1324, 1323, 0, 1314, 1316, 1320, 1310, 1307, 1320, 1305, 1302, 1303, 1302, 1307, 1311, 0, 0, 748, 1629, 1012, 1302, 632, 1311, 1310, 1298, 0, 1308, 1299, 1291, 1306, 1304, 1303, 1295, 1281, 1282, 1285, 1256, 651, 1264, 1263, 1251, 0, 1255, 1243, 1231, 1244, 1242, 1241, 1234, 1226, 1227, 1229, 1257, 0, 1254, 1256, 0, 1246, 0, 1245, 1250, 1243, 1238, 0, 1241, 1255, 1243, 1237, 0, 1237, 1236, 0, 1237, 0, 1239, 1252, 1243, 1230, 1238, 1240, 0, 1245, 1238, 1226, 1230, 1224, 1234, 1237, 1202, 1198, 1227, 0, 1224, 1223, 0, 1235, 1226, 1219, 1194, 1190, 1220, 0, 1210, 0, 1209, 1203, 1198, 0, 1201, 1215, 1203, 1197, 0, 1196, 1190, 0, 1187, 1184, 1189, 1176, 1184, 0, 1192, 1185, 1173, 1172, 1182, 1185, 811, 1177, 1169, 1173, 0, 0, 0, 1168, 1184, 1072, 0, 0, 1166, 1174, 0, 1162, 1178, 1141, 1134, 1137, 0, 0, 0, 1133, 1147, 1150, 0, 0, 1131, 1137, 0, 1127, 1141, 1150, 0, 0, 1152, 1164, 1163, 0, 0, 0, 1139, 0, 1162, 0, 1157, 1140, 1162, 1158, 1147, 1140, 1158, 1154, 1149, 1141, 0, 1149, 1133, 1151, 1132, 1104, 1111, 1123, 0, 1138, 1138, 1137, 1134, 1091, 1098, 0, 1109, 1116, 0, 0, 0, 1092, 0, 1115, 0, 1110, 1093, 1115, 1101, 1094, 1112, 1104, 1096, 0, 1089, 1107, 1088, 1086, 0, 1093, 1091, 1084, 0, 1228, 0, 1100, 0, 1101, 1054, 0, 1060, 1058, 1052, 0, 1306, 0, 1066, 0, 1067, 1075, 1073, 1065, 1088, 1088, 1085, 0, 0, 1069, 0, 0, 1060, 1063, 1081, 1057, 1070, 1055, 1066, 0, 0, 1035, 1052, 1059, 1074, 0, 1072, 1048, 1029, 1046, 1052, 1039, 1063, 1060, 0, 0, 1044, 0, 1035, 1038, 1032, 1040, 1033, 0, 0, 1020, 1024, 0, 0, 0, 1018, 991, 994, 0, 0, 0, 989, 1029, 1030, 1017, 0, 1016, 0, 0, 693, 0, 0, 1026, 1010, 1020, 0, 994, 990, 1020, 0, 0, 1016, 990, 986, 1018, 1005, 1004, 0, 0, 723, 0, 1008, 992, 0, 1005, 1005, 1003, 974, 971, 968, 0, 980, 997, 985, 979, 981, 986, 0, 989, 0, 960, 0, 987, 0, 958, 970, 987, 975, 969, 971, 976, 0, 0, 0, 0, 0, 0, 0, 969, 973, 969, 978, 962, 961, 977, 947, 971, 942, 955, 958, 954, 962, 942, 931, 930, 942, 930, 935, 928, 0, 936, 907, 932, 901, 913, 916, 905, 911, 905, 0, 893, 908, 896, 0, 906, 895, 865, 892, 856, 869, 882, 870, 0, 881, 0, 154, 352, 381, 449, 501, 528, 521, 0, 563, 564, 610, 604, 647, 0, 633, 616, 654, 645, 665, 710, 0, 694, 703, 0, 0, 0, 0, 708, 719, 711, 724, 713, 726, 726, 736, 745, 745, 761, 773, 775, 775, 764, 779, 768, 786, 779, 780, 800, 794, 804, 816, 807, 824, 0, 829, 0, 835, 842, 846, 0, 0, 1629, 1384, 1390, 1394, 1398, 889, 1400, 1406, 1410, 1416, 1422, 1426, 1432, 1438, 1444, 1450 } ; static yyconst short int yy_def[910] = { 0, 895, 895, 894, 3, 894, 5, 5, 7, 894, 9, 894, 11, 894, 894, 894, 894, 894, 894, 894, 896, 897, 894, 894, 894, 894, 894, 897, 897, 897, 897, 897, 897, 32, 897, 894, 894, 897, 894, 894, 32, 32, 32, 32, 32, 32, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 32, 897, 897, 897, 894, 894, 894, 897, 894, 894, 894, 894, 896, 898, 894, 894, 894, 894, 894, 894, 894, 894, 898, 898, 894, 83, 894, 894, 894, 894, 894, 894, 898, 91, 91, 898, 898, 898, 894, 894, 91, 898, 894, 894, 894, 898, 898, 899, 899, 105, 105, 105, 105, 105, 105, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 105, 105, 898, 898, 900, 894, 894, 900, 894, 900, 894, 894, 901, 902, 903, 894, 894, 894, 902, 902, 83, 83, 894, 904, 894, 902, 149, 149, 149, 149, 149, 902, 902, 902, 902, 902, 902, 894, 894, 149, 149, 149, 149, 149, 902, 902, 902, 902, 902, 902, 902, 894, 896, 894, 897, 32, 32, 894, 894, 894, 897, 897, 894, 897, 897, 32, 894, 894, 897, 894, 894, 32, 32, 897, 897, 897, 897, 897, 897, 32, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 32, 897, 897, 897, 894, 894, 898, 898, 236, 894, 894, 905, 898, 83, 83, 894, 894, 107, 894, 91, 91, 91, 898, 898, 898, 898, 91, 91, 898, 898, 898, 898, 91, 898, 105, 105, 107, 246, 105, 105, 898, 898, 898, 898, 105, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 105, 898, 898, 900, 133, 133, 900, 901, 894, 902, 902, 306, 903, 903, 894, 904, 149, 149, 149, 902, 902, 902, 149, 149, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 149, 902, 149, 149, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 894, 894, 897, 32, 897, 897, 897, 897, 897, 897, 32, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 105, 905, 898, 91, 898, 91, 898, 898, 898, 898, 898, 898, 105, 898, 898, 898, 898, 898, 105, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 133, 894, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 440, 902, 902, 902, 902, 902, 902, 902, 902, 906, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 907, 902, 902, 902, 902, 902, 902, 902, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 902, 902, 902, 902, 902, 908, 906, 902, 902, 902, 902, 902, 902, 902, 902, 902, 909, 907, 902, 902, 902, 902, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 902, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 902, 902, 902, 902, 902, 902, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 902, 902, 902, 902, 902, 902, 897, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 897, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 897, 897, 897, 897, 898, 898, 898, 898, 897, 897, 898, 898, 897, 897, 898, 898, 897, 897, 898, 898, 897, 897, 898, 898, 897, 897, 898, 898, 897, 897, 898, 898, 897, 897, 898, 898, 897, 898, 897, 898, 0, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894 } ; static yyconst short int yy_nxt[1709] = { 0, 15, 16, 17, 18, 19, 20, 15, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 30, 30, 49, 50, 51, 52, 53, 54, 30, 55, 56, 30, 30, 30, 30, 30, 57, 58, 30, 59, 33, 33, 33, 33, 33, 30, 30, 30, 30, 60, 30, 30, 61, 30, 30, 62, 30, 30, 30, 30, 63, 64, 65, 66, 67, 68, 17, 69, 70, 71, 67, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 92, 93, 92, 92, 81, 81, 81, 81, 81, 81, 81, 94, 81, 95, 81, 81, 96, 81, 81, 81, 81, 81, 81, 97, 98, 81, 99, 92, 92, 92, 92, 92, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 100, 81, 81, 81, 81, 101, 102, 103, 104, 105, 181, 186, 190, 191, 193, 194, 201, 205, 340, 202, 106, 107, 187, 341, 182, 474, 199, 212, 108, 109, 110, 111, 112, 113, 114, 115, 116, 213, 200, 117, 118, 119, 120, 216, 121, 229, 122, 123, 214, 178, 844, 178, 215, 217, 186, 178, 124, 125, 125, 125, 125, 125, 178, 178, 218, 241, 126, 219, 220, 127, 67, 67, 14, 67, 67, 67, 67, 128, 67, 67, 67, 67, 67, 129, 67, 130, 131, 131, 106, 107, 67, 67, 67, 132, 67, 67, 133, 133, 133, 133, 133, 133, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 67, 67, 131, 133, 133, 133, 133, 133, 133, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 67, 67, 67, 131, 15, 16, 134, 135, 19, 15, 136, 137, 22, 23, 24, 25, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 36, 148, 38, 39, 149, 150, 151, 152, 153, 154, 142, 142, 142, 142, 142, 155, 142, 156, 157, 158, 142, 142, 159, 160, 142, 142, 142, 142, 142, 161, 162, 142, 163, 164, 165, 152, 166, 167, 142, 142, 142, 142, 168, 142, 169, 170, 171, 142, 172, 173, 142, 142, 142, 63, 64, 65, 174, 179, 180, 203, 233, 257, 181, 190, 191, 180, 180, 180, 180, 180, 180, 258, 195, 204, 196, 206, 182, 233, 207, 282, 239, 208, 197, 193, 194, 845, 324, 284, 329, 283, 198, 285, 325, 180, 180, 180, 180, 180, 180, 180, 180, 223, 178, 330, 224, 225, 846, 180, 180, 180, 180, 180, 180, 234, 178, 345, 226, 188, 178, 188, 227, 240, 257, 255, 255, 255, 255, 256, 346, 350, 234, 358, 286, 235, 235, 180, 180, 180, 180, 180, 180, 235, 235, 255, 188, 255, 188, 245, 245, 245, 245, 318, 314, 235, 189, 236, 237, 355, 178, 356, 314, 235, 305, 237, 237, 237, 237, 237, 237, 264, 305, 261, 847, 178, 245, 245, 245, 245, 287, 319, 314, 288, 289, 264, 266, 894, 320, 252, 269, 252, 305, 237, 237, 237, 237, 237, 237, 242, 242, 351, 270, 252, 264, 252, 275, 242, 243, 242, 243, 242, 242, 267, 244, 268, 252, 245, 252, 245, 374, 244, 252, 253, 252, 381, 375, 382, 425, 244, 252, 254, 252, 314, 399, 242, 243, 242, 243, 242, 242, 264, 244, 305, 245, 178, 245, 314, 244, 252, 314, 252, 848, 849, 246, 248, 248, 305, 264, 252, 305, 252, 321, 248, 249, 248, 250, 248, 248, 314, 251, 322, 850, 252, 253, 252, 252, 251, 252, 305, 271, 388, 254, 272, 178, 251, 252, 339, 252, 264, 851, 248, 255, 248, 255, 248, 248, 332, 251, 852, 252, 273, 252, 252, 251, 252, 333, 252, 314, 252, 251, 263, 264, 264, 407, 274, 408, 314, 305, 264, 264, 264, 264, 264, 264, 264, 430, 305, 431, 276, 323, 252, 277, 252, 252, 278, 252, 853, 291, 854, 551, 292, 260, 252, 314, 252, 552, 264, 264, 264, 264, 264, 264, 293, 305, 855, 314, 294, 252, 856, 252, 178, 296, 178, 366, 314, 305, 367, 857, 481, 252, 334, 252, 300, 301, 305, 894, 368, 894, 314, 858, 301, 301, 301, 301, 301, 301, 567, 178, 305, 178, 418, 335, 568, 419, 337, 441, 859, 178, 336, 860, 762, 338, 894, 420, 894, 763, 314, 178, 301, 301, 301, 301, 301, 301, 301, 301, 305, 861, 255, 862, 255, 863, 301, 301, 301, 301, 301, 301, 235, 255, 776, 255, 302, 864, 302, 777, 235, 865, 255, 235, 395, 866, 867, 868, 869, 870, 394, 235, 235, 457, 301, 301, 301, 301, 301, 301, 235, 871, 255, 302, 255, 302, 306, 307, 872, 299, 873, 299, 235, 874, 307, 307, 307, 307, 307, 307, 235, 255, 255, 255, 255, 397, 875, 876, 877, 878, 879, 235, 235, 880, 264, 264, 299, 881, 299, 235, 235, 882, 307, 307, 307, 307, 307, 307, 312, 312, 883, 264, 252, 252, 252, 252, 312, 313, 312, 314, 312, 312, 884, 315, 885, 402, 316, 317, 316, 252, 315, 252, 316, 886, 316, 887, 888, 394, 315, 252, 252, 252, 252, 889, 312, 314, 312, 314, 312, 312, 392, 315, 314, 316, 890, 316, 252, 315, 252, 316, 891, 316, 305, 315, 237, 237, 892, 264, 264, 443, 893, 264, 237, 237, 237, 237, 237, 237, 404, 265, 314, 410, 252, 314, 252, 252, 252, 252, 252, 252, 305, 252, 843, 305, 842, 841, 314, 444, 840, 839, 237, 237, 237, 237, 237, 237, 305, 838, 837, 252, 836, 252, 252, 252, 252, 252, 252, 835, 252, 392, 834, 833, 832, 402, 307, 307, 459, 264, 831, 830, 829, 828, 307, 307, 307, 307, 307, 307, 255, 460, 255, 827, 316, 826, 316, 252, 825, 252, 235, 824, 823, 822, 512, 821, 512, 820, 235, 819, 818, 817, 307, 307, 307, 307, 307, 307, 255, 264, 255, 316, 816, 316, 252, 514, 252, 815, 235, 814, 813, 440, 812, 811, 810, 514, 235, 252, 809, 252, 808, 807, 806, 805, 804, 803, 802, 801, 800, 799, 798, 797, 796, 795, 794, 793, 792, 791, 790, 789, 788, 787, 786, 785, 252, 784, 252, 549, 549, 783, 782, 781, 780, 779, 778, 549, 549, 549, 549, 549, 549, 775, 774, 773, 772, 771, 770, 769, 768, 767, 766, 765, 764, 761, 760, 759, 758, 757, 756, 755, 754, 753, 752, 549, 549, 549, 549, 549, 549, 647, 647, 751, 647, 647, 647, 647, 750, 647, 647, 647, 647, 647, 749, 647, 748, 747, 746, 745, 744, 743, 647, 647, 647, 647, 647, 742, 741, 740, 739, 738, 737, 736, 735, 734, 733, 732, 731, 730, 729, 728, 727, 726, 725, 724, 723, 722, 721, 720, 719, 718, 717, 716, 715, 714, 713, 712, 711, 710, 709, 708, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 694, 647, 647, 647, 658, 658, 693, 658, 658, 658, 658, 692, 658, 658, 658, 658, 658, 691, 658, 690, 689, 688, 687, 686, 685, 658, 658, 658, 658, 658, 684, 683, 682, 681, 680, 679, 678, 677, 676, 675, 674, 673, 672, 671, 670, 669, 668, 667, 666, 665, 664, 663, 662, 661, 660, 657, 656, 655, 654, 653, 652, 651, 650, 649, 646, 645, 644, 643, 642, 641, 640, 639, 638, 637, 636, 635, 634, 633, 632, 658, 658, 658, 647, 647, 631, 647, 647, 647, 647, 630, 647, 647, 647, 647, 647, 629, 647, 628, 627, 626, 625, 624, 623, 647, 647, 647, 647, 647, 622, 621, 620, 619, 618, 617, 616, 615, 614, 613, 612, 611, 610, 609, 608, 607, 606, 605, 604, 603, 602, 601, 600, 599, 598, 597, 596, 595, 594, 593, 592, 591, 590, 589, 588, 587, 586, 585, 584, 583, 582, 581, 580, 579, 578, 577, 576, 575, 574, 647, 647, 647, 658, 658, 573, 658, 658, 658, 658, 572, 658, 658, 658, 658, 658, 571, 658, 570, 569, 566, 565, 564, 563, 658, 658, 658, 658, 658, 562, 561, 560, 559, 558, 557, 556, 555, 554, 553, 550, 548, 547, 546, 545, 544, 543, 542, 541, 540, 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, 529, 528, 527, 526, 525, 524, 523, 522, 521, 520, 519, 518, 517, 516, 515, 513, 511, 264, 510, 658, 658, 658, 14, 14, 14, 14, 14, 14, 176, 176, 176, 176, 176, 176, 178, 178, 178, 178, 235, 235, 235, 235, 299, 299, 303, 303, 303, 303, 303, 303, 305, 509, 305, 305, 308, 508, 308, 308, 308, 308, 311, 507, 311, 311, 311, 311, 393, 393, 393, 393, 648, 506, 648, 648, 648, 648, 659, 505, 659, 659, 659, 659, 647, 504, 647, 647, 647, 647, 658, 503, 658, 658, 658, 658, 502, 501, 500, 499, 498, 497, 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, 484, 483, 482, 480, 479, 478, 477, 476, 475, 473, 472, 471, 470, 469, 468, 467, 466, 465, 464, 463, 462, 461, 458, 456, 455, 454, 453, 452, 451, 450, 449, 448, 447, 446, 445, 442, 305, 439, 304, 438, 437, 436, 435, 434, 433, 432, 429, 428, 427, 426, 424, 423, 422, 421, 417, 416, 415, 414, 413, 412, 411, 409, 406, 405, 403, 401, 400, 399, 398, 396, 244, 244, 235, 391, 390, 389, 387, 386, 385, 384, 383, 380, 379, 378, 377, 376, 373, 372, 371, 370, 369, 365, 364, 363, 362, 361, 360, 359, 357, 354, 353, 352, 349, 348, 178, 177, 347, 344, 343, 342, 331, 328, 327, 326, 247, 244, 310, 239, 238, 309, 304, 298, 297, 295, 290, 281, 280, 279, 262, 260, 259, 247, 244, 238, 183, 177, 175, 232, 231, 230, 228, 222, 221, 211, 210, 209, 192, 178, 185, 184, 183, 177, 175, 894, 13, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894 } ; static yyconst short int yy_chk[1709] = { 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 23, 31, 36, 36, 38, 38, 42, 44, 168, 42, 7, 7, 31, 168, 23, 351, 41, 49, 7, 7, 7, 7, 7, 7, 7, 7, 7, 49, 41, 7, 7, 7, 7, 51, 7, 59, 7, 7, 50, 42, 833, 44, 50, 51, 82, 351, 7, 7, 7, 7, 7, 7, 41, 59, 52, 82, 7, 52, 52, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 21, 21, 43, 64, 94, 74, 87, 87, 21, 21, 21, 21, 21, 21, 94, 40, 43, 40, 45, 74, 102, 45, 117, 80, 45, 40, 89, 89, 834, 155, 118, 159, 117, 40, 118, 155, 21, 21, 21, 21, 21, 21, 32, 32, 55, 43, 159, 55, 55, 835, 32, 32, 32, 32, 32, 32, 64, 45, 172, 55, 32, 40, 32, 55, 80, 119, 92, 93, 92, 93, 93, 172, 195, 102, 203, 119, 92, 93, 32, 32, 32, 32, 32, 32, 92, 93, 99, 32, 99, 32, 106, 107, 106, 107, 150, 150, 99, 32, 72, 72, 201, 195, 201, 152, 99, 150, 72, 72, 72, 72, 72, 72, 109, 152, 99, 836, 203, 106, 107, 106, 107, 120, 151, 151, 120, 120, 112, 106, 107, 151, 109, 109, 109, 151, 72, 72, 72, 72, 72, 72, 83, 83, 196, 109, 112, 108, 112, 112, 83, 83, 83, 83, 83, 83, 108, 83, 108, 109, 83, 109, 83, 217, 83, 108, 108, 108, 223, 217, 223, 286, 83, 112, 108, 112, 312, 286, 83, 83, 83, 83, 83, 83, 125, 83, 312, 83, 196, 83, 167, 83, 108, 153, 108, 837, 838, 83, 91, 91, 167, 110, 125, 153, 125, 153, 91, 91, 91, 91, 91, 91, 163, 91, 153, 839, 91, 91, 91, 110, 91, 110, 163, 110, 229, 91, 110, 229, 91, 125, 167, 125, 111, 841, 91, 91, 91, 91, 91, 91, 163, 91, 842, 91, 111, 91, 110, 91, 110, 163, 111, 314, 111, 91, 105, 105, 113, 271, 111, 271, 154, 314, 105, 105, 105, 105, 105, 105, 124, 291, 154, 291, 113, 154, 113, 113, 113, 111, 113, 111, 843, 122, 844, 442, 122, 122, 124, 164, 124, 442, 105, 105, 105, 105, 105, 105, 122, 164, 845, 166, 122, 113, 847, 113, 189, 124, 189, 211, 165, 166, 211, 848, 358, 124, 164, 124, 128, 128, 165, 246, 211, 246, 313, 849, 128, 128, 128, 128, 128, 128, 458, 189, 313, 189, 281, 165, 458, 281, 166, 313, 850, 189, 165, 851, 727, 166, 246, 281, 246, 727, 332, 358, 128, 128, 128, 128, 128, 128, 133, 133, 332, 852, 248, 854, 248, 855, 133, 133, 133, 133, 133, 133, 248, 249, 747, 249, 133, 860, 133, 747, 248, 861, 250, 249, 250, 862, 863, 864, 865, 866, 249, 249, 250, 332, 133, 133, 133, 133, 133, 133, 250, 867, 255, 133, 255, 133, 137, 137, 868, 438, 869, 438, 255, 870, 137, 137, 137, 137, 137, 137, 255, 256, 261, 256, 261, 256, 871, 872, 873, 874, 875, 256, 261, 876, 264, 263, 438, 877, 438, 256, 261, 878, 137, 137, 137, 137, 137, 137, 149, 149, 879, 267, 264, 263, 264, 263, 149, 149, 149, 149, 149, 149, 880, 149, 881, 261, 149, 149, 149, 267, 149, 267, 549, 882, 549, 883, 884, 267, 149, 264, 263, 264, 263, 885, 149, 149, 149, 149, 149, 149, 263, 149, 318, 149, 887, 149, 267, 149, 267, 549, 889, 549, 318, 149, 236, 236, 890, 268, 273, 318, 891, 296, 236, 236, 236, 236, 236, 236, 268, 899, 319, 273, 236, 334, 236, 268, 273, 268, 273, 296, 319, 296, 831, 334, 829, 828, 335, 319, 827, 826, 236, 236, 236, 236, 236, 236, 335, 825, 824, 236, 823, 236, 268, 273, 268, 273, 296, 822, 296, 236, 820, 819, 818, 296, 306, 306, 334, 404, 816, 815, 814, 813, 306, 306, 306, 306, 306, 306, 395, 335, 395, 812, 306, 811, 306, 404, 810, 404, 395, 809, 808, 806, 404, 805, 395, 804, 395, 803, 802, 801, 306, 306, 306, 306, 306, 306, 397, 410, 397, 306, 800, 306, 404, 397, 404, 799, 397, 798, 797, 306, 796, 795, 794, 410, 397, 410, 793, 410, 792, 791, 790, 789, 788, 787, 786, 778, 777, 776, 775, 774, 773, 772, 770, 768, 766, 764, 763, 762, 761, 760, 759, 757, 410, 756, 410, 440, 440, 755, 754, 753, 752, 750, 749, 440, 440, 440, 440, 440, 440, 744, 743, 742, 741, 740, 739, 736, 735, 734, 732, 731, 730, 724, 722, 721, 720, 719, 715, 714, 713, 709, 708, 440, 440, 440, 440, 440, 440, 558, 558, 705, 558, 558, 558, 558, 704, 558, 558, 558, 558, 558, 703, 558, 702, 701, 699, 696, 695, 694, 558, 558, 558, 558, 558, 693, 692, 691, 690, 689, 687, 686, 685, 684, 681, 680, 679, 678, 677, 676, 675, 672, 669, 668, 667, 666, 665, 664, 663, 661, 657, 656, 655, 653, 652, 650, 646, 645, 644, 642, 641, 640, 639, 637, 636, 635, 634, 633, 632, 631, 630, 628, 626, 622, 558, 558, 558, 574, 574, 621, 574, 574, 574, 574, 619, 574, 574, 574, 574, 574, 618, 574, 617, 616, 615, 614, 612, 611, 574, 574, 574, 574, 574, 610, 609, 608, 607, 606, 604, 603, 602, 601, 600, 599, 598, 597, 596, 595, 593, 591, 587, 586, 585, 582, 581, 580, 578, 577, 573, 572, 568, 567, 566, 565, 564, 562, 561, 557, 556, 552, 551, 550, 548, 547, 546, 545, 544, 543, 541, 540, 539, 538, 574, 574, 574, 648, 648, 537, 648, 648, 648, 648, 535, 648, 648, 648, 648, 648, 534, 648, 532, 531, 530, 529, 527, 526, 648, 648, 648, 648, 648, 525, 523, 521, 520, 519, 518, 517, 516, 514, 513, 511, 510, 509, 508, 507, 506, 505, 504, 503, 502, 500, 499, 498, 497, 496, 495, 493, 491, 490, 488, 487, 486, 485, 483, 482, 481, 480, 478, 476, 475, 473, 472, 471, 470, 469, 468, 467, 466, 465, 648, 648, 648, 659, 659, 464, 659, 659, 659, 659, 463, 659, 659, 659, 659, 659, 461, 659, 460, 459, 457, 456, 455, 454, 659, 659, 659, 659, 659, 453, 452, 451, 450, 449, 448, 447, 445, 444, 443, 441, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 422, 421, 420, 419, 418, 416, 415, 414, 413, 412, 411, 409, 408, 407, 406, 405, 403, 402, 401, 400, 399, 398, 396, 394, 392, 391, 659, 659, 659, 895, 895, 895, 895, 895, 895, 896, 896, 896, 896, 896, 896, 897, 897, 897, 897, 898, 898, 898, 898, 900, 900, 901, 901, 901, 901, 901, 901, 902, 388, 902, 902, 903, 387, 903, 903, 903, 903, 904, 386, 904, 904, 904, 904, 905, 905, 905, 905, 906, 385, 906, 906, 906, 906, 907, 384, 907, 907, 907, 907, 908, 383, 908, 908, 908, 908, 909, 382, 909, 909, 909, 909, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 370, 369, 368, 367, 366, 364, 363, 362, 361, 360, 359, 357, 356, 355, 354, 353, 352, 350, 347, 346, 345, 344, 343, 342, 341, 340, 339, 338, 337, 336, 333, 331, 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, 320, 317, 307, 304, 303, 300, 298, 297, 295, 294, 293, 292, 290, 289, 288, 287, 285, 284, 283, 282, 280, 279, 278, 277, 276, 275, 274, 272, 270, 269, 262, 260, 259, 258, 257, 253, 243, 242, 237, 232, 231, 230, 228, 227, 226, 225, 224, 222, 221, 220, 219, 218, 216, 215, 214, 213, 212, 210, 209, 208, 207, 206, 205, 204, 202, 200, 199, 197, 194, 190, 180, 176, 173, 171, 170, 169, 160, 158, 157, 156, 148, 145, 143, 141, 139, 138, 136, 127, 126, 123, 121, 116, 115, 114, 100, 96, 95, 88, 84, 78, 77, 71, 70, 62, 61, 60, 56, 54, 53, 48, 47, 46, 37, 33, 29, 27, 26, 20, 19, 13, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894, 894 } ; 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 char *yytext; #line 1 "./ldlex.l" #define INITIAL 0 #line 2 "./ldlex.l" /* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc. This file is part of GLD, the Gnu Linker. GLD 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. GLD 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 GLD; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* This was written by steve chamberlain sac@cygnus.com */ #include #include #include #ifdef MPW /* Prevent enum redefinition problems. */ #define TRUE_FALSE_ALREADY_DEFINED #endif /* MPW */ #include "bfd.h" #include "sysdep.h" #include "ld.h" #include "ldgram.h" #include "ldmisc.h" #include "ldexp.h" #include "ldlang.h" #include "ldfile.h" #include "ldlex.h" #include "ldmain.h" /* The type of top-level parser input. yylex and yyparse (indirectly) both check this. */ input_type parser_input; /* Radix to use for bfd_scan_vma -- 0 (default to base 10) or 16. */ int hex_mode; /* Line number in the current input file. (FIXME Actually, it doesn't appear to get reset for each file?) */ unsigned int lineno = 1; /* The string we are currently lexing, or NULL if we are reading a file. */ const char *lex_string = NULL; /* Support for flex reading from more than one input file (stream). `include_stack' is flex's input state for each open file; `file_name_stack' is the file names. `lineno_stack' is the current line numbers. If `include_stack_ptr' is 0, we haven't started reading anything yet. Otherwise, stack elements 0 through `include_stack_ptr - 1' are valid. */ #undef YY_INPUT #define YY_INPUT(buf,result,max_size) yy_input(buf, &result, max_size) #define MAX_INCLUDE_DEPTH 10 static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH]; static const char *file_name_stack[MAX_INCLUDE_DEPTH]; static unsigned int lineno_stack[MAX_INCLUDE_DEPTH]; static unsigned int include_stack_ptr = 0; static YY_BUFFER_STATE yy_create_string_buffer PARAMS ((const char *string, size_t size)); static void yy_input PARAMS ((char *, int *result, int max_size)); static void comment PARAMS ((void)); static void lex_warn_invalid PARAMS ((char *where, char *what)); /* STATES EXPRESSION definitely in an expression SCRIPT definitely in a script BOTH either EXPRESSION or SCRIPT DEFSYMEXP in an argument to -defsym MRI in an MRI script */ #define RTOKEN(x) { yylval.token = x; return x; } /* Some versions of flex want this. */ #ifndef yywrap int yywrap () { return 1; } #endif #define SCRIPT 1 #define EXPRESSION 2 #define BOTH 3 #define DEFSYMEXP 4 #define MRI 5 #line 1146 "lex.yy.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 #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 \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 120 "./ldlex.l" if (parser_input != input_selected) { /* The first token of the input determines the initial parser state. */ input_type t = parser_input; parser_input = input_selected; switch (t) { case input_script: return INPUT_SCRIPT; break; case input_mri_script: return INPUT_MRI_SCRIPT; break; case input_defsym: return INPUT_DEFSYM; break; default: abort (); } } #line 1310 "lex.yy.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_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 >= 895 ) 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] != 1629 ); 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 136 "./ldlex.l" { comment(); } YY_BREAK case 2: YY_RULE_SETUP #line 139 "./ldlex.l" { RTOKEN('-');} YY_BREAK case 3: YY_RULE_SETUP #line 140 "./ldlex.l" { RTOKEN('+');} YY_BREAK case 4: YY_RULE_SETUP #line 141 "./ldlex.l" { yylval.name = buystring(yytext); return NAME; } YY_BREAK case 5: YY_RULE_SETUP #line 142 "./ldlex.l" { RTOKEN('='); } YY_BREAK case 6: YY_RULE_SETUP #line 144 "./ldlex.l" { yylval.integer = bfd_scan_vma (yytext+1, 0,16); return INT; } YY_BREAK case 7: YY_RULE_SETUP #line 149 "./ldlex.l" { int ibase ; switch (yytext[yyleng-1]) { case 'X': case 'x': case 'H': case 'h': ibase = 16; break; case 'O': case 'o': ibase = 8; break; case 'B': case 'b': ibase = 2; break; default: ibase = 10; } yylval.integer = bfd_scan_vma (yytext, 0, ibase); return INT; } YY_BREAK case 8: YY_RULE_SETUP #line 173 "./ldlex.l" { yylval.integer = bfd_scan_vma (yytext, 0, hex_mode); if (yytext[yyleng-1]=='M' || yytext[yyleng-1] == 'm') { yylval.integer *= 1024*1024; } if (yytext[yyleng-1]=='K' || yytext[yyleng-1]=='k') { yylval.integer *= 1024; } return INT; } YY_BREAK case 9: YY_RULE_SETUP #line 186 "./ldlex.l" { RTOKEN(']');} YY_BREAK case 10: YY_RULE_SETUP #line 187 "./ldlex.l" { RTOKEN('[');} YY_BREAK case 11: YY_RULE_SETUP #line 188 "./ldlex.l" { RTOKEN(LSHIFTEQ);} YY_BREAK case 12: YY_RULE_SETUP #line 189 "./ldlex.l" { RTOKEN(RSHIFTEQ);} YY_BREAK case 13: YY_RULE_SETUP #line 190 "./ldlex.l" { RTOKEN(OROR);} YY_BREAK case 14: YY_RULE_SETUP #line 191 "./ldlex.l" { RTOKEN(EQ);} YY_BREAK case 15: YY_RULE_SETUP #line 192 "./ldlex.l" { RTOKEN(NE);} YY_BREAK case 16: YY_RULE_SETUP #line 193 "./ldlex.l" { RTOKEN(GE);} YY_BREAK case 17: YY_RULE_SETUP #line 194 "./ldlex.l" { RTOKEN(LE);} YY_BREAK case 18: YY_RULE_SETUP #line 195 "./ldlex.l" { RTOKEN(LSHIFT);} YY_BREAK case 19: YY_RULE_SETUP #line 196 "./ldlex.l" { RTOKEN(RSHIFT);} YY_BREAK case 20: YY_RULE_SETUP #line 197 "./ldlex.l" { RTOKEN(PLUSEQ);} YY_BREAK case 21: YY_RULE_SETUP #line 198 "./ldlex.l" { RTOKEN(MINUSEQ);} YY_BREAK case 22: YY_RULE_SETUP #line 199 "./ldlex.l" { RTOKEN(MULTEQ);} YY_BREAK case 23: YY_RULE_SETUP #line 200 "./ldlex.l" { RTOKEN(DIVEQ);} YY_BREAK case 24: YY_RULE_SETUP #line 201 "./ldlex.l" { RTOKEN(ANDEQ);} YY_BREAK case 25: YY_RULE_SETUP #line 202 "./ldlex.l" { RTOKEN(OREQ);} YY_BREAK case 26: YY_RULE_SETUP #line 203 "./ldlex.l" { RTOKEN(ANDAND);} YY_BREAK case 27: YY_RULE_SETUP #line 204 "./ldlex.l" { RTOKEN('>');} YY_BREAK case 28: YY_RULE_SETUP #line 205 "./ldlex.l" { RTOKEN(',');} YY_BREAK case 29: YY_RULE_SETUP #line 206 "./ldlex.l" { RTOKEN('&');} YY_BREAK case 30: YY_RULE_SETUP #line 207 "./ldlex.l" { RTOKEN('|');} YY_BREAK case 31: YY_RULE_SETUP #line 208 "./ldlex.l" { RTOKEN('~');} YY_BREAK case 32: YY_RULE_SETUP #line 209 "./ldlex.l" { RTOKEN('!');} YY_BREAK case 33: YY_RULE_SETUP #line 210 "./ldlex.l" { RTOKEN('?');} YY_BREAK case 34: YY_RULE_SETUP #line 211 "./ldlex.l" { RTOKEN('*');} YY_BREAK case 35: YY_RULE_SETUP #line 212 "./ldlex.l" { RTOKEN('+');} YY_BREAK case 36: YY_RULE_SETUP #line 213 "./ldlex.l" { RTOKEN('-');} YY_BREAK case 37: YY_RULE_SETUP #line 214 "./ldlex.l" { RTOKEN('/');} YY_BREAK case 38: YY_RULE_SETUP #line 215 "./ldlex.l" { RTOKEN('%');} YY_BREAK case 39: YY_RULE_SETUP #line 216 "./ldlex.l" { RTOKEN('<');} YY_BREAK case 40: YY_RULE_SETUP #line 217 "./ldlex.l" { RTOKEN('=');} YY_BREAK case 41: YY_RULE_SETUP #line 218 "./ldlex.l" { RTOKEN('}') ; } YY_BREAK case 42: YY_RULE_SETUP #line 219 "./ldlex.l" { RTOKEN('{'); } YY_BREAK case 43: YY_RULE_SETUP #line 220 "./ldlex.l" { RTOKEN(')');} YY_BREAK case 44: YY_RULE_SETUP #line 221 "./ldlex.l" { RTOKEN('(');} YY_BREAK case 45: YY_RULE_SETUP #line 222 "./ldlex.l" { RTOKEN(':'); } YY_BREAK case 46: YY_RULE_SETUP #line 223 "./ldlex.l" { RTOKEN(';');} YY_BREAK case 47: YY_RULE_SETUP #line 224 "./ldlex.l" { RTOKEN(MEMORY);} YY_BREAK case 48: YY_RULE_SETUP #line 225 "./ldlex.l" { RTOKEN(ORIGIN);} YY_BREAK case 49: YY_RULE_SETUP #line 226 "./ldlex.l" { RTOKEN(BLOCK);} YY_BREAK case 50: YY_RULE_SETUP #line 227 "./ldlex.l" { RTOKEN(LENGTH);} YY_BREAK case 51: YY_RULE_SETUP #line 228 "./ldlex.l" { RTOKEN(ALIGN_K);} YY_BREAK case 52: YY_RULE_SETUP #line 229 "./ldlex.l" { RTOKEN(ADDR);} YY_BREAK case 53: YY_RULE_SETUP #line 230 "./ldlex.l" { RTOKEN(ENTRY);} YY_BREAK case 54: YY_RULE_SETUP #line 231 "./ldlex.l" { RTOKEN(NEXT);} YY_BREAK case 55: YY_RULE_SETUP #line 232 "./ldlex.l" { RTOKEN(SIZEOF_HEADERS);} YY_BREAK case 56: YY_RULE_SETUP #line 233 "./ldlex.l" { RTOKEN(SIZEOF_HEADERS);} YY_BREAK case 57: YY_RULE_SETUP #line 234 "./ldlex.l" { RTOKEN(MAP);} YY_BREAK case 58: YY_RULE_SETUP #line 235 "./ldlex.l" { RTOKEN(SIZEOF);} YY_BREAK case 59: YY_RULE_SETUP #line 236 "./ldlex.l" { RTOKEN(TARGET_K);} YY_BREAK case 60: YY_RULE_SETUP #line 237 "./ldlex.l" { RTOKEN(SEARCH_DIR);} YY_BREAK case 61: YY_RULE_SETUP #line 238 "./ldlex.l" { RTOKEN(OUTPUT);} YY_BREAK case 62: YY_RULE_SETUP #line 239 "./ldlex.l" { RTOKEN(INPUT);} YY_BREAK case 63: YY_RULE_SETUP #line 240 "./ldlex.l" { RTOKEN(GROUP);} YY_BREAK case 64: YY_RULE_SETUP #line 241 "./ldlex.l" { RTOKEN(DEFINED);} YY_BREAK case 65: YY_RULE_SETUP #line 242 "./ldlex.l" { RTOKEN(CREATE_OBJECT_SYMBOLS);} YY_BREAK case 66: YY_RULE_SETUP #line 243 "./ldlex.l" { RTOKEN( CONSTRUCTORS);} YY_BREAK case 67: YY_RULE_SETUP #line 244 "./ldlex.l" { RTOKEN(FORCE_COMMON_ALLOCATION);} YY_BREAK case 68: YY_RULE_SETUP #line 245 "./ldlex.l" { RTOKEN(SECTIONS);} YY_BREAK case 69: YY_RULE_SETUP #line 246 "./ldlex.l" { RTOKEN(FILL);} YY_BREAK case 70: YY_RULE_SETUP #line 247 "./ldlex.l" { RTOKEN(STARTUP);} YY_BREAK case 71: YY_RULE_SETUP #line 248 "./ldlex.l" { RTOKEN(OUTPUT_FORMAT);} YY_BREAK case 72: YY_RULE_SETUP #line 249 "./ldlex.l" { RTOKEN( OUTPUT_ARCH);} YY_BREAK case 73: YY_RULE_SETUP #line 250 "./ldlex.l" { RTOKEN(HLL);} YY_BREAK case 74: YY_RULE_SETUP #line 251 "./ldlex.l" { RTOKEN(SYSLIB);} YY_BREAK case 75: YY_RULE_SETUP #line 252 "./ldlex.l" { RTOKEN(FLOAT);} YY_BREAK case 76: YY_RULE_SETUP #line 253 "./ldlex.l" { RTOKEN( QUAD);} YY_BREAK case 77: YY_RULE_SETUP #line 254 "./ldlex.l" { RTOKEN( LONG);} YY_BREAK case 78: YY_RULE_SETUP #line 255 "./ldlex.l" { RTOKEN( SHORT);} YY_BREAK case 79: YY_RULE_SETUP #line 256 "./ldlex.l" { RTOKEN( BYTE);} YY_BREAK case 80: YY_RULE_SETUP #line 257 "./ldlex.l" { RTOKEN(NOFLOAT);} YY_BREAK case 81: YY_RULE_SETUP #line 258 "./ldlex.l" { RTOKEN(NOLOAD);} YY_BREAK case 82: YY_RULE_SETUP #line 259 "./ldlex.l" { RTOKEN(DSECT);} YY_BREAK case 83: YY_RULE_SETUP #line 260 "./ldlex.l" { RTOKEN(COPY);} YY_BREAK case 84: YY_RULE_SETUP #line 261 "./ldlex.l" { RTOKEN(INFO);} YY_BREAK case 85: YY_RULE_SETUP #line 262 "./ldlex.l" { RTOKEN(OVERLAY);} YY_BREAK case 86: YY_RULE_SETUP #line 263 "./ldlex.l" { RTOKEN(ORIGIN);} YY_BREAK case 87: YY_RULE_SETUP #line 264 "./ldlex.l" { RTOKEN(ORIGIN);} YY_BREAK case 88: YY_RULE_SETUP #line 265 "./ldlex.l" { RTOKEN( LENGTH);} YY_BREAK case 89: YY_RULE_SETUP #line 266 "./ldlex.l" { RTOKEN( LENGTH);} YY_BREAK case 90: YY_RULE_SETUP #line 267 "./ldlex.l" { RTOKEN(INCLUDE);} YY_BREAK case 91: YY_RULE_SETUP #line 268 "./ldlex.l" { RTOKEN(AT);} YY_BREAK case 92: YY_RULE_SETUP #line 269 "./ldlex.l" { RTOKEN(PROVIDE); } YY_BREAK case 93: YY_RULE_SETUP #line 270 "./ldlex.l" { ++ lineno; } YY_BREAK case 94: YY_RULE_SETUP #line 271 "./ldlex.l" { ++ lineno; RTOKEN(NEWLINE); } YY_BREAK case 95: YY_RULE_SETUP #line 272 "./ldlex.l" { ++ lineno; RTOKEN(NEWLINE); } YY_BREAK case 96: YY_RULE_SETUP #line 273 "./ldlex.l" { /* Mri comment line */ } YY_BREAK case 97: YY_RULE_SETUP #line 274 "./ldlex.l" { /* Mri comment line */ } YY_BREAK case 98: YY_RULE_SETUP #line 275 "./ldlex.l" { RTOKEN(ENDWORD); } YY_BREAK case 99: YY_RULE_SETUP #line 276 "./ldlex.l" { RTOKEN(ALIGNMOD);} YY_BREAK case 100: YY_RULE_SETUP #line 277 "./ldlex.l" { RTOKEN(ALIGN_K);} YY_BREAK case 101: YY_RULE_SETUP #line 278 "./ldlex.l" { RTOKEN(CHIP); } YY_BREAK case 102: YY_RULE_SETUP #line 279 "./ldlex.l" { RTOKEN(BASE); } YY_BREAK case 103: YY_RULE_SETUP #line 280 "./ldlex.l" { RTOKEN(ALIAS); } YY_BREAK case 104: YY_RULE_SETUP #line 281 "./ldlex.l" { RTOKEN(TRUNCATE); } YY_BREAK case 105: YY_RULE_SETUP #line 282 "./ldlex.l" { RTOKEN(LOAD); } YY_BREAK case 106: YY_RULE_SETUP #line 283 "./ldlex.l" { RTOKEN(PUBLIC); } YY_BREAK case 107: YY_RULE_SETUP #line 284 "./ldlex.l" { RTOKEN(ORDER); } YY_BREAK case 108: YY_RULE_SETUP #line 285 "./ldlex.l" { RTOKEN(NAMEWORD); } YY_BREAK case 109: YY_RULE_SETUP #line 286 "./ldlex.l" { RTOKEN(FORMAT); } YY_BREAK case 110: YY_RULE_SETUP #line 287 "./ldlex.l" { RTOKEN(CASE); } YY_BREAK case 111: YY_RULE_SETUP #line 288 "./ldlex.l" { RTOKEN(EXTERN); } YY_BREAK case 112: YY_RULE_SETUP #line 289 "./ldlex.l" { RTOKEN(START); } YY_BREAK case 113: YY_RULE_SETUP #line 290 "./ldlex.l" { RTOKEN(LIST); /* LIST and ignore to end of line */ } YY_BREAK case 114: YY_RULE_SETUP #line 291 "./ldlex.l" { RTOKEN(SECT); } YY_BREAK case 115: YY_RULE_SETUP #line 292 "./ldlex.l" { RTOKEN(ABSOLUTE); } YY_BREAK case 116: YY_RULE_SETUP #line 293 "./ldlex.l" { RTOKEN(ENDWORD); } YY_BREAK case 117: YY_RULE_SETUP #line 294 "./ldlex.l" { RTOKEN(ALIGNMOD);} YY_BREAK case 118: YY_RULE_SETUP #line 295 "./ldlex.l" { RTOKEN(ALIGN_K);} YY_BREAK case 119: YY_RULE_SETUP #line 296 "./ldlex.l" { RTOKEN(CHIP); } YY_BREAK case 120: YY_RULE_SETUP #line 297 "./ldlex.l" { RTOKEN(BASE); } YY_BREAK case 121: YY_RULE_SETUP #line 298 "./ldlex.l" { RTOKEN(ALIAS); } YY_BREAK case 122: YY_RULE_SETUP #line 299 "./ldlex.l" { RTOKEN(TRUNCATE); } YY_BREAK case 123: YY_RULE_SETUP #line 300 "./ldlex.l" { RTOKEN(LOAD); } YY_BREAK case 124: YY_RULE_SETUP #line 301 "./ldlex.l" { RTOKEN(PUBLIC); } YY_BREAK case 125: YY_RULE_SETUP #line 302 "./ldlex.l" { RTOKEN(ORDER); } YY_BREAK case 126: YY_RULE_SETUP #line 303 "./ldlex.l" { RTOKEN(NAMEWORD); } YY_BREAK case 127: YY_RULE_SETUP #line 304 "./ldlex.l" { RTOKEN(FORMAT); } YY_BREAK case 128: YY_RULE_SETUP #line 305 "./ldlex.l" { RTOKEN(CASE); } YY_BREAK case 129: YY_RULE_SETUP #line 306 "./ldlex.l" { RTOKEN(EXTERN); } YY_BREAK case 130: YY_RULE_SETUP #line 307 "./ldlex.l" { RTOKEN(START); } YY_BREAK case 131: YY_RULE_SETUP #line 308 "./ldlex.l" { RTOKEN(LIST); /* LIST and ignore to end of line */ } YY_BREAK case 132: YY_RULE_SETUP #line 309 "./ldlex.l" { RTOKEN(SECT); } YY_BREAK case 133: YY_RULE_SETUP #line 310 "./ldlex.l" { RTOKEN(ABSOLUTE); } YY_BREAK case 134: YY_RULE_SETUP #line 312 "./ldlex.l" { /* Filename without commas, needed to parse mri stuff */ yylval.name = buystring(yytext); return NAME; } YY_BREAK case 135: YY_RULE_SETUP #line 319 "./ldlex.l" { yylval.name = buystring(yytext); return NAME; } YY_BREAK case 136: YY_RULE_SETUP #line 323 "./ldlex.l" { yylval.name = buystring (yytext + 2); return LNAME; } YY_BREAK case 137: YY_RULE_SETUP #line 327 "./ldlex.l" { yylval.name = buystring(yytext); return NAME; } YY_BREAK case 138: YY_RULE_SETUP #line 331 "./ldlex.l" { /* No matter the state, quotes give what's inside */ yylval.name = buystring(yytext+1); yylval.name[yyleng-2] = 0; return NAME; } YY_BREAK case 139: YY_RULE_SETUP #line 338 "./ldlex.l" { lineno++;} YY_BREAK case 140: YY_RULE_SETUP #line 339 "./ldlex.l" { lineno++;} YY_BREAK case 141: YY_RULE_SETUP #line 340 "./ldlex.l" YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(SCRIPT): case YY_STATE_EOF(EXPRESSION): case YY_STATE_EOF(BOTH): case YY_STATE_EOF(DEFSYMEXP): case YY_STATE_EOF(MRI): #line 342 "./ldlex.l" { include_stack_ptr--; if (include_stack_ptr == 0) { yyterminate(); } else { yy_switch_to_buffer(include_stack[include_stack_ptr]); } BEGIN(SCRIPT); ldfile_input_filename = file_name_stack[include_stack_ptr - 1]; lineno = lineno_stack[include_stack_ptr - 1]; return END; } YY_BREAK case 142: YY_RULE_SETUP #line 361 "./ldlex.l" lex_warn_invalid(" in script", yytext); YY_BREAK case 143: YY_RULE_SETUP #line 362 "./ldlex.l" lex_warn_invalid(" in expression", yytext); YY_BREAK case 144: YY_RULE_SETUP #line 364 "./ldlex.l" ECHO; YY_BREAK #line 2195 "lex.yy.c" 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; 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 singled characater, 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_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 ); } 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; 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 >= 895 ) 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 >= 895 ) 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 == 894); 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_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 */ yytext_ptr = yy_c_buf_p; ++yy_c_buf_p; switch ( yy_get_next_buffer() ) { case EOB_ACT_END_OF_FILE: { if ( yywrap() ) { yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; 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 + YY_MORE_ADJ; break; case EOB_ACT_LAST_MATCH: #ifdef __cplusplus YY_FATAL_ERROR( "unexpected last match in yyinput()" ); #else YY_FATAL_ERROR( "unexpected last match in input()" ); #endif } } } 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; 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 { 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 *str ) #else YY_BUFFER_STATE yy_scan_string( str ) yyconst char *str; #endif { int len; for ( len = 0; str[len]; ++len ) ; return yy_scan_bytes( 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_MORE_ADJ; \ 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_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 *) xmalloc( 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 364 "./ldlex.l" /* Switch flex to reading script file NAME, open on FILE, saving the current input info on the include stack. */ void lex_push_file (file, name) FILE *file; const char *name; { if (include_stack_ptr >= MAX_INCLUDE_DEPTH) { einfo("%F:includes nested too deeply\n"); } file_name_stack[include_stack_ptr] = name; lineno_stack[include_stack_ptr] = 1; include_stack[include_stack_ptr] = YY_CURRENT_BUFFER; include_stack_ptr++; yyin = file; yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE)); BEGIN (SCRIPT); } /* Return a newly created flex input buffer containing STRING, which is SIZE bytes long. */ static YY_BUFFER_STATE yy_create_string_buffer (string, size) CONST char *string; size_t size; { YY_BUFFER_STATE b; /* Calls to m-alloc get turned by sed into xm-alloc. */ b = (YY_BUFFER_STATE) xmalloc (sizeof (struct yy_buffer_state)); b->yy_input_file = 0; 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 *) xmalloc ((unsigned) (b->yy_buf_size + 3)); b->yy_ch_buf[0] = '\n'; strcpy (b->yy_ch_buf+1, string); b->yy_ch_buf[size+1] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[size+2] = YY_END_OF_BUFFER_CHAR; b->yy_n_chars = size+1; b->yy_buf_pos = &b->yy_ch_buf[1]; /* flex 2.4.7 changed the interface. FIXME: We should not be using a flex internal interface in the first place! */ #ifdef YY_BUFFER_NEW b->yy_buffer_status = YY_BUFFER_NEW; #else b->yy_eof_status = EOF_NOT_SEEN; #endif return b; } /* Switch flex to reading from STRING, saving the current input info on the include stack. */ void lex_redirect (string) CONST char *string; { YY_BUFFER_STATE tmp; yy_init = 0; if (include_stack_ptr >= MAX_INCLUDE_DEPTH) { einfo("%F: macros nested too deeply\n"); } file_name_stack[include_stack_ptr] = "redirect"; lineno_stack[include_stack_ptr] = 0; include_stack[include_stack_ptr] = YY_CURRENT_BUFFER; include_stack_ptr++; tmp = yy_create_string_buffer (string, strlen (string)); yy_switch_to_buffer (tmp); BEGIN (SCRIPT); } /* Functions to switch to a different flex start condition, saving the current start condition on `state_stack'. */ static int state_stack[MAX_INCLUDE_DEPTH * 2]; static int *state_stack_p = state_stack; void ldlex_script () { *(state_stack_p)++ = yy_start; BEGIN (SCRIPT); } void ldlex_mri_script () { *(state_stack_p)++ = yy_start; BEGIN (MRI); } void ldlex_defsym () { *(state_stack_p)++ = yy_start; BEGIN (DEFSYMEXP); } void ldlex_expression () { *(state_stack_p)++ = yy_start; BEGIN (EXPRESSION); } void ldlex_both () { *(state_stack_p)++ = yy_start; BEGIN (BOTH); } void ldlex_popstate () { yy_start = *(--state_stack_p); } /* Place up to MAX_SIZE characters in BUF and return in *RESULT either the number of characters read, or 0 to indicate EOF. */ static void yy_input (buf, result, max_size) char *buf; int *result; int max_size; { *result = 0; if (yy_current_buffer->yy_input_file) { if (yyin) { *result = read (fileno (yyin), (char *) buf, max_size); if (*result < 0) einfo ("%F%P: read in flex scanner failed"); } } } /* Eat the rest of a C-style comment. */ static void comment () { int c; while (1) { c = input(); while (c != '*' && c != EOF) { if (c == '\n' || c == '\r') lineno++; c = input(); } if (c == '*') { c = input(); while (c == '*') c = input(); if (c == '/') break; /* found the end */ } if (c == '\n' || c == '\r') lineno++; if (c == EOF) { einfo( "%F%P: EOF in comment\n"); break; } } } /* Warn the user about a garbage character WHAT in the input in context WHERE. */ static void lex_warn_invalid (where, what) char *where, *what; { char buf[5]; /* If we have found an input file whose format we do not recognize, and we are therefore treating it as a linker script, and we find an invalid character, then most likely this is a real object file of some different format. Treat it as such. */ if (ldfile_assumed_script) { bfd_set_error (bfd_error_file_not_recognized); einfo ("%F%s: file not recognized: %E\n", ldfile_input_filename); } if (! isprint ((unsigned char) *what)) { sprintf (buf, "\\%03o", (unsigned int) *what); what = buf; } einfo ("%P:%S: ignoring invalid character `%s'%s\n", what, where); }