Commit generated files for binutils 2.17.90.
[binutils.git] / gas / itbl-lex.c
blobf4a1de78c393ff74ce2d4a24c9c555cd12592361
2 #line 3 "itbl-lex.c"
4 #define YY_INT_ALIGNED short int
6 /* A lexical scanner generated by flex */
8 #define FLEX_SCANNER
9 #define YY_FLEX_MAJOR_VERSION 2
10 #define YY_FLEX_MINOR_VERSION 5
11 #define YY_FLEX_SUBMINOR_VERSION 33
12 #if YY_FLEX_SUBMINOR_VERSION > 0
13 #define FLEX_BETA
14 #endif
16 /* First, we deal with platform-specific or compiler-specific issues. */
18 /* begin standard C headers. */
19 #include <stdio.h>
20 #include <string.h>
21 #include <errno.h>
22 #include <stdlib.h>
24 /* end standard C headers. */
26 /* flex integer type definitions */
28 #ifndef FLEXINT_H
29 #define FLEXINT_H
31 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
33 #if __STDC_VERSION__ >= 199901L
35 /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
36 * if you want the limit (max/min) macros for int types.
38 #ifndef __STDC_LIMIT_MACROS
39 #define __STDC_LIMIT_MACROS 1
40 #endif
42 #include <inttypes.h>
43 typedef int8_t flex_int8_t;
44 typedef uint8_t flex_uint8_t;
45 typedef int16_t flex_int16_t;
46 typedef uint16_t flex_uint16_t;
47 typedef int32_t flex_int32_t;
48 typedef uint32_t flex_uint32_t;
49 #else
50 typedef signed char flex_int8_t;
51 typedef short int flex_int16_t;
52 typedef int flex_int32_t;
53 typedef unsigned char flex_uint8_t;
54 typedef unsigned short int flex_uint16_t;
55 typedef unsigned int flex_uint32_t;
56 #endif /* ! C99 */
58 /* Limits of integral types. */
59 #ifndef INT8_MIN
60 #define INT8_MIN (-128)
61 #endif
62 #ifndef INT16_MIN
63 #define INT16_MIN (-32767-1)
64 #endif
65 #ifndef INT32_MIN
66 #define INT32_MIN (-2147483647-1)
67 #endif
68 #ifndef INT8_MAX
69 #define INT8_MAX (127)
70 #endif
71 #ifndef INT16_MAX
72 #define INT16_MAX (32767)
73 #endif
74 #ifndef INT32_MAX
75 #define INT32_MAX (2147483647)
76 #endif
77 #ifndef UINT8_MAX
78 #define UINT8_MAX (255U)
79 #endif
80 #ifndef UINT16_MAX
81 #define UINT16_MAX (65535U)
82 #endif
83 #ifndef UINT32_MAX
84 #define UINT32_MAX (4294967295U)
85 #endif
87 #endif /* ! FLEXINT_H */
89 #ifdef __cplusplus
91 /* The "const" storage-class-modifier is valid. */
92 #define YY_USE_CONST
94 #else /* ! __cplusplus */
96 #if __STDC__
98 #define YY_USE_CONST
100 #endif /* __STDC__ */
101 #endif /* ! __cplusplus */
103 #ifdef YY_USE_CONST
104 #define yyconst const
105 #else
106 #define yyconst
107 #endif
109 /* Returned upon end-of-file. */
110 #define YY_NULL 0
112 /* Promotes a possibly negative, possibly signed char to an unsigned
113 * integer for use as an array index. If the signed char is negative,
114 * we want to instead treat it as an 8-bit unsigned char, hence the
115 * double cast.
117 #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
119 /* Enter a start condition. This macro really ought to take a parameter,
120 * but we do it the disgusting crufty way forced on us by the ()-less
121 * definition of BEGIN.
123 #define BEGIN (yy_start) = 1 + 2 *
125 /* Translate the current start state into a value that can be later handed
126 * to BEGIN to return to the state. The YYSTATE alias is for lex
127 * compatibility.
129 #define YY_START (((yy_start) - 1) / 2)
130 #define YYSTATE YY_START
132 /* Action number for EOF rule of a given start state. */
133 #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
135 /* Special action meaning "start processing a new file". */
136 #define YY_NEW_FILE yyrestart(yyin )
138 #define YY_END_OF_BUFFER_CHAR 0
140 /* Size of default input buffer. */
141 #ifndef YY_BUF_SIZE
142 #define YY_BUF_SIZE 16384
143 #endif
145 /* The state buf must be large enough to hold one state per character in the main buffer.
147 #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
149 #ifndef YY_TYPEDEF_YY_BUFFER_STATE
150 #define YY_TYPEDEF_YY_BUFFER_STATE
151 typedef struct yy_buffer_state *YY_BUFFER_STATE;
152 #endif
154 extern int yyleng;
156 extern FILE *yyin, *yyout;
158 #define EOB_ACT_CONTINUE_SCAN 0
159 #define EOB_ACT_END_OF_FILE 1
160 #define EOB_ACT_LAST_MATCH 2
162 #define YY_LESS_LINENO(n)
164 /* Return all but the first "n" matched characters back to the input stream. */
165 #define yyless(n) \
166 do \
168 /* Undo effects of setting up yytext. */ \
169 int yyless_macro_arg = (n); \
170 YY_LESS_LINENO(yyless_macro_arg);\
171 *yy_cp = (yy_hold_char); \
172 YY_RESTORE_YY_MORE_OFFSET \
173 (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
174 YY_DO_BEFORE_ACTION; /* set up yytext again */ \
176 while ( 0 )
178 #define unput(c) yyunput( c, (yytext_ptr) )
180 /* The following is because we cannot portably get our hands on size_t
181 * (without autoconf's help, which isn't available because we want
182 * flex-generated scanners to compile on their own).
185 #ifndef YY_TYPEDEF_YY_SIZE_T
186 #define YY_TYPEDEF_YY_SIZE_T
187 typedef unsigned int yy_size_t;
188 #endif
190 #ifndef YY_STRUCT_YY_BUFFER_STATE
191 #define YY_STRUCT_YY_BUFFER_STATE
192 struct yy_buffer_state
194 FILE *yy_input_file;
196 char *yy_ch_buf; /* input buffer */
197 char *yy_buf_pos; /* current position in input buffer */
199 /* Size of input buffer in bytes, not including room for EOB
200 * characters.
202 yy_size_t yy_buf_size;
204 /* Number of characters read into yy_ch_buf, not including EOB
205 * characters.
207 int yy_n_chars;
209 /* Whether we "own" the buffer - i.e., we know we created it,
210 * and can realloc() it to grow it, and should free() it to
211 * delete it.
213 int yy_is_our_buffer;
215 /* Whether this is an "interactive" input source; if so, and
216 * if we're using stdio for input, then we want to use getc()
217 * instead of fread(), to make sure we stop fetching input after
218 * each newline.
220 int yy_is_interactive;
222 /* Whether we're considered to be at the beginning of a line.
223 * If so, '^' rules will be active on the next match, otherwise
224 * not.
226 int yy_at_bol;
228 int yy_bs_lineno; /**< The line count. */
229 int yy_bs_column; /**< The column count. */
231 /* Whether to try to fill the input buffer when we reach the
232 * end of it.
234 int yy_fill_buffer;
236 int yy_buffer_status;
238 #define YY_BUFFER_NEW 0
239 #define YY_BUFFER_NORMAL 1
240 /* When an EOF's been seen but there's still some text to process
241 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
242 * shouldn't try reading from the input source any more. We might
243 * still have a bunch of tokens to match, though, because of
244 * possible backing-up.
246 * When we actually see the EOF, we change the status to "new"
247 * (via yyrestart()), so that the user can continue scanning by
248 * just pointing yyin at a new input file.
250 #define YY_BUFFER_EOF_PENDING 2
253 #endif /* !YY_STRUCT_YY_BUFFER_STATE */
255 /* Stack of input buffers. */
256 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
257 static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
258 static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
260 /* We provide macros for accessing buffer states in case in the
261 * future we want to put the buffer states in a more general
262 * "scanner state".
264 * Returns the top of the stack, or NULL.
266 #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
267 ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
268 : NULL)
270 /* Same as previous macro, but useful when we know that the buffer stack is not
271 * NULL or when we need an lvalue. For internal use only.
273 #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
275 /* yy_hold_char holds the character lost when yytext is formed. */
276 static char yy_hold_char;
277 static int yy_n_chars; /* number of characters read into yy_ch_buf */
278 int yyleng;
280 /* Points to current character in buffer. */
281 static char *yy_c_buf_p = (char *) 0;
282 static int yy_init = 0; /* whether we need to initialize */
283 static int yy_start = 0; /* start state number */
285 /* Flag which is used to allow yywrap()'s to do buffer switches
286 * instead of setting up a fresh yyin. A bit of a hack ...
288 static int yy_did_buffer_switch_on_eof;
290 void yyrestart (FILE *input_file );
291 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
292 YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
293 void yy_delete_buffer (YY_BUFFER_STATE b );
294 void yy_flush_buffer (YY_BUFFER_STATE b );
295 void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
296 void yypop_buffer_state (void );
298 static void yyensure_buffer_stack (void );
299 static void yy_load_buffer_state (void );
300 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
302 #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
304 YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
305 YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
306 YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
308 void *yyalloc (yy_size_t );
309 void *yyrealloc (void *,yy_size_t );
310 void yyfree (void * );
312 #define yy_new_buffer yy_create_buffer
314 #define yy_set_interactive(is_interactive) \
316 if ( ! YY_CURRENT_BUFFER ){ \
317 yyensure_buffer_stack (); \
318 YY_CURRENT_BUFFER_LVALUE = \
319 yy_create_buffer(yyin,YY_BUF_SIZE ); \
321 YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
324 #define yy_set_bol(at_bol) \
326 if ( ! YY_CURRENT_BUFFER ){\
327 yyensure_buffer_stack (); \
328 YY_CURRENT_BUFFER_LVALUE = \
329 yy_create_buffer(yyin,YY_BUF_SIZE ); \
331 YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
334 #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
336 /* Begin user sect3 */
338 typedef unsigned char YY_CHAR;
340 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
342 typedef int yy_state_type;
344 extern int yylineno;
346 int yylineno = 1;
348 extern char *yytext;
349 #define yytext_ptr yytext
351 static yy_state_type yy_get_previous_state (void );
352 static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
353 static int yy_get_next_buffer (void );
354 static void yy_fatal_error (yyconst char msg[] );
356 /* Done after the current pattern has been matched and before the
357 * corresponding action - sets up yytext.
359 #define YY_DO_BEFORE_ACTION \
360 (yytext_ptr) = yy_bp; \
361 yyleng = (size_t) (yy_cp - yy_bp); \
362 (yy_hold_char) = *yy_cp; \
363 *yy_cp = '\0'; \
364 (yy_c_buf_p) = yy_cp;
366 #define YY_NUM_RULES 15
367 #define YY_END_OF_BUFFER 16
368 /* This struct is not used in this scanner,
369 but its presence is necessary. */
370 struct yy_trans_info
372 flex_int32_t yy_verify;
373 flex_int32_t yy_nxt;
375 static yyconst flex_int16_t yy_accept[60] =
376 { 0,
377 0, 0, 16, 14, 13, 12, 11, 8, 8, 10,
378 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
379 10, 8, 0, 10, 10, 10, 10, 10, 10, 10,
380 10, 10, 10, 10, 10, 10, 7, 9, 10, 10,
381 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
382 5, 1, 2, 3, 10, 6, 10, 4, 0
385 static yyconst flex_int32_t yy_ec[256] =
386 { 0,
387 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
388 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
389 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
390 1, 4, 1, 1, 5, 1, 1, 1, 1, 1,
391 1, 1, 1, 1, 1, 1, 1, 6, 7, 7,
392 7, 7, 7, 7, 7, 7, 7, 1, 8, 1,
393 1, 1, 1, 1, 9, 10, 11, 12, 13, 10,
394 14, 15, 16, 15, 15, 15, 17, 18, 15, 15,
395 15, 19, 20, 15, 15, 15, 15, 15, 15, 15,
396 1, 1, 1, 1, 15, 1, 21, 10, 22, 23,
398 24, 10, 25, 15, 26, 15, 15, 15, 27, 28,
399 15, 29, 15, 30, 31, 15, 15, 15, 15, 32,
400 15, 15, 1, 1, 1, 1, 1, 1, 1, 1,
401 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
402 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
403 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
404 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
405 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
406 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
407 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
409 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
410 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
411 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
412 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
413 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
414 1, 1, 1, 1, 1
417 static yyconst flex_int32_t yy_meta[33] =
418 { 0,
419 1, 1, 1, 1, 1, 2, 2, 1, 2, 2,
420 2, 2, 2, 3, 3, 3, 3, 3, 3, 3,
421 2, 2, 2, 2, 3, 3, 3, 3, 3, 3,
422 3, 3
425 static yyconst flex_int16_t yy_base[62] =
426 { 0,
427 0, 0, 83, 84, 84, 84, 84, 27, 29, 70,
428 0, 62, 61, 60, 20, 55, 47, 46, 45, 12,
429 35, 37, 0, 0, 62, 60, 59, 58, 53, 49,
430 45, 43, 42, 41, 37, 32, 0, 0, 43, 44,
431 43, 42, 42, 36, 23, 27, 26, 25, 25, 20,
432 0, 0, 0, 0, 35, 0, 23, 0, 84, 58,
436 static yyconst flex_int16_t yy_def[62] =
437 { 0,
438 59, 1, 59, 59, 59, 59, 59, 59, 59, 60,
439 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
440 60, 59, 61, 60, 60, 60, 60, 60, 60, 60,
441 60, 60, 60, 60, 60, 60, 60, 61, 60, 60,
442 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
443 60, 60, 60, 60, 60, 60, 60, 60, 0, 59,
447 static yyconst flex_int16_t yy_nxt[117] =
448 { 0,
449 4, 5, 6, 5, 7, 8, 9, 7, 10, 11,
450 12, 13, 11, 14, 11, 15, 11, 11, 11, 11,
451 16, 17, 18, 11, 19, 20, 11, 11, 21, 11,
452 11, 11, 22, 22, 22, 22, 29, 30, 35, 36,
453 37, 37, 22, 22, 38, 58, 58, 56, 57, 54,
454 53, 52, 51, 56, 55, 54, 53, 52, 23, 24,
455 24, 51, 50, 49, 48, 47, 46, 45, 44, 43,
456 42, 41, 40, 39, 34, 33, 32, 31, 28, 27,
457 26, 25, 59, 3, 59, 59, 59, 59, 59, 59,
458 59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
460 59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
461 59, 59, 59, 59, 59, 59
464 static yyconst flex_int16_t yy_chk[117] =
465 { 0,
466 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
467 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
468 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
469 1, 1, 8, 8, 9, 9, 15, 15, 20, 20,
470 21, 21, 22, 22, 61, 57, 55, 50, 49, 48,
471 47, 46, 45, 44, 43, 42, 41, 40, 8, 60,
472 60, 39, 36, 35, 34, 33, 32, 31, 30, 29,
473 28, 27, 26, 25, 19, 18, 17, 16, 14, 13,
474 12, 10, 3, 59, 59, 59, 59, 59, 59, 59,
475 59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
477 59, 59, 59, 59, 59, 59, 59, 59, 59, 59,
478 59, 59, 59, 59, 59, 59
481 static yy_state_type yy_last_accepting_state;
482 static char *yy_last_accepting_cpos;
484 extern int yy_flex_debug;
485 int yy_flex_debug = 0;
487 /* The intent behind this definition is that it'll catch
488 * any uses of REJECT which flex missed.
490 #define REJECT reject_used_but_not_detected
491 #define yymore() yymore_used_but_not_detected
492 #define YY_MORE_ADJ 0
493 #define YY_RESTORE_YY_MORE_OFFSET
494 char *yytext;
495 #line 1 "itbl-lex.l"
496 /* itbl-lex.l
497 Copyright 1997, 1998, 2001, 2002, 2005, 2006, 2007
498 Free Software Foundation, Inc.
500 This file is part of GAS, the GNU Assembler.
502 GAS is free software; you can redistribute it and/or modify
503 it under the terms of the GNU General Public License as published by
504 the Free Software Foundation; either version 3, or (at your option)
505 any later version.
507 GAS is distributed in the hope that it will be useful,
508 but WITHOUT ANY WARRANTY; without even the implied warranty of
509 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
510 GNU General Public License for more details.
512 You should have received a copy of the GNU General Public License
513 along with GAS; see the file COPYING. If not, write to the Free
514 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
515 02110-1301, USA. */
516 #line 23 "itbl-lex.l"
517 #include "as.h"
518 #include "itbl-lex.h"
519 #include <itbl-parse.h>
521 #ifdef DEBUG
522 #define DBG(x) printf x
523 #define MDBG(x) printf x
524 #else
525 #define DBG(x)
526 #define MDBG(x)
527 #endif
529 int insntbl_line = 1;
530 #line 531 "itbl-lex.c"
532 #define INITIAL 0
534 #ifndef YY_NO_UNISTD_H
535 /* Special case for "unistd.h", since it is non-ANSI. We include it way
536 * down here because we want the user's section 1 to have been scanned first.
537 * The user has a chance to override it with an option.
539 #include <unistd.h>
540 #endif
542 #ifndef YY_EXTRA_TYPE
543 #define YY_EXTRA_TYPE void *
544 #endif
546 static int yy_init_globals (void );
548 /* Macros after this point can all be overridden by user definitions in
549 * section 1.
552 #ifndef YY_SKIP_YYWRAP
553 #ifdef __cplusplus
554 extern "C" int yywrap (void );
555 #else
556 extern int yywrap (void );
557 #endif
558 #endif
560 static void yyunput (int c,char *buf_ptr );
562 #ifndef yytext_ptr
563 static void yy_flex_strncpy (char *,yyconst char *,int );
564 #endif
566 #ifdef YY_NEED_STRLEN
567 static int yy_flex_strlen (yyconst char * );
568 #endif
570 #ifndef YY_NO_INPUT
572 #ifdef __cplusplus
573 static int yyinput (void );
574 #else
575 static int input (void );
576 #endif
578 #endif
580 /* Amount of stuff to slurp up with each read. */
581 #ifndef YY_READ_BUF_SIZE
582 #define YY_READ_BUF_SIZE 8192
583 #endif
585 /* Copy whatever the last rule matched to the standard output. */
586 #ifndef ECHO
587 /* This used to be an fputs(), but since the string might contain NUL's,
588 * we now use fwrite().
590 #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
591 #endif
593 /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
594 * is returned in "result".
596 #ifndef YY_INPUT
597 #define YY_INPUT(buf,result,max_size) \
598 if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
600 int c = '*'; \
601 size_t n; \
602 for ( n = 0; n < max_size && \
603 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
604 buf[n] = (char) c; \
605 if ( c == '\n' ) \
606 buf[n++] = (char) c; \
607 if ( c == EOF && ferror( yyin ) ) \
608 YY_FATAL_ERROR( "input in flex scanner failed" ); \
609 result = n; \
611 else \
613 errno=0; \
614 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
616 if( errno != EINTR) \
618 YY_FATAL_ERROR( "input in flex scanner failed" ); \
619 break; \
621 errno=0; \
622 clearerr(yyin); \
627 #endif
629 /* No semi-colon after return; correct usage is to write "yyterminate();" -
630 * we don't want an extra ';' after the "return" because that will cause
631 * some compilers to complain about unreachable statements.
633 #ifndef yyterminate
634 #define yyterminate() return YY_NULL
635 #endif
637 /* Number of entries by which start-condition stack grows. */
638 #ifndef YY_START_STACK_INCR
639 #define YY_START_STACK_INCR 25
640 #endif
642 /* Report a fatal error. */
643 #ifndef YY_FATAL_ERROR
644 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
645 #endif
647 /* end tables serialization structures and prototypes */
649 /* Default declaration of generated scanner - a define so the user can
650 * easily add parameters.
652 #ifndef YY_DECL
653 #define YY_DECL_IS_OURS 1
655 extern int yylex (void);
657 #define YY_DECL int yylex (void)
658 #endif /* !YY_DECL */
660 /* Code executed at the beginning of each rule, after yytext and yyleng
661 * have been set up.
663 #ifndef YY_USER_ACTION
664 #define YY_USER_ACTION
665 #endif
667 /* Code executed at the end of each rule. */
668 #ifndef YY_BREAK
669 #define YY_BREAK break;
670 #endif
672 #define YY_RULE_SETUP \
673 YY_USER_ACTION
675 /** The main scanner function which does all the work.
677 YY_DECL
679 register yy_state_type yy_current_state;
680 register char *yy_cp, *yy_bp;
681 register int yy_act;
683 #line 43 "itbl-lex.l"
686 #line 687 "itbl-lex.c"
688 if ( !(yy_init) )
690 (yy_init) = 1;
692 #ifdef YY_USER_INIT
693 YY_USER_INIT;
694 #endif
696 if ( ! (yy_start) )
697 (yy_start) = 1; /* first start state */
699 if ( ! yyin )
700 yyin = stdin;
702 if ( ! yyout )
703 yyout = stdout;
705 if ( ! YY_CURRENT_BUFFER ) {
706 yyensure_buffer_stack ();
707 YY_CURRENT_BUFFER_LVALUE =
708 yy_create_buffer(yyin,YY_BUF_SIZE );
711 yy_load_buffer_state( );
714 while ( 1 ) /* loops until end-of-file is reached */
716 yy_cp = (yy_c_buf_p);
718 /* Support of yytext. */
719 *yy_cp = (yy_hold_char);
721 /* yy_bp points to the position in yy_ch_buf of the start of
722 * the current run.
724 yy_bp = yy_cp;
726 yy_current_state = (yy_start);
727 yy_match:
730 register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
731 if ( yy_accept[yy_current_state] )
733 (yy_last_accepting_state) = yy_current_state;
734 (yy_last_accepting_cpos) = yy_cp;
736 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
738 yy_current_state = (int) yy_def[yy_current_state];
739 if ( yy_current_state >= 60 )
740 yy_c = yy_meta[(unsigned int) yy_c];
742 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
743 ++yy_cp;
745 while ( yy_base[yy_current_state] != 84 );
747 yy_find_action:
748 yy_act = yy_accept[yy_current_state];
749 if ( yy_act == 0 )
750 { /* have to back up */
751 yy_cp = (yy_last_accepting_cpos);
752 yy_current_state = (yy_last_accepting_state);
753 yy_act = yy_accept[yy_current_state];
756 YY_DO_BEFORE_ACTION;
758 do_action: /* This label is used only to access EOF actions. */
760 switch ( yy_act )
761 { /* beginning of action switch */
762 case 0: /* must back up */
763 /* undo the effects of YY_DO_BEFORE_ACTION */
764 *yy_cp = (yy_hold_char);
765 yy_cp = (yy_last_accepting_cpos);
766 yy_current_state = (yy_last_accepting_state);
767 goto yy_find_action;
769 case 1:
770 YY_RULE_SETUP
771 #line 45 "itbl-lex.l"
773 return CREG;
775 YY_BREAK
776 case 2:
777 YY_RULE_SETUP
778 #line 48 "itbl-lex.l"
780 return DREG;
782 YY_BREAK
783 case 3:
784 YY_RULE_SETUP
785 #line 51 "itbl-lex.l"
787 return GREG;
789 YY_BREAK
790 case 4:
791 YY_RULE_SETUP
792 #line 54 "itbl-lex.l"
794 return IMMED;
796 YY_BREAK
797 case 5:
798 YY_RULE_SETUP
799 #line 57 "itbl-lex.l"
801 return ADDR;
803 YY_BREAK
804 case 6:
805 YY_RULE_SETUP
806 #line 60 "itbl-lex.l"
808 return INSN;
810 YY_BREAK
811 case 7:
812 YY_RULE_SETUP
813 #line 63 "itbl-lex.l"
815 yytext[yyleng] = 0;
816 yylval.processor = strtoul (yytext+1, 0, 0);
817 return PNUM;
819 YY_BREAK
820 case 8:
821 YY_RULE_SETUP
822 #line 68 "itbl-lex.l"
824 yytext[yyleng] = 0;
825 yylval.num = strtoul (yytext, 0, 0);
826 return NUM;
828 YY_BREAK
829 case 9:
830 YY_RULE_SETUP
831 #line 73 "itbl-lex.l"
833 yytext[yyleng] = 0;
834 yylval.num = strtoul (yytext, 0, 0);
835 return NUM;
837 YY_BREAK
838 case 10:
839 YY_RULE_SETUP
840 #line 78 "itbl-lex.l"
842 yytext[yyleng] = 0;
843 yylval.str = strdup (yytext);
844 return ID;
846 YY_BREAK
847 case 11:
848 YY_RULE_SETUP
849 #line 83 "itbl-lex.l"
851 int c;
852 while ((c = input ()) != EOF)
854 if (c == '\n')
856 unput (c);
857 break;
861 YY_BREAK
862 case 12:
863 /* rule 12 can match eol */
864 YY_RULE_SETUP
865 #line 94 "itbl-lex.l"
867 insntbl_line++;
868 MDBG (("in lex, NL = %d (x%x)\n", NL, NL));
869 return NL;
871 YY_BREAK
872 case 13:
873 YY_RULE_SETUP
874 #line 99 "itbl-lex.l"
877 YY_BREAK
878 case 14:
879 YY_RULE_SETUP
880 #line 101 "itbl-lex.l"
882 MDBG (("char = %x, %d\n", yytext[0], yytext[0]));
883 return yytext[0];
885 YY_BREAK
886 case 15:
887 YY_RULE_SETUP
888 #line 105 "itbl-lex.l"
889 ECHO;
890 YY_BREAK
891 #line 892 "itbl-lex.c"
892 case YY_STATE_EOF(INITIAL):
893 yyterminate();
895 case YY_END_OF_BUFFER:
897 /* Amount of text matched not including the EOB char. */
898 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
900 /* Undo the effects of YY_DO_BEFORE_ACTION. */
901 *yy_cp = (yy_hold_char);
902 YY_RESTORE_YY_MORE_OFFSET
904 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
906 /* We're scanning a new file or input source. It's
907 * possible that this happened because the user
908 * just pointed yyin at a new source and called
909 * yylex(). If so, then we have to assure
910 * consistency between YY_CURRENT_BUFFER and our
911 * globals. Here is the right place to do so, because
912 * this is the first action (other than possibly a
913 * back-up) that will match for the new input source.
915 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
916 YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
917 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
920 /* Note that here we test for yy_c_buf_p "<=" to the position
921 * of the first EOB in the buffer, since yy_c_buf_p will
922 * already have been incremented past the NUL character
923 * (since all states make transitions on EOB to the
924 * end-of-buffer state). Contrast this with the test
925 * in input().
927 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
928 { /* This was really a NUL. */
929 yy_state_type yy_next_state;
931 (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
933 yy_current_state = yy_get_previous_state( );
935 /* Okay, we're now positioned to make the NUL
936 * transition. We couldn't have
937 * yy_get_previous_state() go ahead and do it
938 * for us because it doesn't know how to deal
939 * with the possibility of jamming (and we don't
940 * want to build jamming into it because then it
941 * will run more slowly).
944 yy_next_state = yy_try_NUL_trans( yy_current_state );
946 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
948 if ( yy_next_state )
950 /* Consume the NUL. */
951 yy_cp = ++(yy_c_buf_p);
952 yy_current_state = yy_next_state;
953 goto yy_match;
956 else
958 yy_cp = (yy_c_buf_p);
959 goto yy_find_action;
963 else switch ( yy_get_next_buffer( ) )
965 case EOB_ACT_END_OF_FILE:
967 (yy_did_buffer_switch_on_eof) = 0;
969 if ( yywrap( ) )
971 /* Note: because we've taken care in
972 * yy_get_next_buffer() to have set up
973 * yytext, we can now set up
974 * yy_c_buf_p so that if some total
975 * hoser (like flex itself) wants to
976 * call the scanner after we return the
977 * YY_NULL, it'll still work - another
978 * YY_NULL will get returned.
980 (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
982 yy_act = YY_STATE_EOF(YY_START);
983 goto do_action;
986 else
988 if ( ! (yy_did_buffer_switch_on_eof) )
989 YY_NEW_FILE;
991 break;
994 case EOB_ACT_CONTINUE_SCAN:
995 (yy_c_buf_p) =
996 (yytext_ptr) + yy_amount_of_matched_text;
998 yy_current_state = yy_get_previous_state( );
1000 yy_cp = (yy_c_buf_p);
1001 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1002 goto yy_match;
1004 case EOB_ACT_LAST_MATCH:
1005 (yy_c_buf_p) =
1006 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
1008 yy_current_state = yy_get_previous_state( );
1010 yy_cp = (yy_c_buf_p);
1011 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1012 goto yy_find_action;
1014 break;
1017 default:
1018 YY_FATAL_ERROR(
1019 "fatal flex scanner internal error--no action found" );
1020 } /* end of action switch */
1021 } /* end of scanning one token */
1022 } /* end of yylex */
1024 /* yy_get_next_buffer - try to read in a new buffer
1026 * Returns a code representing an action:
1027 * EOB_ACT_LAST_MATCH -
1028 * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
1029 * EOB_ACT_END_OF_FILE - end of file
1031 static int yy_get_next_buffer (void)
1033 register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
1034 register char *source = (yytext_ptr);
1035 register int number_to_move, i;
1036 int ret_val;
1038 if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
1039 YY_FATAL_ERROR(
1040 "fatal flex scanner internal error--end of buffer missed" );
1042 if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
1043 { /* Don't try to fill the buffer, so this is an EOF. */
1044 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
1046 /* We matched a single character, the EOB, so
1047 * treat this as a final EOF.
1049 return EOB_ACT_END_OF_FILE;
1052 else
1054 /* We matched some text prior to the EOB, first
1055 * process it.
1057 return EOB_ACT_LAST_MATCH;
1061 /* Try to read more data. */
1063 /* First move last chars to start of buffer. */
1064 number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
1066 for ( i = 0; i < number_to_move; ++i )
1067 *(dest++) = *(source++);
1069 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
1070 /* don't do the read, it's not guaranteed to return an EOF,
1071 * just force an EOF
1073 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
1075 else
1077 int num_to_read =
1078 YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
1080 while ( num_to_read <= 0 )
1081 { /* Not enough room in the buffer - grow it. */
1083 /* just a shorter name for the current buffer */
1084 YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
1086 int yy_c_buf_p_offset =
1087 (int) ((yy_c_buf_p) - b->yy_ch_buf);
1089 if ( b->yy_is_our_buffer )
1091 int new_size = b->yy_buf_size * 2;
1093 if ( new_size <= 0 )
1094 b->yy_buf_size += b->yy_buf_size / 8;
1095 else
1096 b->yy_buf_size *= 2;
1098 b->yy_ch_buf = (char *)
1099 /* Include room in for 2 EOB chars. */
1100 yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
1102 else
1103 /* Can't grow it, we don't own it. */
1104 b->yy_ch_buf = 0;
1106 if ( ! b->yy_ch_buf )
1107 YY_FATAL_ERROR(
1108 "fatal error - scanner input buffer overflow" );
1110 (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
1112 num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
1113 number_to_move - 1;
1117 if ( num_to_read > YY_READ_BUF_SIZE )
1118 num_to_read = YY_READ_BUF_SIZE;
1120 /* Read in more data. */
1121 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
1122 (yy_n_chars), (size_t) num_to_read );
1124 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1127 if ( (yy_n_chars) == 0 )
1129 if ( number_to_move == YY_MORE_ADJ )
1131 ret_val = EOB_ACT_END_OF_FILE;
1132 yyrestart(yyin );
1135 else
1137 ret_val = EOB_ACT_LAST_MATCH;
1138 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
1139 YY_BUFFER_EOF_PENDING;
1143 else
1144 ret_val = EOB_ACT_CONTINUE_SCAN;
1146 (yy_n_chars) += number_to_move;
1147 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
1148 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
1150 (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
1152 return ret_val;
1155 /* yy_get_previous_state - get the state just before the EOB char was reached */
1157 static yy_state_type yy_get_previous_state (void)
1159 register yy_state_type yy_current_state;
1160 register char *yy_cp;
1162 yy_current_state = (yy_start);
1164 for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
1166 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
1167 if ( yy_accept[yy_current_state] )
1169 (yy_last_accepting_state) = yy_current_state;
1170 (yy_last_accepting_cpos) = yy_cp;
1172 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1174 yy_current_state = (int) yy_def[yy_current_state];
1175 if ( yy_current_state >= 60 )
1176 yy_c = yy_meta[(unsigned int) yy_c];
1178 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1181 return yy_current_state;
1184 /* yy_try_NUL_trans - try to make a transition on the NUL character
1186 * synopsis
1187 * next_state = yy_try_NUL_trans( current_state );
1189 static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
1191 register int yy_is_jam;
1192 register char *yy_cp = (yy_c_buf_p);
1194 register YY_CHAR yy_c = 1;
1195 if ( yy_accept[yy_current_state] )
1197 (yy_last_accepting_state) = yy_current_state;
1198 (yy_last_accepting_cpos) = yy_cp;
1200 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1202 yy_current_state = (int) yy_def[yy_current_state];
1203 if ( yy_current_state >= 60 )
1204 yy_c = yy_meta[(unsigned int) yy_c];
1206 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1207 yy_is_jam = (yy_current_state == 59);
1209 return yy_is_jam ? 0 : yy_current_state;
1212 static void yyunput (int c, register char * yy_bp )
1214 register char *yy_cp;
1216 yy_cp = (yy_c_buf_p);
1218 /* undo effects of setting up yytext */
1219 *yy_cp = (yy_hold_char);
1221 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1222 { /* need to shift things up to make room */
1223 /* +2 for EOB chars. */
1224 register int number_to_move = (yy_n_chars) + 2;
1225 register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
1226 YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
1227 register char *source =
1228 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
1230 while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1231 *--dest = *--source;
1233 yy_cp += (int) (dest - source);
1234 yy_bp += (int) (dest - source);
1235 YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
1236 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
1238 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1239 YY_FATAL_ERROR( "flex scanner push-back overflow" );
1242 *--yy_cp = (char) c;
1244 (yytext_ptr) = yy_bp;
1245 (yy_hold_char) = *yy_cp;
1246 (yy_c_buf_p) = yy_cp;
1249 #ifndef YY_NO_INPUT
1250 #ifdef __cplusplus
1251 static int yyinput (void)
1252 #else
1253 static int input (void)
1254 #endif
1257 int c;
1259 *(yy_c_buf_p) = (yy_hold_char);
1261 if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
1263 /* yy_c_buf_p now points to the character we want to return.
1264 * If this occurs *before* the EOB characters, then it's a
1265 * valid NUL; if not, then we've hit the end of the buffer.
1267 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1268 /* This was really a NUL. */
1269 *(yy_c_buf_p) = '\0';
1271 else
1272 { /* need more input */
1273 int offset = (yy_c_buf_p) - (yytext_ptr);
1274 ++(yy_c_buf_p);
1276 switch ( yy_get_next_buffer( ) )
1278 case EOB_ACT_LAST_MATCH:
1279 /* This happens because yy_g_n_b()
1280 * sees that we've accumulated a
1281 * token and flags that we need to
1282 * try matching the token before
1283 * proceeding. But for input(),
1284 * there's no matching to consider.
1285 * So convert the EOB_ACT_LAST_MATCH
1286 * to EOB_ACT_END_OF_FILE.
1289 /* Reset buffer status. */
1290 yyrestart(yyin );
1292 /*FALLTHROUGH*/
1294 case EOB_ACT_END_OF_FILE:
1296 if ( yywrap( ) )
1297 return EOF;
1299 if ( ! (yy_did_buffer_switch_on_eof) )
1300 YY_NEW_FILE;
1301 #ifdef __cplusplus
1302 return yyinput();
1303 #else
1304 return input();
1305 #endif
1308 case EOB_ACT_CONTINUE_SCAN:
1309 (yy_c_buf_p) = (yytext_ptr) + offset;
1310 break;
1315 c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
1316 *(yy_c_buf_p) = '\0'; /* preserve yytext */
1317 (yy_hold_char) = *++(yy_c_buf_p);
1319 return c;
1321 #endif /* ifndef YY_NO_INPUT */
1323 /** Immediately switch to a different input stream.
1324 * @param input_file A readable stream.
1326 * @note This function does not reset the start condition to @c INITIAL .
1328 void yyrestart (FILE * input_file )
1331 if ( ! YY_CURRENT_BUFFER ){
1332 yyensure_buffer_stack ();
1333 YY_CURRENT_BUFFER_LVALUE =
1334 yy_create_buffer(yyin,YY_BUF_SIZE );
1337 yy_init_buffer(YY_CURRENT_BUFFER,input_file );
1338 yy_load_buffer_state( );
1341 /** Switch to a different input buffer.
1342 * @param new_buffer The new input buffer.
1345 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
1348 /* TODO. We should be able to replace this entire function body
1349 * with
1350 * yypop_buffer_state();
1351 * yypush_buffer_state(new_buffer);
1353 yyensure_buffer_stack ();
1354 if ( YY_CURRENT_BUFFER == new_buffer )
1355 return;
1357 if ( YY_CURRENT_BUFFER )
1359 /* Flush out information for old buffer. */
1360 *(yy_c_buf_p) = (yy_hold_char);
1361 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1362 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1365 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1366 yy_load_buffer_state( );
1368 /* We don't actually know whether we did this switch during
1369 * EOF (yywrap()) processing, but the only time this flag
1370 * is looked at is after yywrap() is called, so it's safe
1371 * to go ahead and always set it.
1373 (yy_did_buffer_switch_on_eof) = 1;
1376 static void yy_load_buffer_state (void)
1378 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1379 (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
1380 yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
1381 (yy_hold_char) = *(yy_c_buf_p);
1384 /** Allocate and initialize an input buffer state.
1385 * @param file A readable stream.
1386 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
1388 * @return the allocated buffer state.
1390 YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
1392 YY_BUFFER_STATE b;
1394 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1395 if ( ! b )
1396 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1398 b->yy_buf_size = size;
1400 /* yy_ch_buf has to be 2 characters longer than the size given because
1401 * we need to put in 2 end-of-buffer characters.
1403 b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
1404 if ( ! b->yy_ch_buf )
1405 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1407 b->yy_is_our_buffer = 1;
1409 yy_init_buffer(b,file );
1411 return b;
1414 /** Destroy the buffer.
1415 * @param b a buffer created with yy_create_buffer()
1418 void yy_delete_buffer (YY_BUFFER_STATE b )
1421 if ( ! b )
1422 return;
1424 if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
1425 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
1427 if ( b->yy_is_our_buffer )
1428 yyfree((void *) b->yy_ch_buf );
1430 yyfree((void *) b );
1433 #ifndef __cplusplus
1434 extern int isatty (int );
1435 #endif /* __cplusplus */
1437 /* Initializes or reinitializes a buffer.
1438 * This function is sometimes called more than once on the same buffer,
1439 * such as during a yyrestart() or at EOF.
1441 static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
1444 int oerrno = errno;
1446 yy_flush_buffer(b );
1448 b->yy_input_file = file;
1449 b->yy_fill_buffer = 1;
1451 /* If b is the current buffer, then yy_init_buffer was _probably_
1452 * called from yyrestart() or through yy_get_next_buffer.
1453 * In that case, we don't want to reset the lineno or column.
1455 if (b != YY_CURRENT_BUFFER){
1456 b->yy_bs_lineno = 1;
1457 b->yy_bs_column = 0;
1460 b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
1462 errno = oerrno;
1465 /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
1466 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
1469 void yy_flush_buffer (YY_BUFFER_STATE b )
1471 if ( ! b )
1472 return;
1474 b->yy_n_chars = 0;
1476 /* We always need two end-of-buffer characters. The first causes
1477 * a transition to the end-of-buffer state. The second causes
1478 * a jam in that state.
1480 b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
1481 b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
1483 b->yy_buf_pos = &b->yy_ch_buf[0];
1485 b->yy_at_bol = 1;
1486 b->yy_buffer_status = YY_BUFFER_NEW;
1488 if ( b == YY_CURRENT_BUFFER )
1489 yy_load_buffer_state( );
1492 /** Pushes the new state onto the stack. The new state becomes
1493 * the current state. This function will allocate the stack
1494 * if necessary.
1495 * @param new_buffer The new state.
1498 void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
1500 if (new_buffer == NULL)
1501 return;
1503 yyensure_buffer_stack();
1505 /* This block is copied from yy_switch_to_buffer. */
1506 if ( YY_CURRENT_BUFFER )
1508 /* Flush out information for old buffer. */
1509 *(yy_c_buf_p) = (yy_hold_char);
1510 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1511 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1514 /* Only push if top exists. Otherwise, replace top. */
1515 if (YY_CURRENT_BUFFER)
1516 (yy_buffer_stack_top)++;
1517 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1519 /* copied from yy_switch_to_buffer. */
1520 yy_load_buffer_state( );
1521 (yy_did_buffer_switch_on_eof) = 1;
1524 /** Removes and deletes the top of the stack, if present.
1525 * The next element becomes the new top.
1528 void yypop_buffer_state (void)
1530 if (!YY_CURRENT_BUFFER)
1531 return;
1533 yy_delete_buffer(YY_CURRENT_BUFFER );
1534 YY_CURRENT_BUFFER_LVALUE = NULL;
1535 if ((yy_buffer_stack_top) > 0)
1536 --(yy_buffer_stack_top);
1538 if (YY_CURRENT_BUFFER) {
1539 yy_load_buffer_state( );
1540 (yy_did_buffer_switch_on_eof) = 1;
1544 /* Allocates the stack if it does not exist.
1545 * Guarantees space for at least one push.
1547 static void yyensure_buffer_stack (void)
1549 int num_to_alloc;
1551 if (!(yy_buffer_stack)) {
1553 /* First allocation is just for 2 elements, since we don't know if this
1554 * scanner will even need a stack. We use 2 instead of 1 to avoid an
1555 * immediate realloc on the next call.
1557 num_to_alloc = 1;
1558 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
1559 (num_to_alloc * sizeof(struct yy_buffer_state*)
1562 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
1564 (yy_buffer_stack_max) = num_to_alloc;
1565 (yy_buffer_stack_top) = 0;
1566 return;
1569 if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
1571 /* Increase the buffer to prepare for a possible push. */
1572 int grow_size = 8 /* arbitrary grow size */;
1574 num_to_alloc = (yy_buffer_stack_max) + grow_size;
1575 (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
1576 ((yy_buffer_stack),
1577 num_to_alloc * sizeof(struct yy_buffer_state*)
1580 /* zero only the new slots.*/
1581 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
1582 (yy_buffer_stack_max) = num_to_alloc;
1586 /** Setup the input buffer state to scan directly from a user-specified character buffer.
1587 * @param base the character buffer
1588 * @param size the size in bytes of the character buffer
1590 * @return the newly allocated buffer state object.
1592 YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
1594 YY_BUFFER_STATE b;
1596 if ( size < 2 ||
1597 base[size-2] != YY_END_OF_BUFFER_CHAR ||
1598 base[size-1] != YY_END_OF_BUFFER_CHAR )
1599 /* They forgot to leave room for the EOB's. */
1600 return 0;
1602 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1603 if ( ! b )
1604 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
1606 b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
1607 b->yy_buf_pos = b->yy_ch_buf = base;
1608 b->yy_is_our_buffer = 0;
1609 b->yy_input_file = 0;
1610 b->yy_n_chars = b->yy_buf_size;
1611 b->yy_is_interactive = 0;
1612 b->yy_at_bol = 1;
1613 b->yy_fill_buffer = 0;
1614 b->yy_buffer_status = YY_BUFFER_NEW;
1616 yy_switch_to_buffer(b );
1618 return b;
1621 /** Setup the input buffer state to scan a string. The next call to yylex() will
1622 * scan from a @e copy of @a str.
1623 * @param yystr a NUL-terminated string to scan
1625 * @return the newly allocated buffer state object.
1626 * @note If you want to scan bytes that may contain NUL values, then use
1627 * yy_scan_bytes() instead.
1629 YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
1632 return yy_scan_bytes(yystr,strlen(yystr) );
1635 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1636 * scan from a @e copy of @a bytes.
1637 * @param bytes the byte buffer to scan
1638 * @param len the number of bytes in the buffer pointed to by @a bytes.
1640 * @return the newly allocated buffer state object.
1642 YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
1644 YY_BUFFER_STATE b;
1645 char *buf;
1646 yy_size_t n;
1647 int i;
1649 /* Get memory for full buffer, including space for trailing EOB's. */
1650 n = _yybytes_len + 2;
1651 buf = (char *) yyalloc(n );
1652 if ( ! buf )
1653 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
1655 for ( i = 0; i < _yybytes_len; ++i )
1656 buf[i] = yybytes[i];
1658 buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
1660 b = yy_scan_buffer(buf,n );
1661 if ( ! b )
1662 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
1664 /* It's okay to grow etc. this buffer, and we should throw it
1665 * away when we're done.
1667 b->yy_is_our_buffer = 1;
1669 return b;
1672 #ifndef YY_EXIT_FAILURE
1673 #define YY_EXIT_FAILURE 2
1674 #endif
1676 static void yy_fatal_error (yyconst char* msg )
1678 (void) fprintf( stderr, "%s\n", msg );
1679 exit( YY_EXIT_FAILURE );
1682 /* Redefine yyless() so it works in section 3 code. */
1684 #undef yyless
1685 #define yyless(n) \
1686 do \
1688 /* Undo effects of setting up yytext. */ \
1689 int yyless_macro_arg = (n); \
1690 YY_LESS_LINENO(yyless_macro_arg);\
1691 yytext[yyleng] = (yy_hold_char); \
1692 (yy_c_buf_p) = yytext + yyless_macro_arg; \
1693 (yy_hold_char) = *(yy_c_buf_p); \
1694 *(yy_c_buf_p) = '\0'; \
1695 yyleng = yyless_macro_arg; \
1697 while ( 0 )
1699 /* Accessor methods (get/set functions) to struct members. */
1701 /** Get the current line number.
1704 int yyget_lineno (void)
1707 return yylineno;
1710 /** Get the input stream.
1713 FILE *yyget_in (void)
1715 return yyin;
1718 /** Get the output stream.
1721 FILE *yyget_out (void)
1723 return yyout;
1726 /** Get the length of the current token.
1729 int yyget_leng (void)
1731 return yyleng;
1734 /** Get the current token.
1738 char *yyget_text (void)
1740 return yytext;
1743 /** Set the current line number.
1744 * @param line_number
1747 void yyset_lineno (int line_number )
1750 yylineno = line_number;
1753 /** Set the input stream. This does not discard the current
1754 * input buffer.
1755 * @param in_str A readable stream.
1757 * @see yy_switch_to_buffer
1759 void yyset_in (FILE * in_str )
1761 yyin = in_str ;
1764 void yyset_out (FILE * out_str )
1766 yyout = out_str ;
1769 int yyget_debug (void)
1771 return yy_flex_debug;
1774 void yyset_debug (int bdebug )
1776 yy_flex_debug = bdebug ;
1779 static int yy_init_globals (void)
1781 /* Initialization is the same as for the non-reentrant scanner.
1782 * This function is called from yylex_destroy(), so don't allocate here.
1785 (yy_buffer_stack) = 0;
1786 (yy_buffer_stack_top) = 0;
1787 (yy_buffer_stack_max) = 0;
1788 (yy_c_buf_p) = (char *) 0;
1789 (yy_init) = 0;
1790 (yy_start) = 0;
1792 /* Defined in main.c */
1793 #ifdef YY_STDINIT
1794 yyin = stdin;
1795 yyout = stdout;
1796 #else
1797 yyin = (FILE *) 0;
1798 yyout = (FILE *) 0;
1799 #endif
1801 /* For future reference: Set errno on error, since we are called by
1802 * yylex_init()
1804 return 0;
1807 /* yylex_destroy is for both reentrant and non-reentrant scanners. */
1808 int yylex_destroy (void)
1811 /* Pop the buffer stack, destroying each element. */
1812 while(YY_CURRENT_BUFFER){
1813 yy_delete_buffer(YY_CURRENT_BUFFER );
1814 YY_CURRENT_BUFFER_LVALUE = NULL;
1815 yypop_buffer_state();
1818 /* Destroy the stack itself. */
1819 yyfree((yy_buffer_stack) );
1820 (yy_buffer_stack) = NULL;
1822 /* Reset the globals. This is important in a non-reentrant scanner so the next time
1823 * yylex() is called, initialization will occur. */
1824 yy_init_globals( );
1826 return 0;
1830 * Internal utility routines.
1833 #ifndef yytext_ptr
1834 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
1836 register int i;
1837 for ( i = 0; i < n; ++i )
1838 s1[i] = s2[i];
1840 #endif
1842 #ifdef YY_NEED_STRLEN
1843 static int yy_flex_strlen (yyconst char * s )
1845 register int n;
1846 for ( n = 0; s[n]; ++n )
1849 return n;
1851 #endif
1853 void *yyalloc (yy_size_t size )
1855 return (void *) malloc( size );
1858 void *yyrealloc (void * ptr, yy_size_t size )
1860 /* The cast to (char *) in the following accommodates both
1861 * implementations that use char* generic pointers, and those
1862 * that use void* generic pointers. It works with the latter
1863 * because both ANSI C and C++ allow castless assignment from
1864 * any pointer type to void*, and deal with argument conversions
1865 * as though doing an assignment.
1867 return (void *) realloc( (char *) ptr, size );
1870 void yyfree (void * ptr )
1872 free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
1875 #define YYTABLES_NAME "yytables"
1877 #line 105 "itbl-lex.l"
1881 #ifndef yywrap
1882 int
1883 yywrap ()
1885 return 1;
1887 #endif