gdb/ada-lex.c - gdb

Global variables defined

Data types defined

Functions defined

Macros defined

Source code

  1. #line 2 "ada-lex.c"

  2. #line 4 "ada-lex.c"

  3. #define  YY_INT_ALIGNED short int

  4. /* A lexical scanner generated by flex */

  5. #define FLEX_SCANNER
  6. #define YY_FLEX_MAJOR_VERSION 2
  7. #define YY_FLEX_MINOR_VERSION 5
  8. #define YY_FLEX_SUBMINOR_VERSION 37
  9. #if YY_FLEX_SUBMINOR_VERSION > 0
  10. #define FLEX_BETA
  11. #endif

  12. /* First, we deal with  platform-specific or compiler-specific issues. */

  13. /* begin standard C headers. */
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include <errno.h>
  17. #include <stdlib.h>

  18. /* end standard C headers. */

  19. /* flex integer type definitions */

  20. #ifndef FLEXINT_H
  21. #define FLEXINT_H

  22. /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */

  23. #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L

  24. /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
  25. * if you want the limit (max/min) macros for int types.
  26. */
  27. #ifndef __STDC_LIMIT_MACROS
  28. #define __STDC_LIMIT_MACROS 1
  29. #endif

  30. #include <inttypes.h>
  31. typedef int8_t flex_int8_t;
  32. typedef uint8_t flex_uint8_t;
  33. typedef int16_t flex_int16_t;
  34. typedef uint16_t flex_uint16_t;
  35. typedef int32_t flex_int32_t;
  36. typedef uint32_t flex_uint32_t;
  37. #else
  38. typedef signed char flex_int8_t;
  39. typedef short int flex_int16_t;
  40. typedef int flex_int32_t;
  41. typedef unsigned char flex_uint8_t;
  42. typedef unsigned short int flex_uint16_t;
  43. typedef unsigned int flex_uint32_t;

  44. /* Limits of integral types. */
  45. #ifndef INT8_MIN
  46. #define INT8_MIN               (-128)
  47. #endif
  48. #ifndef INT16_MIN
  49. #define INT16_MIN              (-32767-1)
  50. #endif
  51. #ifndef INT32_MIN
  52. #define INT32_MIN              (-2147483647-1)
  53. #endif
  54. #ifndef INT8_MAX
  55. #define INT8_MAX               (127)
  56. #endif
  57. #ifndef INT16_MAX
  58. #define INT16_MAX              (32767)
  59. #endif
  60. #ifndef INT32_MAX
  61. #define INT32_MAX              (2147483647)
  62. #endif
  63. #ifndef UINT8_MAX
  64. #define UINT8_MAX              (255U)
  65. #endif
  66. #ifndef UINT16_MAX
  67. #define UINT16_MAX             (65535U)
  68. #endif
  69. #ifndef UINT32_MAX
  70. #define UINT32_MAX             (4294967295U)
  71. #endif

  72. #endif /* ! C99 */

  73. #endif /* ! FLEXINT_H */

  74. #ifdef __cplusplus

  75. /* The "const" storage-class-modifier is valid. */
  76. #define YY_USE_CONST

  77. #else        /* ! __cplusplus */

  78. /* C99 requires __STDC__ to be defined as 1. */
  79. #if defined (__STDC__)

  80. #define YY_USE_CONST

  81. #endif        /* defined (__STDC__) */
  82. #endif        /* ! __cplusplus */

  83. #ifdef YY_USE_CONST
  84. #define yyconst const
  85. #else
  86. #define yyconst
  87. #endif

  88. /* Returned upon end-of-file. */
  89. #define YY_NULL 0

  90. /* Promotes a possibly negative, possibly signed char to an unsigned
  91. * integer for use as an array index.  If the signed char is negative,
  92. * we want to instead treat it as an 8-bit unsigned char, hence the
  93. * double cast.
  94. */
  95. #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)

  96. /* Enter a start condition.  This macro really ought to take a parameter,
  97. * but we do it the disgusting crufty way forced on us by the ()-less
  98. * definition of BEGIN.
  99. */
  100. #define BEGIN (yy_start) = 1 + 2 *

  101. /* Translate the current start state into a value that can be later handed
  102. * to BEGIN to return to the state.  The YYSTATE alias is for lex
  103. * compatibility.
  104. */
  105. #define YY_START (((yy_start) - 1) / 2)
  106. #define YYSTATE YY_START

  107. /* Action number for EOF rule of a given start state. */
  108. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)

  109. /* Special action meaning "start processing a new file". */
  110. #define YY_NEW_FILE yyrestart(yyin  )

  111. #define YY_END_OF_BUFFER_CHAR 0

  112. /* Size of default input buffer. */
  113. #ifndef YY_BUF_SIZE
  114. #define YY_BUF_SIZE 16384
  115. #endif

  116. /* The state buf must be large enough to hold one state per character in the main buffer.
  117. */
  118. #define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))

  119. #ifndef YY_TYPEDEF_YY_BUFFER_STATE
  120. #define YY_TYPEDEF_YY_BUFFER_STATE
  121. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  122. #endif

  123. #ifndef YY_TYPEDEF_YY_SIZE_T
  124. #define YY_TYPEDEF_YY_SIZE_T
  125. typedef size_t yy_size_t;
  126. #endif

  127. extern yy_size_t yyleng;

  128. extern FILE *yyin, *yyout;

  129. #define EOB_ACT_CONTINUE_SCAN 0
  130. #define EOB_ACT_END_OF_FILE 1
  131. #define EOB_ACT_LAST_MATCH 2

  132.     #define YY_LESS_LINENO(n)

  133. /* Return all but the first "n" matched characters back to the input stream. */
  134. #define yyless(n) \
  135.         do \
  136.                 { \
  137.                 /* Undo effects of setting up yytext. */ \
  138.         int yyless_macro_arg = (n); \
  139.         YY_LESS_LINENO(yyless_macro_arg);\
  140.                 *yy_cp = (yy_hold_char); \
  141.                 YY_RESTORE_YY_MORE_OFFSET \
  142.                 (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
  143.                 YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  144.                 } \
  145.         while ( 0 )

  146. #define unput(c) yyunput( c, (yytext_ptr)  )

  147. #ifndef YY_STRUCT_YY_BUFFER_STATE
  148. #define YY_STRUCT_YY_BUFFER_STATE
  149. struct yy_buffer_state
  150.         {
  151.         FILE *yy_input_file;

  152.         char *yy_ch_buf;                /* input buffer */
  153.         char *yy_buf_pos;                /* current position in input buffer */

  154.         /* Size of input buffer in bytes, not including room for EOB
  155.          * characters.
  156.          */
  157.         yy_size_t yy_buf_size;

  158.         /* Number of characters read into yy_ch_buf, not including EOB
  159.          * characters.
  160.          */
  161.         yy_size_t yy_n_chars;

  162.         /* Whether we "own" the buffer - i.e., we know we created it,
  163.          * and can xrealloc() it to grow it, and should xfree() it to
  164.          * delete it.
  165.          */
  166.         int yy_is_our_buffer;

  167.         /* Whether this is an "interactive" input source; if so, and
  168.          * if we're using stdio for input, then we want to use getc()
  169.          * instead of fread(), to make sure we stop fetching input after
  170.          * each newline.
  171.          */
  172.         int yy_is_interactive;

  173.         /* Whether we're considered to be at the beginning of a line.
  174.          * If so, '^' rules will be active on the next match, otherwise
  175.          * not.
  176.          */
  177.         int yy_at_bol;

  178.     int yy_bs_lineno; /**< The line count. */
  179.     int yy_bs_column; /**< The column count. */

  180.         /* Whether to try to fill the input buffer when we reach the
  181.          * end of it.
  182.          */
  183.         int yy_fill_buffer;

  184.         int yy_buffer_status;

  185. #define YY_BUFFER_NEW 0
  186. #define YY_BUFFER_NORMAL 1
  187.         /* When an EOF's been seen but there's still some text to process
  188.          * then we mark the buffer as YY_EOF_PENDING, to indicate that we
  189.          * shouldn't try reading from the input source any more.  We might
  190.          * still have a bunch of tokens to match, though, because of
  191.          * possible backing-up.
  192.          *
  193.          * When we actually see the EOF, we change the status to "new"
  194.          * (via yyrestart()), so that the user can continue scanning by
  195.          * just pointing yyin at a new input file.
  196.          */
  197. #define YY_BUFFER_EOF_PENDING 2

  198.         };
  199. #endif /* !YY_STRUCT_YY_BUFFER_STATE */

  200. /* Stack of input buffers. */
  201. static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
  202. static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
  203. static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */

  204. /* We provide macros for accessing buffer states in case in the
  205. * future we want to put the buffer states in a more general
  206. * "scanner state".
  207. *
  208. * Returns the top of the stack, or NULL.
  209. */
  210. #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
  211.                           ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
  212.                           : NULL)

  213. /* Same as previous macro, but useful when we know that the buffer stack is not
  214. * NULL or when we need an lvalue. For internal use only.
  215. */
  216. #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]

  217. /* yy_hold_char holds the character lost when yytext is formed. */
  218. static char yy_hold_char;
  219. static yy_size_t yy_n_chars;                /* number of characters read into yy_ch_buf */
  220. yy_size_t yyleng;

  221. /* Points to current character in buffer. */
  222. static char *yy_c_buf_p = (char *) 0;
  223. static int yy_init = 0;                /* whether we need to initialize */
  224. static int yy_start = 0;        /* start state number */

  225. /* Flag which is used to allow yywrap()'s to do buffer switches
  226. * instead of setting up a fresh yyinA bit of a hack ...
  227. */
  228. static int yy_did_buffer_switch_on_eof;

  229. void yyrestart (FILE *input_file  );
  230. void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
  231. YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
  232. void yy_delete_buffer (YY_BUFFER_STATE b  );
  233. void yy_flush_buffer (YY_BUFFER_STATE b  );
  234. void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
  235. void yypop_buffer_state (void );

  236. static void yyensure_buffer_stack (void );
  237. static void yy_load_buffer_state (void );
  238. static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );

  239. #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )

  240. YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
  241. YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
  242. YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len  );

  243. void *yyalloc (yy_size_t  );
  244. void *yyxrealloc (void *,yy_size_t  );
  245. void yyfree (void *  );

  246. #define yy_new_buffer yy_create_buffer

  247. #define yy_set_interactive(is_interactive) \
  248.         { \
  249.         if ( ! YY_CURRENT_BUFFER ){ \
  250.         yyensure_buffer_stack (); \
  251.                 YY_CURRENT_BUFFER_LVALUE =    \
  252.             yy_create_buffer(yyin,YY_BUF_SIZE ); \
  253.         } \
  254.         YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
  255.         }

  256. #define yy_set_bol(at_bol) \
  257.         { \
  258.         if ( ! YY_CURRENT_BUFFER ){\
  259.         yyensure_buffer_stack (); \
  260.                 YY_CURRENT_BUFFER_LVALUE =    \
  261.             yy_create_buffer(yyin,YY_BUF_SIZE ); \
  262.         } \
  263.         YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
  264.         }

  265. #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)

  266. /* Begin user sect3 */

  267. typedef unsigned char YY_CHAR;

  268. FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;

  269. typedef int yy_state_type;

  270. extern int yylineno;

  271. int yylineno = 1;

  272. extern char *yytext;
  273. #define yytext_ptr yytext

  274. static yy_state_type yy_get_previous_state (void );
  275. static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
  276. static int yy_get_next_buffer (void );
  277. static void yy_fatal_error (yyconst char msg[]  );

  278. /* Done after the current pattern has been matched and before the
  279. * corresponding action - sets up yytext.
  280. */
  281. #define YY_DO_BEFORE_ACTION \
  282.         (yytext_ptr) = yy_bp; \
  283.         yyleng = (size_t) (yy_cp - yy_bp); \
  284.         (yy_hold_char) = *yy_cp; \
  285.         *yy_cp = '\0'; \
  286.         (yy_c_buf_p) = yy_cp;

  287. #define YY_NUM_RULES 55
  288. #define YY_END_OF_BUFFER 56
  289. /* This struct is not used in this scanner,
  290.    but its presence is necessary. */
  291. struct yy_trans_info
  292.         {
  293.         flex_int32_t yy_verify;
  294.         flex_int32_t yy_nxt;
  295.         };
  296. static yyconst flex_int16_t yy_accept[207] =
  297.     {   0,
  298.         0,    0,    0,    0,   56,   54,    1,    1,   15,   53,
  299.        43,   54,   45,   46,   43,   44,   43,   43,   43,    4,
  300.         4,   43,   43,   43,   43,   52,   49,   49,   49,   49,
  301.        49,   49,   49,   49,   49,   49,   49,   42,    0,   14,
  302.         0,   53,    0,    0,    0,    0,    0,    0,    0,   37,
  303.         2,    0,   36,    0,   48,   48,   39,    0,    0,    4,
  304.         0,    0,   51,   38,   40,    0,   35,   41,    0,    0,
  305.        49,    0,   49,   49,   49,   49,   49,   16,   22,   49,
  306.        49,   49,   49,   27,   49,   49,   49,   49,   49,   49,
  307.         0,   14,    0,   12,   12,   34,    0,    2,    0,   48,

  308.        48,    0,    9,    0,    3,    7,    0,   49,    0,    0,
  309.         0,   49,   19,   20,   49,   49,   23,   24,   25,   49,
  310.        49,   29,   49,   49,   49,   49,   31,    0,    0,    0,
  311.         0,    0,    0,   48,   47,    6,    0,    0,    9,    0,
  312.         3,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  313.         0,    0,    0,   49,   21,   49,   26,   49,   17,   30,
  314.        49,   32,    0,   50,    0,    0,    0,    0,   49,    0,
  315.         0,    0,    0,    0,    0,    0,    0,   33,   49,   49,
  316.         0,    0,    5,   11,    0,    8,    0,    0,    0,    0,
  317.         0,    0,   28,   49,    0,    5,    0,    8,    0,    0,

  318.        13,    0,   18,   10,   10,    0
  319.     } ;

  320. static yyconst flex_int32_t yy_ec[256] =
  321.     {   0,
  322.         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
  323.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  324.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  325.         1,    4,    5,    6,    7,    8,    5,    9,   10,   11,
  326.        12,   13,   14,   15,   16,   17,   18,   19,   20,   20,
  327.        20,   20,   20,   20,   20,   20,   20,   21,   22,   23,
  328.        24,   25,    5,   26,   27,   28,   29,   30,   31,   32,
  329.        33,   34,   35,   33,   36,   37,   38,   39,   40,   33,
  330.        33,   41,   42,   43,   44,   33,   45,   46,   33,   33,
  331.        47,    5,   48,    5,   49,    5,   50,   51,   29,   52,

  332.        53,   54,   33,   55,   56,   33,   57,   58,   59,   60,
  333.        61,   33,   33,   62,   63,   64,   65,   33,   66,   67,
  334.        33,   33,   26,   22,   26,    5,    1,    1,    1,    1,
  335.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  336.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  337.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  338.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  339.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  340.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  341.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

  342.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  343.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  344.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  345.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  346.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  347.         1,    1,    1,    1,    1
  348.     } ;

  349. static yyconst flex_int32_t yy_meta[68] =
  350.     {   0,
  351.         1,    2,    3,    4,    5,    6,    7,    8,    5,    9,
  352.         5,    5,    5,    5,    5,    5,   10,    5,   11,   11,
  353.         5,    5,   12,   13,   14,    5,   15,   15,   15,   15,
  354.        15,   15,   16,   16,   16,   16,   16,   16,   16,   16,
  355.        16,   16,   16,   16,   16,   16,    5,    5,   17,   15,
  356.        15,   15,   15,   15,   16,   16,   16,   16,   16,   16,
  357.        16,   16,   16,   16,   16,   16,   16
  358.     } ;

  359. static yyconst flex_int16_t yy_base[229] =
  360.     {   0,
  361.         0,    0649638646, 1252, 1252, 1252,   62,    0,
  362.      1252109, 1252, 1252623, 1252619175606174,
  363.       180,   48604592590, 1252204,   71214186,
  364.       235244304256,   39368,   40430179, 1252,
  365.       195,    0602595592585574497,   72, 1252,
  366.         0273, 1252,    0,   39,    0, 1252,    0,   66262,
  367.        75,    0, 1252, 1252, 1252557, 1252, 1252284300,
  368.      1252322329349358377339396412563,
  369.       566575584587569596623616576617,
  370.       571568334380, 1252562677,    0403,    0,

  371.        40,   89642,   71163,    0401672401723,
  372.         0708741750637776785794797806,
  373.       775827831843818819883415,    0712,
  374.       399885352, 1252,    0191,    0202772170,
  375.       243334222244247259766,   47209216,
  376.       203251302892916890942715946958,
  377.       930974274, 1252,   93344278310979256,
  378.       264337270274352355215984995, 1000,
  379.       299354589355223603209204198189,
  380.       174101, 1004, 1016,   92634411644872, 1021,

  381.       717373, 1252793832, 1252, 1055, 1065, 1081, 1086,
  382.      1102, 1119, 1136, 1139, 1146339560, 1153, 1169, 1181,
  383.      1186, 1197, 1200, 1216634645, 1223, 1234
  384.     } ;

  385. static yyconst flex_int16_t yy_def[229] =
  386.     {   0,
  387.       206,    1,    1,    1206206206206207208,
  388.       206206206206206206206209206206,
  389.       206206210206206206211211211211,
  390.       211211211211,   33211,   33206207206,
  391.       207208212,   38,   38212206206212206,
  392.       213209206214215215206216206206,
  393.       206217206206206218206206206206,
  394.       206219211211211211211211211211,
  395.       211211211211,   36211211,   36,   33,   36,
  396.        48220206206206,   48212213221215,

  397.       215222206206206217218206219206,
  398.       223224211211,   33211211211211211,
  399.        33211211211,   33,   33211206225206,
  400.       206,   97221206215206226222206206,
  401.       206206206206206206206206206206,
  402.       206206227224211,   33211,   36211211,
  403.        36211206206212206228206206206,
  404.       206206206206206206227211211211,
  405.       212206206206228206206206206206,
  406.       206206211211212206206206206206,

  407.       206206206206206,    0206206206206,
  408.       206206206206206206206206206206,
  409.       206206206206206206206206
  410.     } ;

  411. static yyconst flex_int16_t yy_nxt[1320] =
  412.     {   0,
  413.         6,    7,    8,    7,    6,    9,    6,   10,   11,   12,
  414.        13,   14,   15,   11,   16,   17,   18,   19,   20,   21,
  415.        22,   11,   23,   24,   25,   26,   27,   28,   28,   28,
  416.        29,   30,   28,   28,   31,   28,   28,   32,   33,   34,
  417.        35,   28,   36,   28,   28,   37,   11,   11,   28,   27,
  418.        28,   28,   29,   30,   28,   31,   28,   28,   32,   33,
  419.        34,   35,   28,   36,   28,   28,   37,   40,   63,   86,
  420.        73,   64,   69,   69,   70101135,   97,   73,   90,
  421.        71,   94,   73,   73103103172,   72104105,
  422.       105,   86,   73105105136101135181,   73,

  423.        90201,   93,   73,   73137169172,   41,   43,
  424.        44,   44,   45,   46,   46,   46,   46,   46,   47,   46,
  425.        46,   46,   46,   46,   46,   46,   46,   46,   46,   46,
  426.        46,   46,   46,   46,   46,   48,   48,   48,   48,   48,
  427.        48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  428.        48,   48,   48,   48,   48,   49,   46,   46,   48,   48,
  429.        48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  430.        48,   48,   48,   48,   48,   48,   52,   52,   52169,
  431.        58141141168,   40168,   58,   69,   69,   70,
  432.        59,   53,   60,   60169,   71,   59,   54,   60,   60,

  433.        92,   55,   72169,   61,   69,   69,   70136169,
  434.        61141,   77,   71169,   69,   69,   70137,   62,
  435.        72166,   60,   71,   55,   41,   61169,   60184,
  436.        72,   74,   61175142,   77,   69,   69,   70169,
  437.        62,   41,   75166,   71,   69,   69,   70173169,
  438.        76,   72169,   71,   74175174,   69,   69,   70,
  439.        72141141,   75169,   71,   78142,   58173,
  440.       142,   76,   72,   79,   52,   52,   52174,   59169,
  441.        60,   60142,   80184,   69,   69,   69,   78206,
  442.       176141,   61188,   79,   54,   84187,   85,   55,

  443.        72,   69,   69,   70,   80,   69,   69,   70,   93,   71,
  444.        60176190,   71,   61188,   72,   84187,   85,
  445.        72,   39,   55109109109169110186186,
  446.        69,   69,   70190,   81130130130,   71169,
  447.        69,   69,   70,   82111,   72195,   83,   71102,
  448.        69,   69,   70102131,   72,   81182,   71,   69,
  449.        69,   70183183,   82,   72189,   71,   83,   69,
  450.        69,   70183183,   72116134,   71,   69,   69,
  451.        70130130130,   72197,   71114189191,
  452.       113204204,   72,   87192116,   69,   69,   70,

  453.       131,   88109109109,   71110197,   89114,
  454.       191113,   72,   69,   69,   70192,   87115164,
  455.       163,   71,   88111202108202134,   72,   89,
  456.        43,   44,   44,   44,   43,   43,   43,   43,   43115,
  457.        43,   43,   43,   43,   43,   43,   43,   43,   43,   43,
  458.        43,   43,   43,   43,   43,   43,   91,   91,   91,   91,
  459.        91,   91,   91,   91,   91,   91,   91,   91,   91,   91,
  460.        91,   91,   91,   91,   91,   91,   43,   43,   43,   91,
  461.        91,   91,   91,   91,   91,   91,   91,   91,   91,   91,
  462.        91,   91,   91,   91,   91,   91,   91,   43,   43,   43,

  463.        43,   43,   43,   43,   43,   43,   94,   43,   43,   43,
  464.        43,   43,   43,   43,   43,   43,   43,   43,   43,   43,
  465.        43,   43,   43,   96,   96,   96,   96,   96,   96,   96,
  466.        96,   96,   96,   96,   96,   96,   96,   96,   96,   96,
  467.        96,   96,   96,   43,   43,   43,   96,   96,   96,   96,
  468.        96,   96,   96,   96,   96,   96,   96,   96,   96,   96,
  469.        96,   96,   96,   96,   69,   69,   70,   69,   69,   70,
  470.       106,   93,   71128106,   71,   69,   69,   70,   72,
  471.        93108,   72,   95,   71,   69,   69,   70,   69,   69,
  472.        70,   72117,   71,   94,   73,   71,   69,   69,   70,

  473.        72,   94121,   72,   93,   71,   73196196,   73,
  474.       118,   93,   72,   68117,   73,   67119,   73126,
  475.       120198198121,   69,   69,   70,   65,   73,   57,
  476.        73118,   71122,   51,   50,   73196119,   72,
  477.       126120,   73,   73128206124,   38128,   73,
  478.        73198196196122167125127,   38167,
  479.       139139198198123,   73,   73155124206,
  480.        73,   73140,   69,   69,   70,   73125127206,
  481.        73,   71196206206123,   93206,   72155,
  482.       139206198206140132132,   73206206,

  483.       206,   73206132132132132132132,   69,
  484.        69,   70206130130130206,   71130130,
  485.       130206206206,   72206132132132132,
  486.       132142131206206143142131142206,
  487.       144,   73,   69,   69,   70145142146,   73147,
  488.        71,   69,   69,   70206179206,   72206,   71,
  489.       148149150151,   73206,   72206152,   73,
  490.       206206147206206206179,   69,   69,   70,
  491.       206148149150151,   71,   69,   69,   70152,
  492.       139139,   72170,   71,   69,   69,   70,   69,   69,

  493.        70,   72140,   71171158,   71,   69,   69,   70,
  494.        72205205,   72,   73,   71170156,   73206,
  495.       139206,   72206140171206158,   69,   69,
  496.        70206,   69,   69,   70,   73,   71206156,   73,
  497.        71205157,   72,   69,   69,   70,   72161162,
  498.       205205,   71206206206206,   73,   73,   72,
  499.       206,   73,   73157206206159206206206,
  500.       161162206199199199206206,   73,   73,
  501.       205160,   73,   73,   69,   69,   70159,   72206,
  502.       203203,   71,   69,   69,   70206206206,   72,

  503.       206,   71160165165206206206,   72206,
  504.       206165165165165165165,   69,   69,   70,
  505.       178206206206206,   71206206206,   73,
  506.       206206,   72,   73165165165165165206,
  507.       206206178,   69,   69,   70206,   69,   69,   70,
  508.        73,   71206206,   73,   71180206,   72,   69,
  509.        69,   70,   72,   73206206206,   71206206,
  510.        73206206206,   72,   69,   69,   70206180,
  511.        69,   69,   70,   71,   73,   69,   69,   70,   71206,
  512.        72,   73206,   71206,   72,   69,   69,   70206,

  513.        72,   69,   69,   70,   71,   69,   69,   70206,   71,
  514.       206,   72206,   71206206,   72199199200,
  515.        72206199199200,   71206206206194,
  516.        71206,   72206206206193,   72206203,
  517.       203206206206206206206206206206,
  518.       206194206206206206206193,   39,   39,
  519.        39,   39,   39,   39,   39,   39,   39,   39,   39,   39,
  520.        39,   39,   42206206,   42206206206,   42,
  521.        42,   42,   56,   56,   56206206206206206,
  522.        56206,   56206206,   56,   56,   56,   66206,

  523.        66,   66,   66,   73,   73,   73206206206206,
  524.        73,   73,   73206206206,   73,   73,   73,   43,
  525.        43,   43,   43,   43,   43,   43,   43,   43,   43,   43,
  526.        43,   43,   43,   43,   43,   43,   98,   98206,   98,
  527.        98,   98,   98,   98,   98,   98,   98,   98,   98,   98,
  528.        98,   98,   98,   99,   99,   99100206206206,
  529.       100100100107206206107107107107,
  530.       112112112206112206206206206206,
  531.       112206206112112112129206206206,
  532.       206129206206206129133206206133,

  533.       133133133138206206138138206206,
  534.       206138206138153153153154154154,
  535.       206206206206154154154206206206,
  536.       154154154177206206177177177177,
  537.       185206206206185206206206185206,
  538.       185,    5206206206206206206206206,
  539.       206206206206206206206206206206,
  540.       206206206206206206206206206206,
  541.       206206206206206206206206206206,
  542.       206206206206206206206206206206,

  543.       206206206206206206206206206206,
  544.       206206206206206206206206206
  545.     } ;

  546. static yyconst flex_int16_t yy_chk[1320] =
  547.     {   0,
  548.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  549.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  550.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  551.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  552.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  553.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  554.         1,    1,    1,    1,    1,    1,    1,    9,   22,   35,
  555.        37,   22,   28,   28,   28,   55101,   49,   35,   37,
  556.        28,   49,   35,   37,   59,   59148,   28,   61104,
  557.       104,   35,   37,   61,   61102,   55101165,   35,

  558.        37195165,   35,   37102192148,    9,   12,
  559.        12,   12,   12,   12,   12,   12,   12,   12,   12,   12,
  560.        12,   12,   12,   12,   12,   12,   12,   12,   12,   12,
  561.        12,   12,   12,   12,   12,   12,   12,   12,   12,   12,
  562.        12,   12,   12,   12,   12,   12,   12,   12,   12,   12,
  563.        12,   12,   12,   12,   12,   12,   12,   12,   12,   12,
  564.        12,   12,   12,   12,   12,   12,   12,   12,   12,   12,
  565.        12,   12,   12,   12,   12,   12,   18,   18,   18191,
  566.        20105105140,   39140,   21,   30,   30,   30,
  567.        20,   18,   20,   20190,   30,   21,   18,   21,   21,

  568.        41,   18,   30189,   20,   27,   27,   27138188,
  569.        21105,   30,   27187,   29,   29,   29138,   20,
  570.        27136,   20,   29,   18,   39,   20143,   21185,
  571.        29,   27,   21151143,   30,   31,   31,   31177,
  572.        20,   41,   27136,   31,   32,   32,   32149144,
  573.        29,   31145,   32,   27151150,   34,   34,   34,
  574.        32141141,   27146,   34,   31144,   60149,
  575.       145,   29,   34,   31,   52,   52,   52150,   60174,
  576.        60,   60146,   32167,   69,   69,   69,   31,   52,
  577.       152141,   60171,   31,   52,   34170,   34,   52,

  578.        69,   70,   70,   70,   32,   33,   33,   33181,   70,
  579.        60152173,   33,   60171,   70,   34170,   34,
  580.        33163,   52,   72,   72,   72153,   72168168,
  581.        73,   73,   73173,   33,   93,   93,   93,   73142,
  582.        77,   77,   77,   33,   72,   73181,   33,   77216,
  583.        74,   74,   74216,   93,   77,   33166,   74,   75,
  584.        75,   75166166,   33,   74172,   75,   33,   36,
  585.        36,   36182182,   75,   77133,   36,   76,   76,
  586.        76,   94,   94,   94,   36184,   76,   75172175,
  587.        74202202,   76,   36176,   77,   78,   78,   78,

  588.        94,   36109109109,   78109184,   36,   75,
  589.       175,   74,   78,   79,   79,   79176,   36,   76131,
  590.       128,   79,   36109197107197,   99,   79,   36,
  591.        38,   38,   38,   38,   38,   38,   38,   38,   38,   76,
  592.        38,   38,   38,   38,   38,   38,   38,   38,   38,   38,
  593.        38,   38,   38,   38,   38,   38,   38,   38,   38,   38,
  594.        38,   38,   38,   38,   38,   38,   38,   38,   38,   38,
  595.        38,   38,   38,   38,   38,   38,   38,   38,   38,   38,
  596.        38,   38,   38,   38,   38,   38,   38,   38,   38,   38,
  597.        38,   38,   38,   38,   38,   38,   38,   48,   48,   48,

  598.        48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  599.        48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  600.        48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  601.        48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  602.        48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  603.        48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  604.        48,   48,   48,   48,   80,   80,   80,   81,   81,   81,
  605.       217,   96,   80,   92217,   81,   82,   82,   82,   80,
  606.        91,   66,   81,   47,   82,   83,   83,   83,   84,   84,
  607.        84,   82,   80,   83,   46,   85,   84,   86,   86,   86,

  608.        83,   45,   85,   84,   44,   86,   89183183,   85,
  609.        81,   43,   86,   25,   80,   89,   24,   82,   85,   89,
  610.        83186186,   85,   87,   87,   87,   23,   89,   19,
  611.        85,   81,   87,   86,   17,   15,   89183,   82,   87,
  612.        89,   83,   88,   90225,    5,   88,    4225,   88,
  613.        90186196196,   86226,   88,   90,    3226,
  614.       103103198198,   87,   88,   90115,   88,    0,
  615.        88,   90103108108108115,   88,   90,    0,
  616.       115108196,    0,    0,   87,   97,    0108115,
  617.       103,    0198,    0103,   97,   97115,    0,    0,

  618.         0115,    0,   97,   97,   97,   97,   97,   97112,
  619.       112112,    0130130130,    0112201201,
  620.       201,    0,    0,    0112,    0,   97,   97,   97,   97,
  621.        97110130,    0,    0110110201110,    0,
  622.       110158113113113110110110158110,
  623.       113114114114,    0158,    0113,    0114,
  624.       110110110110158,    0114,    0110158,
  625.         0,    0110,    0,    0,    0158116116116,
  626.         0110110110110116117117117110,
  627.       139139116147117118118118119119,

  628.       119117139118147121119120120120,
  629.       118204204119121120147116121,    0,
  630.       139,    0120,    0139147,    0121122122,
  631.       122,    0123123123121122,    0116121,
  632.       123204120122124124124123125126,
  633.       205205124,    0,    0,    0,    0125126124,
  634.         0125126120,    0,    0123,    0,    0,    0,
  635.       125126,    0199199199,    0,    0125126,
  636.       205124125126127127127123199,    0,
  637.       199199127154154154,    0,    0,    0127,

  638.         0154124132132,    0,    0,    0154,    0,
  639.         0132132132132132132155155155,
  640.       156,    0,    0,    0,    0155,    0,    0,    0156,
  641.         0,    0155156132132132132132,    0,
  642.         0,    0156157157157,    0159159159,
  643.       156157,    0,    0156159161,    0157160,
  644.       160160159161,    0,    0,    0160,    0,    0,
  645.       161,    0,    0,    0160162162162,    0161,
  646.       169169169162161178178178169,    0,
  647.       162161,    0178,    0169179179179,    0,

  648.       178180180180179193193193,    0180,
  649.         0179,    0193,    0,    0180194194194,
  650.       193,    0200200200194,    0,    0,    0180,
  651.       200,    0194,    0,    0,    0179200,    0200,
  652.       200,    0,    0,    0,    0,    0,    0,    0,    0,    0,
  653.         0180,    0,    0,    0,    0,    0179207207,
  654.       207207207207207207207207207207,
  655.       207207208,    0,    0208,    0,    0,    0208,
  656.       208208209209209,    0,    0,    0,    0,    0,
  657.       209,    0209,    0,    0209209209210,    0,

  658.       210210210211211211,    0,    0,    0,    0,
  659.       211211211,    0,    0,    0211211211212,
  660.       212212212212212212212212212212,
  661.       212212212212212212213213,    0213,
  662.       213213213213213213213213213213,
  663.       213213213214214214215,    0,    0,    0,
  664.       215215215218,    0,    0218218218218,
  665.       219219219,    0219,    0,    0,    0,    0,    0,
  666.       219,    0,    0219219219220,    0,    0,    0,
  667.         0220,    0,    0,    0220221,    0,    0221,

  668.       221221221222,    0,    0222222,    0,    0,
  669.         0222,    0222223223223224224224,
  670.         0,    0,    0,    0224224224,    0,    0,    0,
  671.       224224224227,    0,    0227227227227,
  672.       228,    0,    0,    0228,    0,    0,    0228,    0,
  673.       228206206206206206206206206206,
  674.       206206206206206206206206206206,
  675.       206206206206206206206206206206,
  676.       206206206206206206206206206206,
  677.       206206206206206206206206206206,

  678.       206206206206206206206206206206,
  679.       206206206206206206206206206
  680.     } ;

  681. static yy_state_type yy_last_accepting_state;
  682. static char *yy_last_accepting_cpos;

  683. extern int yy_flex_debug;
  684. int yy_flex_debug = 0;

  685. /* The intent behind this definition is that it'll catch
  686. * any uses of REJECT which flex missed.
  687. */
  688. #define REJECT reject_used_but_not_detected
  689. #define yymore() yymore_used_but_not_detected
  690. #define YY_MORE_ADJ 0
  691. #define YY_RESTORE_YY_MORE_OFFSET
  692. char *yytext;
  693. #line 1 "ada-lex.l"
  694. /* FLEX lexer for Ada expressions, for GDB.
  695.    Copyright (C) 1994-2014 Free Software Foundation, Inc.

  696.    This file is part of GDB.

  697.    This program is free software; you can redistribute it and/or modify
  698.    it under the terms of the GNU General Public License as published by
  699.    the Free Software Foundation; either version 3 of the License, or
  700.    (at your option) any later version.

  701.    This program is distributed in the hope that it will be useful,
  702.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  703.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  704.    GNU General Public License for more details.

  705.    You should have received a copy of the GNU General Public License
  706.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
  707. /*----------------------------------------------------------------------*/
  708. /* The converted version of this file is to be included in ada-exp.y, */
  709. /* the Ada parser for gdb.  The function yylex obtains characters from */
  710. /* the global pointer lexptr.  It returns a syntactic category for */
  711. /* each successive token and places a semantic value into yylval */
  712. /* (ada-lval), defined by the parser.   */
  713. #line 43 "ada-lex.l"

  714. #define NUMERAL_WIDTH 256
  715. #define LONGEST_SIGN ((ULONGEST) 1 << (sizeof(LONGEST) * HOST_CHAR_BIT - 1))

  716. /* Temporary staging for numeric literals.  */
  717. static char numbuf[NUMERAL_WIDTH];
  718. static void canonicalizeNumeral (char *s1, const char *);
  719. static struct stoken processString (const char*, int);
  720. static int processInt (struct parser_state *, const char *, const char *,
  721.                        const char *);
  722. static int processReal (struct parser_state *, const char *);
  723. static struct stoken processId (const char *, int);
  724. static int processAttribute (const char *);
  725. static int find_dot_all (const char *);
  726. static void rewind_to_char (int);

  727. #undef YY_DECL
  728. #define YY_DECL static int yylex ( void )

  729. /* Flex generates a static function "input" which is not used.
  730.    Defining YY_NO_INPUT comments it out.  */
  731. #define YY_NO_INPUT

  732. #undef YY_INPUT
  733. #define YY_INPUT(BUF, RESULT, MAX_SIZE) \
  734.     if ( *lexptr == '\000' ) \
  735.       (RESULT) = YY_NULL; \
  736.     else \
  737.       { \
  738.         *(BUF) = *lexptr; \
  739.         (RESULT) = 1; \
  740.         lexptr += 1; \
  741.       }

  742. static int find_dot_all (const char *);


  743. #line 876 "ada-lex.c"

  744. #define INITIAL 0
  745. #define BEFORE_QUAL_QUOTE 1

  746. #ifndef YY_NO_UNISTD_H
  747. /* Special case for "unistd.h", since it is non-ANSI. We include it way
  748. * down here because we want the user's section 1 to have been scanned first.
  749. * The user has a chance to override it with an option.
  750. */
  751. #include <unistd.h>
  752. #endif

  753. #ifndef YY_EXTRA_TYPE
  754. #define YY_EXTRA_TYPE void *
  755. #endif

  756. static int yy_init_globals (void );

  757. /* Accessor methods to globals.
  758.    These are made visible to non-reentrant scanners for convenience. */

  759. int yylex_destroy (void );

  760. int yyget_debug (void );

  761. void yyset_debug (int debug_flag  );

  762. YY_EXTRA_TYPE yyget_extra (void );

  763. void yyset_extra (YY_EXTRA_TYPE user_defined  );

  764. FILE *yyget_in (void );

  765. void yyset_in  (FILE * in_str  );

  766. FILE *yyget_out (void );

  767. void yyset_out  (FILE * out_str  );

  768. yy_size_t yyget_leng (void );

  769. char *yyget_text (void );

  770. int yyget_lineno (void );

  771. void yyset_lineno (int line_number  );

  772. /* Macros after this point can all be overridden by user definitions in
  773. * section 1.
  774. */

  775. #ifndef YY_SKIP_YYWRAP
  776. #ifdef __cplusplus
  777. extern "C" int yywrap (void );
  778. #else
  779. extern int yywrap (void );
  780. #endif
  781. #endif

  782.     static void yyunput (int c,char *buf_ptr  );

  783. #ifndef yytext_ptr
  784. static void yy_flex_strncpy (char *,yyconst char *,int );
  785. #endif

  786. #ifdef YY_NEED_STRLEN
  787. static int yy_flex_strlen (yyconst char * );
  788. #endif

  789. #ifndef YY_NO_INPUT

  790. #ifdef __cplusplus
  791. static int yyinput (void );
  792. #else
  793. static int input (void );
  794. #endif

  795. #endif

  796. /* Amount of stuff to slurp up with each read. */
  797. #ifndef YY_READ_BUF_SIZE
  798. #define YY_READ_BUF_SIZE 8192
  799. #endif

  800. /* Copy whatever the last rule matched to the standard output. */
  801. #ifndef ECHO
  802. /* This used to be an fputs(), but since the string might contain NUL's,
  803. * we now use fwrite().
  804. */
  805. #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
  806. #endif

  807. /* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
  808. * is returned in "result".
  809. */
  810. #ifndef YY_INPUT
  811. #define YY_INPUT(buf,result,max_size) \
  812.         if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
  813.                 { \
  814.                 int c = '*'; \
  815.                 size_t n; \
  816.                 for ( n = 0; n < max_size && \
  817.                              (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
  818.                         buf[n] = (char) c; \
  819.                 if ( c == '\n' ) \
  820.                         buf[n++] = (char) c; \
  821.                 if ( c == EOF && ferror( yyin ) ) \
  822.                         YY_FATAL_ERROR( "input in flex scanner failed" ); \
  823.                 result = n; \
  824.                 } \
  825.         else \
  826.                 { \
  827.                 errno=0; \
  828.                 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
  829.                         { \
  830.                         if( errno != EINTR) \
  831.                                 { \
  832.                                 YY_FATAL_ERROR( "input in flex scanner failed" ); \
  833.                                 break; \
  834.                                 } \
  835.                         errno=0; \
  836.                         clearerr(yyin); \
  837.                         } \
  838.                 }\
  839. \

  840. #endif

  841. /* No semi-colon after return; correct usage is to write "yyterminate();" -
  842. * we don't want an extra ';' after the "return" because that will cause
  843. * some compilers to complain about unreachable statements.
  844. */
  845. #ifndef yyterminate
  846. #define yyterminate() return YY_NULL
  847. #endif

  848. /* Number of entries by which start-condition stack grows. */
  849. #ifndef YY_START_STACK_INCR
  850. #define YY_START_STACK_INCR 25
  851. #endif

  852. /* Report a fatal error. */
  853. #ifndef YY_FATAL_ERROR
  854. #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
  855. #endif

  856. /* end tables serialization structures and prototypes */

  857. /* Default declaration of generated scanner - a define so the user can
  858. * easily add parameters.
  859. */
  860. #ifndef YY_DECL
  861. #define YY_DECL_IS_OURS 1

  862. extern int yylex (void);

  863. #define YY_DECL int yylex (void)
  864. #endif /* !YY_DECL */

  865. /* Code executed at the beginning of each rule, after yytext and yyleng
  866. * have been set up.
  867. */
  868. #ifndef YY_USER_ACTION
  869. #define YY_USER_ACTION
  870. #endif

  871. /* Code executed at the end of each rule. */
  872. #ifndef YY_BREAK
  873. #define YY_BREAK break;
  874. #endif

  875. #define YY_RULE_SETUP \
  876.         YY_USER_ACTION

  877. /** The main scanner function which does all the work.
  878. */
  879. YY_DECL
  880. {
  881.         register yy_state_type yy_current_state;
  882.         register char *yy_cp, *yy_bp;
  883.         register int yy_act;

  884. #line 85 "ada-lex.l"


  885. #line 1062 "ada-lex.c"

  886.         if ( !(yy_init) )
  887.                 {
  888.                 (yy_init) = 1;

  889. #ifdef YY_USER_INIT
  890.                 YY_USER_INIT;
  891. #endif

  892.                 if ( ! (yy_start) )
  893.                         (yy_start) = 1;        /* first start state */

  894.                 if ( ! yyin )
  895.                         yyin = stdin;

  896.                 if ( ! yyout )
  897.                         yyout = stdout;

  898.                 if ( ! YY_CURRENT_BUFFER ) {
  899.                         yyensure_buffer_stack ();
  900.                         YY_CURRENT_BUFFER_LVALUE =
  901.                                 yy_create_buffer(yyin,YY_BUF_SIZE );
  902.                 }

  903.                 yy_load_buffer_state( );
  904.                 }

  905.         while ( 1 )                /* loops until end-of-file is reached */
  906.                 {
  907.                 yy_cp = (yy_c_buf_p);

  908.                 /* Support of yytext. */
  909.                 *yy_cp = (yy_hold_char);

  910.                 /* yy_bp points to the position in yy_ch_buf of the start of
  911.                  * the current run.
  912.                  */
  913.                 yy_bp = yy_cp;

  914.                 yy_current_state = (yy_start);
  915. yy_match:
  916.                 do
  917.                         {
  918.                         register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
  919.                         if ( yy_accept[yy_current_state] )
  920.                                 {
  921.                                 (yy_last_accepting_state) = yy_current_state;
  922.                                 (yy_last_accepting_cpos) = yy_cp;
  923.                                 }
  924.                         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  925.                                 {
  926.                                 yy_current_state = (int) yy_def[yy_current_state];
  927.                                 if ( yy_current_state >= 207 )
  928.                                         yy_c = yy_meta[(unsigned int) yy_c];
  929.                                 }
  930.                         yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  931.                         ++yy_cp;
  932.                         }
  933.                 while ( yy_base[yy_current_state] != 1252 );

  934. yy_find_action:
  935.                 yy_act = yy_accept[yy_current_state];
  936.                 if ( yy_act == 0 )
  937.                         { /* have to back up */
  938.                         yy_cp = (yy_last_accepting_cpos);
  939.                         yy_current_state = (yy_last_accepting_state);
  940.                         yy_act = yy_accept[yy_current_state];
  941.                         }

  942.                 YY_DO_BEFORE_ACTION;

  943. do_action:        /* This label is used only to access EOF actions. */

  944.                 switch ( yy_act )
  945.         { /* beginning of action switch */
  946.                         case 0: /* must back up */
  947.                         /* undo the effects of YY_DO_BEFORE_ACTION */
  948.                         *yy_cp = (yy_hold_char);
  949.                         yy_cp = (yy_last_accepting_cpos);
  950.                         yy_current_state = (yy_last_accepting_state);
  951.                         goto yy_find_action;

  952. case 1:
  953. /* rule 1 can match eol */
  954. YY_RULE_SETUP
  955. #line 87 "ada-lex.l"
  956. { }
  957.         YY_BREAK
  958. case 2:
  959. YY_RULE_SETUP
  960. #line 89 "ada-lex.l"
  961. { yyterminate(); }
  962.         YY_BREAK
  963. case 3:
  964. YY_RULE_SETUP
  965. #line 91 "ada-lex.l"
  966. {
  967.                    canonicalizeNumeral (numbuf, yytext);
  968.                    return processInt (pstate, NULL, numbuf,
  969.                                       strrchr (numbuf, 'e') + 1);
  970.                  }
  971.         YY_BREAK
  972. case 4:
  973. YY_RULE_SETUP
  974. #line 97 "ada-lex.l"
  975. {
  976.                    canonicalizeNumeral (numbuf, yytext);
  977.                    return processInt (pstate, NULL, numbuf, NULL);
  978.                  }
  979.         YY_BREAK
  980. case 5:
  981. YY_RULE_SETUP
  982. #line 102 "ada-lex.l"
  983. {
  984.                    canonicalizeNumeral (numbuf, yytext);
  985.                    return processInt (pstate, numbuf,
  986.                                       strchr (numbuf, '#') + 1,
  987.                                       strrchr(numbuf, '#') + 1);
  988.                  }
  989.         YY_BREAK
  990. case 6:
  991. YY_RULE_SETUP
  992. #line 109 "ada-lex.l"
  993. {
  994.                    canonicalizeNumeral (numbuf, yytext);
  995.                    return processInt (pstate, numbuf, strchr (numbuf, '#') + 1,
  996.                                       NULL);
  997.                  }
  998.         YY_BREAK
  999. case 7:
  1000. YY_RULE_SETUP
  1001. #line 115 "ada-lex.l"
  1002. {
  1003.                   canonicalizeNumeral (numbuf, yytext+2);
  1004.                   return processInt (pstate, "16#", numbuf, NULL);
  1005.                 }
  1006.         YY_BREAK
  1007. case 8:
  1008. YY_RULE_SETUP
  1009. #line 121 "ada-lex.l"
  1010. {
  1011.                    canonicalizeNumeral (numbuf, yytext);
  1012.                    return processReal (pstate, numbuf);
  1013.                 }
  1014.         YY_BREAK
  1015. case 9:
  1016. YY_RULE_SETUP
  1017. #line 126 "ada-lex.l"
  1018. {
  1019.                    canonicalizeNumeral (numbuf, yytext);
  1020.                    return processReal (pstate, numbuf);
  1021.                 }
  1022.         YY_BREAK
  1023. case 10:
  1024. YY_RULE_SETUP
  1025. #line 131 "ada-lex.l"
  1026. {
  1027.                    error (_("Based real literals not implemented yet."));
  1028.                 }
  1029.         YY_BREAK
  1030. case 11:
  1031. YY_RULE_SETUP
  1032. #line 135 "ada-lex.l"
  1033. {
  1034.                    error (_("Based real literals not implemented yet."));
  1035.                 }
  1036.         YY_BREAK
  1037. case 12:
  1038. YY_RULE_SETUP
  1039. #line 139 "ada-lex.l"
  1040. {
  1041.                    yylval.typed_val.type = type_char (pstate);
  1042.                    yylval.typed_val.val = yytext[1];
  1043.                    return CHARLIT;
  1044.                 }
  1045.         YY_BREAK
  1046. case 13:
  1047. YY_RULE_SETUP
  1048. #line 145 "ada-lex.l"
  1049. {
  1050.                    int v;
  1051.                    yylval.typed_val.type = type_char (pstate);
  1052.                    sscanf (yytext+3, "%2x", &v);
  1053.                    yylval.typed_val.val = v;
  1054.                    return CHARLIT;
  1055.                 }
  1056.         YY_BREAK
  1057. case 14:
  1058. YY_RULE_SETUP
  1059. #line 153 "ada-lex.l"
  1060. {
  1061.                    yylval.sval = processString (yytext+1, yyleng-2);
  1062.                    return STRING;
  1063.                 }
  1064.         YY_BREAK
  1065. case 15:
  1066. YY_RULE_SETUP
  1067. #line 158 "ada-lex.l"
  1068. {
  1069.                    error (_("ill-formed or non-terminated string literal"));
  1070.                 }
  1071.         YY_BREAK
  1072. case 16:
  1073. YY_RULE_SETUP
  1074. #line 163 "ada-lex.l"
  1075. {
  1076.                   rewind_to_char ('i');
  1077.                   return 0;
  1078.                 }
  1079.         YY_BREAK
  1080. case 17:
  1081. YY_RULE_SETUP
  1082. #line 168 "ada-lex.l"
  1083. {
  1084.                   rewind_to_char ('t');
  1085.                   return 0;
  1086.                 }
  1087.         YY_BREAK
  1088. case 18:
  1089. /* rule 18 can match eol */
  1090. YY_RULE_SETUP
  1091. #line 173 "ada-lex.l"
  1092. {
  1093.                   /* This keyword signals the end of the expression and
  1094.                      will be processed separately.  */
  1095.                   rewind_to_char ('t');
  1096.                   return 0;
  1097.                 }
  1098.         YY_BREAK
  1099. /* ADA KEYWORDS */
  1100. case 19:
  1101. YY_RULE_SETUP
  1102. #line 182 "ada-lex.l"
  1103. { return ABS; }
  1104.         YY_BREAK
  1105. case 20:
  1106. YY_RULE_SETUP
  1107. #line 183 "ada-lex.l"
  1108. { return _AND_; }
  1109.         YY_BREAK
  1110. case 21:
  1111. YY_RULE_SETUP
  1112. #line 184 "ada-lex.l"
  1113. { return ELSE; }
  1114.         YY_BREAK
  1115. case 22:
  1116. YY_RULE_SETUP
  1117. #line 185 "ada-lex.l"
  1118. { return IN; }
  1119.         YY_BREAK
  1120. case 23:
  1121. YY_RULE_SETUP
  1122. #line 186 "ada-lex.l"
  1123. { return MOD; }
  1124.         YY_BREAK
  1125. case 24:
  1126. YY_RULE_SETUP
  1127. #line 187 "ada-lex.l"
  1128. { return NEW; }
  1129.         YY_BREAK
  1130. case 25:
  1131. YY_RULE_SETUP
  1132. #line 188 "ada-lex.l"
  1133. { return NOT; }
  1134.         YY_BREAK
  1135. case 26:
  1136. YY_RULE_SETUP
  1137. #line 189 "ada-lex.l"
  1138. { return NULL_PTR; }
  1139.         YY_BREAK
  1140. case 27:
  1141. YY_RULE_SETUP
  1142. #line 190 "ada-lex.l"
  1143. { return OR; }
  1144.         YY_BREAK
  1145. case 28:
  1146. YY_RULE_SETUP
  1147. #line 191 "ada-lex.l"
  1148. { return OTHERS; }
  1149.         YY_BREAK
  1150. case 29:
  1151. YY_RULE_SETUP
  1152. #line 192 "ada-lex.l"
  1153. { return REM; }
  1154.         YY_BREAK
  1155. case 30:
  1156. YY_RULE_SETUP
  1157. #line 193 "ada-lex.l"
  1158. { return THEN; }
  1159.         YY_BREAK
  1160. case 31:
  1161. YY_RULE_SETUP
  1162. #line 194 "ada-lex.l"
  1163. { return XOR; }
  1164.         YY_BREAK
  1165. /* BOOLEAN "KEYWORDS" */
  1166. /* True and False are not keywords in Ada, but rather enumeration constants.
  1167.     However, the boolean type is no longer represented as an enum, so True
  1168.     and False are no longer defined in symbol tables.  We compromise by
  1169.     making them keywords (when bare). */
  1170. case 32:
  1171. YY_RULE_SETUP
  1172. #line 203 "ada-lex.l"
  1173. { return TRUEKEYWORD; }
  1174.         YY_BREAK
  1175. case 33:
  1176. YY_RULE_SETUP
  1177. #line 204 "ada-lex.l"
  1178. { return FALSEKEYWORD; }
  1179.         YY_BREAK
  1180. /* ATTRIBUTES */
  1181. case 34:
  1182. /* rule 34 can match eol */
  1183. YY_RULE_SETUP
  1184. #line 208 "ada-lex.l"
  1185. { return processAttribute (yytext+1); }
  1186.         YY_BREAK
  1187. /* PUNCTUATION */
  1188. case 35:
  1189. YY_RULE_SETUP
  1190. #line 212 "ada-lex.l"
  1191. { return ARROW; }
  1192.         YY_BREAK
  1193. case 36:
  1194. YY_RULE_SETUP
  1195. #line 213 "ada-lex.l"
  1196. { return DOTDOT; }
  1197.         YY_BREAK
  1198. case 37:
  1199. YY_RULE_SETUP
  1200. #line 214 "ada-lex.l"
  1201. { return STARSTAR; }
  1202.         YY_BREAK
  1203. case 38:
  1204. YY_RULE_SETUP
  1205. #line 215 "ada-lex.l"
  1206. { return ASSIGN; }
  1207.         YY_BREAK
  1208. case 39:
  1209. YY_RULE_SETUP
  1210. #line 216 "ada-lex.l"
  1211. { return NOTEQUAL; }
  1212.         YY_BREAK
  1213. case 40:
  1214. YY_RULE_SETUP
  1215. #line 217 "ada-lex.l"
  1216. { return LEQ; }
  1217.         YY_BREAK
  1218. case 41:
  1219. YY_RULE_SETUP
  1220. #line 218 "ada-lex.l"
  1221. { return GEQ; }
  1222.         YY_BREAK
  1223. case 42:
  1224. YY_RULE_SETUP
  1225. #line 220 "ada-lex.l"
  1226. { BEGIN INITIAL; return '\''; }
  1227.         YY_BREAK
  1228. case 43:
  1229. YY_RULE_SETUP
  1230. #line 222 "ada-lex.l"
  1231. { return yytext[0]; }
  1232.         YY_BREAK
  1233. case 44:
  1234. YY_RULE_SETUP
  1235. #line 224 "ada-lex.l"
  1236. { if (paren_depth == 0 && comma_terminates)
  1237.                     {
  1238.                       rewind_to_char (',');
  1239.                       return 0;
  1240.                     }
  1241.                   else
  1242.                     return ',';
  1243.                 }
  1244.         YY_BREAK
  1245. case 45:
  1246. YY_RULE_SETUP
  1247. #line 233 "ada-lex.l"
  1248. { paren_depth += 1; return '('; }
  1249.         YY_BREAK
  1250. case 46:
  1251. YY_RULE_SETUP
  1252. #line 234 "ada-lex.l"
  1253. { if (paren_depth == 0)
  1254.                     {
  1255.                       rewind_to_char (')');
  1256.                       return 0;
  1257.                     }
  1258.                   else
  1259.                      {
  1260.                       paren_depth -= 1;
  1261.                       return ')';
  1262.                     }
  1263.                 }
  1264.         YY_BREAK
  1265. case 47:
  1266. /* rule 47 can match eol */
  1267. YY_RULE_SETUP
  1268. #line 246 "ada-lex.l"
  1269. { return DOT_ALL; }
  1270.         YY_BREAK
  1271. case 48:
  1272. /* rule 48 can match eol */
  1273. YY_RULE_SETUP
  1274. #line 248 "ada-lex.l"
  1275. {
  1276.                    yylval.sval = processId (yytext+1, yyleng-1);
  1277.                   return DOT_ID;
  1278.                 }
  1279.         YY_BREAK
  1280. case 49:
  1281. /* rule 49 can match eol */
  1282. YY_RULE_SETUP
  1283. #line 253 "ada-lex.l"
  1284. {
  1285.                   int all_posn = find_dot_all (yytext);

  1286.                   if (all_posn == -1 && yytext[yyleng-1] == '\'')
  1287.                     {
  1288.                       BEGIN BEFORE_QUAL_QUOTE;
  1289.                       yyless (yyleng-1);
  1290.                     }
  1291.                   else if (all_posn >= 0)
  1292.                     yyless (all_posn);
  1293.                   yylval.sval = processId (yytext, yyleng);
  1294.                   return NAME;
  1295.                }
  1296.         YY_BREAK
  1297. /* GDB EXPRESSION CONSTRUCTS  */
  1298. case 50:
  1299. /* rule 50 can match eol */
  1300. YY_RULE_SETUP
  1301. #line 270 "ada-lex.l"
  1302. {
  1303.                   yyless (yyleng - 2);
  1304.                   yylval.sval = processId (yytext, yyleng);
  1305.                   return NAME;
  1306.                 }
  1307.         YY_BREAK
  1308. case 51:
  1309. YY_RULE_SETUP
  1310. #line 276 "ada-lex.l"
  1311. { return COLONCOLON; }
  1312.         YY_BREAK
  1313. case 52:
  1314. YY_RULE_SETUP
  1315. #line 278 "ada-lex.l"
  1316. { return yytext[0]; }
  1317.         YY_BREAK
  1318. /* REGISTERS AND GDB CONVENIENCE VARIABLES */
  1319. case 53:
  1320. YY_RULE_SETUP
  1321. #line 282 "ada-lex.l"
  1322. {
  1323.                   yylval.sval.ptr = yytext;
  1324.                   yylval.sval.length = yyleng;
  1325.                   return SPECIAL_VARIABLE;
  1326.                 }
  1327.         YY_BREAK
  1328. /* CATCH-ALL ERROR CASE */
  1329. case 54:
  1330. YY_RULE_SETUP
  1331. #line 290 "ada-lex.l"
  1332. { error (_("Invalid character '%s' in expression."), yytext); }
  1333.         YY_BREAK
  1334. case 55:
  1335. YY_RULE_SETUP
  1336. #line 291 "ada-lex.l"
  1337. YY_FATAL_ERROR( "flex scanner jammed" );
  1338.         YY_BREAK
  1339. #line 1533 "ada-lex.c"
  1340. case YY_STATE_EOF(INITIAL):
  1341. case YY_STATE_EOF(BEFORE_QUAL_QUOTE):
  1342.         yyterminate();

  1343.         case YY_END_OF_BUFFER:
  1344.                 {
  1345.                 /* Amount of text matched not including the EOB char. */
  1346.                 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;

  1347.                 /* Undo the effects of YY_DO_BEFORE_ACTION. */
  1348.                 *yy_cp = (yy_hold_char);
  1349.                 YY_RESTORE_YY_MORE_OFFSET

  1350.                 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
  1351.                         {
  1352.                         /* We're scanning a new file or input source.  It's
  1353.                          * possible that this happened because the user
  1354.                          * just pointed yyin at a new source and called
  1355.                          * yylex().  If so, then we have to assure
  1356.                          * consistency between YY_CURRENT_BUFFER and our
  1357.                          * globals.  Here is the right place to do so, because
  1358.                          * this is the first action (other than possibly a
  1359.                          * back-up) that will match for the new input source.
  1360.                          */
  1361.                         (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
  1362.                         YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
  1363.                         YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
  1364.                         }

  1365.                 /* Note that here we test for yy_c_buf_p "<=" to the position
  1366.                  * of the first EOB in the buffer, since yy_c_buf_p will
  1367.                  * already have been incremented past the NUL character
  1368.                  * (since all states make transitions on EOB to the
  1369.                  * end-of-buffer state).  Contrast this with the test
  1370.                  * in input().
  1371.                  */
  1372.                 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
  1373.                         { /* This was really a NUL. */
  1374.                         yy_state_type yy_next_state;

  1375.                         (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;

  1376.                         yy_current_state = yy_get_previous_state(  );

  1377.                         /* Okay, we're now positioned to make the NUL
  1378.                          * transition.  We couldn't have
  1379.                          * yy_get_previous_state() go ahead and do it
  1380.                          * for us because it doesn't know how to deal
  1381.                          * with the possibility of jamming (and we don't
  1382.                          * want to build jamming into it because then it
  1383.                          * will run more slowly).
  1384.                          */

  1385.                         yy_next_state = yy_try_NUL_trans( yy_current_state );

  1386.                         yy_bp = (yytext_ptr) + YY_MORE_ADJ;

  1387.                         if ( yy_next_state )
  1388.                                 {
  1389.                                 /* Consume the NUL. */
  1390.                                 yy_cp = ++(yy_c_buf_p);
  1391.                                 yy_current_state = yy_next_state;
  1392.                                 goto yy_match;
  1393.                                 }

  1394.                         else
  1395.                                 {
  1396.                                 yy_cp = (yy_c_buf_p);
  1397.                                 goto yy_find_action;
  1398.                                 }
  1399.                         }

  1400.                 else switch ( yy_get_next_buffer(  ) )
  1401.                         {
  1402.                         case EOB_ACT_END_OF_FILE:
  1403.                                 {
  1404.                                 (yy_did_buffer_switch_on_eof) = 0;

  1405.                                 if ( yywrap( ) )
  1406.                                         {
  1407.                                         /* Note: because we've taken care in
  1408.                                          * yy_get_next_buffer() to have set up
  1409.                                          * yytext, we can now set up
  1410.                                          * yy_c_buf_p so that if some total
  1411.                                          * hoser (like flex itself) wants to
  1412.                                          * call the scanner after we return the
  1413.                                          * YY_NULL, it'll still work - another
  1414.                                          * YY_NULL will get returned.
  1415.                                          */
  1416.                                         (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;

  1417.                                         yy_act = YY_STATE_EOF(YY_START);
  1418.                                         goto do_action;
  1419.                                         }

  1420.                                 else
  1421.                                         {
  1422.                                         if ( ! (yy_did_buffer_switch_on_eof) )
  1423.                                                 YY_NEW_FILE;
  1424.                                         }
  1425.                                 break;
  1426.                                 }

  1427.                         case EOB_ACT_CONTINUE_SCAN:
  1428.                                 (yy_c_buf_p) =
  1429.                                         (yytext_ptr) + yy_amount_of_matched_text;

  1430.                                 yy_current_state = yy_get_previous_state(  );

  1431.                                 yy_cp = (yy_c_buf_p);
  1432.                                 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  1433.                                 goto yy_match;

  1434.                         case EOB_ACT_LAST_MATCH:
  1435.                                 (yy_c_buf_p) =
  1436.                                 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];

  1437.                                 yy_current_state = yy_get_previous_state(  );

  1438.                                 yy_cp = (yy_c_buf_p);
  1439.                                 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  1440.                                 goto yy_find_action;
  1441.                         }
  1442.                 break;
  1443.                 }

  1444.         default:
  1445.                 YY_FATAL_ERROR(
  1446.                         "fatal flex scanner internal error--no action found" );
  1447.         } /* end of action switch */
  1448.                 } /* end of scanning one token */
  1449. } /* end of yylex */

  1450. /* yy_get_next_buffer - try to read in a new buffer
  1451. *
  1452. * Returns a code representing an action:
  1453. *        EOB_ACT_LAST_MATCH -
  1454. *        EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  1455. *        EOB_ACT_END_OF_FILE - end of file
  1456. */
  1457. static int yy_get_next_buffer (void)
  1458. {
  1459.             register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
  1460.         register char *source = (yytext_ptr);
  1461.         register int number_to_move, i;
  1462.         int ret_val;

  1463.         if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
  1464.                 YY_FATAL_ERROR(
  1465.                 "fatal flex scanner internal error--end of buffer missed" );

  1466.         if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
  1467.                 { /* Don't try to fill the buffer, so this is an EOF. */
  1468.                 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
  1469.                         {
  1470.                         /* We matched a single character, the EOB, so
  1471.                          * treat this as a final EOF.
  1472.                          */
  1473.                         return EOB_ACT_END_OF_FILE;
  1474.                         }

  1475.                 else
  1476.                         {
  1477.                         /* We matched some text prior to the EOB, first
  1478.                          * process it.
  1479.                          */
  1480.                         return EOB_ACT_LAST_MATCH;
  1481.                         }
  1482.                 }

  1483.         /* Try to read more data. */

  1484.         /* First move last chars to start of buffer. */
  1485.         number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;

  1486.         for ( i = 0; i < number_to_move; ++i )
  1487.                 *(dest++) = *(source++);

  1488.         if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  1489.                 /* don't do the read, it's not guaranteed to return an EOF,
  1490.                  * just force an EOF
  1491.                  */
  1492.                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;

  1493.         else
  1494.                 {
  1495.                         yy_size_t num_to_read =
  1496.                         YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;

  1497.                 while ( num_to_read <= 0 )
  1498.                         { /* Not enough room in the buffer - grow it. */

  1499.                         /* just a shorter name for the current buffer */
  1500.                         YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;

  1501.                         int yy_c_buf_p_offset =
  1502.                                 (int) ((yy_c_buf_p) - b->yy_ch_buf);

  1503.                         if ( b->yy_is_our_buffer )
  1504.                                 {
  1505.                                 yy_size_t new_size = b->yy_buf_size * 2;

  1506.                                 if ( new_size <= 0 )
  1507.                                         b->yy_buf_size += b->yy_buf_size / 8;
  1508.                                 else
  1509.                                         b->yy_buf_size *= 2;

  1510.                                 b->yy_ch_buf = (char *)
  1511.                                         /* Include room in for 2 EOB chars. */
  1512.                                         yyxrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );
  1513.                                 }
  1514.                         else
  1515.                                 /* Can't grow it, we don't own it. */
  1516.                                 b->yy_ch_buf = 0;

  1517.                         if ( ! b->yy_ch_buf )
  1518.                                 YY_FATAL_ERROR(
  1519.                                 "fatal error - scanner input buffer overflow" );

  1520.                         (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];

  1521.                         num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
  1522.                                                 number_to_move - 1;

  1523.                         }

  1524.                 if ( num_to_read > YY_READ_BUF_SIZE )
  1525.                         num_to_read = YY_READ_BUF_SIZE;

  1526.                 /* Read in more data. */
  1527.                 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
  1528.                         (yy_n_chars), num_to_read );

  1529.                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  1530.                 }

  1531.         if ( (yy_n_chars) == 0 )
  1532.                 {
  1533.                 if ( number_to_move == YY_MORE_ADJ )
  1534.                         {
  1535.                         ret_val = EOB_ACT_END_OF_FILE;
  1536.                         yyrestart(yyin  );
  1537.                         }

  1538.                 else
  1539.                         {
  1540.                         ret_val = EOB_ACT_LAST_MATCH;
  1541.                         YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
  1542.                                 YY_BUFFER_EOF_PENDING;
  1543.                         }
  1544.                 }

  1545.         else
  1546.                 ret_val = EOB_ACT_CONTINUE_SCAN;

  1547.         if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
  1548.                 /* Extend the array by 50%, plus the number we really need. */
  1549.                 yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
  1550.                 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyxrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size  );
  1551.                 if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
  1552.                         YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
  1553.         }

  1554.         (yy_n_chars) += number_to_move;
  1555.         YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
  1556.         YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;

  1557.         (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];

  1558.         return ret_val;
  1559. }

  1560. /* yy_get_previous_state - get the state just before the EOB char was reached */

  1561.     static yy_state_type yy_get_previous_state (void)
  1562. {
  1563.         register yy_state_type yy_current_state;
  1564.         register char *yy_cp;

  1565.         yy_current_state = (yy_start);

  1566.         for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
  1567.                 {
  1568.                 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  1569.                 if ( yy_accept[yy_current_state] )
  1570.                         {
  1571.                         (yy_last_accepting_state) = yy_current_state;
  1572.                         (yy_last_accepting_cpos) = yy_cp;
  1573.                         }
  1574.                 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1575.                         {
  1576.                         yy_current_state = (int) yy_def[yy_current_state];
  1577.                         if ( yy_current_state >= 207 )
  1578.                                 yy_c = yy_meta[(unsigned int) yy_c];
  1579.                         }
  1580.                 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  1581.                 }

  1582.         return yy_current_state;
  1583. }

  1584. /* yy_try_NUL_trans - try to make a transition on the NUL character
  1585. *
  1586. * synopsis
  1587. *        next_state = yy_try_NUL_trans( current_state );
  1588. */
  1589.     static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
  1590. {
  1591.         register int yy_is_jam;
  1592.             register char *yy_cp = (yy_c_buf_p);

  1593.         register YY_CHAR yy_c = 1;
  1594.         if ( yy_accept[yy_current_state] )
  1595.                 {
  1596.                 (yy_last_accepting_state) = yy_current_state;
  1597.                 (yy_last_accepting_cpos) = yy_cp;
  1598.                 }
  1599.         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1600.                 {
  1601.                 yy_current_state = (int) yy_def[yy_current_state];
  1602.                 if ( yy_current_state >= 207 )
  1603.                         yy_c = yy_meta[(unsigned int) yy_c];
  1604.                 }
  1605.         yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  1606.         yy_is_jam = (yy_current_state == 206);

  1607.                 return yy_is_jam ? 0 : yy_current_state;
  1608. }

  1609.     static void yyunput (int c, register char * yy_bp )
  1610. {
  1611.         register char *yy_cp;

  1612.     yy_cp = (yy_c_buf_p);

  1613.         /* undo effects of setting up yytext */
  1614.         *yy_cp = (yy_hold_char);

  1615.         if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
  1616.                 { /* need to shift things up to make room */
  1617.                 /* +2 for EOB chars. */
  1618.                 register yy_size_t number_to_move = (yy_n_chars) + 2;
  1619.                 register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
  1620.                                         YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
  1621.                 register char *source =
  1622.                                 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];

  1623.                 while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
  1624.                         *--dest = *--source;

  1625.                 yy_cp += (int) (dest - source);
  1626.                 yy_bp += (int) (dest - source);
  1627.                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
  1628.                         (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;

  1629.                 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
  1630.                         YY_FATAL_ERROR( "flex scanner push-back overflow" );
  1631.                 }

  1632.         *--yy_cp = (char) c;

  1633.         (yytext_ptr) = yy_bp;
  1634.         (yy_hold_char) = *yy_cp;
  1635.         (yy_c_buf_p) = yy_cp;
  1636. }

  1637. #ifndef YY_NO_INPUT
  1638. #ifdef __cplusplus
  1639.     static int yyinput (void)
  1640. #else
  1641.     static int input  (void)
  1642. #endif

  1643. {
  1644.         int c;

  1645.         *(yy_c_buf_p) = (yy_hold_char);

  1646.         if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
  1647.                 {
  1648.                 /* yy_c_buf_p now points to the character we want to return.
  1649.                  * If this occurs *before* the EOB characters, then it's a
  1650.                  * valid NUL; if not, then we've hit the end of the buffer.
  1651.                  */
  1652.                 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
  1653.                         /* This was really a NUL. */
  1654.                         *(yy_c_buf_p) = '\0';

  1655.                 else
  1656.                         { /* need more input */
  1657.                         yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
  1658.                         ++(yy_c_buf_p);

  1659.                         switch ( yy_get_next_buffer(  ) )
  1660.                                 {
  1661.                                 case EOB_ACT_LAST_MATCH:
  1662.                                         /* This happens because yy_g_n_b()
  1663.                                          * sees that we've accumulated a
  1664.                                          * token and flags that we need to
  1665.                                          * try matching the token before
  1666.                                          * proceeding.  But for input(),
  1667.                                          * there's no matching to consider.
  1668.                                          * So convert the EOB_ACT_LAST_MATCH
  1669.                                          * to EOB_ACT_END_OF_FILE.
  1670.                                          */

  1671.                                         /* Reset buffer status. */
  1672.                                         yyrestart(yyin );

  1673.                                         /*FALLTHROUGH*/

  1674.                                 case EOB_ACT_END_OF_FILE:
  1675.                                         {
  1676.                                         if ( yywrap( ) )
  1677.                                                 return EOF;

  1678.                                         if ( ! (yy_did_buffer_switch_on_eof) )
  1679.                                                 YY_NEW_FILE;
  1680. #ifdef __cplusplus
  1681.                                         return yyinput();
  1682. #else
  1683.                                         return input();
  1684. #endif
  1685.                                         }

  1686.                                 case EOB_ACT_CONTINUE_SCAN:
  1687.                                         (yy_c_buf_p) = (yytext_ptr) + offset;
  1688.                                         break;
  1689.                                 }
  1690.                         }
  1691.                 }

  1692.         c = *(unsigned char *) (yy_c_buf_p);        /* cast for 8-bit char's */
  1693.         *(yy_c_buf_p) = '\0';        /* preserve yytext */
  1694.         (yy_hold_char) = *++(yy_c_buf_p);

  1695.         return c;
  1696. }
  1697. #endif        /* ifndef YY_NO_INPUT */

  1698. /** Immediately switch to a different input stream.
  1699. * @param input_file A readable stream.
  1700. *
  1701. * @note This function does not reset the start condition to @c INITIAL .
  1702. */
  1703.     void yyrestart  (FILE * input_file )
  1704. {

  1705.         if ( ! YY_CURRENT_BUFFER ){
  1706.         yyensure_buffer_stack ();
  1707.                 YY_CURRENT_BUFFER_LVALUE =
  1708.             yy_create_buffer(yyin,YY_BUF_SIZE );
  1709.         }

  1710.         yy_init_buffer(YY_CURRENT_BUFFER,input_file );
  1711.         yy_load_buffer_state( );
  1712. }

  1713. /** Switch to a different input buffer.
  1714. * @param new_buffer The new input buffer.
  1715. *
  1716. */
  1717.     void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
  1718. {

  1719.         /* TODO. We should be able to replace this entire function body
  1720.          * with
  1721.          *                yypop_buffer_state();
  1722.          *                yypush_buffer_state(new_buffer);
  1723.      */
  1724.         yyensure_buffer_stack ();
  1725.         if ( YY_CURRENT_BUFFER == new_buffer )
  1726.                 return;

  1727.         if ( YY_CURRENT_BUFFER )
  1728.                 {
  1729.                 /* Flush out information for old buffer. */
  1730.                 *(yy_c_buf_p) = (yy_hold_char);
  1731.                 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
  1732.                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  1733.                 }

  1734.         YY_CURRENT_BUFFER_LVALUE = new_buffer;
  1735.         yy_load_buffer_state( );

  1736.         /* We don't actually know whether we did this switch during
  1737.          * EOF (yywrap()) processing, but the only time this flag
  1738.          * is looked at is after yywrap() is called, so it's safe
  1739.          * to go ahead and always set it.
  1740.          */
  1741.         (yy_did_buffer_switch_on_eof) = 1;
  1742. }

  1743. static void yy_load_buffer_state  (void)
  1744. {
  1745.             (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
  1746.         (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
  1747.         yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
  1748.         (yy_hold_char) = *(yy_c_buf_p);
  1749. }

  1750. /** Allocate and initialize an input buffer state.
  1751. * @param file A readable stream.
  1752. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
  1753. *
  1754. * @return the allocated buffer state.
  1755. */
  1756.     YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
  1757. {
  1758.         YY_BUFFER_STATE b;

  1759.         b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
  1760.         if ( ! b )
  1761.                 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

  1762.         b->yy_buf_size = size;

  1763.         /* yy_ch_buf has to be 2 characters longer than the size given because
  1764.          * we need to put in 2 end-of-buffer characters.
  1765.          */
  1766.         b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );
  1767.         if ( ! b->yy_ch_buf )
  1768.                 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

  1769.         b->yy_is_our_buffer = 1;

  1770.         yy_init_buffer(b,file );

  1771.         return b;
  1772. }

  1773. /** Destroy the buffer.
  1774. * @param b a buffer created with yy_create_buffer()
  1775. *
  1776. */
  1777.     void yy_delete_buffer (YY_BUFFER_STATE  b )
  1778. {

  1779.         if ( ! b )
  1780.                 return;

  1781.         if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
  1782.                 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;

  1783.         if ( b->yy_is_our_buffer )
  1784.                 yyfree((void *) b->yy_ch_buf  );

  1785.         yyfree((void *) b  );
  1786. }

  1787. /* Initializes or reinitializes a buffer.
  1788. * This function is sometimes called more than once on the same buffer,
  1789. * such as during a yyrestart() or at EOF.
  1790. */
  1791.     static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )

  1792. {
  1793.         int oerrno = errno;

  1794.         yy_flush_buffer(b );

  1795.         b->yy_input_file = file;
  1796.         b->yy_fill_buffer = 1;

  1797.     /* If b is the current buffer, then yy_init_buffer was _probably_
  1798.      * called from yyrestart() or through yy_get_next_buffer.
  1799.      * In that case, we don't want to reset the lineno or column.
  1800.      */
  1801.     if (b != YY_CURRENT_BUFFER){
  1802.         b->yy_bs_lineno = 1;
  1803.         b->yy_bs_column = 0;
  1804.     }

  1805.         b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;

  1806.         errno = oerrno;
  1807. }

  1808. /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
  1809. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
  1810. *
  1811. */
  1812.     void yy_flush_buffer (YY_BUFFER_STATE  b )
  1813. {
  1814.             if ( ! b )
  1815.                 return;

  1816.         b->yy_n_chars = 0;

  1817.         /* We always need two end-of-buffer characters.  The first causes
  1818.          * a transition to the end-of-buffer state.  The second causes
  1819.          * a jam in that state.
  1820.          */
  1821.         b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
  1822.         b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;

  1823.         b->yy_buf_pos = &b->yy_ch_buf[0];

  1824.         b->yy_at_bol = 1;
  1825.         b->yy_buffer_status = YY_BUFFER_NEW;

  1826.         if ( b == YY_CURRENT_BUFFER )
  1827.                 yy_load_buffer_state( );
  1828. }

  1829. /** Pushes the new state onto the stack. The new state becomes
  1830. *  the current state. This function will allocate the stack
  1831. *  if necessary.
  1832. *  @param new_buffer The new state.
  1833. *
  1834. */
  1835. void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
  1836. {
  1837.             if (new_buffer == NULL)
  1838.                 return;

  1839.         yyensure_buffer_stack();

  1840.         /* This block is copied from yy_switch_to_buffer. */
  1841.         if ( YY_CURRENT_BUFFER )
  1842.                 {
  1843.                 /* Flush out information for old buffer. */
  1844.                 *(yy_c_buf_p) = (yy_hold_char);
  1845.                 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
  1846.                 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  1847.                 }

  1848.         /* Only push if top exists. Otherwise, replace top. */
  1849.         if (YY_CURRENT_BUFFER)
  1850.                 (yy_buffer_stack_top)++;
  1851.         YY_CURRENT_BUFFER_LVALUE = new_buffer;

  1852.         /* copied from yy_switch_to_buffer. */
  1853.         yy_load_buffer_state( );
  1854.         (yy_did_buffer_switch_on_eof) = 1;
  1855. }

  1856. /** Removes and deletes the top of the stack, if present.
  1857. *  The next element becomes the new top.
  1858. *
  1859. */
  1860. void yypop_buffer_state (void)
  1861. {
  1862.             if (!YY_CURRENT_BUFFER)
  1863.                 return;

  1864.         yy_delete_buffer(YY_CURRENT_BUFFER );
  1865.         YY_CURRENT_BUFFER_LVALUE = NULL;
  1866.         if ((yy_buffer_stack_top) > 0)
  1867.                 --(yy_buffer_stack_top);

  1868.         if (YY_CURRENT_BUFFER) {
  1869.                 yy_load_buffer_state( );
  1870.                 (yy_did_buffer_switch_on_eof) = 1;
  1871.         }
  1872. }

  1873. /* Allocates the stack if it does not exist.
  1874. *  Guarantees space for at least one push.
  1875. */
  1876. static void yyensure_buffer_stack (void)
  1877. {
  1878.         yy_size_t num_to_alloc;

  1879.         if (!(yy_buffer_stack)) {

  1880.                 /* First allocation is just for 2 elements, since we don't know if this
  1881.                  * scanner will even need a stack. We use 2 instead of 1 to avoid an
  1882.                  * immediate xrealloc on the next call.
  1883.          */
  1884.                 num_to_alloc = 1;
  1885.                 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
  1886.                                                                 (num_to_alloc * sizeof(struct yy_buffer_state*)
  1887.                                                                 );
  1888.                 if ( ! (yy_buffer_stack) )
  1889.                         YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );

  1890.                 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));

  1891.                 (yy_buffer_stack_max) = num_to_alloc;
  1892.                 (yy_buffer_stack_top) = 0;
  1893.                 return;
  1894.         }

  1895.         if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){

  1896.                 /* Increase the buffer to prepare for a possible push. */
  1897.                 int grow_size = 8 /* arbitrary grow size */;

  1898.                 num_to_alloc = (yy_buffer_stack_max) + grow_size;
  1899.                 (yy_buffer_stack) = (struct yy_buffer_state**)yyxrealloc
  1900.                                                                 ((yy_buffer_stack),
  1901.                                                                 num_to_alloc * sizeof(struct yy_buffer_state*)
  1902.                                                                 );
  1903.                 if ( ! (yy_buffer_stack) )
  1904.                         YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );

  1905.                 /* zero only the new slots.*/
  1906.                 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
  1907.                 (yy_buffer_stack_max) = num_to_alloc;
  1908.         }
  1909. }

  1910. /** Setup the input buffer state to scan directly from a user-specified character buffer.
  1911. * @param base the character buffer
  1912. * @param size the size in bytes of the character buffer
  1913. *
  1914. * @return the newly allocated buffer state object.
  1915. */
  1916. YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
  1917. {
  1918.         YY_BUFFER_STATE b;

  1919.         if ( size < 2 ||
  1920.              base[size-2] != YY_END_OF_BUFFER_CHAR ||
  1921.              base[size-1] != YY_END_OF_BUFFER_CHAR )
  1922.                 /* They forgot to leave room for the EOB's. */
  1923.                 return 0;

  1924.         b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
  1925.         if ( ! b )
  1926.                 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );

  1927.         b->yy_buf_size = size - 2;        /* "- 2" to take care of EOB's */
  1928.         b->yy_buf_pos = b->yy_ch_buf = base;
  1929.         b->yy_is_our_buffer = 0;
  1930.         b->yy_input_file = 0;
  1931.         b->yy_n_chars = b->yy_buf_size;
  1932.         b->yy_is_interactive = 0;
  1933.         b->yy_at_bol = 1;
  1934.         b->yy_fill_buffer = 0;
  1935.         b->yy_buffer_status = YY_BUFFER_NEW;

  1936.         yy_switch_to_buffer(b  );

  1937.         return b;
  1938. }

  1939. /** Setup the input buffer state to scan a string. The next call to yylex() will
  1940. * scan from a @e copy of @a str.
  1941. * @param yystr a NUL-terminated string to scan
  1942. *
  1943. * @return the newly allocated buffer state object.
  1944. * @note If you want to scan bytes that may contain NUL values, then use
  1945. *       yy_scan_bytes() instead.
  1946. */
  1947. YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
  1948. {

  1949.         return yy_scan_bytes(yystr,strlen(yystr) );
  1950. }

  1951. /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
  1952. * scan from a @e copy of @a bytes.
  1953. * @param yybytes the byte buffer to scan
  1954. * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
  1955. *
  1956. * @return the newly allocated buffer state object.
  1957. */
  1958. YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, yy_size_t  _yybytes_len )
  1959. {
  1960.         YY_BUFFER_STATE b;
  1961.         char *buf;
  1962.         yy_size_t n;
  1963.         yy_size_t i;

  1964.         /* Get memory for full buffer, including space for trailing EOB's. */
  1965.         n = _yybytes_len + 2;
  1966.         buf = (char *) yyalloc(n  );
  1967.         if ( ! buf )
  1968.                 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );

  1969.         for ( i = 0; i < _yybytes_len; ++i )
  1970.                 buf[i] = yybytes[i];

  1971.         buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;

  1972.         b = yy_scan_buffer(buf,n );
  1973.         if ( ! b )
  1974.                 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );

  1975.         /* It's okay to grow etc. this buffer, and we should throw it
  1976.          * away when we're done.
  1977.          */
  1978.         b->yy_is_our_buffer = 1;

  1979.         return b;
  1980. }

  1981. #ifndef YY_EXIT_FAILURE
  1982. #define YY_EXIT_FAILURE 2
  1983. #endif

  1984. static void yy_fatal_error (yyconst char* msg )
  1985. {
  1986.             (void) fprintf( stderr, "%s\n", msg );
  1987.         exit( YY_EXIT_FAILURE );
  1988. }

  1989. /* Redefine yyless() so it works in section 3 code. */

  1990. #undef yyless
  1991. #define yyless(n) \
  1992.         do \
  1993.                 { \
  1994.                 /* Undo effects of setting up yytext. */ \
  1995.         int yyless_macro_arg = (n); \
  1996.         YY_LESS_LINENO(yyless_macro_arg);\
  1997.                 yytext[yyleng] = (yy_hold_char); \
  1998.                 (yy_c_buf_p) = yytext + yyless_macro_arg; \
  1999.                 (yy_hold_char) = *(yy_c_buf_p); \
  2000.                 *(yy_c_buf_p) = '\0'; \
  2001.                 yyleng = yyless_macro_arg; \
  2002.                 } \
  2003.         while ( 0 )

  2004. /* Accessor  methods (get/set functions) to struct members. */

  2005. /** Get the current line number.
  2006. *
  2007. */
  2008. int yyget_lineno  (void)
  2009. {

  2010.     return yylineno;
  2011. }

  2012. /** Get the input stream.
  2013. *
  2014. */
  2015. FILE *yyget_in  (void)
  2016. {
  2017.         return yyin;
  2018. }

  2019. /** Get the output stream.
  2020. *
  2021. */
  2022. FILE *yyget_out  (void)
  2023. {
  2024.         return yyout;
  2025. }

  2026. /** Get the length of the current token.
  2027. *
  2028. */
  2029. yy_size_t yyget_leng  (void)
  2030. {
  2031.         return yyleng;
  2032. }

  2033. /** Get the current token.
  2034. *
  2035. */

  2036. char *yyget_text  (void)
  2037. {
  2038.         return yytext;
  2039. }

  2040. /** Set the current line number.
  2041. * @param line_number
  2042. *
  2043. */
  2044. void yyset_lineno (int  line_number )
  2045. {

  2046.     yylineno = line_number;
  2047. }

  2048. /** Set the input stream. This does not discard the current
  2049. * input buffer.
  2050. * @param in_str A readable stream.
  2051. *
  2052. * @see yy_switch_to_buffer
  2053. */
  2054. void yyset_in (FILE *  in_str )
  2055. {
  2056.         yyin = in_str ;
  2057. }

  2058. void yyset_out (FILE *  out_str )
  2059. {
  2060.         yyout = out_str ;
  2061. }

  2062. int yyget_debug  (void)
  2063. {
  2064.         return yy_flex_debug;
  2065. }

  2066. void yyset_debug (int  bdebug )
  2067. {
  2068.         yy_flex_debug = bdebug ;
  2069. }

  2070. static int yy_init_globals (void)
  2071. {
  2072.         /* Initialization is the same as for the non-reentrant scanner.
  2073.      * This function is called from yylex_destroy(), so don't allocate here.
  2074.      */

  2075.     (yy_buffer_stack) = 0;
  2076.     (yy_buffer_stack_top) = 0;
  2077.     (yy_buffer_stack_max) = 0;
  2078.     (yy_c_buf_p) = (char *) 0;
  2079.     (yy_init) = 0;
  2080.     (yy_start) = 0;

  2081. /* Defined in main.c */
  2082. #ifdef YY_STDINIT
  2083.     yyin = stdin;
  2084.     yyout = stdout;
  2085. #else
  2086.     yyin = (FILE *) 0;
  2087.     yyout = (FILE *) 0;
  2088. #endif

  2089.     /* For future reference: Set errno on error, since we are called by
  2090.      * yylex_init()
  2091.      */
  2092.     return 0;
  2093. }

  2094. /* yylex_destroy is for both reentrant and non-reentrant scanners. */
  2095. int yylex_destroy  (void)
  2096. {

  2097.     /* Pop the buffer stack, destroying each element. */
  2098.         while(YY_CURRENT_BUFFER){
  2099.                 yy_delete_buffer(YY_CURRENT_BUFFER  );
  2100.                 YY_CURRENT_BUFFER_LVALUE = NULL;
  2101.                 yypop_buffer_state();
  2102.         }

  2103.         /* Destroy the stack itself. */
  2104.         yyfree((yy_buffer_stack) );
  2105.         (yy_buffer_stack) = NULL;

  2106.     /* Reset the globals. This is important in a non-reentrant scanner so the next time
  2107.      * yylex() is called, initialization will occur. */
  2108.     yy_init_globals( );

  2109.     return 0;
  2110. }

  2111. /*
  2112. * Internal utility routines.
  2113. */

  2114. #ifndef yytext_ptr
  2115. static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
  2116. {
  2117.         register int i;
  2118.         for ( i = 0; i < n; ++i )
  2119.                 s1[i] = s2[i];
  2120. }
  2121. #endif

  2122. #ifdef YY_NEED_STRLEN
  2123. static int yy_flex_strlen (yyconst char * s )
  2124. {
  2125.         register int n;
  2126.         for ( n = 0; s[n]; ++n )
  2127.                 ;

  2128.         return n;
  2129. }
  2130. #endif

  2131. void *yyalloc (yy_size_t  size )
  2132. {
  2133.         return (void *) xmalloc( size );
  2134. }

  2135. void *yyxrealloc  (void * ptr, yy_size_t  size )
  2136. {
  2137.         /* The cast to (char *) in the following accommodates both
  2138.          * implementations that use char* generic pointers, and those
  2139.          * that use void* generic pointers.  It works with the latter
  2140.          * because both ANSI C and C++ allow castless assignment from
  2141.          * any pointer type to void*, and deal with argument conversions
  2142.          * as though doing an assignment.
  2143.          */
  2144.         return (void *) xrealloc( (char *) ptr, size );
  2145. }

  2146. void yyfree (void * ptr )
  2147. {
  2148.         xfree( (char *) ptr );        /* see yyxrealloc() for (char *) cast */
  2149. }

  2150. #define YYTABLES_NAME "yytables"

  2151. #line 291 "ada-lex.l"



  2152. #include <ctype.h>
  2153. /* Initialize the lexer for processing new expression. */

  2154. static void
  2155. lexer_init (FILE *inp)
  2156. {
  2157.   BEGIN INITIAL;
  2158.   yyrestart (inp);
  2159. }


  2160. /* Copy S2 to S1, removing all underscores, and downcasing all letters.  */

  2161. static void
  2162. canonicalizeNumeral (char *s1, const char *s2)
  2163. {
  2164.   for (; *s2 != '\000'; s2 += 1)
  2165.     {
  2166.       if (*s2 != '_')
  2167.         {
  2168.           *s1 = tolower(*s2);
  2169.           s1 += 1;
  2170.         }
  2171.     }
  2172.   s1[0] = '\000';
  2173. }

  2174. /* Interprets the prefix of NUM that consists of digits of the given BASE
  2175.    as an integer of that BASE, with the string EXP as an exponent.
  2176.    Puts value in yylval, and returns INT, if the string is valid.  Causes
  2177.    an error if the number is improperly formated.   BASE, if NULL, defaults
  2178.    to "10", and EXP to "1".  The EXP does not contain a leading 'e' or 'E'.
  2179. */

  2180. static int
  2181. processInt (struct parser_state *par_state, const char *base0,
  2182.             const char *num0, const char *exp0)
  2183. {
  2184.   ULONGEST result;
  2185.   long exp;
  2186.   int base;
  2187.   const char *trailer;

  2188.   if (base0 == NULL)
  2189.     base = 10;
  2190.   else
  2191.     {
  2192.       base = strtol (base0, (char **) NULL, 10);
  2193.       if (base < 2 || base > 16)
  2194.         error (_("Invalid base: %d."), base);
  2195.     }

  2196.   if (exp0 == NULL)
  2197.     exp = 0;
  2198.   else
  2199.     exp = strtol(exp0, (char **) NULL, 10);

  2200.   errno = 0;
  2201.   result = strtoulst (num0, &trailer, base);
  2202.   if (errno == ERANGE)
  2203.     error (_("Integer literal out of range"));
  2204.   if (isxdigit(*trailer))
  2205.     error (_("Invalid digit `%c' in based literal"), *trailer);

  2206.   while (exp > 0)
  2207.     {
  2208.       if (result > (ULONG_MAX / base))
  2209.         error (_("Integer literal out of range"));
  2210.       result *= base;
  2211.       exp -= 1;
  2212.     }

  2213.   if ((result >> (gdbarch_int_bit (parse_gdbarch (par_state))-1)) == 0)
  2214.     yylval.typed_val.type = type_int (par_state);
  2215.   else if ((result >> (gdbarch_long_bit (parse_gdbarch (par_state))-1)) == 0)
  2216.     yylval.typed_val.type = type_long (par_state);
  2217.   else if (((result >> (gdbarch_long_bit (parse_gdbarch (par_state))-1)) >> 1) == 0)
  2218.     {
  2219.       /* We have a number representable as an unsigned integer quantity.
  2220.          For consistency with the C treatment, we will treat it as an
  2221.          anonymous modular (unsigned) quantity.  Alas, the types are such
  2222.          that we need to store .val as a signed quantity.  Sorry
  2223.          for the mess, but C doesn't officially guarantee that a simple
  2224.          assignment does the trick (no, it doesn't; read the reference manual).
  2225.        */
  2226.       yylval.typed_val.type
  2227.         = builtin_type (parse_gdbarch (par_state))->builtin_unsigned_long;
  2228.       if (result & LONGEST_SIGN)
  2229.         yylval.typed_val.val =
  2230.           (LONGEST) (result & ~LONGEST_SIGN)
  2231.           - (LONGEST_SIGN>>1) - (LONGEST_SIGN>>1);
  2232.       else
  2233.         yylval.typed_val.val = (LONGEST) result;
  2234.       return INT;
  2235.     }
  2236.   else
  2237.     yylval.typed_val.type = type_long_long (par_state);

  2238.   yylval.typed_val.val = (LONGEST) result;
  2239.   return INT;
  2240. }

  2241. static int
  2242. processReal (struct parser_state *par_state, const char *num0)
  2243. {
  2244.   sscanf (num0, "%" DOUBLEST_SCAN_FORMAT, &yylval.typed_val_float.dval);

  2245.   yylval.typed_val_float.type = type_float (par_state);
  2246.   if (sizeof(DOUBLEST) >= gdbarch_double_bit (parse_gdbarch (par_state))
  2247.                             / TARGET_CHAR_BIT)
  2248.     yylval.typed_val_float.type = type_double (par_state);
  2249.   if (sizeof(DOUBLEST) >= gdbarch_long_double_bit (parse_gdbarch (par_state))
  2250.                             / TARGET_CHAR_BIT)
  2251.     yylval.typed_val_float.type = type_long_double (par_state);

  2252.   return FLOAT;
  2253. }


  2254. /* Store a canonicalized version of NAME0[0..LEN-1] in yylval.ssym.  The
  2255.    resulting string is valid until the next call to ada_parse.  If
  2256.    NAME0 contains the substring "___", it is assumed to be already
  2257.    encoded and the resulting name is equal to it.  Otherwise, it differs
  2258.    from NAME0 in that:
  2259.     + Characters between '...' or <...> are transfered verbatim to
  2260.       yylval.ssym.
  2261.     + <, >, and trailing "'" characters in quoted sequences are removed
  2262.       (a leading quote is preserved to indicate that the name is not to be
  2263.       GNAT-encoded).
  2264.     + Unquoted whitespace is removed.
  2265.     + Unquoted alphabetic characters are mapped to lower case.
  2266.    Result is returned as a struct stoken, but for convenience, the string
  2267.    is also null-terminated.  Result string valid until the next call of
  2268.    ada_parse.
  2269. */
  2270. static struct stoken
  2271. processId (const char *name0, int len)
  2272. {
  2273.   char *name = obstack_alloc (&temp_parse_space, len + 11);
  2274.   int i0, i;
  2275.   struct stoken result;

  2276.   result.ptr = name;
  2277.   while (len > 0 && isspace (name0[len-1]))
  2278.     len -= 1;

  2279.   if (strstr (name0, "___") != NULL)
  2280.     {
  2281.       strncpy (name, name0, len);
  2282.       name[len] = '\000';
  2283.       result.length = len;
  2284.       return result;
  2285.     }

  2286.   i = i0 = 0;
  2287.   while (i0 < len)
  2288.     {
  2289.       if (isalnum (name0[i0]))
  2290.         {
  2291.           name[i] = tolower (name0[i0]);
  2292.           i += 1; i0 += 1;
  2293.         }
  2294.       else switch (name0[i0])
  2295.         {
  2296.         default:
  2297.           name[i] = name0[i0];
  2298.           i += 1; i0 += 1;
  2299.           break;
  2300.         case ' ': case '\t':
  2301.           i0 += 1;
  2302.           break;
  2303.         case '\'':
  2304.           do
  2305.             {
  2306.               name[i] = name0[i0];
  2307.               i += 1; i0 += 1;
  2308.             }
  2309.           while (i0 < len && name0[i0] != '\'');
  2310.           i0 += 1;
  2311.           break;
  2312.         case '<':
  2313.           i0 += 1;
  2314.           while (i0 < len && name0[i0] != '>')
  2315.             {
  2316.               name[i] = name0[i0];
  2317.               i += 1; i0 += 1;
  2318.             }
  2319.           i0 += 1;
  2320.           break;
  2321.         }
  2322.     }
  2323.   name[i] = '\000';

  2324.   result.length = i;
  2325.   return result;
  2326. }

  2327. /* Return TEXT[0..LEN-1], a string literal without surrounding quotes,
  2328.    with special hex character notations replaced with characters.
  2329.    Result valid until the next call to ada_parse.  */

  2330. static struct stoken
  2331. processString (const char *text, int len)
  2332. {
  2333.   const char *p;
  2334.   char *q;
  2335.   const char *lim = text + len;
  2336.   struct stoken result;

  2337.   q = obstack_alloc (&temp_parse_space, len);
  2338.   result.ptr = q;
  2339.   p = text;
  2340.   while (p < lim)
  2341.     {
  2342.       if (p[0] == '[' && p[1] == '"' && p+2 < lim)
  2343.          {
  2344.            if (p[2] == '"'/* "...["""]... */
  2345.              {
  2346.                *q = '"';
  2347.                p += 4;
  2348.              }
  2349.            else
  2350.              {
  2351.                int chr;
  2352.                sscanf (p+2, "%2x", &chr);
  2353.                *q = (char) chr;
  2354.                p += 5;
  2355.              }
  2356.          }
  2357.        else
  2358.          *q = *p;
  2359.        q += 1;
  2360.        p += 1;
  2361.      }
  2362.   result.length = q - result.ptr;
  2363.   return result;
  2364. }

  2365. /* Returns the position within STR of the '.' in a
  2366.    '.{WHITE}*all' component of a dotted name, or -1 if there is none.
  2367.    Note: we actually don't need this routine, since 'all' can never be an
  2368.    Ada identifier.  Thus, looking up foo.all or foo.all.x as a name
  2369.    must fail, and will eventually be interpreted as (foo).all or
  2370.    (foo).all.x.  However, this does avoid an extraneous lookup. */

  2371. static int
  2372. find_dot_all (const char *str)
  2373. {
  2374.   int i;

  2375.   for (i = 0; str[i] != '\000'; i++)
  2376.     if (str[i] == '.')
  2377.       {
  2378.         int i0 = i;

  2379.         do
  2380.           i += 1;
  2381.         while (isspace (str[i]));

  2382.         if (strncasecmp (str + i, "all", 3) == 0
  2383.             && !isalnum (str[i + 3]) && str[i + 3] != '_')
  2384.           return i0;
  2385.       }
  2386.   return -1;
  2387. }

  2388. /* Returns non-zero iff string SUBSEQ matches a subsequence of STR, ignoring
  2389.    case.  */

  2390. static int
  2391. subseqMatch (const char *subseq, const char *str)
  2392. {
  2393.   if (subseq[0] == '\0')
  2394.     return 1;
  2395.   else if (str[0] == '\0')
  2396.     return 0;
  2397.   else if (tolower (subseq[0]) == tolower (str[0]))
  2398.     return subseqMatch (subseq+1, str+1) || subseqMatch (subseq, str+1);
  2399.   else
  2400.     return subseqMatch (subseq, str+1);
  2401. }


  2402. static struct { const char *name; int code; }
  2403. attributes[] = {
  2404.   { "address", TICK_ADDRESS },
  2405.   { "unchecked_access", TICK_ACCESS },
  2406.   { "unrestricted_access", TICK_ACCESS },
  2407.   { "access", TICK_ACCESS },
  2408.   { "first", TICK_FIRST },
  2409.   { "last", TICK_LAST },
  2410.   { "length", TICK_LENGTH },
  2411.   { "max", TICK_MAX },
  2412.   { "min", TICK_MIN },
  2413.   { "modulus", TICK_MODULUS },
  2414.   { "pos", TICK_POS },
  2415.   { "range", TICK_RANGE },
  2416.   { "size", TICK_SIZE },
  2417.   { "tag", TICK_TAG },
  2418.   { "val", TICK_VAL },
  2419.   { NULL, -1 }
  2420. };

  2421. /* Return the syntactic code corresponding to the attribute name or
  2422.    abbreviation STR.  */

  2423. static int
  2424. processAttribute (const char *str)
  2425. {
  2426.   int i, k;

  2427.   for (i = 0; attributes[i].code != -1; i += 1)
  2428.     if (strcasecmp (str, attributes[i].name) == 0)
  2429.       return attributes[i].code;

  2430.   for (i = 0, k = -1; attributes[i].code != -1; i += 1)
  2431.     if (subseqMatch (str, attributes[i].name))
  2432.       {
  2433.         if (k == -1)
  2434.           k = i;
  2435.         else
  2436.           error (_("ambiguous attribute name: `%s'"), str);
  2437.       }
  2438.   if (k == -1)
  2439.     error (_("unrecognized attribute: `%s'"), str);

  2440.   return attributes[k].code;
  2441. }

  2442. /* Back up lexptr by yyleng and then to the rightmost occurrence of
  2443.    character CH, case-folded (there must be one).  WARNING: since
  2444.    lexptr points to the next input character that Flex has not yet
  2445.    transferred to its internal buffer, the use of this function
  2446.    depends on the assumption that Flex calls YY_INPUT only when it is
  2447.    logically necessary to do so (thus, there is no reading ahead
  2448.    farther than needed to identify the next token.)  */

  2449. static void
  2450. rewind_to_char (int ch)
  2451. {
  2452.   lexptr -= yyleng;
  2453.   while (toupper (*lexptr) != toupper (ch))
  2454.     lexptr -= 1;
  2455.   yyrestart (NULL);
  2456. }

  2457. int
  2458. yywrap(void)
  2459. {
  2460.   return 1;
  2461. }

  2462. /* Dummy definition to suppress warnings about unused static definitions. */
  2463. typedef void (*dummy_function) ();
  2464. dummy_function ada_flex_use[] =
  2465. {
  2466.   (dummy_function) yyunput
  2467. };