blob: 2b87b3aa345d1428ecc6f001df83f53d86cf6f85 [file] [log] [blame]
/* A lexical scanner generated by flex */
/* Scanner skeleton version:
* $Header$
*/
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#include <stdio.h>
#include <errno.h>
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
#ifdef c_plusplus
#ifndef __cplusplus
#define __cplusplus
#endif
#endif
#ifdef __cplusplus
#include <stdlib.h>
#ifndef _Win32
#include <unistd.h>
#else
#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#endif
#endif
/* 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 <io.h>
#include <stdlib.h>
#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)
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 170
#define YY_END_OF_BUFFER 171
static yyconst short int yy_accept[1109] =
{ 0,
0, 0, 150, 150, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 171, 170,
168, 153, 152, 32, 168, 150, 38, 29, 44, 43,
34, 35, 28, 36, 150, 37, 8, 8, 45, 46,
39, 40, 27, 33, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 10, 9, 150, 100, 98, 150, 42,
30, 41, 31, 169, 153, 32, 169, 148, 38, 29,
44, 43, 34, 35, 28, 36, 148, 37, 8, 8,
45, 46, 39, 40, 27, 33, 148, 148, 148, 148,
148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
148, 10, 9, 148, 148, 42, 30, 41, 31, 148,
8, 8, 148, 148, 148, 148, 148, 148, 148, 148,
148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
100, 98, 4, 3, 2, 4, 5, 109, 108, 147,
34, 35, 28, 36, 147, 37, 8, 8, 45, 46,
40, 33, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 147, 10, 9, 147, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 31, 167, 165,
166, 160, 159, 154, 161, 162, 158, 158, 158, 158,
163, 164, 153, 15, 0, 151, 150, 8, 26, 24,
22, 20, 21, 1, 23, 8, 8, 150, 18, 17,
14, 16, 19, 150, 150, 150, 104, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 25, 13,
148, 6, 22, 20, 21, 0, 1, 23, 8, 0,
7, 7, 8, 7, 14, 148, 7, 7, 7, 148,
148, 104, 7, 148, 148, 7, 148, 148, 7, 148,
148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
7, 148, 8, 8, 0, 148, 148, 148, 148, 148,
148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
148, 148, 148, 148, 148, 148, 148, 148, 148, 4,
4, 108, 108, 147, 6, 110, 22, 23, 111, 147,
7, 7, 7, 147, 147, 147, 7, 147, 7, 7,
147, 147, 147, 147, 147, 147, 147, 147, 7, 147,
147, 147, 7, 147, 7, 7, 147, 147, 147, 147,
147, 147, 147, 147, 167, 166, 159, 158, 0, 158,
158, 158, 11, 12, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 81, 150, 150, 150, 150, 150, 150, 150,
150, 64, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 150, 101, 99, 150, 8, 149, 8,
148, 7, 148, 148, 148, 148, 148, 148, 148, 148,
148, 148, 148, 148, 56, 57, 148, 148, 148, 148,
148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
148, 148, 148, 148, 81, 148, 148, 148, 148, 148,
64, 148, 148, 148, 148, 148, 148, 148, 148, 148,
148, 148, 148, 148, 148, 148, 148, 101, 99, 4,
8, 147, 147, 147, 147, 147, 112, 147, 147, 147,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147,
147, 147, 129, 147, 147, 147, 147, 147, 147, 147,
147, 147, 147, 158, 158, 158, 150, 54, 150, 51,
150, 88, 150, 95, 150, 150, 150, 150, 150, 150,
77, 150, 150, 150, 150, 96, 150, 150, 106, 150,
150, 86, 150, 61, 150, 150, 150, 150, 150, 150,
150, 150, 84, 150, 150, 150, 150, 92, 150, 150,
150, 150, 150, 150, 150, 148, 54, 148, 148, 51,
148, 95, 148, 148, 148, 148, 96, 106, 148, 61,
148, 148, 148, 148, 148, 148, 148, 88, 148, 148,
148, 148, 77, 148, 148, 148, 148, 148, 148, 86,
148, 148, 148, 148, 148, 148, 84, 148, 148, 148,
92, 148, 148, 148, 148, 148, 147, 147, 147, 116,
124, 115, 147, 147, 126, 119, 122, 147, 147, 127,
147, 147, 147, 147, 147, 133, 141, 132, 147, 147,
144, 136, 139, 147, 147, 145, 147, 147, 158, 158,
158, 150, 53, 50, 150, 150, 150, 94, 59, 150,
150, 83, 150, 70, 150, 150, 69, 150, 150, 150,
150, 150, 150, 150, 150, 150, 103, 150, 150, 150,
87, 150, 85, 150, 150, 150, 150, 150, 150, 148,
53, 148, 50, 148, 94, 148, 70, 148, 148, 148,
148, 148, 148, 148, 148, 148, 148, 59, 148, 83,
148, 148, 148, 69, 148, 148, 148, 148, 148, 148,
103, 148, 148, 87, 85, 148, 148, 148, 148, 147,
117, 114, 147, 147, 126, 126, 121, 147, 125, 147,
147, 134, 131, 147, 147, 144, 144, 138, 147, 143,
147, 158, 158, 156, 150, 150, 150, 150, 150, 60,
150, 150, 150, 52, 150, 47, 150, 150, 93, 48,
68, 150, 150, 150, 150, 65, 150, 82, 66, 150,
150, 150, 148, 58, 148, 148, 148, 148, 93, 148,
148, 65, 148, 148, 148, 148, 60, 148, 148, 148,
52, 47, 148, 48, 68, 148, 148, 148, 148, 82,
66, 148, 147, 147, 60, 123, 120, 147, 147, 147,
142, 140, 137, 147, 157, 155, 150, 150, 150, 71,
150, 150, 102, 150, 150, 150, 89, 150, 91, 105,
150, 150, 150, 78, 49, 150, 150, 148, 71, 148,
148, 148, 97, 105, 148, 148, 148, 148, 148, 148,
102, 148, 89, 148, 91, 148, 148, 78, 49, 147,
147, 147, 147, 147, 147, 128, 150, 150, 150, 150,
150, 55, 150, 150, 150, 150, 76, 150, 146, 150,
128, 148, 55, 148, 148, 146, 148, 148, 148, 148,
148, 148, 148, 148, 76, 128, 113, 118, 146, 130,
135, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 148, 148, 148, 148, 148, 148, 148, 148,
148, 148, 148, 150, 150, 150, 150, 150, 150, 150,
150, 67, 150, 150, 148, 148, 148, 148, 148, 148,
148, 148, 148, 148, 67, 150, 150, 150, 150, 150,
90, 80, 150, 150, 150, 148, 90, 148, 148, 148,
148, 148, 148, 80, 148, 73, 150, 107, 150, 150,
150, 150, 150, 107, 148, 148, 73, 148, 148, 148,
148, 150, 150, 150, 79, 150, 150, 148, 148, 148,
148, 148, 79, 150, 150, 150, 63, 62, 63, 62,
148, 148, 148, 150, 150, 150, 148, 148, 148, 150,
150, 150, 148, 148, 148, 150, 150, 150, 148, 148,
148, 150, 150, 150, 148, 148, 148, 150, 150, 150,
148, 148, 148, 150, 150, 150, 148, 148, 148, 72,
150, 150, 72, 148, 148, 150, 150, 148, 148, 74,
150, 74, 148, 150, 148, 75, 75, 0
} ;
static yyconst int yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 2, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 4, 5, 6, 7, 8, 9, 1, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 19,
19, 19, 19, 19, 19, 19, 19, 20, 21, 22,
23, 24, 25, 1, 26, 27, 28, 29, 30, 31,
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, 16, 48, 49, 50,
51, 52, 53, 54, 55, 1, 56, 57, 58, 59,
60, 61, 62, 63, 64, 16, 65, 66, 67, 68,
69, 70, 16, 71, 72, 73, 74, 16, 16, 75,
16, 76, 77, 78, 79, 80, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 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[81] =
{ 0,
1, 1, 2, 3, 1, 1, 4, 1, 1, 1,
1, 5, 6, 7, 8, 9, 10, 11, 11, 8,
1, 1, 7, 1, 5, 11, 11, 11, 11, 11,
11, 9, 9, 9, 9, 9, 9, 9, 9, 9,
9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
8, 10, 8, 3, 9, 11, 11, 11, 11, 11,
11, 9, 9, 9, 9, 9, 9, 9, 9, 9,
9, 9, 9, 9, 9, 9, 1, 1, 1, 10
} ;
static yyconst short int yy_base[1131] =
{ 0,
0, 0, 0, 0, 80, 0, 154, 0, 223, 302,
381, 0, 162, 172, 461, 541, 621, 701, 2005, 2006,
2006, 2002, 2006, 1980, 1997, 764, 2006, 153, 2006, 2006,
1978, 1977, 0, 1976, 0, 154, 300, 232, 0, 2006,
147, 1975, 166, 0, 226, 168, 157, 174, 168, 169,
1954, 1959, 1956, 1964, 222, 137, 224, 213, 224, 1947,
239, 1966, 1961, 0, 0, 1933, 1929, 1917, 1923, 2006,
217, 2006, 0, 2006, 1984, 1962, 1979, 808, 2006, 199,
2006, 2006, 1960, 1959, 2006, 262, 0, 263, 852, 1906,
2006, 2006, 243, 1957, 259, 2006, 910, 303, 306, 315,
460, 465, 1936, 1939, 1947, 1936, 145, 250, 1928, 1931,
1939, 2006, 2006, 474, 1908, 2006, 271, 2006, 0, 968,
550, 628, 545, 320, 218, 248, 248, 324, 1934, 1931,
299, 336, 301, 325, 330, 1923, 487, 1942, 1937, 1909,
1905, 1893, 1012, 2006, 2006, 0, 2006, 2006, 1960, 1056,
1939, 1938, 2006, 1937, 0, 1936, 0, 1883, 2006, 0,
1934, 2006, 1100, 469, 497, 461, 489, 530, 459, 1930,
1912, 1908, 477, 1910, 2006, 2006, 544, 546, 548, 621,
622, 229, 1896, 1880, 1876, 417, 1878, 0, 1946, 2006,
0, 2006, 0, 2006, 2006, 2006, 1927, 505, 513, 515,
2006, 2006, 1944, 2006, 1940, 2006, 0, 1158, 2006, 2006,
0, 0, 0, 0, 0, 708, 0, 540, 1921, 2006,
0, 2006, 1920, 1898, 1912, 1906, 0, 1900, 1898, 1892,
180, 1906, 1904, 1904, 1888, 563, 1895, 1891, 1887, 1889,
1891, 622, 1897, 1887, 561, 1884, 1886, 1875, 575, 1888,
1876, 1890, 1890, 1878, 1891, 263, 1876, 1865, 1871, 1867,
1886, 1867, 1867, 1866, 1836, 1839, 1844, 1829, 2006, 2006,
0, 1208, 2006, 2006, 2006, 0, 2006, 0, 1829, 721,
0, 2006, 2006, 0, 2006, 625, 704, 725, 0, 1869,
1858, 0, 760, 1862, 1860, 1858, 771, 1868, 1860, 1837,
1835, 1825, 1821, 1796, 1802, 1792, 463, 1805, 1784, 1763,
774, 1726, 699, 794, 0, 1752, 1765, 1733, 335, 1747,
1745, 1730, 568, 1730, 1648, 1644, 1649, 643, 1646, 639,
568, 1646, 649, 1649, 1637, 1651, 1651, 1653, 571, 1638,
1634, 1630, 1649, 1630, 1630, 1629, 1599, 1602, 1607, 0,
1258, 1665, 2006, 0, 1308, 0, 0, 2006, 0, 624,
648, 630, 0, 1633, 701, 728, 1631, 1635, 1618, 1619,
1617, 1634, 1621, 1629, 1630, 1628, 1629, 1608, 645, 1589,
705, 772, 1588, 1592, 1577, 1578, 1576, 1591, 1579, 1586,
1587, 1585, 1586, 1567, 1638, 0, 0, 1619, 1618, 617,
636, 578, 2006, 2006, 1592, 1588, 1598, 1600, 1600, 1597,
1581, 1570, 1589, 1575, 1580, 1564, 1569, 1575, 1567, 1577,
1574, 1555, 0, 1563, 1559, 1564, 1551, 1555, 1563, 1565,
1561, 0, 1552, 1546, 1547, 1552, 1548, 1554, 1544, 1541,
1540, 1535, 1552, 1537, 1534, 1535, 1547, 1531, 1549, 1531,
1536, 1540, 1527, 1501, 0, 0, 1509, 0, 0, 793,
1528, 860, 1535, 1536, 1536, 1536, 1514, 818, 1534, 1524,
1514, 1519, 1512, 1523, 0, 0, 1506, 1507, 1509, 1505,
1499, 1510, 1467, 1470, 1486, 1498, 1483, 1500, 1491, 1481,
1493, 1485, 1495, 1492, 0, 1482, 1484, 1471, 1484, 1483,
0, 1474, 1476, 1480, 1470, 1467, 1466, 1478, 1463, 1460,
1461, 1458, 1476, 1458, 1463, 1467, 1454, 0, 0, 0,
0, 1457, 662, 1466, 1465, 1453, 0, 1463, 1454, 1446,
1461, 1459, 1458, 1450, 1441, 1442, 1445, 1414, 674, 1422,
1421, 1410, 0, 1414, 1406, 1399, 1412, 1410, 1409, 1401,
1388, 1386, 1383, 608, 557, 751, 1413, 0, 1410, 0,
1412, 0, 1402, 0, 1401, 1406, 1399, 1394, 1396, 1398,
0, 1395, 1409, 1397, 1391, 0, 1409, 1390, 0, 1389,
1407, 0, 1389, 0, 1391, 1390, 1402, 1393, 1380, 1388,
1380, 1389, 0, 1394, 1387, 1375, 1379, 0, 1389, 1372,
1382, 1385, 1380, 1347, 1343, 1374, 0, 1371, 1366, 0,
1372, 0, 1368, 1361, 1359, 1363, 0, 0, 1377, 0,
1362, 1375, 1358, 1360, 1353, 1326, 1322, 0, 1345, 1343,
1333, 1335, 0, 1329, 1342, 1325, 1343, 1318, 1317, 0,
1318, 1320, 1325, 1312, 1320, 1312, 0, 1327, 1320, 1308,
0, 1323, 1306, 1316, 1319, 1314, 1310, 1301, 1304, 0,
0, 0, 1299, 1315, 1375, 0, 0, 1297, 1299, 0,
1287, 1303, 1264, 1257, 1260, 0, 0, 0, 1253, 1266,
1454, 0, 0, 1250, 1256, 0, 1240, 1254, 714, 754,
613, 1265, 0, 0, 1267, 1279, 1278, 0, 0, 1278,
1267, 0, 1250, 0, 1275, 1269, 0, 1269, 1272, 1251,
1255, 1272, 1268, 1256, 1248, 1266, 0, 1262, 1257, 1243,
0, 1251, 0, 1235, 1253, 1234, 1238, 1200, 1211, 1225,
0, 1225, 0, 1233, 0, 1233, 0, 1232, 1216, 1230,
1232, 1228, 1225, 1181, 1193, 1210, 1222, 0, 1212, 0,
1195, 1220, 1214, 0, 1214, 1196, 1217, 1203, 1196, 1214,
0, 1200, 1192, 0, 0, 1185, 1203, 1184, 1188, 1178,
0, 1184, 1182, 1175, 0, 1533, 0, 1185, 0, 1186,
1137, 0, 1143, 1141, 1135, 0, 1612, 0, 1149, 0,
1150, 640, 677, 1185, 1159, 1157, 1147, 1172, 1170, 0,
1171, 1168, 1152, 0, 1166, 0, 1149, 1147, 0, 0,
1136, 1141, 1153, 1127, 1142, 1125, 1138, 0, 0, 1139,
1101, 1118, 1127, 0, 1142, 1140, 1139, 1123, 0, 1117,
156, 279, 304, 323, 422, 493, 0, 685, 686, 684,
0, 0, 702, 0, 695, 702, 701, 719, 719, 0,
0, 729, 731, 744, 0, 0, 0, 761, 741, 748,
0, 0, 0, 755, 813, 820, 811, 814, 803, 0,
793, 809, 0, 795, 808, 810, 0, 846, 0, 0,
825, 812, 824, 0, 0, 813, 811, 845, 0, 821,
841, 843, 0, 0, 858, 833, 831, 867, 856, 858,
0, 844, 0, 875, 0, 873, 863, 0, 0, 884,
887, 888, 860, 863, 863, 0, 879, 898, 895, 892,
903, 0, 902, 890, 894, 901, 0, 912, 0, 884,
0, 914, 0, 916, 918, 0, 889, 906, 925, 915,
928, 914, 919, 926, 0, 0, 0, 0, 0, 0,
0, 921, 927, 929, 926, 925, 941, 946, 932, 933,
951, 922, 946, 950, 956, 927, 944, 953, 951, 950,
963, 949, 950, 957, 971, 965, 963, 966, 961, 973,
969, 0, 979, 950, 973, 967, 983, 954, 971, 985,
976, 979, 985, 981, 0, 976, 993, 992, 984, 994,
0, 0, 1007, 1004, 975, 1006, 0, 1007, 984, 1001,
1018, 1008, 1010, 0, 1023, 0, 1005, 0, 996, 1012,
1008, 1011, 984, 0, 1013, 986, 0, 1013, 1004, 1020,
1016, 1007, 1037, 1025, 0, 1021, 994, 1023, 1004, 1022,
1052, 1040, 0, 1036, 1044, 1033, 0, 0, 0, 0,
1045, 1053, 1036, 1043, 1056, 1068, 1046, 1059, 1071, 1060,
1059, 1063, 1063, 1062, 1066, 1077, 1077, 1069, 1080, 1080,
1072, 1070, 1085, 1080, 1081, 1096, 1083, 1087, 1080, 1104,
1097, 1090, 1108, 1094, 1105, 1115, 1098, 1109, 1118, 0,
1105, 1101, 0, 1107, 1104, 1111, 1117, 1113, 1119, 0,
1114, 0, 1115, 1123, 1125, 0, 0, 2006, 1691, 1702,
1713, 1724, 1735, 1746, 1754, 1762, 1770, 1781, 1789, 1800,
1811, 1822, 1825, 1834, 1842, 1154, 1853, 1864, 1875, 1886
} ;
static yyconst short int yy_def[1131] =
{ 0,
1109, 1109, 1108, 3, 1108, 5, 5, 7, 1110, 1110,
1108, 11, 1111, 1111, 1112, 1112, 1113, 1113, 1108, 1108,
1108, 1108, 1108, 1108, 1114, 1115, 1108, 1108, 1108, 1108,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1108,
1108, 1115, 1108, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1108,
1108, 1108, 1115, 1108, 1108, 1108, 1114, 1116, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1116, 1116, 1108, 89,
1108, 1108, 1108, 1108, 1108, 1108, 1116, 97, 97, 97,
97, 97, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1108, 1108, 97, 1116, 1108, 1108, 1108, 1116, 1116,
1108, 1108, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1117, 1108, 1108, 1117, 1108, 1108, 1118, 1119,
1120, 1108, 1108, 1108, 1119, 1119, 89, 89, 1108, 1121,
1108, 1108, 1119, 163, 163, 163, 163, 163, 1119, 1119,
1119, 1119, 1119, 1119, 1108, 1108, 163, 163, 163, 163,
163, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1108, 1108,
1122, 1108, 1123, 1108, 1108, 1108, 1124, 1124, 1124, 1124,
1108, 1108, 1108, 1108, 1114, 1108, 1115, 1115, 1108, 1108,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 208, 1108, 1108,
1115, 1108, 1108, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1108, 1108,
1116, 1116, 1108, 1108, 1108, 1125, 1108, 1116, 89, 89,
280, 1108, 1108, 1126, 1108, 97, 97, 97, 1116, 1116,
1116, 1116, 97, 1116, 1116, 1116, 97, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
97, 1116, 120, 1108, 1126, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1117,
1117, 1118, 1108, 1119, 1119, 1120, 1120, 1108, 1121, 163,
163, 163, 1119, 1119, 163, 163, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 163, 1119,
163, 163, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1119, 1108, 1122, 1123, 1124, 1108, 1124,
1124, 1124, 1108, 1108, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1116, 1125, 1126,
1116, 97, 1116, 1116, 1116, 1116, 1116, 97, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1117,
1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1124, 1124, 1124, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1119, 1127, 1119, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119,
1128, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1124, 1124,
1124, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1119,
1119, 1119, 1119, 1119, 1129, 1127, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1119, 1119, 1130, 1128, 1119, 1119, 1119,
1119, 1124, 1124, 1124, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119,
1119, 1119, 1119, 1119, 1124, 1124, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1119,
1119, 1119, 1119, 1119, 1119, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1119, 1119, 1119, 1119, 1119,
1119, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1115, 1115, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1116, 1116, 1116, 1116, 1116,
1116, 1116, 1116, 1116, 1116, 1115, 1115, 1115, 1115, 1115,
1115, 1115, 1115, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
1116, 1115, 1115, 1115, 1115, 1115, 1115, 1116, 1116, 1116,
1116, 1116, 1116, 1115, 1115, 1115, 1115, 1115, 1116, 1116,
1116, 1116, 1116, 1115, 1115, 1115, 1116, 1116, 1116, 1115,
1115, 1115, 1116, 1116, 1116, 1115, 1115, 1115, 1116, 1116,
1116, 1115, 1115, 1115, 1116, 1116, 1116, 1115, 1115, 1115,
1116, 1116, 1116, 1115, 1115, 1115, 1116, 1116, 1116, 1115,
1115, 1115, 1116, 1116, 1116, 1115, 1115, 1116, 1116, 1115,
1115, 1116, 1116, 1115, 1116, 1115, 1116, 0, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108
} ;
static yyconst short int yy_nxt[2087] =
{ 0,
21, 22, 23, 24, 25, 21, 26, 27, 28, 29,
30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
50, 51, 52, 53, 35, 54, 55, 56, 57, 58,
59, 60, 35, 61, 62, 35, 63, 35, 35, 35,
64, 35, 65, 21, 35, 66, 35, 35, 35, 35,
35, 35, 35, 35, 35, 67, 35, 35, 68, 35,
35, 69, 35, 35, 35, 35, 70, 71, 72, 73,
74, 75, 23, 76, 77, 74, 78, 79, 80, 81,
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
102, 103, 87, 104, 87, 105, 106, 107, 108, 109,
110, 87, 87, 111, 87, 87, 87, 87, 87, 87,
112, 87, 113, 74, 87, 114, 102, 102, 102, 102,
102, 87, 87, 87, 87, 87, 87, 87, 87, 87,
87, 115, 87, 87, 87, 87, 116, 117, 118, 119,
120, 209, 246, 189, 190, 214, 247, 191, 219, 220,
304, 121, 122, 189, 190, 210, 215, 191, 305, 123,
124, 125, 126, 127, 128, 894, 129, 130, 222, 223,
131, 132, 133, 134, 135, 136, 231, 137, 138, 232,
139, 228, 237, 233, 229, 238, 235, 209, 239, 140,
87, 87, 87, 87, 87, 236, 230, 234, 411, 141,
412, 210, 142, 74, 74, 20, 74, 74, 74, 143,
74, 74, 74, 74, 74, 144, 74, 145, 192, 269,
121, 122, 74, 74, 74, 147, 74, 74, 192, 216,
216, 244, 224, 248, 225, 250, 253, 319, 251, 252,
320, 245, 226, 249, 219, 220, 254, 217, 256, 217,
227, 257, 258, 74, 277, 74, 74, 321, 259, 306,
260, 222, 223, 261, 275, 278, 322, 262, 444, 307,
445, 298, 387, 269, 270, 323, 217, 388, 217, 74,
74, 74, 74, 74, 20, 74, 74, 74, 143, 74,
74, 74, 74, 74, 144, 74, 145, 216, 216, 121,
122, 74, 74, 74, 147, 74, 74, 276, 329, 293,
306, 293, 293, 895, 293, 217, 294, 217, 330, 295,
333, 293, 271, 293, 297, 296, 271, 271, 270, 271,
271, 271, 74, 294, 74, 74, 295, 324, 298, 271,
325, 331, 337, 326, 217, 332, 217, 334, 318, 305,
335, 336, 309, 487, 218, 467, 896, 897, 74, 74,
74, 21, 22, 148, 24, 21, 149, 150, 27, 28,
29, 30, 151, 152, 153, 154, 155, 156, 157, 158,
159, 160, 41, 161, 43, 162, 163, 164, 165, 166,
167, 168, 155, 155, 155, 155, 155, 169, 155, 170,
171, 172, 155, 155, 173, 174, 155, 155, 155, 155,
155, 175, 155, 176, 21, 155, 177, 178, 179, 166,
180, 181, 155, 155, 155, 155, 182, 155, 183, 184,
185, 155, 186, 187, 155, 155, 155, 70, 71, 72,
188, 21, 189, 190, 21, 21, 191, 898, 21, 21,
21, 21, 21, 21, 194, 21, 392, 21, 21, 21,
194, 194, 21, 21, 21, 21, 293, 362, 293, 393,
478, 293, 371, 293, 365, 362, 271, 354, 372, 479,
293, 271, 293, 271, 271, 354, 376, 299, 271, 271,
271, 21, 21, 21, 21, 362, 339, 271, 271, 340,
310, 377, 366, 362, 399, 354, 341, 368, 342, 367,
311, 343, 399, 354, 399, 344, 369, 195, 21, 196,
21, 21, 189, 190, 21, 21, 191, 899, 21, 21,
21, 21, 21, 21, 194, 21, 362, 21, 21, 21,
194, 194, 21, 21, 21, 21, 354, 314, 314, 370,
362, 316, 362, 317, 362, 207, 399, 207, 401, 400,
354, 290, 354, 402, 354, 283, 430, 283, 291, 292,
417, 21, 21, 21, 21, 470, 509, 399, 510, 431,
379, 381, 435, 382, 207, 436, 207, 418, 501, 380,
383, 437, 491, 690, 283, 475, 283, 195, 21, 196,
21, 21, 189, 190, 315, 25, 191, 399, 21, 21,
21, 21, 399, 21, 194, 556, 399, 21, 21, 21,
194, 194, 21, 21, 21, 314, 314, 362, 362, 424,
362, 293, 425, 293, 426, 399, 362, 354, 354, 399,
354, 271, 427, 283, 474, 283, 354, 689, 271, 271,
496, 362, 21, 472, 362, 497, 478, 500, 794, 503,
198, 354, 199, 498, 354, 479, 200, 658, 384, 554,
386, 522, 283, 659, 283, 385, 399, 201, 21, 202,
21, 21, 189, 190, 555, 25, 191, 865, 21, 21,
21, 21, 900, 21, 194, 901, 538, 21, 21, 21,
194, 194, 21, 21, 21, 216, 216, 362, 902, 674,
293, 362, 293, 399, 458, 675, 458, 354, 280, 280,
271, 354, 866, 217, 524, 217, 903, 461, 271, 904,
905, 293, 21, 462, 362, 906, 1108, 907, 1108, 908,
198, 271, 199, 458, 354, 458, 200, 909, 271, 271,
399, 525, 217, 399, 217, 910, 540, 201, 21, 202,
21, 208, 208, 911, 792, 1108, 293, 1108, 293, 208,
208, 208, 208, 208, 208, 282, 271, 293, 362, 293,
293, 468, 293, 271, 271, 912, 691, 271, 354, 793,
271, 314, 314, 913, 271, 271, 914, 271, 271, 208,
208, 208, 208, 208, 208, 272, 272, 915, 283, 283,
283, 283, 399, 272, 272, 272, 272, 272, 272, 399,
916, 917, 918, 541, 293, 483, 293, 919, 920, 921,
922, 613, 923, 926, 271, 927, 928, 283, 283, 283,
283, 271, 271, 272, 272, 272, 272, 272, 272, 279,
279, 924, 929, 930, 931, 932, 925, 280, 281, 280,
281, 280, 280, 933, 282, 934, 293, 283, 293, 283,
935, 282, 936, 937, 938, 939, 271, 940, 941, 282,
942, 944, 607, 271, 271, 943, 945, 280, 281, 280,
281, 280, 280, 946, 282, 947, 283, 948, 283, 949,
282, 950, 951, 952, 953, 954, 284, 286, 286, 955,
956, 957, 958, 959, 960, 286, 287, 286, 288, 286,
286, 961, 289, 962, 963, 964, 290, 965, 966, 289,
967, 968, 969, 291, 292, 970, 971, 289, 972, 973,
974, 975, 976, 977, 978, 286, 293, 286, 293, 286,
286, 979, 289, 980, 981, 982, 983, 984, 289, 985,
986, 987, 988, 989, 289, 313, 313, 990, 991, 992,
993, 994, 995, 313, 313, 313, 313, 313, 313, 996,
997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006,
1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016,
1017, 1018, 1019, 313, 313, 313, 313, 313, 313, 351,
351, 1020, 1021, 1022, 1023, 1024, 1025, 351, 351, 351,
351, 351, 351, 1026, 1027, 1028, 1029, 1030, 1031, 1032,
1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042,
1043, 1044, 1045, 1046, 1047, 1048, 1049, 351, 351, 351,
351, 351, 351, 355, 355, 1050, 1051, 1052, 1053, 1054,
1055, 355, 355, 355, 355, 355, 355, 1056, 1057, 1058,
1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068,
1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078,
1079, 355, 355, 355, 355, 355, 355, 360, 360, 1080,
1081, 1082, 1083, 1084, 1085, 360, 361, 360, 362, 360,
360, 1086, 363, 1087, 1088, 1089, 364, 1090, 1091, 363,
1092, 1093, 1094, 1095, 1096, 1097, 1098, 363, 1099, 1100,
1101, 1102, 1103, 1104, 1105, 360, 362, 360, 362, 360,
360, 1106, 363, 1107, 460, 893, 892, 891, 363, 890,
889, 888, 887, 886, 363, 208, 208, 885, 884, 883,
882, 881, 880, 208, 208, 208, 208, 208, 208, 879,
878, 877, 876, 217, 875, 217, 874, 873, 872, 871,
870, 869, 868, 867, 399, 864, 863, 862, 861, 860,
859, 858, 857, 208, 208, 208, 208, 208, 208, 856,
855, 854, 217, 853, 217, 272, 272, 852, 851, 850,
849, 848, 847, 272, 272, 272, 272, 272, 272, 846,
845, 844, 843, 458, 842, 458, 841, 840, 839, 838,
837, 836, 835, 834, 833, 832, 831, 830, 829, 828,
827, 826, 825, 272, 272, 272, 272, 272, 272, 824,
823, 822, 458, 821, 458, 351, 351, 820, 819, 818,
817, 816, 815, 351, 351, 351, 351, 351, 351, 814,
813, 812, 811, 520, 810, 520, 809, 808, 807, 806,
805, 804, 803, 802, 801, 800, 799, 798, 797, 796,
795, 791, 790, 351, 351, 351, 351, 351, 351, 789,
788, 785, 520, 784, 520, 355, 355, 783, 782, 781,
780, 779, 778, 355, 355, 355, 355, 355, 355, 777,
774, 773, 772, 521, 771, 521, 770, 769, 768, 767,
766, 765, 764, 763, 762, 761, 760, 759, 758, 757,
756, 755, 754, 355, 355, 355, 355, 355, 355, 753,
752, 751, 521, 750, 521, 775, 775, 749, 775, 775,
775, 748, 775, 775, 775, 775, 775, 747, 775, 746,
745, 744, 743, 742, 741, 775, 775, 775, 775, 775,
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, 775, 712,
711, 710, 709, 708, 707, 706, 705, 704, 703, 702,
701, 700, 699, 698, 697, 696, 695, 694, 693, 692,
688, 775, 775, 775, 786, 786, 687, 786, 786, 786,
686, 786, 786, 786, 786, 786, 685, 786, 684, 683,
682, 681, 680, 679, 786, 786, 786, 786, 786, 678,
677, 676, 673, 672, 671, 670, 669, 668, 667, 666,
665, 664, 663, 662, 661, 660, 657, 656, 655, 654,
653, 652, 651, 650, 649, 648, 647, 786, 646, 645,
644, 643, 642, 641, 640, 639, 638, 637, 636, 635,
634, 633, 632, 631, 613, 630, 629, 628, 607, 627,
786, 786, 786, 775, 775, 626, 775, 775, 775, 625,
775, 775, 775, 775, 775, 624, 775, 623, 622, 621,
620, 619, 618, 775, 775, 775, 775, 775, 617, 616,
615, 614, 612, 611, 610, 609, 608, 606, 605, 604,
603, 602, 601, 600, 599, 598, 597, 596, 595, 594,
593, 592, 591, 590, 589, 588, 775, 587, 586, 585,
584, 583, 582, 581, 580, 579, 578, 577, 576, 575,
574, 573, 572, 571, 570, 569, 568, 567, 566, 775,
775, 775, 786, 786, 565, 786, 786, 786, 564, 786,
786, 786, 786, 786, 563, 786, 562, 561, 560, 559,
558, 557, 786, 786, 786, 786, 786, 398, 399, 395,
553, 552, 551, 550, 549, 548, 547, 546, 545, 544,
543, 542, 539, 537, 536, 535, 534, 533, 532, 531,
530, 529, 528, 527, 526, 786, 523, 353, 519, 518,
483, 517, 516, 515, 514, 513, 512, 511, 508, 507,
506, 505, 504, 502, 499, 495, 494, 493, 786, 786,
786, 20, 20, 20, 20, 20, 20, 20, 20, 20,
20, 20, 146, 146, 146, 146, 146, 146, 146, 146,
146, 146, 146, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 193, 193, 193, 193, 193, 193,
193, 193, 193, 193, 193, 197, 197, 197, 197, 197,
197, 197, 197, 197, 197, 197, 205, 205, 205, 205,
205, 205, 205, 205, 205, 205, 205, 207, 207, 207,
207, 207, 207, 207, 207, 271, 492, 271, 271, 271,
271, 271, 271, 350, 490, 489, 488, 486, 350, 350,
350, 352, 352, 352, 352, 352, 352, 352, 352, 352,
352, 352, 354, 485, 354, 461, 354, 354, 354, 354,
356, 484, 356, 356, 356, 356, 356, 356, 356, 356,
356, 359, 482, 359, 359, 359, 359, 359, 359, 359,
359, 359, 396, 481, 396, 396, 396, 396, 396, 396,
396, 396, 396, 397, 480, 397, 398, 398, 398, 477,
476, 398, 398, 475, 398, 459, 474, 459, 459, 459,
459, 459, 459, 776, 473, 776, 776, 776, 776, 776,
776, 776, 776, 776, 787, 472, 787, 787, 787, 787,
787, 787, 787, 787, 787, 775, 471, 775, 775, 775,
775, 775, 775, 775, 775, 775, 786, 470, 786, 786,
786, 786, 786, 786, 786, 786, 786, 469, 467, 466,
465, 464, 463, 282, 457, 456, 455, 454, 453, 452,
451, 450, 449, 448, 447, 446, 443, 442, 441, 440,
439, 438, 434, 433, 432, 429, 428, 423, 422, 421,
420, 419, 416, 415, 414, 413, 410, 409, 408, 407,
406, 405, 404, 403, 206, 203, 399, 395, 394, 391,
390, 389, 378, 375, 374, 373, 285, 282, 358, 275,
274, 357, 353, 349, 348, 347, 346, 345, 338, 328,
327, 312, 310, 309, 308, 303, 302, 301, 300, 285,
282, 274, 273, 206, 204, 203, 268, 267, 266, 265,
264, 263, 255, 243, 242, 241, 240, 221, 213, 212,
211, 206, 204, 203, 1108, 19, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108
} ;
static yyconst short int yy_chk[2087] =
{ 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, 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, 5,
7, 28, 56, 13, 13, 36, 56, 13, 41, 41,
107, 7, 7, 14, 14, 28, 36, 14, 107, 7,
7, 7, 7, 7, 7, 831, 7, 7, 43, 43,
7, 7, 7, 7, 7, 7, 47, 7, 7, 47,
7, 46, 50, 48, 46, 50, 49, 80, 50, 7,
7, 7, 7, 7, 7, 49, 46, 48, 231, 7,
231, 80, 7, 9, 9, 9, 9, 9, 9, 9,
9, 9, 9, 9, 9, 9, 9, 9, 13, 71,
9, 9, 9, 9, 9, 9, 9, 9, 14, 38,
38, 55, 45, 57, 45, 58, 59, 125, 58, 58,
125, 55, 45, 57, 93, 93, 59, 38, 61, 38,
45, 61, 61, 9, 88, 9, 9, 126, 61, 108,
61, 95, 95, 61, 86, 88, 127, 61, 256, 108,
256, 126, 182, 117, 71, 127, 38, 182, 38, 9,
9, 9, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 10, 10, 10, 37, 37, 10,
10, 10, 10, 10, 10, 10, 10, 86, 131, 98,
133, 98, 99, 832, 99, 37, 98, 37, 131, 98,
133, 100, 99, 100, 100, 99, 98, 98, 117, 99,
99, 100, 10, 124, 10, 10, 124, 128, 100, 100,
128, 132, 135, 128, 37, 132, 37, 134, 124, 132,
134, 134, 135, 319, 37, 319, 833, 834, 10, 10,
10, 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,
11, 15, 15, 15, 15, 15, 15, 835, 15, 15,
15, 15, 15, 15, 15, 15, 186, 15, 15, 15,
15, 15, 15, 15, 15, 15, 101, 166, 101, 186,
307, 102, 169, 102, 164, 164, 101, 166, 169, 307,
114, 102, 114, 101, 101, 164, 173, 101, 102, 102,
114, 15, 15, 15, 15, 167, 137, 114, 114, 137,
137, 173, 165, 165, 198, 167, 137, 167, 137, 165,
114, 137, 199, 165, 200, 137, 167, 15, 15, 15,
15, 16, 16, 16, 16, 16, 16, 836, 16, 16,
16, 16, 16, 16, 16, 16, 168, 16, 16, 16,
16, 16, 16, 16, 16, 16, 168, 121, 121, 168,
177, 123, 178, 123, 179, 218, 555, 218, 199, 198,
177, 123, 178, 200, 179, 121, 245, 121, 123, 123,
236, 16, 16, 16, 16, 323, 339, 402, 339, 245,
177, 178, 249, 179, 218, 249, 218, 236, 331, 177,
179, 249, 323, 555, 121, 331, 121, 16, 16, 16,
16, 17, 17, 17, 121, 17, 17, 554, 17, 17,
17, 17, 691, 17, 17, 402, 400, 17, 17, 17,
17, 17, 17, 17, 17, 122, 122, 180, 181, 242,
360, 286, 242, 286, 242, 401, 362, 180, 181, 792,
360, 286, 242, 122, 330, 122, 362, 554, 286, 286,
328, 379, 17, 328, 361, 328, 333, 330, 691, 333,
17, 379, 17, 328, 361, 333, 17, 523, 180, 400,
181, 361, 122, 523, 122, 180, 793, 17, 17, 17,
17, 18, 18, 18, 401, 18, 18, 792, 18, 18,
18, 18, 838, 18, 18, 839, 379, 18, 18, 18,
18, 18, 18, 18, 18, 216, 216, 365, 840, 539,
287, 381, 287, 689, 313, 539, 313, 365, 280, 280,
287, 381, 793, 216, 365, 216, 843, 287, 287, 845,
846, 288, 18, 288, 366, 847, 280, 848, 280, 849,
18, 288, 18, 313, 366, 313, 18, 852, 288, 288,
556, 366, 216, 690, 216, 853, 381, 18, 18, 18,
18, 26, 26, 854, 689, 280, 293, 280, 293, 26,
26, 26, 26, 26, 26, 280, 293, 297, 382, 297,
311, 297, 311, 293, 293, 858, 556, 297, 382, 690,
311, 314, 314, 859, 297, 297, 860, 311, 311, 26,
26, 26, 26, 26, 26, 78, 78, 864, 460, 314,
460, 314, 865, 78, 78, 78, 78, 78, 78, 866,
867, 868, 869, 382, 468, 311, 468, 871, 872, 874,
875, 468, 876, 881, 468, 882, 883, 460, 314, 460,
314, 468, 468, 78, 78, 78, 78, 78, 78, 89,
89, 878, 886, 887, 888, 890, 878, 89, 89, 89,
89, 89, 89, 891, 89, 892, 462, 89, 462, 89,
895, 89, 896, 897, 898, 899, 462, 900, 902, 89,
904, 906, 462, 462, 462, 904, 907, 89, 89, 89,
89, 89, 89, 910, 89, 911, 89, 912, 89, 913,
89, 914, 915, 917, 918, 919, 89, 97, 97, 920,
921, 923, 924, 925, 926, 97, 97, 97, 97, 97,
97, 928, 97, 930, 932, 934, 97, 935, 937, 97,
938, 939, 940, 97, 97, 941, 942, 97, 943, 944,
952, 953, 954, 955, 956, 97, 97, 97, 97, 97,
97, 957, 97, 958, 959, 960, 961, 962, 97, 963,
964, 965, 966, 967, 97, 120, 120, 968, 969, 970,
971, 972, 973, 120, 120, 120, 120, 120, 120, 974,
975, 976, 977, 978, 979, 980, 981, 983, 984, 985,
986, 987, 988, 989, 990, 991, 992, 993, 994, 996,
997, 998, 999, 120, 120, 120, 120, 120, 120, 143,
143, 1000, 1003, 1004, 1005, 1006, 1008, 143, 143, 143,
143, 143, 143, 1009, 1010, 1011, 1012, 1013, 1015, 1017,
1019, 1020, 1021, 1022, 1023, 1025, 1026, 1028, 1029, 1030,
1031, 1032, 1033, 1034, 1036, 1037, 1038, 143, 143, 143,
143, 143, 143, 150, 150, 1039, 1040, 1041, 1042, 1044,
1045, 150, 150, 150, 150, 150, 150, 1046, 1051, 1052,
1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062,
1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072,
1073, 150, 150, 150, 150, 150, 150, 163, 163, 1074,
1075, 1076, 1077, 1078, 1079, 163, 163, 163, 163, 163,
163, 1080, 163, 1081, 1082, 1083, 163, 1084, 1085, 163,
1086, 1087, 1088, 1089, 1091, 1092, 1094, 163, 1095, 1096,
1097, 1098, 1099, 1101, 1103, 163, 163, 163, 163, 163,
163, 1104, 163, 1105, 1126, 830, 828, 827, 163, 826,
825, 823, 822, 821, 163, 208, 208, 820, 817, 816,
815, 814, 813, 208, 208, 208, 208, 208, 208, 812,
811, 808, 807, 208, 805, 208, 803, 802, 801, 799,
798, 797, 796, 795, 794, 791, 789, 785, 784, 783,
781, 780, 778, 208, 208, 208, 208, 208, 208, 774,
773, 772, 208, 770, 208, 272, 272, 769, 768, 767,
766, 763, 762, 272, 272, 272, 272, 272, 272, 760,
759, 758, 757, 272, 756, 272, 755, 753, 752, 751,
749, 747, 746, 745, 744, 743, 742, 741, 740, 739,
738, 736, 734, 272, 272, 272, 272, 272, 272, 732,
730, 729, 272, 728, 272, 351, 351, 727, 726, 725,
724, 722, 720, 351, 351, 351, 351, 351, 351, 719,
718, 716, 715, 351, 714, 351, 713, 712, 711, 710,
709, 708, 706, 705, 703, 701, 700, 697, 696, 695,
692, 688, 687, 351, 351, 351, 351, 351, 351, 685,
684, 680, 351, 679, 351, 355, 355, 675, 674, 673,
672, 671, 669, 355, 355, 355, 355, 355, 355, 668,
664, 663, 659, 355, 658, 355, 657, 656, 655, 654,
653, 652, 650, 649, 648, 646, 645, 644, 643, 642,
641, 639, 638, 355, 355, 355, 355, 355, 355, 637,
636, 635, 355, 634, 355, 665, 665, 632, 665, 665,
665, 631, 665, 665, 665, 665, 665, 630, 665, 629,
627, 626, 625, 624, 623, 665, 665, 665, 665, 665,
622, 621, 619, 616, 615, 614, 613, 611, 609, 608,
606, 605, 604, 603, 602, 601, 600, 599, 597, 596,
595, 594, 592, 591, 590, 589, 588, 587, 665, 586,
585, 583, 581, 580, 578, 577, 575, 574, 573, 572,
570, 569, 568, 567, 566, 565, 563, 561, 559, 557,
553, 665, 665, 665, 681, 681, 552, 681, 681, 681,
551, 681, 681, 681, 681, 681, 550, 681, 549, 548,
547, 546, 545, 544, 681, 681, 681, 681, 681, 542,
541, 540, 538, 537, 536, 535, 534, 533, 532, 531,
530, 529, 528, 526, 525, 524, 522, 517, 516, 515,
514, 513, 512, 511, 510, 509, 508, 681, 507, 506,
505, 504, 503, 502, 500, 499, 498, 497, 496, 494,
493, 492, 491, 490, 489, 488, 487, 486, 485, 484,
681, 681, 681, 776, 776, 483, 776, 776, 776, 482,
776, 776, 776, 776, 776, 481, 776, 480, 479, 478,
477, 474, 473, 776, 776, 776, 776, 776, 472, 471,
470, 469, 467, 466, 465, 464, 463, 461, 457, 454,
453, 452, 451, 450, 449, 448, 447, 446, 445, 444,
443, 442, 441, 440, 439, 438, 776, 437, 436, 435,
434, 433, 431, 430, 429, 428, 427, 426, 425, 424,
422, 421, 420, 419, 418, 417, 416, 415, 414, 776,
776, 776, 787, 787, 413, 787, 787, 787, 412, 787,
787, 787, 787, 787, 411, 787, 410, 409, 408, 407,
406, 405, 787, 787, 787, 787, 787, 399, 398, 395,
394, 393, 392, 391, 390, 389, 388, 387, 386, 385,
384, 383, 380, 378, 377, 376, 375, 374, 373, 372,
371, 370, 369, 368, 367, 787, 364, 352, 349, 348,
347, 346, 345, 344, 343, 342, 341, 340, 338, 337,
336, 335, 334, 332, 329, 327, 326, 325, 787, 787,
787, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109,
1109, 1109, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110,
1110, 1110, 1110, 1111, 1111, 1111, 1111, 1111, 1111, 1111,
1111, 1111, 1111, 1111, 1112, 1112, 1112, 1112, 1112, 1112,
1112, 1112, 1112, 1112, 1112, 1113, 1113, 1113, 1113, 1113,
1113, 1113, 1113, 1113, 1113, 1113, 1114, 1114, 1114, 1114,
1114, 1114, 1114, 1114, 1114, 1114, 1114, 1115, 1115, 1115,
1115, 1115, 1115, 1115, 1115, 1116, 324, 1116, 1116, 1116,
1116, 1116, 1116, 1117, 322, 321, 320, 318, 1117, 1117,
1117, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118,
1118, 1118, 1119, 317, 1119, 316, 1119, 1119, 1119, 1119,
1120, 312, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120,
1120, 1121, 310, 1121, 1121, 1121, 1121, 1121, 1121, 1121,
1121, 1121, 1122, 309, 1122, 1122, 1122, 1122, 1122, 1122,
1122, 1122, 1122, 1123, 308, 1123, 1124, 1124, 1124, 306,
305, 1124, 1124, 304, 1124, 1125, 303, 1125, 1125, 1125,
1125, 1125, 1125, 1127, 302, 1127, 1127, 1127, 1127, 1127,
1127, 1127, 1127, 1127, 1128, 301, 1128, 1128, 1128, 1128,
1128, 1128, 1128, 1128, 1128, 1129, 300, 1129, 1129, 1129,
1129, 1129, 1129, 1129, 1129, 1129, 1130, 299, 1130, 1130,
1130, 1130, 1130, 1130, 1130, 1130, 1130, 298, 296, 295,
294, 291, 290, 279, 268, 267, 266, 265, 264, 263,
262, 261, 260, 259, 258, 257, 255, 254, 253, 252,
251, 250, 248, 247, 246, 244, 243, 241, 240, 239,
238, 237, 235, 234, 233, 232, 230, 229, 228, 226,
225, 224, 223, 219, 205, 203, 197, 189, 187, 185,
184, 183, 174, 172, 171, 170, 161, 158, 156, 154,
152, 151, 149, 142, 141, 140, 139, 138, 136, 130,
129, 115, 111, 110, 109, 106, 105, 104, 103, 94,
90, 84, 83, 77, 76, 75, 69, 68, 67, 66,
63, 62, 60, 54, 53, 52, 51, 42, 34, 32,
31, 25, 24, 22, 19, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
1108, 1108, 1108, 1108, 1108, 1108
} ;
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 "ldlex.l"
#define INITIAL 0
#line 2 "ldlex.l"
/* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2000, 2001, 2002 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 <ansidecl.h>
#include <stdio.h>
#ifdef MPW
/* Prevent enum redefinition problems. */
#define TRUE_FALSE_ALREADY_DEFINED
#endif /* MPW */
#include "bfd.h"
#include "sysdep.h"
#include "safe-ctype.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"
#include "libiberty.h"
/* The type of top-level parser input.
yylex and yyparse (indirectly) both check this. */
input_type parser_input;
/* 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 int vers_node_nesting = 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
VERS_START starting a Sun style mapfile
VERS_SCRIPT a Sun style mapfile
VERS_NODE a node within a Sun style mapfile
*/
#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
#define VERS_START 6
#define VERS_SCRIPT 7
#define VERS_NODE 8
#line 1319 "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
#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 <stdlib.h>
#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 \
{ \
errno=0; \
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
{ \
if( errno != EINTR) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
break; \
} \
errno=0; \
clearerr(yyin); \
} \
}
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif
/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif
/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif
/* 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 129 "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_version_script: return INPUT_VERSION_SCRIPT; break;
case input_defsym: return INPUT_DEFSYM; break;
default: abort ();
}
}
#line 1499 "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 >= 1109 )
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] != 2006 );
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 146 "ldlex.l"
{ comment(); }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 149 "ldlex.l"
{ RTOKEN('-');}
YY_BREAK
case 3:
YY_RULE_SETUP
#line 150 "ldlex.l"
{ RTOKEN('+');}
YY_BREAK
case 4:
YY_RULE_SETUP
#line 151 "ldlex.l"
{ yylval.name = xstrdup(yytext); return NAME; }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 152 "ldlex.l"
{ RTOKEN('='); }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 154 "ldlex.l"
{
yylval.integer = bfd_scan_vma (yytext+1, 0,16);
return INT;
}
YY_BREAK
case 7:
YY_RULE_SETUP
#line 159 "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 183 "ldlex.l"
{
char *s = yytext;
if (*s == '$')
++s;
yylval.integer = bfd_scan_vma (s, 0, 0);
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 197 "ldlex.l"
{ RTOKEN(']');}
YY_BREAK
case 10:
YY_RULE_SETUP
#line 198 "ldlex.l"
{ RTOKEN('[');}
YY_BREAK
case 11:
YY_RULE_SETUP
#line 199 "ldlex.l"
{ RTOKEN(LSHIFTEQ);}
YY_BREAK
case 12:
YY_RULE_SETUP
#line 200 "ldlex.l"
{ RTOKEN(RSHIFTEQ);}
YY_BREAK
case 13:
YY_RULE_SETUP
#line 201 "ldlex.l"
{ RTOKEN(OROR);}
YY_BREAK
case 14:
YY_RULE_SETUP
#line 202 "ldlex.l"
{ RTOKEN(EQ);}
YY_BREAK
case 15:
YY_RULE_SETUP
#line 203 "ldlex.l"
{ RTOKEN(NE);}
YY_BREAK
case 16:
YY_RULE_SETUP
#line 204 "ldlex.l"
{ RTOKEN(GE);}
YY_BREAK
case 17:
YY_RULE_SETUP
#line 205 "ldlex.l"
{ RTOKEN(LE);}
YY_BREAK
case 18:
YY_RULE_SETUP
#line 206 "ldlex.l"
{ RTOKEN(LSHIFT);}
YY_BREAK
case 19:
YY_RULE_SETUP
#line 207 "ldlex.l"
{ RTOKEN(RSHIFT);}
YY_BREAK
case 20:
YY_RULE_SETUP
#line 208 "ldlex.l"
{ RTOKEN(PLUSEQ);}
YY_BREAK
case 21:
YY_RULE_SETUP
#line 209 "ldlex.l"
{ RTOKEN(MINUSEQ);}
YY_BREAK
case 22:
YY_RULE_SETUP
#line 210 "ldlex.l"
{ RTOKEN(MULTEQ);}
YY_BREAK
case 23:
YY_RULE_SETUP
#line 211 "ldlex.l"
{ RTOKEN(DIVEQ);}
YY_BREAK
case 24:
YY_RULE_SETUP
#line 212 "ldlex.l"
{ RTOKEN(ANDEQ);}
YY_BREAK
case 25:
YY_RULE_SETUP
#line 213 "ldlex.l"
{ RTOKEN(OREQ);}
YY_BREAK
case 26:
YY_RULE_SETUP
#line 214 "ldlex.l"
{ RTOKEN(ANDAND);}
YY_BREAK
case 27:
YY_RULE_SETUP
#line 215 "ldlex.l"
{ RTOKEN('>');}
YY_BREAK
case 28:
YY_RULE_SETUP
#line 216 "ldlex.l"
{ RTOKEN(',');}
YY_BREAK
case 29:
YY_RULE_SETUP
#line 217 "ldlex.l"
{ RTOKEN('&');}
YY_BREAK
case 30:
YY_RULE_SETUP
#line 218 "ldlex.l"
{ RTOKEN('|');}
YY_BREAK
case 31:
YY_RULE_SETUP
#line 219 "ldlex.l"
{ RTOKEN('~');}
YY_BREAK
case 32:
YY_RULE_SETUP
#line 220 "ldlex.l"
{ RTOKEN('!');}
YY_BREAK
case 33:
YY_RULE_SETUP
#line 221 "ldlex.l"
{ RTOKEN('?');}
YY_BREAK
case 34:
YY_RULE_SETUP
#line 222 "ldlex.l"
{ RTOKEN('*');}
YY_BREAK
case 35:
YY_RULE_SETUP
#line 223 "ldlex.l"
{ RTOKEN('+');}
YY_BREAK
case 36:
YY_RULE_SETUP
#line 224 "ldlex.l"
{ RTOKEN('-');}
YY_BREAK
case 37:
YY_RULE_SETUP
#line 225 "ldlex.l"
{ RTOKEN('/');}
YY_BREAK
case 38:
YY_RULE_SETUP
#line 226 "ldlex.l"
{ RTOKEN('%');}
YY_BREAK
case 39:
YY_RULE_SETUP
#line 227 "ldlex.l"
{ RTOKEN('<');}
YY_BREAK
case 40:
YY_RULE_SETUP
#line 228 "ldlex.l"
{ RTOKEN('=');}
YY_BREAK
case 41:
YY_RULE_SETUP
#line 229 "ldlex.l"
{ RTOKEN('}') ; }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 230 "ldlex.l"
{ RTOKEN('{'); }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 231 "ldlex.l"
{ RTOKEN(')');}
YY_BREAK
case 44:
YY_RULE_SETUP
#line 232 "ldlex.l"
{ RTOKEN('(');}
YY_BREAK
case 45:
YY_RULE_SETUP
#line 233 "ldlex.l"
{ RTOKEN(':'); }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 234 "ldlex.l"
{ RTOKEN(';');}
YY_BREAK
case 47:
YY_RULE_SETUP
#line 235 "ldlex.l"
{ RTOKEN(MEMORY);}
YY_BREAK
case 48:
YY_RULE_SETUP
#line 236 "ldlex.l"
{ RTOKEN(ORIGIN);}
YY_BREAK
case 49:
YY_RULE_SETUP
#line 237 "ldlex.l"
{ RTOKEN(VERSIONK);}
YY_BREAK
case 50:
YY_RULE_SETUP
#line 238 "ldlex.l"
{ RTOKEN(BLOCK);}
YY_BREAK
case 51:
YY_RULE_SETUP
#line 239 "ldlex.l"
{ RTOKEN(BIND);}
YY_BREAK
case 52:
YY_RULE_SETUP
#line 240 "ldlex.l"
{ RTOKEN(LENGTH);}
YY_BREAK
case 53:
YY_RULE_SETUP
#line 241 "ldlex.l"
{ RTOKEN(ALIGN_K);}
YY_BREAK
case 54:
YY_RULE_SETUP
#line 242 "ldlex.l"
{ RTOKEN(ADDR);}
YY_BREAK
case 55:
YY_RULE_SETUP
#line 243 "ldlex.l"
{ RTOKEN(LOADADDR);}
YY_BREAK
case 56:
YY_RULE_SETUP
#line 244 "ldlex.l"
{ RTOKEN(MAX_K); }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 245 "ldlex.l"
{ RTOKEN(MIN_K); }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 246 "ldlex.l"
{ RTOKEN(ASSERT_K); }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 247 "ldlex.l"
{ RTOKEN(ENTRY);}
YY_BREAK
case 60:
YY_RULE_SETUP
#line 248 "ldlex.l"
{ RTOKEN(EXTERN);}
YY_BREAK
case 61:
YY_RULE_SETUP
#line 249 "ldlex.l"
{ RTOKEN(NEXT);}
YY_BREAK
case 62:
YY_RULE_SETUP
#line 250 "ldlex.l"
{ RTOKEN(SIZEOF_HEADERS);}
YY_BREAK
case 63:
YY_RULE_SETUP
#line 251 "ldlex.l"
{ RTOKEN(SIZEOF_HEADERS);}
YY_BREAK
case 64:
YY_RULE_SETUP
#line 252 "ldlex.l"
{ RTOKEN(MAP);}
YY_BREAK
case 65:
YY_RULE_SETUP
#line 253 "ldlex.l"
{ RTOKEN(SIZEOF);}
YY_BREAK
case 66:
YY_RULE_SETUP
#line 254 "ldlex.l"
{ RTOKEN(TARGET_K);}
YY_BREAK
case 67:
YY_RULE_SETUP
#line 255 "ldlex.l"
{ RTOKEN(SEARCH_DIR);}
YY_BREAK
case 68:
YY_RULE_SETUP
#line 256 "ldlex.l"
{ RTOKEN(OUTPUT);}
YY_BREAK
case 69:
YY_RULE_SETUP
#line 257 "ldlex.l"
{ RTOKEN(INPUT);}
YY_BREAK
case 70:
YY_RULE_SETUP
#line 258 "ldlex.l"
{ RTOKEN(GROUP);}
YY_BREAK
case 71:
YY_RULE_SETUP
#line 259 "ldlex.l"
{ RTOKEN(DEFINED);}
YY_BREAK
case 72:
YY_RULE_SETUP
#line 260 "ldlex.l"
{ RTOKEN(CREATE_OBJECT_SYMBOLS);}
YY_BREAK
case 73:
YY_RULE_SETUP
#line 261 "ldlex.l"
{ RTOKEN( CONSTRUCTORS);}
YY_BREAK
case 74:
YY_RULE_SETUP
#line 262 "ldlex.l"
{ RTOKEN(FORCE_COMMON_ALLOCATION);}
YY_BREAK
case 75:
YY_RULE_SETUP
#line 263 "ldlex.l"
{ RTOKEN(INHIBIT_COMMON_ALLOCATION);}
YY_BREAK
case 76:
YY_RULE_SETUP
#line 264 "ldlex.l"
{ RTOKEN(SECTIONS);}
YY_BREAK
case 77:
YY_RULE_SETUP
#line 265 "ldlex.l"
{ RTOKEN(FILL);}
YY_BREAK
case 78:
YY_RULE_SETUP
#line 266 "ldlex.l"
{ RTOKEN(STARTUP);}
YY_BREAK
case 79:
YY_RULE_SETUP
#line 267 "ldlex.l"
{ RTOKEN(OUTPUT_FORMAT);}
YY_BREAK
case 80:
YY_RULE_SETUP
#line 268 "ldlex.l"
{ RTOKEN( OUTPUT_ARCH);}
YY_BREAK
case 81:
YY_RULE_SETUP
#line 269 "ldlex.l"
{ RTOKEN(HLL);}
YY_BREAK
case 82:
YY_RULE_SETUP
#line 270 "ldlex.l"
{ RTOKEN(SYSLIB);}
YY_BREAK
case 83:
YY_RULE_SETUP
#line 271 "ldlex.l"
{ RTOKEN(FLOAT);}
YY_BREAK
case 84:
YY_RULE_SETUP
#line 272 "ldlex.l"
{ RTOKEN( QUAD);}
YY_BREAK
case 85:
YY_RULE_SETUP
#line 273 "ldlex.l"
{ RTOKEN( SQUAD);}
YY_BREAK
case 86:
YY_RULE_SETUP
#line 274 "ldlex.l"
{ RTOKEN( LONG);}
YY_BREAK
case 87:
YY_RULE_SETUP
#line 275 "ldlex.l"
{ RTOKEN( SHORT);}
YY_BREAK
case 88:
YY_RULE_SETUP
#line 276 "ldlex.l"
{ RTOKEN( BYTE);}
YY_BREAK
case 89:
YY_RULE_SETUP
#line 277 "ldlex.l"
{ RTOKEN(NOFLOAT);}
YY_BREAK
case 90:
YY_RULE_SETUP
#line 278 "ldlex.l"
{ RTOKEN(NOCROSSREFS);}
YY_BREAK
case 91:
YY_RULE_SETUP
#line 279 "ldlex.l"
{ RTOKEN(OVERLAY); }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 280 "ldlex.l"
{ RTOKEN(SORT); }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 281 "ldlex.l"
{ RTOKEN(NOLOAD);}
YY_BREAK
case 94:
YY_RULE_SETUP
#line 282 "ldlex.l"
{ RTOKEN(DSECT);}
YY_BREAK
case 95:
YY_RULE_SETUP
#line 283 "ldlex.l"
{ RTOKEN(COPY);}
YY_BREAK
case 96:
YY_RULE_SETUP
#line 284 "ldlex.l"
{ RTOKEN(INFO);}
YY_BREAK
case 97:
YY_RULE_SETUP
#line 285 "ldlex.l"
{ RTOKEN(OVERLAY);}
YY_BREAK
case 98:
YY_RULE_SETUP
#line 286 "ldlex.l"
{ RTOKEN(ORIGIN);}
YY_BREAK
case 99:
YY_RULE_SETUP
#line 287 "ldlex.l"
{ RTOKEN(ORIGIN);}
YY_BREAK
case 100:
YY_RULE_SETUP
#line 288 "ldlex.l"
{ RTOKEN( LENGTH);}
YY_BREAK
case 101:
YY_RULE_SETUP
#line 289 "ldlex.l"
{ RTOKEN( LENGTH);}
YY_BREAK
case 102:
YY_RULE_SETUP
#line 290 "ldlex.l"
{ RTOKEN(INCLUDE);}
YY_BREAK
case 103:
YY_RULE_SETUP
#line 291 "ldlex.l"
{ RTOKEN (PHDRS); }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 292 "ldlex.l"
{ RTOKEN(AT);}
YY_BREAK
case 105:
YY_RULE_SETUP
#line 293 "ldlex.l"
{ RTOKEN(PROVIDE); }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 294 "ldlex.l"
{ RTOKEN(KEEP); }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 295 "ldlex.l"
{ RTOKEN(EXCLUDE_FILE); }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 296 "ldlex.l"
{ ++ lineno; }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 297 "ldlex.l"
{ ++ lineno; RTOKEN(NEWLINE); }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 298 "ldlex.l"
{ /* Mri comment line */ }
YY_BREAK
case 111:
YY_RULE_SETUP
#line 299 "ldlex.l"
{ /* Mri comment line */ }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 300 "ldlex.l"
{ RTOKEN(ENDWORD); }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 301 "ldlex.l"
{ RTOKEN(ALIGNMOD);}
YY_BREAK
case 114:
YY_RULE_SETUP
#line 302 "ldlex.l"
{ RTOKEN(ALIGN_K);}
YY_BREAK
case 115:
YY_RULE_SETUP
#line 303 "ldlex.l"
{ RTOKEN(CHIP); }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 304 "ldlex.l"
{ RTOKEN(BASE); }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 305 "ldlex.l"
{ RTOKEN(ALIAS); }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 306 "ldlex.l"
{ RTOKEN(TRUNCATE); }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 307 "ldlex.l"
{ RTOKEN(LOAD); }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 308 "ldlex.l"
{ RTOKEN(PUBLIC); }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 309 "ldlex.l"
{ RTOKEN(ORDER); }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 310 "ldlex.l"
{ RTOKEN(NAMEWORD); }
YY_BREAK
case 123:
YY_RULE_SETUP
#line 311 "ldlex.l"
{ RTOKEN(FORMAT); }
YY_BREAK
case 124:
YY_RULE_SETUP
#line 312 "ldlex.l"
{ RTOKEN(CASE); }
YY_BREAK
case 125:
YY_RULE_SETUP
#line 313 "ldlex.l"
{ RTOKEN(START); }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 314 "ldlex.l"
{ RTOKEN(LIST); /* LIST and ignore to end of line */ }
YY_BREAK
case 127:
YY_RULE_SETUP
#line 315 "ldlex.l"
{ RTOKEN(SECT); }
YY_BREAK
case 128:
YY_RULE_SETUP
#line 316 "ldlex.l"
{ RTOKEN(ABSOLUTE); }
YY_BREAK
case 129:
YY_RULE_SETUP
#line 317 "ldlex.l"
{ RTOKEN(ENDWORD); }
YY_BREAK
case 130:
YY_RULE_SETUP
#line 318 "ldlex.l"
{ RTOKEN(ALIGNMOD);}
YY_BREAK
case 131:
YY_RULE_SETUP
#line 319 "ldlex.l"
{ RTOKEN(ALIGN_K);}
YY_BREAK
case 132:
YY_RULE_SETUP
#line 320 "ldlex.l"
{ RTOKEN(CHIP); }
YY_BREAK
case 133:
YY_RULE_SETUP
#line 321 "ldlex.l"
{ RTOKEN(BASE); }
YY_BREAK
case 134:
YY_RULE_SETUP
#line 322 "ldlex.l"
{ RTOKEN(ALIAS); }
YY_BREAK
case 135:
YY_RULE_SETUP
#line 323 "ldlex.l"
{ RTOKEN(TRUNCATE); }
YY_BREAK
case 136:
YY_RULE_SETUP
#line 324 "ldlex.l"
{ RTOKEN(LOAD); }
YY_BREAK
case 137:
YY_RULE_SETUP
#line 325 "ldlex.l"
{ RTOKEN(PUBLIC); }
YY_BREAK
case 138:
YY_RULE_SETUP
#line 326 "ldlex.l"
{ RTOKEN(ORDER); }
YY_BREAK
case 139:
YY_RULE_SETUP
#line 327 "ldlex.l"
{ RTOKEN(NAMEWORD); }
YY_BREAK
case 140:
YY_RULE_SETUP
#line 328 "ldlex.l"
{ RTOKEN(FORMAT); }
YY_BREAK
case 141:
YY_RULE_SETUP
#line 329 "ldlex.l"
{ RTOKEN(CASE); }
YY_BREAK
case 142:
YY_RULE_SETUP
#line 330 "ldlex.l"
{ RTOKEN(EXTERN); }
YY_BREAK
case 143:
YY_RULE_SETUP
#line 331 "ldlex.l"
{ RTOKEN(START); }
YY_BREAK
case 144:
YY_RULE_SETUP
#line 332 "ldlex.l"
{ RTOKEN(LIST); /* LIST and ignore to end of line */ }
YY_BREAK
case 145:
YY_RULE_SETUP
#line 333 "ldlex.l"
{ RTOKEN(SECT); }
YY_BREAK
case 146:
YY_RULE_SETUP
#line 334 "ldlex.l"
{ RTOKEN(ABSOLUTE); }
YY_BREAK
case 147:
YY_RULE_SETUP
#line 336 "ldlex.l"
{
/* Filename without commas, needed to parse mri stuff */
yylval.name = xstrdup(yytext);
return NAME;
}
YY_BREAK
case 148:
YY_RULE_SETUP
#line 343 "ldlex.l"
{
yylval.name = xstrdup(yytext);
return NAME;
}
YY_BREAK
case 149:
YY_RULE_SETUP
#line 347 "ldlex.l"
{
yylval.name = xstrdup (yytext + 2);
return LNAME;
}
YY_BREAK
case 150:
YY_RULE_SETUP
#line 351 "ldlex.l"
{
/* Annoyingly, this pattern can match comments, and we have
longest match issues to consider. So if the first two
characters are a comment opening, put the input back and
try again. */
if (yytext[0] == '/' && yytext[1] == '*')
{
yyless(2);
comment ();
}
else
{
yylval.name = xstrdup(yytext);
return NAME;
}
}
YY_BREAK
case 151:
YY_RULE_SETUP
#line 368 "ldlex.l"
{
/* No matter the state, quotes
give what's inside */
yylval.name = xstrdup(yytext+1);
yylval.name[yyleng-2] = 0;
return NAME;
}
YY_BREAK
case 152:
YY_RULE_SETUP
#line 375 "ldlex.l"
{ lineno++;}
YY_BREAK
case 153:
YY_RULE_SETUP
#line 376 "ldlex.l"
{ }
YY_BREAK
case 154:
YY_RULE_SETUP
#line 378 "ldlex.l"
{ return *yytext; }
YY_BREAK
case 155:
YY_RULE_SETUP
#line 380 "ldlex.l"
{ RTOKEN(GLOBAL); }
YY_BREAK
case 156:
YY_RULE_SETUP
#line 382 "ldlex.l"
{ RTOKEN(LOCAL); }
YY_BREAK
case 157:
YY_RULE_SETUP
#line 384 "ldlex.l"
{ RTOKEN(EXTERN); }
YY_BREAK
case 158:
YY_RULE_SETUP
#line 386 "ldlex.l"
{ yylval.name = xstrdup (yytext);
return VERS_IDENTIFIER; }
YY_BREAK
case 159:
YY_RULE_SETUP
#line 389 "ldlex.l"
{ yylval.name = xstrdup (yytext);
return VERS_TAG; }
YY_BREAK
case 160:
YY_RULE_SETUP
#line 392 "ldlex.l"
{ BEGIN(VERS_SCRIPT); return *yytext; }
YY_BREAK
case 161:
YY_RULE_SETUP
#line 394 "ldlex.l"
{ BEGIN(VERS_NODE);
vers_node_nesting = 0;
return *yytext;
}
YY_BREAK
case 162:
YY_RULE_SETUP
#line 398 "ldlex.l"
{ return *yytext; }
YY_BREAK
case 163:
YY_RULE_SETUP
#line 399 "ldlex.l"
{ vers_node_nesting++; return *yytext; }
YY_BREAK
case 164:
YY_RULE_SETUP
#line 400 "ldlex.l"
{ if (--vers_node_nesting < 0)
BEGIN(VERS_SCRIPT);
return *yytext;
}
YY_BREAK
case 165:
YY_RULE_SETUP
#line 405 "ldlex.l"
{ lineno++; }
YY_BREAK
case 166:
YY_RULE_SETUP
#line 407 "ldlex.l"
{ /* Eat up comments */ }
YY_BREAK
case 167:
YY_RULE_SETUP
#line 409 "ldlex.l"
{ /* Eat up whitespace */ }
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):
case YY_STATE_EOF(VERS_START):
case YY_STATE_EOF(VERS_SCRIPT):
case YY_STATE_EOF(VERS_NODE):
#line 411 "ldlex.l"
{
include_stack_ptr--;
if (include_stack_ptr == 0)
{
yyterminate();
}
else
{
yy_switch_to_buffer(include_stack[include_stack_ptr]);
}
ldfile_input_filename = file_name_stack[include_stack_ptr - 1];
lineno = lineno_stack[include_stack_ptr];
return END;
}
YY_BREAK
case 168:
YY_RULE_SETUP
#line 429 "ldlex.l"
lex_warn_invalid(" in script", yytext);
YY_BREAK
case 169:
YY_RULE_SETUP
#line 430 "ldlex.l"
lex_warn_invalid(" in expression", yytext);
YY_BREAK
case 170:
YY_RULE_SETUP
#line 432 "ldlex.l"
ECHO;
YY_BREAK
#line 2538 "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;
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;
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 >= 1109 )
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 >= 1109 )
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 == 1108);
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;
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 _Win32
#include <unistd.h>
#else
#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#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 432 "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] = lineno;
include_stack[include_stack_ptr] = YY_CURRENT_BUFFER;
include_stack_ptr++;
lineno = 1;
yyin = file;
yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
}
/* 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) malloc (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 *) malloc ((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];
b->yy_is_our_buffer = 1;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
/* 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] = lineno;
include_stack[include_stack_ptr] = YY_CURRENT_BUFFER;
include_stack_ptr++;
lineno = 1;
tmp = yy_create_string_buffer (string, strlen (string));
yy_switch_to_buffer (tmp);
}
/* 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_version_script ()
{
*(state_stack_p)++ = yy_start;
BEGIN (VERS_START);
}
void
ldlex_version_file ()
{
*(state_stack_p)++ = yy_start;
BEGIN (VERS_SCRIPT);
}
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 = fread ((char *) buf, 1, max_size, yyin);
if (*result < max_size && ferror (yyin))
einfo ("%F%P: read in flex scanner failed\n");
}
}
}
/* Eat the rest of a C-style comment. */
static void
comment ()
{
int c;
while (1)
{
c = input();
while (c != '*' && c != EOF)
{
if (c == '\n')
lineno++;
c = input();
}
if (c == '*')
{
c = input();
while (c == '*')
c = input();
if (c == '/')
break; /* found the end */
}
if (c == '\n')
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 (*what))
{
sprintf (buf, "\\%03o", (unsigned int) *what);
what = buf;
}
einfo ("%P:%S: ignoring invalid character `%s'%s\n", what, where);
}