X-Git-Url: https://gitweb.dragonflybsd.org/~tuxillo/dragonfly.git/blobdiff_plain/6b445a628d016cb98daa614ade67aed0ed1d4ec0..ef5ccd6c41237a870dd7242b72b006d6bd42cd07:/contrib/gdb-7/gdb/ada-lex.c diff --git a/contrib/gdb-7/gdb/ada-lex.c b/contrib/gdb-7/gdb/ada-lex.c index 92cd92cf65..1eaadb6522 100644 --- a/contrib/gdb-7/gdb/ada-lex.c +++ b/contrib/gdb-7/gdb/ada-lex.c @@ -1,68 +1,113 @@ #line 2 "ada-lex.c" -/* A lexical scanner generated by flex */ -/* Scanner skeleton version: - * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ - */ +#line 4 "ada-lex.c" + +#define YY_INT_ALIGNED short int + +/* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 +#define YY_FLEX_SUBMINOR_VERSION 35 +#if YY_FLEX_SUBMINOR_VERSION > 0 +#define FLEX_BETA +#endif +/* First, we deal with platform-specific or compiler-specific issues. */ + +/* begin standard C headers. */ #include -#include +#include +#include +#include +/* end standard C headers. */ -/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ -#ifdef c_plusplus -#ifndef __cplusplus -#define __cplusplus +/* flex integer type definitions */ + +#ifndef FLEXINT_H +#define FLEXINT_H + +/* C99 systems have . Non-C99 systems may or may not. */ + +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + +/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, + * if you want the limit (max/min) macros for int types. + */ +#ifndef __STDC_LIMIT_MACROS +#define __STDC_LIMIT_MACROS 1 +#endif + +#include +typedef int8_t flex_int8_t; +typedef uint8_t flex_uint8_t; +typedef int16_t flex_int16_t; +typedef uint16_t flex_uint16_t; +typedef int32_t flex_int32_t; +typedef uint32_t flex_uint32_t; +#else +typedef signed char flex_int8_t; +typedef short int flex_int16_t; +typedef int flex_int32_t; +typedef unsigned char flex_uint8_t; +typedef unsigned short int flex_uint16_t; +typedef unsigned int flex_uint32_t; +#endif /* ! C99 */ + +/* Limits of integral types. */ +#ifndef INT8_MIN +#define INT8_MIN (-128) +#endif +#ifndef INT16_MIN +#define INT16_MIN (-32767-1) +#endif +#ifndef INT32_MIN +#define INT32_MIN (-2147483647-1) +#endif +#ifndef INT8_MAX +#define INT8_MAX (127) +#endif +#ifndef INT16_MAX +#define INT16_MAX (32767) +#endif +#ifndef INT32_MAX +#define INT32_MAX (2147483647) +#endif +#ifndef UINT8_MAX +#define UINT8_MAX (255U) #endif +#ifndef UINT16_MAX +#define UINT16_MAX (65535U) +#endif +#ifndef UINT32_MAX +#define UINT32_MAX (4294967295U) #endif +#endif /* ! FLEXINT_H */ #ifdef __cplusplus -#include - -/* Use prototypes in function declarations. */ -#define YY_USE_PROTOS - /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ -#if __STDC__ +/* C99 requires __STDC__ to be defined as 1. */ +#if defined (__STDC__) -#define YY_USE_PROTOS #define YY_USE_CONST -#endif /* __STDC__ */ +#endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ -#ifdef __TURBOC__ - #pragma warn -rch - #pragma warn -use -#include -#include -#define YY_USE_CONST -#define YY_USE_PROTOS -#endif - #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif - -#ifdef YY_USE_PROTOS -#define YY_PROTO(proto) proto -#else -#define YY_PROTO(proto) () -#endif - /* Returned upon end-of-file. */ #define YY_NULL 0 @@ -77,71 +122,70 @@ * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ -#define BEGIN yy_start = 1 + 2 * +#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 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_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ +#ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 +#endif + +/* The state buf must be large enough to hold one state per character in the main buffer. + */ +#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) +#ifndef YY_TYPEDEF_YY_BUFFER_STATE +#define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; +#endif extern int yyleng; + extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 -/* 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 YY_LESS_LINENO(n) + +/* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ - *yy_cp = yy_hold_char; \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ - yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ + (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) -#define unput(c) yyunput( c, yytext_ptr ) - -/* The following is because we cannot portably get our hands on size_t - * (without autoconf's help, which isn't available because we want - * flex-generated scanners to compile on their own). - */ -typedef unsigned int yy_size_t; +#define unput(c) yyunput( c, (yytext_ptr) ) +#ifndef YY_TYPEDEF_YY_SIZE_T +#define YY_TYPEDEF_YY_SIZE_T +typedef size_t yy_size_t; +#endif +#ifndef YY_STRUCT_YY_BUFFER_STATE +#define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; @@ -178,12 +222,16 @@ struct yy_buffer_state */ int yy_at_bol; + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ + /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; + #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process @@ -197,28 +245,38 @@ struct yy_buffer_state * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 + }; +#endif /* !YY_STRUCT_YY_BUFFER_STATE */ -static YY_BUFFER_STATE yy_current_buffer = 0; +/* Stack of input buffers. */ +static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ +static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ +static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". + * + * Returns the top of the stack, or NULL. */ -#define YY_CURRENT_BUFFER yy_current_buffer +#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ + ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ + : NULL) +/* Same as previous macro, but useful when we know that the buffer stack is not + * NULL or when we need an lvalue. For internal use only. + */ +#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; - static int yy_n_chars; /* number of characters read into yy_ch_buf */ - - int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; -static int yy_init = 1; /* whether we need to initialize */ +static int yy_init = 0; /* 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 @@ -226,92 +284,119 @@ static int yy_start = 0; /* start state number */ */ static int yy_did_buffer_switch_on_eof; -void yyrestart YY_PROTO(( FILE *input_file )); +void yyrestart (FILE *input_file ); +void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); +YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); +void yy_delete_buffer (YY_BUFFER_STATE b ); +void yy_flush_buffer (YY_BUFFER_STATE b ); +void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); +void yypop_buffer_state (void ); -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 ) +static void yyensure_buffer_stack (void ); +static void yy_load_buffer_state (void ); +static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); -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 )); +#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) -static void *yy_flex_alloc YY_PROTO(( yy_size_t )); -static void *yyxrealloc YY_PROTO(( void *, yy_size_t )); -static void yy_flex_free YY_PROTO(( void * )); +YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); +YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); +YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); + +void *yyalloc (yy_size_t ); +void *yyxrealloc (void *,yy_size_t ); +void yyfree (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; \ + if ( ! YY_CURRENT_BUFFER ){ \ + yyensure_buffer_stack (); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer(yyin,YY_BUF_SIZE ); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ - if ( ! yy_current_buffer ) \ - yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ - yy_current_buffer->yy_at_bol = at_bol; \ + if ( ! YY_CURRENT_BUFFER ){\ + yyensure_buffer_stack (); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer(yyin,YY_BUF_SIZE ); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } -#define YY_AT_BOL() (yy_current_buffer->yy_at_bol) +#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) + +/* Begin user sect3 */ typedef unsigned char YY_CHAR; + FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; + typedef int yy_state_type; + +extern int yylineno; + +int yylineno = 1; + extern char *yytext; #define yytext_ptr yytext -static yy_state_type yy_get_previous_state 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[] )); +static yy_state_type yy_get_previous_state (void ); +static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); +static int yy_get_next_buffer (void ); +static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ - yytext_ptr = yy_bp; \ - yyleng = (int) (yy_cp - yy_bp); \ - yy_hold_char = *yy_cp; \ + (yytext_ptr) = yy_bp; \ + yyleng = (size_t) (yy_cp - yy_bp); \ + (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ - yy_c_buf_p = yy_cp; + (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 54 -#define YY_END_OF_BUFFER 55 -static yyconst short int yy_accept[196] = +#define YY_NUM_RULES 55 +#define YY_END_OF_BUFFER 56 +/* This struct is not used in this scanner, + but its presence is necessary. */ +struct yy_trans_info + { + flex_int32_t yy_verify; + flex_int32_t yy_nxt; + }; +static yyconst flex_int16_t yy_accept[207] = { 0, - 0, 0, 0, 0, 55, 53, 1, 1, 15, 52, - 42, 53, 44, 45, 42, 43, 42, 42, 42, 4, - 4, 42, 42, 42, 42, 51, 48, 48, 48, 48, - 48, 48, 48, 48, 48, 48, 48, 41, 0, 14, - 0, 52, 0, 0, 0, 0, 0, 0, 0, 36, - 2, 0, 35, 0, 47, 47, 38, 0, 0, 4, - 0, 0, 50, 37, 39, 0, 34, 40, 0, 0, - 48, 0, 48, 48, 48, 48, 48, 16, 21, 48, - 48, 48, 48, 26, 48, 48, 48, 48, 48, 48, - 0, 14, 0, 12, 12, 0, 33, 2, 0, 47, - - 47, 0, 9, 0, 3, 7, 0, 48, 0, 0, - 0, 48, 18, 19, 48, 48, 22, 23, 24, 48, - 48, 28, 48, 48, 48, 48, 30, 0, 0, 0, - 0, 0, 0, 47, 46, 6, 0, 0, 9, 0, + 0, 0, 0, 0, 56, 54, 1, 1, 15, 53, + 43, 54, 45, 46, 43, 44, 43, 43, 43, 4, + 4, 43, 43, 43, 43, 52, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 42, 0, 14, + 0, 53, 0, 0, 0, 0, 0, 0, 0, 37, + 2, 0, 36, 0, 48, 48, 39, 0, 0, 4, + 0, 0, 51, 38, 40, 0, 35, 41, 0, 0, + 49, 0, 49, 49, 49, 49, 49, 16, 22, 49, + 49, 49, 49, 27, 49, 49, 49, 49, 49, 49, + 0, 14, 0, 12, 12, 34, 0, 2, 0, 48, + + 48, 0, 9, 0, 3, 7, 0, 49, 0, 0, + 0, 49, 19, 20, 49, 49, 23, 24, 25, 49, + 49, 29, 49, 49, 49, 49, 31, 0, 0, 0, + 0, 0, 0, 48, 47, 6, 0, 0, 9, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 48, 20, 48, 25, 48, 17, 29, - 48, 31, 0, 49, 0, 0, 0, 0, 48, 0, - 0, 0, 0, 0, 0, 0, 32, 48, 48, 0, - 0, 5, 11, 0, 8, 27, 0, 5, 0, 8, - 13, 0, 10, 10, 0 + 0, 0, 0, 49, 21, 49, 26, 49, 17, 30, + 49, 32, 0, 50, 0, 0, 0, 0, 49, 0, + 0, 0, 0, 0, 0, 0, 0, 33, 49, 49, + 0, 0, 5, 11, 0, 8, 0, 0, 0, 0, + 0, 0, 28, 49, 0, 5, 0, 8, 0, 0, + 13, 0, 18, 10, 10, 0 } ; -static yyconst int yy_ec[256] = +static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -319,14 +404,14 @@ static yyconst int yy_ec[256] = 1, 4, 5, 6, 7, 8, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21, 22, 23, - 24, 25, 5, 26, 30, 31, 32, 33, 34, 35, - 36, 37, 38, 36, 39, 40, 41, 42, 43, 36, - 36, 44, 45, 46, 47, 36, 48, 49, 36, 36, - 27, 5, 28, 5, 29, 5, 30, 31, 32, 33, - - 34, 35, 36, 37, 38, 36, 39, 40, 41, 42, - 43, 36, 36, 44, 45, 46, 47, 36, 48, 49, - 36, 36, 26, 22, 26, 5, 1, 1, 1, 1, + 24, 25, 5, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 33, 36, 37, 38, 39, 40, 33, + 33, 41, 42, 43, 44, 33, 45, 46, 33, 33, + 47, 5, 48, 5, 49, 5, 50, 51, 29, 52, + + 53, 54, 33, 55, 56, 33, 57, 58, 59, 60, + 61, 33, 33, 62, 63, 64, 65, 33, 66, 67, + 33, 33, 26, 22, 26, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -343,260 +428,379 @@ static yyconst int yy_ec[256] = 1, 1, 1, 1, 1 } ; -static yyconst int yy_meta[50] = +static yyconst flex_int32_t yy_meta[68] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 5, 9, 5, 5, 5, 5, 5, 5, 10, 5, 11, 11, - 5, 5, 12, 13, 14, 5, 5, 5, 15, 16, - 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, - 17, 17, 17, 17, 17, 17, 17, 17, 17 + 5, 5, 12, 13, 14, 5, 15, 15, 15, 15, + 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 5, 5, 17, 15, + 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16 } ; -static yyconst short int yy_base[217] = +static yyconst flex_int16_t yy_base[229] = { 0, - 0, 0, 622, 615, 620, 759, 759, 759, 44, 0, - 759, 71, 759, 759, 606, 759, 601, 119, 591, 118, - 124, 30, 590, 588, 588, 759, 53, 152, 22, 97, - 98, 103, 117, 119, 27, 140, 137, 194, 151, 759, - 160, 0, 242, 601, 594, 593, 592, 120, 282, 759, - 0, 330, 759, 0, 0, 560, 759, 0, 40, 329, - 171, 0, 759, 759, 759, 574, 759, 759, 171, 245, - 759, 336, 150, 219, 223, 226, 227, 162, 228, 262, - 263, 310, 266, 265, 313, 268, 312, 330, 320, 334, - 572, 569, 366, 377, 759, 380, 547, 0, 530, 0, - - 501, 169, 363, 46, 365, 0, 503, 386, 402, 417, - 0, 417, 335, 344, 412, 387, 360, 386, 406, 413, - 431, 407, 425, 408, 437, 438, 421, 518, 0, 472, - 497, 475, 474, 759, 0, 456, 0, 246, 458, 284, - 462, 451, 403, 464, 477, 478, 454, 408, 402, 392, - 390, 364, 376, 509, 455, 483, 458, 485, 473, 489, - 491, 492, 367, 759, 387, 516, 366, 48, 535, 326, - 312, 270, 220, 219, 207, 164, 501, 509, 511, 144, - 282, 527, 98, 117, 529, 519, 42, 540, 321, 543, - 562, 403, 548, 551, 759, 580, 590, 606, 611, 627, - - 644, 647, 654, 487, 562, 661, 677, 689, 695, 706, - 708, 724, 563, 565, 731, 742 + 0, 0, 649, 638, 646, 1252, 1252, 1252, 62, 0, + 1252, 109, 1252, 1252, 623, 1252, 619, 175, 606, 174, + 180, 48, 604, 592, 590, 1252, 204, 71, 214, 186, + 235, 244, 304, 256, 39, 368, 40, 430, 179, 1252, + 195, 0, 602, 595, 592, 585, 574, 497, 72, 1252, + 0, 273, 1252, 0, 39, 0, 1252, 0, 66, 262, + 75, 0, 1252, 1252, 1252, 557, 1252, 1252, 284, 300, + 1252, 322, 329, 349, 358, 377, 339, 396, 412, 563, + 566, 575, 584, 587, 569, 596, 623, 616, 576, 617, + 571, 568, 334, 380, 1252, 562, 677, 0, 403, 0, + + 40, 89, 642, 71, 163, 0, 401, 672, 401, 723, + 0, 708, 741, 750, 637, 776, 785, 794, 797, 806, + 775, 827, 831, 843, 818, 819, 883, 415, 0, 712, + 399, 885, 352, 1252, 0, 191, 0, 202, 772, 170, + 243, 334, 222, 244, 247, 259, 766, 47, 209, 216, + 203, 251, 302, 892, 916, 890, 942, 715, 946, 958, + 930, 974, 274, 1252, 93, 344, 278, 310, 979, 256, + 264, 337, 270, 274, 352, 355, 215, 984, 995, 1000, + 299, 354, 589, 355, 223, 603, 209, 204, 198, 189, + 174, 101, 1004, 1016, 92, 634, 411, 644, 872, 1021, + + 717, 373, 1252, 793, 832, 1252, 1055, 1065, 1081, 1086, + 1102, 1119, 1136, 1139, 1146, 339, 560, 1153, 1169, 1181, + 1186, 1197, 1200, 1216, 634, 645, 1223, 1234 } ; -static yyconst short int yy_def[217] = +static yyconst flex_int16_t yy_def[229] = { 0, - 195, 1, 1, 1, 195, 195, 195, 195, 196, 197, - 195, 195, 195, 195, 195, 195, 195, 198, 195, 195, - 195, 195, 199, 195, 195, 195, 200, 200, 28, 28, - 28, 28, 28, 28, 28, 28, 28, 195, 196, 195, - 196, 197, 38, 38, 38, 43, 195, 43, 43, 195, - 201, 198, 195, 202, 203, 203, 195, 204, 195, 195, - 195, 205, 195, 195, 195, 206, 195, 195, 195, 195, - 195, 207, 28, 28, 28, 28, 28, 28, 28, 28, - 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, - 49, 208, 195, 195, 195, 43, 49, 201, 209, 203, - - 203, 210, 195, 195, 195, 205, 206, 195, 207, 195, - 211, 212, 28, 28, 28, 28, 28, 28, 28, 28, - 28, 28, 28, 28, 28, 28, 28, 195, 213, 195, - 195, 43, 209, 195, 203, 195, 214, 210, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 215, 212, 28, 28, 28, 28, 28, 28, - 28, 28, 195, 195, 43, 195, 216, 195, 195, 195, - 195, 195, 195, 195, 195, 215, 28, 28, 28, 43, - 195, 195, 195, 216, 195, 28, 43, 195, 195, 195, - 195, 195, 195, 195, 0, 195, 195, 195, 195, 195, - - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 195, 195, 195, 195 + 206, 1, 1, 1, 206, 206, 206, 206, 207, 208, + 206, 206, 206, 206, 206, 206, 206, 209, 206, 206, + 206, 206, 210, 206, 206, 206, 211, 211, 211, 211, + 211, 211, 211, 211, 33, 211, 33, 206, 207, 206, + 207, 208, 212, 38, 38, 212, 206, 206, 212, 206, + 213, 209, 206, 214, 215, 215, 206, 216, 206, 206, + 206, 217, 206, 206, 206, 218, 206, 206, 206, 206, + 206, 219, 211, 211, 211, 211, 211, 211, 211, 211, + 211, 211, 211, 211, 36, 211, 211, 36, 33, 36, + 48, 220, 206, 206, 206, 48, 212, 213, 221, 215, + + 215, 222, 206, 206, 206, 217, 218, 206, 219, 206, + 223, 224, 211, 211, 33, 211, 211, 211, 211, 211, + 33, 211, 211, 211, 33, 33, 211, 206, 225, 206, + 206, 97, 221, 206, 215, 206, 226, 222, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 227, 224, 211, 33, 211, 36, 211, 211, + 36, 211, 206, 206, 212, 206, 228, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 227, 211, 211, 211, + 212, 206, 206, 206, 228, 206, 206, 206, 206, 206, + 206, 206, 211, 211, 212, 206, 206, 206, 206, 206, + + 206, 206, 206, 206, 206, 0, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206 } ; -static yyconst short int yy_nxt[809] = +static yyconst flex_int16_t yy_nxt[1320] = { 0, 6, 7, 8, 7, 6, 9, 6, 10, 11, 12, 13, 14, 15, 11, 16, 17, 18, 19, 20, 21, - 22, 11, 23, 24, 25, 26, 11, 11, 27, 28, - 27, 27, 27, 29, 30, 27, 27, 31, 27, 27, - 32, 33, 34, 35, 27, 36, 27, 27, 37, 40, - 63, 191, 73, 64, 69, 69, 70, 73, 103, 103, - 86, 76, 71, 73, 105, 105, 185, 185, 73, 72, - 41, 43, 44, 44, 45, 46, 46, 46, 46, 46, - 47, 46, 46, 46, 46, 46, 46, 46, 46, 46, - 46, 46, 46, 46, 46, 46, 46, 48, 46, 46, - - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 52, 52, 52, 183, 58, 96, 77, 73, 73, 94, - 58, 189, 78, 73, 59, 53, 60, 60, 73, 79, - 59, 54, 60, 60, 73, 80, 60, 73, 56, 73, - 81, 61, 60, 69, 69, 70, 40, 61, 73, 82, - 73, 71, 84, 83, 85, 92, 62, 73, 72, 87, - 73, 187, 69, 69, 69, 136, 88, 41, 73, 90, - 73, 73, 74, 89, 104, 137, 41, 72, 169, 105, - 105, 73, 73, 75, 43, 44, 44, 44, 43, 43, - - 43, 43, 43, 73, 43, 43, 43, 43, 43, 43, + 22, 11, 23, 24, 25, 26, 27, 28, 28, 28, + 29, 30, 28, 28, 31, 28, 28, 32, 33, 34, + 35, 28, 36, 28, 28, 37, 11, 11, 28, 27, + 28, 28, 29, 30, 28, 31, 28, 28, 32, 33, + 34, 35, 28, 36, 28, 28, 37, 40, 63, 86, + 73, 64, 69, 69, 70, 101, 135, 97, 73, 90, + 71, 94, 73, 73, 103, 103, 172, 72, 104, 105, + 105, 86, 73, 105, 105, 136, 101, 135, 181, 73, + + 90, 201, 93, 73, 73, 137, 169, 172, 41, 43, + 44, 44, 45, 46, 46, 46, 46, 46, 47, 46, + 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, + 46, 46, 46, 46, 46, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 48, 49, 46, 46, 48, 48, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 48, 48, 52, 52, 52, 169, + 58, 141, 141, 168, 40, 168, 58, 69, 69, 70, + 59, 53, 60, 60, 169, 71, 59, 54, 60, 60, + + 92, 55, 72, 169, 61, 69, 69, 70, 136, 169, + 61, 141, 77, 71, 169, 69, 69, 70, 137, 62, + 72, 166, 60, 71, 55, 41, 61, 169, 60, 184, + 72, 74, 61, 175, 142, 77, 69, 69, 70, 169, + 62, 41, 75, 166, 71, 69, 69, 70, 173, 169, + 76, 72, 169, 71, 74, 175, 174, 69, 69, 70, + 72, 141, 141, 75, 169, 71, 78, 142, 58, 173, + 142, 76, 72, 79, 52, 52, 52, 174, 59, 169, + 60, 60, 142, 80, 184, 69, 69, 69, 78, 206, + 176, 141, 61, 188, 79, 54, 84, 187, 85, 55, + + 72, 69, 69, 70, 80, 69, 69, 70, 93, 71, + 60, 176, 190, 71, 61, 188, 72, 84, 187, 85, + 72, 39, 55, 109, 109, 109, 169, 110, 186, 186, + 69, 69, 70, 190, 81, 130, 130, 130, 71, 169, + 69, 69, 70, 82, 111, 72, 195, 83, 71, 102, + 69, 69, 70, 102, 131, 72, 81, 182, 71, 69, + 69, 70, 183, 183, 82, 72, 189, 71, 83, 69, + 69, 70, 183, 183, 72, 116, 134, 71, 69, 69, + 70, 130, 130, 130, 72, 197, 71, 114, 189, 191, + 113, 204, 204, 72, 87, 192, 116, 69, 69, 70, + + 131, 88, 109, 109, 109, 71, 110, 197, 89, 114, + 191, 113, 72, 69, 69, 70, 192, 87, 115, 164, + 163, 71, 88, 111, 202, 108, 202, 134, 72, 89, + 43, 44, 44, 44, 43, 43, 43, 43, 43, 115, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, - 43, 43, 43, 91, 91, 91, 91, 91, 91, 91, + 43, 43, 43, 43, 43, 43, 91, 91, 91, 91, + 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, + 91, 91, 91, 91, 91, 91, 43, 43, 43, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, - 91, 91, 91, 43, 43, 43, 69, 69, 70, 73, - 142, 93, 136, 73, 71, 114, 73, 73, 73, 142, - 73, 72, 137, 113, 73, 142, 116, 73, 73, 73, - 115, 43, 43, 43, 43, 43, 43, 43, 43, 43, + 91, 91, 91, 91, 91, 91, 91, 43, 43, 43, + + 43, 43, 43, 43, 43, 43, 94, 43, 43, 43, + 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, + 43, 43, 43, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 43, 43, 43, 96, 96, 96, 96, + 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, + 96, 96, 96, 96, 69, 69, 70, 69, 69, 70, + 106, 93, 71, 128, 106, 71, 69, 69, 70, 72, + 93, 108, 72, 95, 71, 69, 69, 70, 69, 69, + 70, 72, 117, 71, 94, 73, 71, 69, 69, 70, + + 72, 94, 121, 72, 93, 71, 73, 196, 196, 73, + 118, 93, 72, 68, 117, 73, 67, 119, 73, 126, + 120, 198, 198, 121, 69, 69, 70, 65, 73, 57, + 73, 118, 71, 122, 51, 50, 73, 196, 119, 72, + 126, 120, 73, 73, 128, 206, 124, 38, 128, 73, + 73, 198, 196, 196, 122, 167, 125, 127, 38, 167, + 139, 139, 198, 198, 123, 73, 73, 155, 124, 206, + 73, 73, 140, 69, 69, 70, 73, 125, 127, 206, + 73, 71, 196, 206, 206, 123, 93, 206, 72, 155, + 139, 206, 198, 206, 140, 132, 132, 73, 206, 206, + + 206, 73, 206, 132, 132, 132, 132, 132, 132, 69, + 69, 70, 206, 130, 130, 130, 206, 71, 130, 130, + 130, 206, 206, 206, 72, 206, 132, 132, 132, 132, + 132, 142, 131, 206, 206, 143, 142, 131, 142, 206, + 144, 73, 69, 69, 70, 145, 142, 146, 73, 147, + 71, 69, 69, 70, 206, 179, 206, 72, 206, 71, + 148, 149, 150, 151, 73, 206, 72, 206, 152, 73, + 206, 206, 147, 206, 206, 206, 179, 69, 69, 70, + 206, 148, 149, 150, 151, 71, 69, 69, 70, 152, + 139, 139, 72, 170, 71, 69, 69, 70, 69, 69, + + 70, 72, 140, 71, 171, 158, 71, 69, 69, 70, + 72, 205, 205, 72, 73, 71, 170, 156, 73, 206, + 139, 206, 72, 206, 140, 171, 206, 158, 69, 69, + 70, 206, 69, 69, 70, 73, 71, 206, 156, 73, + 71, 205, 157, 72, 69, 69, 70, 72, 161, 162, + 205, 205, 71, 206, 206, 206, 206, 73, 73, 72, + 206, 73, 73, 157, 206, 206, 159, 206, 206, 206, + 161, 162, 206, 199, 199, 199, 206, 206, 73, 73, + 205, 160, 73, 73, 69, 69, 70, 159, 72, 206, + 203, 203, 71, 69, 69, 70, 206, 206, 206, 72, + + 206, 71, 160, 165, 165, 206, 206, 206, 72, 206, + 206, 165, 165, 165, 165, 165, 165, 69, 69, 70, + 178, 206, 206, 206, 206, 71, 206, 206, 206, 73, + 206, 206, 72, 73, 165, 165, 165, 165, 165, 206, + 206, 206, 178, 69, 69, 70, 206, 69, 69, 70, + 73, 71, 206, 206, 73, 71, 180, 206, 72, 69, + 69, 70, 72, 73, 206, 206, 206, 71, 206, 206, + 73, 206, 206, 206, 72, 69, 69, 70, 206, 180, + 69, 69, 70, 71, 73, 69, 69, 70, 71, 206, + 72, 73, 206, 71, 206, 72, 69, 69, 70, 206, + + 72, 69, 69, 70, 71, 69, 69, 70, 206, 71, + 206, 72, 206, 71, 206, 206, 72, 199, 199, 200, + 72, 206, 199, 199, 200, 71, 206, 206, 206, 194, + 71, 206, 72, 206, 206, 206, 193, 72, 206, 203, + 203, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 194, 206, 206, 206, 206, 206, 193, 39, 39, + 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, + 39, 39, 42, 206, 206, 42, 206, 206, 206, 42, + 42, 42, 56, 56, 56, 206, 206, 206, 206, 206, + 56, 206, 56, 206, 206, 56, 56, 56, 66, 206, + + 66, 66, 66, 73, 73, 73, 206, 206, 206, 206, + 73, 73, 73, 206, 206, 206, 73, 73, 73, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, - 43, 94, 73, 73, 117, 73, 73, 168, 73, 168, - - 182, 182, 142, 73, 73, 120, 73, 73, 122, 73, - 118, 97, 97, 97, 97, 97, 97, 97, 97, 97, - 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, - 97, 52, 52, 52, 192, 58, 192, 109, 109, 109, - 73, 110, 73, 73, 142, 59, 195, 60, 60, 121, - 73, 73, 54, 73, 73, 119, 123, 60, 111, 56, - 73, 73, 61, 124, 73, 73, 126, 130, 130, 130, - 142, 73, 183, 125, 73, 73, 73, 127, 130, 130, - 130, 139, 139, 141, 141, 73, 131, 69, 69, 70, - 73, 139, 180, 141, 39, 71, 140, 131, 132, 132, - - 169, 73, 72, 109, 109, 109, 175, 110, 169, 132, - 132, 132, 132, 132, 132, 142, 73, 73, 69, 69, - 70, 193, 193, 174, 111, 142, 71, 73, 73, 143, - 142, 156, 142, 72, 144, 142, 73, 73, 73, 145, - 142, 146, 73, 73, 173, 155, 147, 73, 73, 160, - 172, 73, 157, 73, 73, 73, 169, 148, 149, 150, - 151, 73, 73, 159, 158, 152, 73, 73, 73, 169, - 161, 162, 73, 130, 130, 130, 139, 139, 73, 73, - 141, 141, 169, 169, 170, 73, 139, 142, 73, 166, - 141, 140, 131, 165, 165, 171, 73, 102, 134, 73, - - 142, 142, 102, 73, 165, 165, 165, 165, 165, 165, - 69, 69, 70, 73, 73, 73, 177, 164, 71, 73, - 179, 73, 73, 163, 73, 72, 73, 108, 178, 181, - 73, 73, 73, 73, 182, 182, 69, 69, 70, 73, - 135, 73, 73, 159, 71, 188, 188, 190, 190, 73, - 73, 72, 73, 186, 134, 188, 93, 190, 188, 188, - 73, 190, 190, 130, 130, 130, 194, 194, 188, 194, - 194, 190, 106, 128, 128, 167, 194, 106, 128, 194, - 167, 93, 131, 39, 39, 39, 39, 39, 39, 39, - 39, 39, 39, 39, 39, 39, 39, 42, 108, 101, - - 42, 95, 94, 94, 42, 42, 42, 55, 55, 55, - 93, 68, 67, 65, 57, 55, 51, 55, 50, 195, - 55, 55, 55, 66, 38, 66, 66, 66, 73, 73, - 73, 38, 195, 195, 195, 73, 73, 73, 195, 195, - 195, 73, 73, 73, 98, 98, 195, 98, 98, 98, + 43, 43, 43, 43, 43, 43, 98, 98, 206, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, - 98, 99, 99, 99, 100, 195, 195, 195, 100, 100, - 100, 107, 195, 195, 107, 107, 107, 107, 112, 112, - 112, 195, 112, 195, 195, 195, 195, 195, 112, 195, - 195, 112, 112, 112, 129, 195, 195, 195, 195, 129, - - 195, 195, 195, 195, 129, 133, 195, 195, 133, 133, - 133, 133, 138, 195, 195, 138, 138, 195, 195, 195, - 138, 138, 153, 153, 153, 154, 154, 154, 195, 195, - 195, 195, 154, 154, 154, 195, 195, 195, 154, 154, - 154, 176, 195, 195, 176, 176, 176, 176, 184, 195, - 195, 195, 184, 195, 195, 195, 184, 184, 5, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - - 195, 195, 195, 195, 195, 195, 195, 195 + 98, 98, 98, 99, 99, 99, 100, 206, 206, 206, + 100, 100, 100, 107, 206, 206, 107, 107, 107, 107, + 112, 112, 112, 206, 112, 206, 206, 206, 206, 206, + 112, 206, 206, 112, 112, 112, 129, 206, 206, 206, + 206, 129, 206, 206, 206, 129, 133, 206, 206, 133, + + 133, 133, 133, 138, 206, 206, 138, 138, 206, 206, + 206, 138, 206, 138, 153, 153, 153, 154, 154, 154, + 206, 206, 206, 206, 154, 154, 154, 206, 206, 206, + 154, 154, 154, 177, 206, 206, 177, 177, 177, 177, + 185, 206, 206, 206, 185, 206, 206, 206, 185, 206, + 185, 5, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206 } ; -static yyconst short int yy_chk[809] = +static yyconst flex_int16_t yy_chk[1320] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, - 22, 187, 29, 22, 27, 27, 27, 35, 59, 59, - 35, 29, 27, 29, 104, 104, 168, 168, 35, 27, - 9, 12, 12, 12, 12, 12, 12, 12, 12, 12, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 9, 22, 35, + 37, 22, 28, 28, 28, 55, 101, 49, 35, 37, + 28, 49, 35, 37, 59, 59, 148, 28, 61, 104, + 104, 35, 37, 61, 61, 102, 55, 101, 165, 35, + + 37, 195, 165, 35, 37, 102, 192, 148, 9, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, - 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, - 18, 18, 18, 184, 20, 48, 30, 30, 31, 48, - 21, 183, 31, 32, 20, 18, 20, 20, 30, 31, - 21, 18, 21, 21, 32, 32, 20, 33, 18, 34, - 33, 20, 21, 28, 28, 28, 39, 21, 33, 33, - 34, 28, 34, 33, 34, 41, 20, 37, 28, 36, - 36, 180, 69, 69, 69, 102, 36, 39, 37, 37, - 73, 36, 28, 36, 61, 102, 41, 69, 176, 61, - 61, 73, 78, 28, 38, 38, 38, 38, 38, 38, - - 38, 38, 38, 78, 38, 38, 38, 38, 38, 38, + 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, + 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, + 12, 12, 12, 12, 12, 12, 18, 18, 18, 191, + 20, 105, 105, 140, 39, 140, 21, 30, 30, 30, + 20, 18, 20, 20, 190, 30, 21, 18, 21, 21, + + 41, 18, 30, 189, 20, 27, 27, 27, 138, 188, + 21, 105, 30, 27, 187, 29, 29, 29, 138, 20, + 27, 136, 20, 29, 18, 39, 20, 143, 21, 185, + 29, 27, 21, 151, 143, 30, 31, 31, 31, 177, + 20, 41, 27, 136, 31, 32, 32, 32, 149, 144, + 29, 31, 145, 32, 27, 151, 150, 34, 34, 34, + 32, 141, 141, 27, 146, 34, 31, 144, 60, 149, + 145, 29, 34, 31, 52, 52, 52, 150, 60, 174, + 60, 60, 146, 32, 167, 69, 69, 69, 31, 52, + 152, 141, 60, 171, 31, 52, 34, 170, 34, 52, + + 69, 70, 70, 70, 32, 33, 33, 33, 181, 70, + 60, 152, 173, 33, 60, 171, 70, 34, 170, 34, + 33, 163, 52, 72, 72, 72, 153, 72, 168, 168, + 73, 73, 73, 173, 33, 93, 93, 93, 73, 142, + 77, 77, 77, 33, 72, 73, 181, 33, 77, 216, + 74, 74, 74, 216, 93, 77, 33, 166, 74, 75, + 75, 75, 166, 166, 33, 74, 172, 75, 33, 36, + 36, 36, 182, 182, 75, 77, 133, 36, 76, 76, + 76, 94, 94, 94, 36, 184, 76, 75, 172, 175, + 74, 202, 202, 76, 36, 176, 77, 78, 78, 78, + + 94, 36, 109, 109, 109, 78, 109, 184, 36, 75, + 175, 74, 78, 79, 79, 79, 176, 36, 76, 131, + 128, 79, 36, 109, 197, 107, 197, 99, 79, 36, + 38, 38, 38, 38, 38, 38, 38, 38, 38, 76, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, - 38, 38, 38, 43, 43, 43, 70, 70, 70, 74, - 175, 43, 138, 75, 70, 75, 76, 77, 79, 174, - 74, 70, 138, 74, 75, 173, 77, 76, 77, 79, - 76, 43, 43, 43, 43, 43, 43, 43, 43, 43, - 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, - 43, 49, 80, 81, 80, 84, 83, 140, 86, 140, - - 181, 181, 172, 80, 81, 83, 84, 83, 86, 86, - 81, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, - 49, 52, 52, 52, 189, 60, 189, 72, 72, 72, - 82, 72, 87, 85, 171, 60, 52, 60, 60, 85, - 89, 82, 52, 87, 85, 82, 87, 60, 72, 52, - 88, 89, 60, 88, 90, 113, 89, 93, 93, 93, - 170, 88, 167, 88, 114, 90, 113, 90, 94, 94, - 94, 103, 103, 105, 105, 114, 93, 108, 108, 108, - 117, 103, 165, 105, 163, 108, 103, 94, 96, 96, - - 153, 117, 108, 109, 109, 109, 152, 109, 143, 96, - 96, 96, 96, 96, 96, 143, 118, 116, 112, 112, - 112, 192, 192, 151, 109, 110, 112, 118, 116, 110, - 110, 116, 110, 112, 110, 150, 119, 122, 124, 110, - 110, 110, 115, 120, 149, 115, 110, 119, 122, 124, - 148, 127, 120, 115, 120, 123, 142, 110, 110, 110, - 110, 121, 127, 123, 121, 110, 123, 125, 126, 144, - 125, 126, 121, 130, 130, 130, 139, 139, 125, 126, - 141, 141, 145, 146, 147, 155, 139, 144, 157, 136, - 141, 139, 130, 132, 132, 147, 155, 204, 133, 157, - - 145, 146, 204, 159, 132, 132, 132, 132, 132, 132, - 154, 154, 154, 156, 159, 158, 156, 131, 154, 160, - 161, 161, 162, 128, 156, 154, 158, 107, 158, 166, - 160, 177, 161, 162, 166, 166, 169, 169, 169, 178, - 101, 179, 177, 179, 169, 182, 182, 185, 185, 186, - 178, 169, 179, 178, 99, 182, 97, 185, 188, 188, - 186, 190, 190, 191, 191, 191, 193, 193, 188, 194, - 194, 190, 205, 213, 92, 214, 193, 205, 213, 194, - 214, 91, 191, 196, 196, 196, 196, 196, 196, 196, - 196, 196, 196, 196, 196, 196, 196, 197, 66, 56, - - 197, 47, 46, 45, 197, 197, 197, 198, 198, 198, - 44, 25, 24, 23, 19, 198, 17, 198, 15, 5, - 198, 198, 198, 199, 4, 199, 199, 199, 200, 200, - 200, 3, 0, 0, 0, 200, 200, 200, 0, 0, - 0, 200, 200, 200, 201, 201, 0, 201, 201, 201, - 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, - 201, 202, 202, 202, 203, 0, 0, 0, 203, 203, - 203, 206, 0, 0, 206, 206, 206, 206, 207, 207, - 207, 0, 207, 0, 0, 0, 0, 0, 207, 0, - 0, 207, 207, 207, 208, 0, 0, 0, 0, 208, - - 0, 0, 0, 0, 208, 209, 0, 0, 209, 209, - 209, 209, 210, 0, 0, 210, 210, 0, 0, 0, - 210, 210, 211, 211, 211, 212, 212, 212, 0, 0, - 0, 0, 212, 212, 212, 0, 0, 0, 212, 212, - 212, 215, 0, 0, 215, 215, 215, 215, 216, 0, - 0, 0, 216, 0, 0, 0, 216, 216, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - - 195, 195, 195, 195, 195, 195, 195, 195 + 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, + 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, + 38, 38, 38, 38, 38, 38, 38, 48, 48, 48, + + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, + 48, 48, 48, 48, 80, 80, 80, 81, 81, 81, + 217, 96, 80, 92, 217, 81, 82, 82, 82, 80, + 91, 66, 81, 47, 82, 83, 83, 83, 84, 84, + 84, 82, 80, 83, 46, 85, 84, 86, 86, 86, + + 83, 45, 85, 84, 44, 86, 89, 183, 183, 85, + 81, 43, 86, 25, 80, 89, 24, 82, 85, 89, + 83, 186, 186, 85, 87, 87, 87, 23, 89, 19, + 85, 81, 87, 86, 17, 15, 89, 183, 82, 87, + 89, 83, 88, 90, 225, 5, 88, 4, 225, 88, + 90, 186, 196, 196, 86, 226, 88, 90, 3, 226, + 103, 103, 198, 198, 87, 88, 90, 115, 88, 0, + 88, 90, 103, 108, 108, 108, 115, 88, 90, 0, + 115, 108, 196, 0, 0, 87, 97, 0, 108, 115, + 103, 0, 198, 0, 103, 97, 97, 115, 0, 0, + + 0, 115, 0, 97, 97, 97, 97, 97, 97, 112, + 112, 112, 0, 130, 130, 130, 0, 112, 201, 201, + 201, 0, 0, 0, 112, 0, 97, 97, 97, 97, + 97, 110, 130, 0, 0, 110, 110, 201, 110, 0, + 110, 158, 113, 113, 113, 110, 110, 110, 158, 110, + 113, 114, 114, 114, 0, 158, 0, 113, 0, 114, + 110, 110, 110, 110, 158, 0, 114, 0, 110, 158, + 0, 0, 110, 0, 0, 0, 158, 116, 116, 116, + 0, 110, 110, 110, 110, 116, 117, 117, 117, 110, + 139, 139, 116, 147, 117, 118, 118, 118, 119, 119, + + 119, 117, 139, 118, 147, 121, 119, 120, 120, 120, + 118, 204, 204, 119, 121, 120, 147, 116, 121, 0, + 139, 0, 120, 0, 139, 147, 0, 121, 122, 122, + 122, 0, 123, 123, 123, 121, 122, 0, 116, 121, + 123, 204, 120, 122, 124, 124, 124, 123, 125, 126, + 205, 205, 124, 0, 0, 0, 0, 125, 126, 124, + 0, 125, 126, 120, 0, 0, 123, 0, 0, 0, + 125, 126, 0, 199, 199, 199, 0, 0, 125, 126, + 205, 124, 125, 126, 127, 127, 127, 123, 199, 0, + 199, 199, 127, 154, 154, 154, 0, 0, 0, 127, + + 0, 154, 124, 132, 132, 0, 0, 0, 154, 0, + 0, 132, 132, 132, 132, 132, 132, 155, 155, 155, + 156, 0, 0, 0, 0, 155, 0, 0, 0, 156, + 0, 0, 155, 156, 132, 132, 132, 132, 132, 0, + 0, 0, 156, 157, 157, 157, 0, 159, 159, 159, + 156, 157, 0, 0, 156, 159, 161, 0, 157, 160, + 160, 160, 159, 161, 0, 0, 0, 160, 0, 0, + 161, 0, 0, 0, 160, 162, 162, 162, 0, 161, + 169, 169, 169, 162, 161, 178, 178, 178, 169, 0, + 162, 161, 0, 178, 0, 169, 179, 179, 179, 0, + + 178, 180, 180, 180, 179, 193, 193, 193, 0, 180, + 0, 179, 0, 193, 0, 0, 180, 194, 194, 194, + 193, 0, 200, 200, 200, 194, 0, 0, 0, 180, + 200, 0, 194, 0, 0, 0, 179, 200, 0, 200, + 200, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 180, 0, 0, 0, 0, 0, 179, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 208, 0, 0, 208, 0, 0, 0, 208, + 208, 208, 209, 209, 209, 0, 0, 0, 0, 0, + 209, 0, 209, 0, 0, 209, 209, 209, 210, 0, + + 210, 210, 210, 211, 211, 211, 0, 0, 0, 0, + 211, 211, 211, 0, 0, 0, 211, 211, 211, 212, + 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, + 212, 212, 212, 212, 212, 212, 213, 213, 0, 213, + 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, + 213, 213, 213, 214, 214, 214, 215, 0, 0, 0, + 215, 215, 215, 218, 0, 0, 218, 218, 218, 218, + 219, 219, 219, 0, 219, 0, 0, 0, 0, 0, + 219, 0, 0, 219, 219, 219, 220, 0, 0, 0, + 0, 220, 0, 0, 0, 220, 221, 0, 0, 221, + + 221, 221, 221, 222, 0, 0, 222, 222, 0, 0, + 0, 222, 0, 222, 223, 223, 223, 224, 224, 224, + 0, 0, 0, 0, 224, 224, 224, 0, 0, 0, + 224, 224, 224, 227, 0, 0, 227, 227, 227, 227, + 228, 0, 0, 0, 228, 0, 0, 0, 228, 0, + 228, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; +extern int yy_flex_debug; +int yy_flex_debug = 0; + /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ @@ -606,10 +810,8 @@ static char *yy_last_accepting_cpos; #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "ada-lex.l" -#define INITIAL 0 /* FLEX lexer for Ada expressions, for GDB. - Copyright (C) 1994, 1997-1998, 2000-2003, 2007-2012 Free Software - Foundation, Inc. + Copyright (C) 1994-2013 Free Software Foundation, Inc. This file is part of GDB. @@ -631,7 +833,7 @@ char *yytext; /* the global pointer lexptr. It returns a syntactic category for */ /* each successive token and places a semantic value into yylval */ /* (ada-lval), defined by the parser. */ -#line 44 "ada-lex.l" +#line 43 "ada-lex.l" #define NUMERAL_WIDTH 256 #define LONGEST_SIGN ((ULONGEST) 1 << (sizeof(LONGEST) * HOST_CHAR_BIT - 1)) @@ -645,6 +847,7 @@ static int processReal (const char *); static struct stoken processId (const char *, int); static int processAttribute (const char *); static int find_dot_all (const char *); +static void rewind_to_char (int); #undef YY_DECL #define YY_DECL static int yylex ( void ) @@ -666,9 +869,54 @@ static int find_dot_all (const char *); static int find_dot_all (const char *); + +#line 874 "ada-lex.c" + +#define INITIAL 0 #define BEFORE_QUAL_QUOTE 1 -#line 672 "ada-lex.c" +#ifndef YY_NO_UNISTD_H +/* Special case for "unistd.h", since it is non-ANSI. We include it way + * down here because we want the user's section 1 to have been scanned first. + * The user has a chance to override it with an option. + */ +#include +#endif + +#ifndef YY_EXTRA_TYPE +#define YY_EXTRA_TYPE void * +#endif + +static int yy_init_globals (void ); + +/* Accessor methods to globals. + These are made visible to non-reentrant scanners for convenience. */ + +int yylex_destroy (void ); + +int yyget_debug (void ); + +void yyset_debug (int debug_flag ); + +YY_EXTRA_TYPE yyget_extra (void ); + +void yyset_extra (YY_EXTRA_TYPE user_defined ); + +FILE *yyget_in (void ); + +void yyset_in (FILE * in_str ); + +FILE *yyget_out (void ); + +void yyset_out (FILE * out_str ); + +int yyget_leng (void ); + +char *yyget_text (void ); + +int yyget_lineno (void ); + +void yyset_lineno (int line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. @@ -676,65 +924,30 @@ static int find_dot_all (const char *); #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int yywrap YY_PROTO(( void )); +extern "C" int yywrap (void ); #else -extern int yywrap YY_PROTO(( void )); +extern int yywrap (void ); #endif #endif -#ifndef YY_NO_UNPUT -static void yyunput YY_PROTO(( int c, char *buf_ptr )); -#endif - + static void yyunput (int c,char *buf_ptr ); + #ifndef yytext_ptr -static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); +static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen YY_PROTO(( yyconst char * )); +static int yy_flex_strlen (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 +#ifdef __cplusplus +static int yyinput (void ); #else -#define YY_NO_PUSH_STATE 1 -#define YY_NO_POP_STATE 1 -#define YY_NO_TOP_STATE 1 +static int input (void ); #endif -#ifdef YY_MALLOC_DECL -YY_MALLOC_DECL -#else -#if __STDC__ -#ifndef __cplusplus -#include -#endif -#else -/* Just try to get by without declaring the routines. This will fail - * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) - * or sizeof(void*) != sizeof(int). - */ -#endif #endif /* Amount of stuff to slurp up with each read. */ @@ -743,12 +956,11 @@ YY_MALLOC_DECL #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 ) +#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, @@ -756,9 +968,10 @@ YY_MALLOC_DECL */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ - if ( yy_current_buffer->yy_is_interactive ) \ + if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ - int c = '*', n; \ + int c = '*'; \ + unsigned n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ @@ -768,9 +981,22 @@ YY_MALLOC_DECL YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ - else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ - && ferror( yyin ) ) \ - YY_FATAL_ERROR( "input in flex scanner failed" ); + 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();" - @@ -791,12 +1017,18 @@ YY_MALLOC_DECL #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif +/* end tables serialization structures and prototypes */ + /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL -#define YY_DECL int yylex YY_PROTO(( void )) -#endif +#define YY_DECL_IS_OURS 1 + +extern int yylex (void); + +#define YY_DECL int yylex (void) +#endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. @@ -813,27 +1045,29 @@ YY_MALLOC_DECL #define YY_RULE_SETUP \ YY_USER_ACTION +/** The main scanner function which does all the work. + */ YY_DECL - { +{ register yy_state_type yy_current_state; - register char *yy_cp = NULL, *yy_bp = NULL; + register char *yy_cp, *yy_bp; register int yy_act; - + #line 84 "ada-lex.l" -#line 826 "ada-lex.c" +#line 1060 "ada-lex.c" - if ( yy_init ) + if ( !(yy_init) ) { - yy_init = 0; + (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif - if ( ! yy_start ) - yy_start = 1; /* first start state */ + if ( ! (yy_start) ) + (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; @@ -841,71 +1075,72 @@ YY_DECL if ( ! yyout ) yyout = stdout; - if ( ! yy_current_buffer ) - yy_current_buffer = - yy_create_buffer( yyin, YY_BUF_SIZE ); + if ( ! YY_CURRENT_BUFFER ) { + yyensure_buffer_stack (); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer(yyin,YY_BUF_SIZE ); + } - yy_load_buffer_state(); + yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { - yy_cp = yy_c_buf_p; + yy_cp = (yy_c_buf_p); /* Support of yytext. */ - *yy_cp = yy_hold_char; + *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; - yy_current_state = yy_start; + yy_current_state = (yy_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; + (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 >= 196 ) + if ( yy_current_state >= 207 ) 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] != 759 ); + while ( yy_base[yy_current_state] != 1252 ); 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_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; + *yy_cp = (yy_hold_char); + yy_cp = (yy_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: +/* rule 1 can match eol */ YY_RULE_SETUP #line 86 "ada-lex.l" { } @@ -1026,88 +1261,93 @@ case 16: YY_RULE_SETUP #line 160 "ada-lex.l" { - while (*lexptr != 'i' && *lexptr != 'I') - lexptr -= 1; - yyrestart(NULL); + rewind_to_char ('i'); return 0; } YY_BREAK case 17: YY_RULE_SETUP -#line 167 "ada-lex.l" +#line 165 "ada-lex.l" { - /* This keyword signals the end of the expression and - will be processed separately. */ - while (*lexptr != 't' && *lexptr != 'T') - lexptr--; - yyrestart(NULL); + rewind_to_char ('t'); return 0; } YY_BREAK -/* ADA KEYWORDS */ case 18: +/* rule 18 can match eol */ YY_RULE_SETUP -#line 178 "ada-lex.l" -{ return ABS; } +#line 170 "ada-lex.l" +{ + /* This keyword signals the end of the expression and + will be processed separately. */ + rewind_to_char ('t'); + return 0; + } YY_BREAK +/* ADA KEYWORDS */ case 19: YY_RULE_SETUP #line 179 "ada-lex.l" -{ return _AND_; } +{ return ABS; } YY_BREAK case 20: YY_RULE_SETUP #line 180 "ada-lex.l" -{ return ELSE; } +{ return _AND_; } YY_BREAK case 21: YY_RULE_SETUP #line 181 "ada-lex.l" -{ return IN; } +{ return ELSE; } YY_BREAK case 22: YY_RULE_SETUP #line 182 "ada-lex.l" -{ return MOD; } +{ return IN; } YY_BREAK case 23: YY_RULE_SETUP #line 183 "ada-lex.l" -{ return NEW; } +{ return MOD; } YY_BREAK case 24: YY_RULE_SETUP #line 184 "ada-lex.l" -{ return NOT; } +{ return NEW; } YY_BREAK case 25: YY_RULE_SETUP #line 185 "ada-lex.l" -{ return NULL_PTR; } +{ return NOT; } YY_BREAK case 26: YY_RULE_SETUP #line 186 "ada-lex.l" -{ return OR; } +{ return NULL_PTR; } YY_BREAK case 27: YY_RULE_SETUP #line 187 "ada-lex.l" -{ return OTHERS; } +{ return OR; } YY_BREAK case 28: YY_RULE_SETUP #line 188 "ada-lex.l" -{ return REM; } +{ return OTHERS; } YY_BREAK case 29: YY_RULE_SETUP #line 189 "ada-lex.l" -{ return THEN; } +{ return REM; } YY_BREAK case 30: YY_RULE_SETUP #line 190 "ada-lex.l" +{ return THEN; } + YY_BREAK +case 31: +YY_RULE_SETUP +#line 191 "ada-lex.l" { return XOR; } YY_BREAK /* BOOLEAN "KEYWORDS" */ @@ -1115,93 +1355,92 @@ YY_RULE_SETUP However, the boolean type is no longer represented as an enum, so True and False are no longer defined in symbol tables. We compromise by making them keywords (when bare). */ -case 31: +case 32: YY_RULE_SETUP -#line 199 "ada-lex.l" +#line 200 "ada-lex.l" { return TRUEKEYWORD; } YY_BREAK -case 32: +case 33: YY_RULE_SETUP -#line 200 "ada-lex.l" +#line 201 "ada-lex.l" { return FALSEKEYWORD; } YY_BREAK /* ATTRIBUTES */ -case 33: +case 34: +/* rule 34 can match eol */ YY_RULE_SETUP -#line 204 "ada-lex.l" +#line 205 "ada-lex.l" { return processAttribute (yytext+1); } YY_BREAK /* PUNCTUATION */ -case 34: -YY_RULE_SETUP -#line 208 "ada-lex.l" -{ return ARROW; } - YY_BREAK case 35: YY_RULE_SETUP #line 209 "ada-lex.l" -{ return DOTDOT; } +{ return ARROW; } YY_BREAK case 36: YY_RULE_SETUP #line 210 "ada-lex.l" -{ return STARSTAR; } +{ return DOTDOT; } YY_BREAK case 37: YY_RULE_SETUP #line 211 "ada-lex.l" -{ return ASSIGN; } +{ return STARSTAR; } YY_BREAK case 38: YY_RULE_SETUP #line 212 "ada-lex.l" -{ return NOTEQUAL; } +{ return ASSIGN; } YY_BREAK case 39: YY_RULE_SETUP #line 213 "ada-lex.l" -{ return LEQ; } +{ return NOTEQUAL; } YY_BREAK case 40: YY_RULE_SETUP #line 214 "ada-lex.l" -{ return GEQ; } +{ return LEQ; } YY_BREAK case 41: YY_RULE_SETUP -#line 216 "ada-lex.l" -{ BEGIN INITIAL; return '\''; } +#line 215 "ada-lex.l" +{ return GEQ; } YY_BREAK case 42: YY_RULE_SETUP -#line 218 "ada-lex.l" -{ return yytext[0]; } +#line 217 "ada-lex.l" +{ BEGIN INITIAL; return '\''; } YY_BREAK case 43: YY_RULE_SETUP -#line 220 "ada-lex.l" +#line 219 "ada-lex.l" +{ return yytext[0]; } + YY_BREAK +case 44: +YY_RULE_SETUP +#line 221 "ada-lex.l" { if (paren_depth == 0 && comma_terminates) { - lexptr -= 1; - yyrestart(NULL); + rewind_to_char (','); return 0; } else return ','; } YY_BREAK -case 44: +case 45: YY_RULE_SETUP #line 230 "ada-lex.l" { paren_depth += 1; return '('; } YY_BREAK -case 45: +case 46: YY_RULE_SETUP #line 231 "ada-lex.l" { if (paren_depth == 0) { - lexptr -= 1; - yyrestart(NULL); + rewind_to_char (')'); return 0; } else @@ -1211,22 +1450,25 @@ YY_RULE_SETUP } } YY_BREAK -case 46: +case 47: +/* rule 47 can match eol */ YY_RULE_SETUP -#line 244 "ada-lex.l" +#line 243 "ada-lex.l" { return DOT_ALL; } YY_BREAK -case 47: +case 48: +/* rule 48 can match eol */ YY_RULE_SETUP -#line 246 "ada-lex.l" +#line 245 "ada-lex.l" { yylval.sval = processId (yytext+1, yyleng-1); return DOT_ID; } YY_BREAK -case 48: +case 49: +/* rule 49 can match eol */ YY_RULE_SETUP -#line 251 "ada-lex.l" +#line 250 "ada-lex.l" { int all_posn = find_dot_all (yytext); @@ -1242,29 +1484,30 @@ YY_RULE_SETUP } YY_BREAK /* GDB EXPRESSION CONSTRUCTS */ -case 49: +case 50: +/* rule 50 can match eol */ YY_RULE_SETUP -#line 268 "ada-lex.l" +#line 267 "ada-lex.l" { yyless (yyleng - 2); yylval.sval = processId (yytext, yyleng); return NAME; } YY_BREAK -case 50: +case 51: YY_RULE_SETUP -#line 274 "ada-lex.l" +#line 273 "ada-lex.l" { return COLONCOLON; } YY_BREAK -case 51: +case 52: YY_RULE_SETUP -#line 276 "ada-lex.l" +#line 275 "ada-lex.l" { return yytext[0]; } YY_BREAK /* REGISTERS AND GDB CONVENIENCE VARIABLES */ -case 52: +case 53: YY_RULE_SETUP -#line 280 "ada-lex.l" +#line 279 "ada-lex.l" { yylval.sval.ptr = yytext; yylval.sval.length = yyleng; @@ -1272,17 +1515,17 @@ YY_RULE_SETUP } YY_BREAK /* CATCH-ALL ERROR CASE */ -case 53: +case 54: YY_RULE_SETUP -#line 288 "ada-lex.l" +#line 287 "ada-lex.l" { error (_("Invalid character '%s' in expression."), yytext); } YY_BREAK -case 54: +case 55: YY_RULE_SETUP -#line 289 "ada-lex.l" +#line 288 "ada-lex.l" YY_FATAL_ERROR( "flex scanner jammed" ); YY_BREAK -#line 1286 "ada-lex.c" +#line 1529 "ada-lex.c" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(BEFORE_QUAL_QUOTE): yyterminate(); @@ -1290,26 +1533,26 @@ case YY_STATE_EOF(BEFORE_QUAL_QUOTE): 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; + 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_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET - if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW ) + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure - * consistency between yy_current_buffer and our + * 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; + (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position @@ -1319,13 +1562,13 @@ case YY_STATE_EOF(BEFORE_QUAL_QUOTE): * 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] ) + if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; - yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; + (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; - yy_current_state = yy_get_previous_state(); + yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have @@ -1338,30 +1581,30 @@ case YY_STATE_EOF(BEFORE_QUAL_QUOTE): yy_next_state = yy_try_NUL_trans( yy_current_state ); - yy_bp = yytext_ptr + YY_MORE_ADJ; + yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ - yy_cp = ++yy_c_buf_p; + yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { - yy_cp = yy_c_buf_p; + yy_cp = (yy_c_buf_p); goto yy_find_action; } } - else switch ( yy_get_next_buffer() ) + else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { - yy_did_buffer_switch_on_eof = 0; + (yy_did_buffer_switch_on_eof) = 0; - if ( yywrap() ) + if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up @@ -1372,7 +1615,7 @@ case YY_STATE_EOF(BEFORE_QUAL_QUOTE): * YY_NULL, it'll still work - another * YY_NULL will get returned. */ - yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; + (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; @@ -1380,30 +1623,30 @@ case YY_STATE_EOF(BEFORE_QUAL_QUOTE): else { - if ( ! yy_did_buffer_switch_on_eof ) + 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_c_buf_p) = + (yytext_ptr) + yy_amount_of_matched_text; - yy_current_state = yy_get_previous_state(); + yy_current_state = yy_get_previous_state( ); - yy_cp = yy_c_buf_p; - yy_bp = yytext_ptr + YY_MORE_ADJ; + 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_c_buf_p) = + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; - yy_current_state = yy_get_previous_state(); + yy_current_state = yy_get_previous_state( ); - yy_cp = yy_c_buf_p; - yy_bp = yytext_ptr + YY_MORE_ADJ; + yy_cp = (yy_c_buf_p); + yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; @@ -1414,8 +1657,7 @@ case YY_STATE_EOF(BEFORE_QUAL_QUOTE): "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ - } /* end of yylex */ - +} /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * @@ -1424,21 +1666,20 @@ case YY_STATE_EOF(BEFORE_QUAL_QUOTE): * 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; +static int yy_get_next_buffer (void) +{ + register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; + register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; - if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) + if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); - if ( yy_current_buffer->yy_fill_buffer == 0 ) + if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ - if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 ) + 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. @@ -1458,34 +1699,30 @@ static int yy_get_next_buffer() /* Try to read more data. */ /* First move last chars to start of buffer. */ - number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1; + 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 ) + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ - yy_current_buffer->yy_n_chars = yy_n_chars = 0; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { - int num_to_read = - yy_current_buffer->yy_buf_size - number_to_move - 1; + int num_to_read = + YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ -#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; + YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int yy_c_buf_p_offset = - (int) (yy_c_buf_p - b->yy_ch_buf); + (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { @@ -1498,8 +1735,7 @@ static int yy_get_next_buffer() b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ - yyxrealloc( (void *) b->yy_ch_buf, - b->yy_buf_size + 2 ); + yyxrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ @@ -1509,35 +1745,35 @@ static int yy_get_next_buffer() YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); - yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; + (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; - num_to_read = yy_current_buffer->yy_buf_size - + num_to_read = YY_CURRENT_BUFFER_LVALUE->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_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), + (yy_n_chars), (size_t) num_to_read ); - yy_current_buffer->yy_n_chars = yy_n_chars; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } - if ( yy_n_chars == 0 ) + if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; - yyrestart( yyin ); + yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; - yy_current_buffer->yy_buffer_status = + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } @@ -1545,153 +1781,145 @@ static int yy_get_next_buffer() 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; + if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { + /* Extend the array by 50%, plus the number we really need. */ + yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyxrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); + if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); + } - yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; + (yy_n_chars) += number_to_move; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; - return ret_val; - } + (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; + return ret_val; +} /* yy_get_previous_state - get the state just before the EOB char was reached */ -static yy_state_type yy_get_previous_state() - { + static yy_state_type yy_get_previous_state (void) +{ register yy_state_type yy_current_state; register char *yy_cp; + + yy_current_state = (yy_start); - yy_current_state = yy_start; - - for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) + 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; + (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 >= 196 ) + if ( yy_current_state >= 207 ) 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 - { + static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) +{ register int yy_is_jam; - register char *yy_cp = yy_c_buf_p; + register 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; + (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 >= 196 ) + if ( yy_current_state >= 207 ) 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 == 195); + yy_is_jam = (yy_current_state == 206); 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; + static void yyunput (int c, register char * yy_bp ) +{ + register char *yy_cp; + + yy_cp = (yy_c_buf_p); /* undo effects of setting up yytext */ - *yy_cp = yy_hold_char; + *yy_cp = (yy_hold_char); - if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) + if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->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 int number_to_move = (yy_n_chars) + 2; + register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ + YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; register char *source = - &yy_current_buffer->yy_ch_buf[number_to_move]; + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; - while ( source > yy_current_buffer->yy_ch_buf ) + while ( source > YY_CURRENT_BUFFER_LVALUE->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; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = + (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; - if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) + if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->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 */ - + (yytext_ptr) = yy_bp; + (yy_hold_char) = *yy_cp; + (yy_c_buf_p) = yy_cp; +} #ifndef YY_NO_INPUT #ifdef __cplusplus -static int yyinput() + static int yyinput (void) #else -static int input() + static int input (void) #endif - { - int c; - *yy_c_buf_p = yy_hold_char; +{ + int c; + + *(yy_c_buf_p) = (yy_hold_char); - if ( *yy_c_buf_p == YY_END_OF_BUFFER_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] ) + if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ - *yy_c_buf_p = '\0'; + *(yy_c_buf_p) = '\0'; else { /* need more input */ - int offset = yy_c_buf_p - yytext_ptr; - ++yy_c_buf_p; + int offset = (yy_c_buf_p) - (yytext_ptr); + ++(yy_c_buf_p); - switch ( yy_get_next_buffer() ) + switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() @@ -1705,16 +1933,16 @@ static int input() */ /* Reset buffer status. */ - yyrestart( yyin ); + yyrestart(yyin ); - /* fall through */ + /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { - if ( yywrap() ) + if ( yywrap( ) ) return EOF; - if ( ! yy_did_buffer_switch_on_eof ) + if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); @@ -1724,90 +1952,92 @@ static int input() } case EOB_ACT_CONTINUE_SCAN: - yy_c_buf_p = yytext_ptr + offset; + (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; - + 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; - } -#endif /* YY_NO_INPUT */ - -#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 ); +} +#endif /* ifndef YY_NO_INPUT */ - yy_init_buffer( yy_current_buffer, input_file ); - yy_load_buffer_state(); +/** Immediately switch to a different input stream. + * @param input_file A readable stream. + * + * @note This function does not reset the start condition to @c INITIAL . + */ + void yyrestart (FILE * input_file ) +{ + + if ( ! YY_CURRENT_BUFFER ){ + yyensure_buffer_stack (); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer(yyin,YY_BUF_SIZE ); } + yy_init_buffer(YY_CURRENT_BUFFER,input_file ); + yy_load_buffer_state( ); +} -#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 ) +/** Switch to a different input buffer. + * @param new_buffer The new input buffer. + * + */ + void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) +{ + + /* TODO. We should be able to replace this entire function body + * with + * yypop_buffer_state(); + * yypush_buffer_state(new_buffer); + */ + yyensure_buffer_stack (); + if ( YY_CURRENT_BUFFER == new_buffer ) return; - if ( yy_current_buffer ) + 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_c_buf_p) = (yy_hold_char); + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } - yy_current_buffer = new_buffer; - yy_load_buffer_state(); + YY_CURRENT_BUFFER_LVALUE = new_buffer; + yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ - yy_did_buffer_switch_on_eof = 1; - } - - -#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; - } + (yy_did_buffer_switch_on_eof) = 1; +} +static void yy_load_buffer_state (void) +{ + (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; + yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; + (yy_hold_char) = *(yy_c_buf_p); +} -#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 - { +/** Allocate and initialize an input buffer state. + * @param file A readable stream. + * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. + * + * @return the allocated buffer state. + */ + YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) +{ YY_BUFFER_STATE b; - - b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); + + b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); @@ -1816,75 +2046,75 @@ int 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 ); + b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; - yy_init_buffer( b, file ); + 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 - { +/** Destroy the buffer. + * @param b a buffer created with yy_create_buffer() + * + */ + void yy_delete_buffer (YY_BUFFER_STATE b ) +{ + if ( ! b ) return; - if ( b == yy_current_buffer ) - yy_current_buffer = (YY_BUFFER_STATE) 0; + if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ + YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) - yy_flex_free( (void *) b->yy_ch_buf ); - - yy_flex_free( (void *) b ); - } + yyfree((void *) b->yy_ch_buf ); + yyfree((void *) b ); +} +#ifndef __cplusplus +extern int isatty (int ); +#endif /* __cplusplus */ + +/* Initializes or reinitializes a buffer. + * This function is sometimes called more than once on the same buffer, + * such as during a yyrestart() or at EOF. + */ + static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) -#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 ); +{ + int oerrno = errno; + + 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 - } - + /* If b is the current buffer, then yy_init_buffer was _probably_ + * called from yyrestart() or through yy_get_next_buffer. + * In that case, we don't want to reset the lineno or column. + */ + if (b != YY_CURRENT_BUFFER){ + b->yy_bs_lineno = 1; + b->yy_bs_column = 0; + } -#ifdef YY_USE_PROTOS -void yy_flush_buffer( YY_BUFFER_STATE b ) -#else -void yy_flush_buffer( b ) -YY_BUFFER_STATE b; -#endif + b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; + + errno = oerrno; +} - { - if ( ! b ) +/** Discard all buffered characters. On the next scan, YY_INPUT will be called. + * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. + * + */ + void yy_flush_buffer (YY_BUFFER_STATE b ) +{ + if ( ! b ) return; b->yy_n_chars = 0; @@ -1901,29 +2131,125 @@ YY_BUFFER_STATE b; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; - if ( b == yy_current_buffer ) - yy_load_buffer_state(); + if ( b == YY_CURRENT_BUFFER ) + yy_load_buffer_state( ); +} + +/** Pushes the new state onto the stack. The new state becomes + * the current state. This function will allocate the stack + * if necessary. + * @param new_buffer The new state. + * + */ +void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) +{ + if (new_buffer == NULL) + return; + + yyensure_buffer_stack(); + + /* This block is copied from yy_switch_to_buffer. */ + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *(yy_c_buf_p) = (yy_hold_char); + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); + } + + /* Only push if top exists. Otherwise, replace top. */ + if (YY_CURRENT_BUFFER) + (yy_buffer_stack_top)++; + YY_CURRENT_BUFFER_LVALUE = new_buffer; + + /* copied from yy_switch_to_buffer. */ + yy_load_buffer_state( ); + (yy_did_buffer_switch_on_eof) = 1; +} + +/** Removes and deletes the top of the stack, if present. + * The next element becomes the new top. + * + */ +void yypop_buffer_state (void) +{ + if (!YY_CURRENT_BUFFER) + return; + + yy_delete_buffer(YY_CURRENT_BUFFER ); + YY_CURRENT_BUFFER_LVALUE = NULL; + if ((yy_buffer_stack_top) > 0) + --(yy_buffer_stack_top); + + if (YY_CURRENT_BUFFER) { + yy_load_buffer_state( ); + (yy_did_buffer_switch_on_eof) = 1; } +} +/* Allocates the stack if it does not exist. + * Guarantees space for at least one push. + */ +static void yyensure_buffer_stack (void) +{ + int num_to_alloc; + + if (!(yy_buffer_stack)) { + + /* First allocation is just for 2 elements, since we don't know if this + * scanner will even need a stack. We use 2 instead of 1 to avoid an + * immediate xrealloc on the next call. + */ + num_to_alloc = 1; + (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc + (num_to_alloc * sizeof(struct yy_buffer_state*) + ); + if ( ! (yy_buffer_stack) ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); + + (yy_buffer_stack_max) = num_to_alloc; + (yy_buffer_stack_top) = 0; + return; + } -#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 ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ + + /* Increase the buffer to prepare for a possible push. */ + int grow_size = 8 /* arbitrary grow size */; + + num_to_alloc = (yy_buffer_stack_max) + grow_size; + (yy_buffer_stack) = (struct yy_buffer_state**)yyxrealloc + ((yy_buffer_stack), + num_to_alloc * sizeof(struct yy_buffer_state*) + ); + if ( ! (yy_buffer_stack) ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + /* zero only the new slots.*/ + memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); + (yy_buffer_stack_max) = num_to_alloc; + } +} +/** Setup the input buffer state to scan directly from a user-specified character buffer. + * @param base the character buffer + * @param size the size in bytes of the character buffer + * + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) +{ + YY_BUFFER_STATE b; + if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; - b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); + b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); @@ -1937,56 +2263,51 @@ yy_size_t size; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; - yy_switch_to_buffer( b ); + 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 +} +/** Setup the input buffer state to scan a string. The next call to yylex() will + * scan from a @e copy of @a str. + * @param yystr a NUL-terminated string to scan + * + * @return the newly allocated buffer state object. + * @note If you want to scan bytes that may contain NUL values, then use + * yy_scan_bytes() instead. + */ +YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) +{ + + return yy_scan_bytes(yystr,strlen(yystr) ); +} -#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 - { +/** Setup the input buffer state to scan the given bytes. The next call to yylex() will + * scan from a @e copy of @a bytes. + * @param bytes the byte buffer to scan + * @param len the number of bytes in the buffer pointed to by @a bytes. + * + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) +{ YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; - + /* Get memory for full buffer, including space for trailing EOB's. */ - n = len + 2; - buf = (char *) yy_flex_alloc( n ); + n = _yybytes_len + 2; + buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); - for ( i = 0; i < len; ++i ) - buf[i] = bytes[i]; + for ( i = 0; i < _yybytes_len; ++i ) + buf[i] = yybytes[i]; - buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; + buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; - b = yy_scan_buffer( buf, n ); + b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); @@ -1996,148 +2317,196 @@ int len; b->yy_is_our_buffer = 1; return b; - } +} + +#ifndef YY_EXIT_FAILURE +#define YY_EXIT_FAILURE 2 #endif +static void yy_fatal_error (yyconst char* msg ) +{ + (void) fprintf( stderr, "%s\n", msg ); + exit( YY_EXIT_FAILURE ); +} -#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; +/* Redefine yyless() so it works in section 3 code. */ - yy_start_stack_depth += YY_START_STACK_INCR; - new_size = yy_start_stack_depth * sizeof( int ); +#undef yyless +#define yyless(n) \ + do \ + { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + yytext[yyleng] = (yy_hold_char); \ + (yy_c_buf_p) = yytext + yyless_macro_arg; \ + (yy_hold_char) = *(yy_c_buf_p); \ + *(yy_c_buf_p) = '\0'; \ + yyleng = yyless_macro_arg; \ + } \ + while ( 0 ) - if ( ! yy_start_stack ) - yy_start_stack = (int *) yy_flex_alloc( new_size ); +/* Accessor methods (get/set functions) to struct members. */ - else - yy_start_stack = (int *) yyxrealloc( - (void *) yy_start_stack, new_size ); +/** Get the current line number. + * + */ +int yyget_lineno (void) +{ + + return yylineno; +} - if ( ! yy_start_stack ) - YY_FATAL_ERROR( - "out of memory expanding start-condition stack" ); - } +/** Get the input stream. + * + */ +FILE *yyget_in (void) +{ + return yyin; +} - yy_start_stack[yy_start_stack_ptr++] = YY_START; +/** Get the output stream. + * + */ +FILE *yyget_out (void) +{ + return yyout; +} - BEGIN(new_state); - } -#endif +/** Get the length of the current token. + * + */ +int yyget_leng (void) +{ + return yyleng; +} +/** Get the current token. + * + */ -#ifndef YY_NO_POP_STATE -static void yy_pop_state() - { - if ( --yy_start_stack_ptr < 0 ) - YY_FATAL_ERROR( "start-condition stack underflow" ); +char *yyget_text (void) +{ + return yytext; +} - BEGIN(yy_start_stack[yy_start_stack_ptr]); - } -#endif +/** Set the current line number. + * @param line_number + * + */ +void yyset_lineno (int line_number ) +{ + + yylineno = line_number; +} +/** Set the input stream. This does not discard the current + * input buffer. + * @param in_str A readable stream. + * + * @see yy_switch_to_buffer + */ +void yyset_in (FILE * in_str ) +{ + yyin = in_str ; +} -#ifndef YY_NO_TOP_STATE -static int yy_top_state() - { - return yy_start_stack[yy_start_stack_ptr - 1]; - } -#endif +void yyset_out (FILE * out_str ) +{ + yyout = out_str ; +} -#ifndef YY_EXIT_FAILURE -#define YY_EXIT_FAILURE 2 -#endif +int yyget_debug (void) +{ + return yy_flex_debug; +} + +void yyset_debug (int bdebug ) +{ + yy_flex_debug = bdebug ; +} -#ifdef YY_USE_PROTOS -static void yy_fatal_error( yyconst char msg[] ) +static int yy_init_globals (void) +{ + /* Initialization is the same as for the non-reentrant scanner. + * This function is called from yylex_destroy(), so don't allocate here. + */ + + (yy_buffer_stack) = 0; + (yy_buffer_stack_top) = 0; + (yy_buffer_stack_max) = 0; + (yy_c_buf_p) = (char *) 0; + (yy_init) = 0; + (yy_start) = 0; + +/* Defined in main.c */ +#ifdef YY_STDINIT + yyin = stdin; + yyout = stdout; #else -static void yy_fatal_error( msg ) -char msg[]; + yyin = (FILE *) 0; + yyout = (FILE *) 0; #endif - { - (void) fprintf( stderr, "%s\n", msg ); - exit( YY_EXIT_FAILURE ); - } + /* For future reference: Set errno on error, since we are called by + * yylex_init() + */ + return 0; +} +/* yylex_destroy is for both reentrant and non-reentrant scanners. */ +int yylex_destroy (void) +{ + + /* Pop the buffer stack, destroying each element. */ + while(YY_CURRENT_BUFFER){ + yy_delete_buffer(YY_CURRENT_BUFFER ); + YY_CURRENT_BUFFER_LVALUE = NULL; + yypop_buffer_state(); + } -/* Redefine yyless() so it works in section 3 code. */ + /* Destroy the stack itself. */ + yyfree((yy_buffer_stack) ); + (yy_buffer_stack) = NULL; -#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 ) + /* Reset the globals. This is important in a non-reentrant scanner so the next time + * yylex() is called, initialization will occur. */ + yy_init_globals( ); + return 0; +} -/* Internal utility routines. */ +/* + * 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 - { +static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) +{ register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; - } +} #endif #ifdef YY_NEED_STRLEN -#ifdef YY_USE_PROTOS -static int yy_flex_strlen( yyconst char *s ) -#else -static int yy_flex_strlen( s ) -yyconst char *s; -#endif - { +static int yy_flex_strlen (yyconst char * s ) +{ 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 - { +void *yyalloc (yy_size_t size ) +{ return (void *) xmalloc( size ); - } +} -#ifdef YY_USE_PROTOS -static void *yyxrealloc( void *ptr, yy_size_t size ) -#else -static void *yyxrealloc( ptr, size ) -void *ptr; -yy_size_t size; -#endif - { +void *yyxrealloc (void * ptr, yy_size_t size ) +{ /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter @@ -2146,26 +2515,17 @@ yy_size_t size; * as though doing an assignment. */ return (void *) xrealloc( (char *) ptr, size ); - } +} -#ifdef YY_USE_PROTOS -static void yy_flex_free( void *ptr ) -#else -static void yy_flex_free( ptr ) -void *ptr; -#endif - { - xfree( ptr ); - } +void yyfree (void * ptr ) +{ + xfree( (char *) ptr ); /* see yyxrealloc() for (char *) cast */ +} + +#define YYTABLES_NAME "yytables" + +#line 288 "ada-lex.l" -#if YY_MAIN -int main() - { - yylex(); - return 0; - } -#endif -#line 289 "ada-lex.l" #include @@ -2173,7 +2533,7 @@ int main() /* Initialize the lexer for processing new expression. */ -void +static void lexer_init (FILE *inp) { BEGIN INITIAL; @@ -2290,7 +2650,9 @@ processReal (const char *num0) /* Store a canonicalized version of NAME0[0..LEN-1] in yylval.ssym. The - resulting string is valid until the next call to ada_parse. It differs + resulting string is valid until the next call to ada_parse. If + NAME0 contains the substring "___", it is assumed to be already + encoded and the resulting name is equal to it. Otherwise, it differs from NAME0 in that: + Characters between '...' or <...> are transfered verbatim to yylval.ssym. @@ -2310,8 +2672,18 @@ processId (const char *name0, int len) int i0, i; struct stoken result; + result.ptr = name; while (len > 0 && isspace (name0[len-1])) len -= 1; + + if (strstr (name0, "___") != NULL) + { + strncpy (name, name0, len); + name[len] = '\000'; + result.length = len; + return result; + } + i = i0 = 0; while (i0 < len) { @@ -2351,7 +2723,6 @@ processId (const char *name0, int len) } name[i] = '\000'; - result.ptr = name; result.length = i; return result; } @@ -2486,6 +2857,23 @@ processAttribute (const char *str) return attributes[k].code; } +/* Back up lexptr by yyleng and then to the rightmost occurrence of + character CH, case-folded (there must be one). WARNING: since + lexptr points to the next input character that Flex has not yet + transferred to its internal buffer, the use of this function + depends on the assumption that Flex calls YY_INPUT only when it is + logically necessary to do so (thus, there is no reading ahead + farther than needed to identify the next token.) */ + +static void +rewind_to_char (int ch) +{ + lexptr -= yyleng; + while (toupper (*lexptr) != toupper (ch)) + lexptr -= 1; + yyrestart (NULL); +} + int yywrap(void) { @@ -2498,3 +2886,4 @@ dummy_function ada_flex_use[] = { (dummy_function) yyunput }; +