blob: 1deb75dc173157dc07150d2a15c1bd76de1808ca [file] [log] [blame]
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001
David Hendricksa12eacc2013-01-15 16:09:08 -08002#line 3 "util/sconfig/lex.yy.c_shipped"
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00003
4#define YY_INT_ALIGNED short int
5
6/* A lexical scanner generated by flex */
7
8#define FLEX_SCANNER
9#define YY_FLEX_MAJOR_VERSION 2
10#define YY_FLEX_MINOR_VERSION 5
11#define YY_FLEX_SUBMINOR_VERSION 35
12#if YY_FLEX_SUBMINOR_VERSION > 0
13#define FLEX_BETA
14#endif
15
16/* First, we deal with platform-specific or compiler-specific issues. */
17
18/* begin standard C headers. */
19#include <stdio.h>
20#include <string.h>
21#include <errno.h>
22#include <stdlib.h>
23
24/* end standard C headers. */
25
26/* flex integer type definitions */
27
28#ifndef FLEXINT_H
29#define FLEXINT_H
30
31/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
32
33#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
34
35/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
Patrick Georgi8d313682010-05-05 13:12:42 +000036 * if you want the limit (max/min) macros for int types.
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000037 */
38#ifndef __STDC_LIMIT_MACROS
39#define __STDC_LIMIT_MACROS 1
40#endif
41
42#include <inttypes.h>
43typedef int8_t flex_int8_t;
44typedef uint8_t flex_uint8_t;
45typedef int16_t flex_int16_t;
46typedef uint16_t flex_uint16_t;
47typedef int32_t flex_int32_t;
48typedef uint32_t flex_uint32_t;
49#else
50typedef signed char flex_int8_t;
51typedef short int flex_int16_t;
52typedef int flex_int32_t;
Patrick Georgi8d313682010-05-05 13:12:42 +000053typedef unsigned char flex_uint8_t;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000054typedef unsigned short int flex_uint16_t;
55typedef unsigned int flex_uint32_t;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000056
57/* Limits of integral types. */
58#ifndef INT8_MIN
59#define INT8_MIN (-128)
60#endif
61#ifndef INT16_MIN
62#define INT16_MIN (-32767-1)
63#endif
64#ifndef INT32_MIN
65#define INT32_MIN (-2147483647-1)
66#endif
67#ifndef INT8_MAX
68#define INT8_MAX (127)
69#endif
70#ifndef INT16_MAX
71#define INT16_MAX (32767)
72#endif
73#ifndef INT32_MAX
74#define INT32_MAX (2147483647)
75#endif
76#ifndef UINT8_MAX
77#define UINT8_MAX (255U)
78#endif
79#ifndef UINT16_MAX
80#define UINT16_MAX (65535U)
81#endif
82#ifndef UINT32_MAX
83#define UINT32_MAX (4294967295U)
84#endif
85
Patrick Georgi8d313682010-05-05 13:12:42 +000086#endif /* ! C99 */
87
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000088#endif /* ! FLEXINT_H */
89
90#ifdef __cplusplus
91
92/* The "const" storage-class-modifier is valid. */
93#define YY_USE_CONST
94
95#else /* ! __cplusplus */
96
97/* C99 requires __STDC__ to be defined as 1. */
98#if defined (__STDC__)
99
100#define YY_USE_CONST
101
102#endif /* defined (__STDC__) */
103#endif /* ! __cplusplus */
104
105#ifdef YY_USE_CONST
106#define yyconst const
107#else
108#define yyconst
109#endif
110
111/* Returned upon end-of-file. */
112#define YY_NULL 0
113
114/* Promotes a possibly negative, possibly signed char to an unsigned
115 * integer for use as an array index. If the signed char is negative,
116 * we want to instead treat it as an 8-bit unsigned char, hence the
117 * double cast.
118 */
119#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
120
121/* Enter a start condition. This macro really ought to take a parameter,
122 * but we do it the disgusting crufty way forced on us by the ()-less
123 * definition of BEGIN.
124 */
125#define BEGIN (yy_start) = 1 + 2 *
126
127/* Translate the current start state into a value that can be later handed
128 * to BEGIN to return to the state. The YYSTATE alias is for lex
129 * compatibility.
130 */
131#define YY_START (((yy_start) - 1) / 2)
132#define YYSTATE YY_START
133
134/* Action number for EOF rule of a given start state. */
135#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
136
137/* Special action meaning "start processing a new file". */
138#define YY_NEW_FILE yyrestart(yyin )
139
140#define YY_END_OF_BUFFER_CHAR 0
141
142/* Size of default input buffer. */
143#ifndef YY_BUF_SIZE
Patrick Georgi8d313682010-05-05 13:12:42 +0000144#ifdef __ia64__
145/* On IA-64, the buffer size is 16k, not 8k.
146 * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
147 * Ditto for the __ia64__ case accordingly.
148 */
149#define YY_BUF_SIZE 32768
150#else
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000151#define YY_BUF_SIZE 16384
Patrick Georgi8d313682010-05-05 13:12:42 +0000152#endif /* __ia64__ */
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000153#endif
154
155/* The state buf must be large enough to hold one state per character in the main buffer.
156 */
157#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
158
159#ifndef YY_TYPEDEF_YY_BUFFER_STATE
160#define YY_TYPEDEF_YY_BUFFER_STATE
161typedef struct yy_buffer_state *YY_BUFFER_STATE;
162#endif
163
164extern int yyleng;
165
166extern FILE *yyin, *yyout;
167
168#define EOB_ACT_CONTINUE_SCAN 0
169#define EOB_ACT_END_OF_FILE 1
170#define EOB_ACT_LAST_MATCH 2
171
172 #define YY_LESS_LINENO(n)
Patrick Georgi8d313682010-05-05 13:12:42 +0000173
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000174/* Return all but the first "n" matched characters back to the input stream. */
175#define yyless(n) \
176 do \
177 { \
178 /* Undo effects of setting up yytext. */ \
179 int yyless_macro_arg = (n); \
180 YY_LESS_LINENO(yyless_macro_arg);\
181 *yy_cp = (yy_hold_char); \
182 YY_RESTORE_YY_MORE_OFFSET \
183 (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
184 YY_DO_BEFORE_ACTION; /* set up yytext again */ \
185 } \
186 while ( 0 )
187
188#define unput(c) yyunput( c, (yytext_ptr) )
189
190#ifndef YY_TYPEDEF_YY_SIZE_T
191#define YY_TYPEDEF_YY_SIZE_T
192typedef size_t yy_size_t;
193#endif
194
195#ifndef YY_STRUCT_YY_BUFFER_STATE
196#define YY_STRUCT_YY_BUFFER_STATE
197struct yy_buffer_state
198 {
199 FILE *yy_input_file;
200
201 char *yy_ch_buf; /* input buffer */
202 char *yy_buf_pos; /* current position in input buffer */
203
204 /* Size of input buffer in bytes, not including room for EOB
205 * characters.
206 */
207 yy_size_t yy_buf_size;
208
209 /* Number of characters read into yy_ch_buf, not including EOB
210 * characters.
211 */
212 int yy_n_chars;
213
214 /* Whether we "own" the buffer - i.e., we know we created it,
215 * and can realloc() it to grow it, and should free() it to
216 * delete it.
217 */
218 int yy_is_our_buffer;
219
220 /* Whether this is an "interactive" input source; if so, and
221 * if we're using stdio for input, then we want to use getc()
222 * instead of fread(), to make sure we stop fetching input after
223 * each newline.
224 */
225 int yy_is_interactive;
226
227 /* Whether we're considered to be at the beginning of a line.
228 * If so, '^' rules will be active on the next match, otherwise
229 * not.
230 */
231 int yy_at_bol;
232
233 int yy_bs_lineno; /**< The line count. */
234 int yy_bs_column; /**< The column count. */
Patrick Georgi8d313682010-05-05 13:12:42 +0000235
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000236 /* Whether to try to fill the input buffer when we reach the
237 * end of it.
238 */
239 int yy_fill_buffer;
240
241 int yy_buffer_status;
242
243#define YY_BUFFER_NEW 0
244#define YY_BUFFER_NORMAL 1
245 /* When an EOF's been seen but there's still some text to process
246 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
247 * shouldn't try reading from the input source any more. We might
248 * still have a bunch of tokens to match, though, because of
249 * possible backing-up.
250 *
251 * When we actually see the EOF, we change the status to "new"
252 * (via yyrestart()), so that the user can continue scanning by
253 * just pointing yyin at a new input file.
254 */
255#define YY_BUFFER_EOF_PENDING 2
256
257 };
258#endif /* !YY_STRUCT_YY_BUFFER_STATE */
259
260/* Stack of input buffers. */
261static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
262static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
263static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
264
265/* We provide macros for accessing buffer states in case in the
266 * future we want to put the buffer states in a more general
267 * "scanner state".
268 *
269 * Returns the top of the stack, or NULL.
270 */
271#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
272 ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
273 : NULL)
274
275/* Same as previous macro, but useful when we know that the buffer stack is not
276 * NULL or when we need an lvalue. For internal use only.
277 */
278#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
279
280/* yy_hold_char holds the character lost when yytext is formed. */
281static char yy_hold_char;
282static int yy_n_chars; /* number of characters read into yy_ch_buf */
283int yyleng;
284
285/* Points to current character in buffer. */
286static char *yy_c_buf_p = (char *) 0;
287static int yy_init = 0; /* whether we need to initialize */
288static int yy_start = 0; /* start state number */
289
290/* Flag which is used to allow yywrap()'s to do buffer switches
291 * instead of setting up a fresh yyin. A bit of a hack ...
292 */
293static int yy_did_buffer_switch_on_eof;
294
295void yyrestart (FILE *input_file );
296void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
297YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
298void yy_delete_buffer (YY_BUFFER_STATE b );
299void yy_flush_buffer (YY_BUFFER_STATE b );
300void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
301void yypop_buffer_state (void );
302
303static void yyensure_buffer_stack (void );
304static void yy_load_buffer_state (void );
305static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
306
307#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
308
309YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
310YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
311YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
312
313void *yyalloc (yy_size_t );
314void *yyrealloc (void *,yy_size_t );
315void yyfree (void * );
316
317#define yy_new_buffer yy_create_buffer
318
319#define yy_set_interactive(is_interactive) \
320 { \
321 if ( ! YY_CURRENT_BUFFER ){ \
322 yyensure_buffer_stack (); \
323 YY_CURRENT_BUFFER_LVALUE = \
324 yy_create_buffer(yyin,YY_BUF_SIZE ); \
325 } \
326 YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
327 }
328
329#define yy_set_bol(at_bol) \
330 { \
331 if ( ! YY_CURRENT_BUFFER ){\
332 yyensure_buffer_stack (); \
333 YY_CURRENT_BUFFER_LVALUE = \
334 yy_create_buffer(yyin,YY_BUF_SIZE ); \
335 } \
336 YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
337 }
338
339#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
340
341/* Begin user sect3 */
342
343typedef unsigned char YY_CHAR;
344
345FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
346
347typedef int yy_state_type;
348
349extern int yylineno;
350
351int yylineno = 1;
352
353extern char *yytext;
354#define yytext_ptr yytext
355
356static yy_state_type yy_get_previous_state (void );
357static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
358static int yy_get_next_buffer (void );
359static void yy_fatal_error (yyconst char msg[] );
360
361/* Done after the current pattern has been matched and before the
362 * corresponding action - sets up yytext.
363 */
364#define YY_DO_BEFORE_ACTION \
365 (yytext_ptr) = yy_bp; \
366 yyleng = (size_t) (yy_cp - yy_bp); \
367 (yy_hold_char) = *yy_cp; \
368 *yy_cp = '\0'; \
369 (yy_c_buf_p) = yy_cp;
370
Patrick Georgi2b108a42012-07-13 12:02:44 +0200371#define YY_NUM_RULES 30
372#define YY_END_OF_BUFFER 31
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000373/* This struct is not used in this scanner,
374 but its presence is necessary. */
375struct yy_trans_info
376 {
377 flex_int32_t yy_verify;
378 flex_int32_t yy_nxt;
379 };
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800380static yyconst flex_int16_t yy_accept[116] =
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000381 { 0,
Patrick Georgi2b108a42012-07-13 12:02:44 +0200382 0, 0, 31, 29, 1, 3, 29, 29, 29, 25,
383 25, 23, 26, 29, 26, 26, 26, 29, 29, 29,
384 29, 29, 29, 29, 1, 3, 29, 0, 29, 0,
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800385 2, 25, 26, 29, 29, 29, 29, 26, 29, 29,
386 29, 29, 29, 18, 29, 29, 29, 7, 29, 29,
387 29, 29, 28, 28, 24, 29, 29, 29, 29, 29,
388 17, 22, 12, 29, 29, 16, 29, 8, 9, 11,
389 29, 29, 27, 4, 29, 29, 29, 29, 29, 29,
390 29, 29, 29, 29, 29, 29, 29, 13, 29, 29,
391 29, 5, 15, 29, 10, 29, 29, 29, 20, 29,
Sven Schnelle750edfd2011-03-01 21:43:57 +0000392
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800393 29, 29, 29, 29, 6, 29, 29, 29, 29, 29,
394 19, 29, 14, 21, 0
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000395 } ;
396
397static yyconst flex_int32_t yy_ec[256] =
398 { 0,
399 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
400 1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
401 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
402 1, 2, 1, 5, 6, 1, 1, 1, 1, 1,
403 1, 1, 1, 1, 1, 7, 1, 8, 7, 9,
404 7, 7, 7, 7, 7, 7, 7, 1, 1, 1,
Patrick Georgi2b108a42012-07-13 12:02:44 +0200405 10, 1, 1, 1, 11, 11, 11, 11, 12, 12,
406 1, 1, 13, 1, 1, 1, 1, 14, 1, 1,
407 1, 1, 1, 15, 1, 1, 1, 1, 1, 1,
408 1, 1, 1, 1, 16, 1, 17, 18, 19, 20,
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000409
Patrick Georgi2b108a42012-07-13 12:02:44 +0200410 21, 22, 23, 24, 25, 1, 1, 26, 27, 28,
411 29, 30, 31, 32, 33, 34, 35, 36, 1, 37,
412 38, 1, 1, 1, 1, 1, 1, 1, 1, 1,
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000413 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
414 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
415 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
416 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
417 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
418 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
419 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
420
421 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
422 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
423 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
424 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
425 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
426 1, 1, 1, 1, 1
427 } ;
428
Patrick Georgi2b108a42012-07-13 12:02:44 +0200429static yyconst flex_int32_t yy_meta[39] =
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000430 { 0,
431 1, 2, 2, 1, 1, 1, 1, 1, 1, 1,
432 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
433 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
Patrick Georgi2b108a42012-07-13 12:02:44 +0200434 1, 1, 1, 1, 1, 1, 1, 1
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000435 } ;
436
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800437static yyconst flex_int16_t yy_base[121] =
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000438 { 0,
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800439 0, 0, 181, 0, 178, 182, 176, 37, 41, 38,
440 141, 0, 44, 163, 54, 78, 60, 45, 159, 42,
441 47, 154, 139, 0, 171, 182, 77, 167, 69, 168,
442 182, 0, 82, 104, 155, 144, 133, 93, 140, 135,
443 145, 145, 139, 145, 130, 130, 137, 0, 133, 127,
444 133, 137, 0, 182, 0, 143, 123, 136, 126, 133,
445 0, 0, 0, 128, 118, 0, 122, 0, 0, 0,
446 121, 112, 0, 0, 125, 124, 117, 109, 115, 120,
447 105, 90, 101, 99, 91, 93, 98, 0, 80, 76,
448 73, 0, 0, 72, 89, 83, 69, 65, 0, 72,
Patrick Georgi8d313682010-05-05 13:12:42 +0000449
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800450 64, 74, 60, 61, 0, 65, 62, 50, 51, 33,
451 0, 28, 0, 0, 182, 40, 129, 131, 133, 135
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000452 } ;
453
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800454static yyconst flex_int16_t yy_def[121] =
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000455 { 0,
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800456 115, 1, 115, 116, 115, 115, 116, 117, 118, 116,
457 10, 116, 10, 116, 10, 10, 10, 116, 116, 116,
458 116, 116, 116, 116, 115, 115, 117, 119, 118, 120,
459 115, 10, 10, 10, 116, 116, 116, 10, 116, 116,
460 116, 116, 116, 116, 116, 116, 116, 116, 116, 116,
461 116, 116, 116, 115, 34, 116, 116, 116, 116, 116,
462 116, 116, 116, 116, 116, 116, 116, 116, 116, 116,
463 116, 116, 116, 116, 116, 116, 116, 116, 116, 116,
464 116, 116, 116, 116, 116, 116, 116, 116, 116, 116,
465 116, 116, 116, 116, 116, 116, 116, 116, 116, 116,
Patrick Georgi8d313682010-05-05 13:12:42 +0000466
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800467 116, 116, 116, 116, 116, 116, 116, 116, 116, 116,
468 116, 116, 116, 116, 0, 115, 115, 115, 115, 115
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000469 } ;
470
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800471static yyconst flex_int16_t yy_nxt[221] =
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000472 { 0,
473 4, 5, 6, 7, 8, 9, 10, 11, 10, 12,
Patrick Georgi2b108a42012-07-13 12:02:44 +0200474 13, 13, 14, 4, 4, 4, 13, 13, 15, 16,
475 17, 13, 4, 4, 18, 19, 4, 4, 20, 21,
476 4, 22, 23, 4, 4, 4, 4, 4, 28, 28,
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800477 24, 24, 30, 31, 32, 32, 32, 114, 33, 33,
478 33, 33, 33, 42, 33, 33, 33, 33, 33, 33,
479 33, 33, 33, 47, 113, 49, 33, 33, 33, 48,
480 30, 31, 43, 44, 50, 112, 45, 36, 28, 28,
481 111, 53, 110, 37, 33, 33, 33, 41, 33, 33,
482 33, 109, 108, 107, 106, 105, 104, 103, 38, 33,
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000483
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800484 33, 33, 102, 101, 100, 99, 39, 98, 97, 40,
485 55, 55, 55, 96, 55, 55, 95, 94, 93, 92,
486 55, 55, 55, 55, 55, 55, 91, 90, 59, 27,
487 27, 29, 29, 28, 28, 30, 30, 89, 88, 87,
488 86, 85, 84, 83, 82, 81, 80, 79, 78, 77,
489 76, 75, 74, 73, 72, 71, 70, 69, 68, 67,
490 66, 65, 64, 63, 62, 61, 60, 58, 57, 56,
491 31, 54, 25, 52, 51, 46, 35, 34, 26, 25,
492 115, 3, 115, 115, 115, 115, 115, 115, 115, 115,
493 115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
Sven Schnelle750edfd2011-03-01 21:43:57 +0000494
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800495 115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
496 115, 115, 115, 115, 115, 115, 115, 115, 115, 115
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000497 } ;
498
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800499static yyconst flex_int16_t yy_chk[221] =
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000500 { 0,
501 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
502 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
503 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
Patrick Georgi2b108a42012-07-13 12:02:44 +0200504 1, 1, 1, 1, 1, 1, 1, 1, 8, 8,
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800505 116, 8, 9, 9, 10, 10, 10, 112, 10, 10,
506 13, 13, 13, 18, 10, 10, 10, 10, 10, 10,
507 15, 15, 15, 20, 110, 21, 17, 17, 17, 20,
508 29, 29, 18, 18, 21, 109, 18, 15, 27, 27,
509 108, 27, 107, 15, 16, 16, 16, 17, 33, 33,
510 33, 106, 104, 103, 102, 101, 100, 98, 16, 38,
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000511
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800512 38, 38, 97, 96, 95, 94, 16, 91, 90, 16,
513 34, 34, 34, 89, 34, 34, 87, 86, 85, 84,
514 34, 34, 34, 34, 34, 34, 83, 82, 38, 117,
515 117, 118, 118, 119, 119, 120, 120, 81, 80, 79,
516 78, 77, 76, 75, 72, 71, 67, 65, 64, 60,
517 59, 58, 57, 56, 52, 51, 50, 49, 47, 46,
518 45, 44, 43, 42, 41, 40, 39, 37, 36, 35,
519 30, 28, 25, 23, 22, 19, 14, 11, 7, 5,
520 3, 115, 115, 115, 115, 115, 115, 115, 115, 115,
521 115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
Sven Schnelle750edfd2011-03-01 21:43:57 +0000522
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800523 115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
524 115, 115, 115, 115, 115, 115, 115, 115, 115, 115
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000525 } ;
526
527static yy_state_type yy_last_accepting_state;
528static char *yy_last_accepting_cpos;
529
530extern int yy_flex_debug;
531int yy_flex_debug = 0;
532
533/* The intent behind this definition is that it'll catch
534 * any uses of REJECT which flex missed.
535 */
536#define REJECT reject_used_but_not_detected
537#define yymore() yymore_used_but_not_detected
538#define YY_MORE_ADJ 0
539#define YY_RESTORE_YY_MORE_OFFSET
540char *yytext;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000541/*
542 * sconfig, coreboot device tree compiler
543 *
544 * Copyright (C) 2010 coresystems GmbH
545 * written by Patrick Georgi <patrick.georgi@coresystems.de>
546 *
547 * This program is free software; you can redistribute it and/or modify
548 * it under the terms of the GNU General Public License as published by
549 * the Free Software Foundation; version 2 of the License.
550 *
551 * This program is distributed in the hope that it will be useful,
552 * but WITHOUT ANY WARRANTY; without even the implied warranty of
553 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
554 * GNU General Public License for more details.
555 *
556 * You should have received a copy of the GNU General Public License
557 * along with this program; if not, write to the Free Software
558 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
559 */
560
561#include "sconfig.tab.h"
562
563int linenum = 0;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000564
565#define INITIAL 0
566
567#ifndef YY_NO_UNISTD_H
568/* Special case for "unistd.h", since it is non-ANSI. We include it way
569 * down here because we want the user's section 1 to have been scanned first.
570 * The user has a chance to override it with an option.
571 */
572#include <unistd.h>
573#endif
574
575#ifndef YY_EXTRA_TYPE
576#define YY_EXTRA_TYPE void *
577#endif
578
579static int yy_init_globals (void );
580
581/* Accessor methods to globals.
582 These are made visible to non-reentrant scanners for convenience. */
583
584int yylex_destroy (void );
585
586int yyget_debug (void );
587
588void yyset_debug (int debug_flag );
589
590YY_EXTRA_TYPE yyget_extra (void );
591
592void yyset_extra (YY_EXTRA_TYPE user_defined );
593
594FILE *yyget_in (void );
595
596void yyset_in (FILE * in_str );
597
598FILE *yyget_out (void );
599
600void yyset_out (FILE * out_str );
601
602int yyget_leng (void );
603
604char *yyget_text (void );
605
606int yyget_lineno (void );
607
608void yyset_lineno (int line_number );
609
610/* Macros after this point can all be overridden by user definitions in
611 * section 1.
612 */
613
614#ifndef YY_SKIP_YYWRAP
615#ifdef __cplusplus
616extern "C" int yywrap (void );
617#else
618extern int yywrap (void );
619#endif
620#endif
621
622 static void yyunput (int c,char *buf_ptr );
Patrick Georgi8d313682010-05-05 13:12:42 +0000623
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000624#ifndef yytext_ptr
625static void yy_flex_strncpy (char *,yyconst char *,int );
626#endif
627
628#ifdef YY_NEED_STRLEN
629static int yy_flex_strlen (yyconst char * );
630#endif
631
632#ifndef YY_NO_INPUT
633
634#ifdef __cplusplus
635static int yyinput (void );
636#else
637static int input (void );
638#endif
639
640#endif
641
642/* Amount of stuff to slurp up with each read. */
643#ifndef YY_READ_BUF_SIZE
Patrick Georgi8d313682010-05-05 13:12:42 +0000644#ifdef __ia64__
645/* On IA-64, the buffer size is 16k, not 8k */
646#define YY_READ_BUF_SIZE 16384
647#else
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000648#define YY_READ_BUF_SIZE 8192
Patrick Georgi8d313682010-05-05 13:12:42 +0000649#endif /* __ia64__ */
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000650#endif
651
652/* Copy whatever the last rule matched to the standard output. */
653#ifndef ECHO
654/* This used to be an fputs(), but since the string might contain NUL's,
655 * we now use fwrite().
656 */
Patrick Georgi8d313682010-05-05 13:12:42 +0000657#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000658#endif
659
660/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
661 * is returned in "result".
662 */
663#ifndef YY_INPUT
664#define YY_INPUT(buf,result,max_size) \
665 if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
666 { \
667 int c = '*'; \
Patrick Georgi8d313682010-05-05 13:12:42 +0000668 size_t n; \
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000669 for ( n = 0; n < max_size && \
670 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
671 buf[n] = (char) c; \
672 if ( c == '\n' ) \
673 buf[n++] = (char) c; \
674 if ( c == EOF && ferror( yyin ) ) \
675 YY_FATAL_ERROR( "input in flex scanner failed" ); \
676 result = n; \
677 } \
678 else \
679 { \
680 errno=0; \
681 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
682 { \
683 if( errno != EINTR) \
684 { \
685 YY_FATAL_ERROR( "input in flex scanner failed" ); \
686 break; \
687 } \
688 errno=0; \
689 clearerr(yyin); \
690 } \
691 }\
692\
693
694#endif
695
696/* No semi-colon after return; correct usage is to write "yyterminate();" -
697 * we don't want an extra ';' after the "return" because that will cause
698 * some compilers to complain about unreachable statements.
699 */
700#ifndef yyterminate
701#define yyterminate() return YY_NULL
702#endif
703
704/* Number of entries by which start-condition stack grows. */
705#ifndef YY_START_STACK_INCR
706#define YY_START_STACK_INCR 25
707#endif
708
709/* Report a fatal error. */
710#ifndef YY_FATAL_ERROR
711#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
712#endif
713
714/* end tables serialization structures and prototypes */
715
716/* Default declaration of generated scanner - a define so the user can
717 * easily add parameters.
718 */
719#ifndef YY_DECL
720#define YY_DECL_IS_OURS 1
721
722extern int yylex (void);
723
724#define YY_DECL int yylex (void)
725#endif /* !YY_DECL */
726
727/* Code executed at the beginning of each rule, after yytext and yyleng
728 * have been set up.
729 */
730#ifndef YY_USER_ACTION
731#define YY_USER_ACTION
732#endif
733
734/* Code executed at the end of each rule. */
735#ifndef YY_BREAK
736#define YY_BREAK break;
737#endif
738
739#define YY_RULE_SETUP \
740 YY_USER_ACTION
741
742/** The main scanner function which does all the work.
743 */
744YY_DECL
745{
746 register yy_state_type yy_current_state;
747 register char *yy_cp, *yy_bp;
748 register int yy_act;
Patrick Georgi8d313682010-05-05 13:12:42 +0000749
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000750 if ( !(yy_init) )
751 {
752 (yy_init) = 1;
753
754#ifdef YY_USER_INIT
755 YY_USER_INIT;
756#endif
757
758 if ( ! (yy_start) )
759 (yy_start) = 1; /* first start state */
760
761 if ( ! yyin )
762 yyin = stdin;
763
764 if ( ! yyout )
765 yyout = stdout;
766
767 if ( ! YY_CURRENT_BUFFER ) {
768 yyensure_buffer_stack ();
769 YY_CURRENT_BUFFER_LVALUE =
770 yy_create_buffer(yyin,YY_BUF_SIZE );
771 }
772
773 yy_load_buffer_state( );
774 }
775
776 while ( 1 ) /* loops until end-of-file is reached */
777 {
778 yy_cp = (yy_c_buf_p);
779
780 /* Support of yytext. */
781 *yy_cp = (yy_hold_char);
782
783 /* yy_bp points to the position in yy_ch_buf of the start of
784 * the current run.
785 */
786 yy_bp = yy_cp;
787
788 yy_current_state = (yy_start);
789yy_match:
790 do
791 {
792 register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
793 if ( yy_accept[yy_current_state] )
794 {
795 (yy_last_accepting_state) = yy_current_state;
796 (yy_last_accepting_cpos) = yy_cp;
797 }
798 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
799 {
800 yy_current_state = (int) yy_def[yy_current_state];
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800801 if ( yy_current_state >= 116 )
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000802 yy_c = yy_meta[(unsigned int) yy_c];
803 }
804 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
805 ++yy_cp;
806 }
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800807 while ( yy_base[yy_current_state] != 182 );
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000808
809yy_find_action:
810 yy_act = yy_accept[yy_current_state];
811 if ( yy_act == 0 )
812 { /* have to back up */
813 yy_cp = (yy_last_accepting_cpos);
814 yy_current_state = (yy_last_accepting_state);
815 yy_act = yy_accept[yy_current_state];
816 }
817
818 YY_DO_BEFORE_ACTION;
819
820do_action: /* This label is used only to access EOF actions. */
821
822 switch ( yy_act )
823 { /* beginning of action switch */
824 case 0: /* must back up */
825 /* undo the effects of YY_DO_BEFORE_ACTION */
826 *yy_cp = (yy_hold_char);
827 yy_cp = (yy_last_accepting_cpos);
828 yy_current_state = (yy_last_accepting_state);
829 goto yy_find_action;
830
831case 1:
832YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000833{}
834 YY_BREAK
835case 2:
836/* rule 2 can match eol */
837YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000838{linenum++;}
839 YY_BREAK
840case 3:
841/* rule 3 can match eol */
842YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000843{linenum++;}
844 YY_BREAK
845case 4:
846YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000847{return(CHIP);}
848 YY_BREAK
849case 5:
850YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000851{return(DEVICE);}
852 YY_BREAK
853case 6:
854YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000855{return(REGISTER);}
856 YY_BREAK
857case 7:
858YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000859{yylval.number=1; return(BOOL);}
860 YY_BREAK
861case 8:
862YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000863{yylval.number=0; return(BOOL);}
864 YY_BREAK
865case 9:
866YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000867{yylval.number=PCI; return(BUS);}
868 YY_BREAK
869case 10:
870YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200871{yylval.number=IOAPIC; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000872 YY_BREAK
873case 11:
874YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200875{yylval.number=PNP; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000876 YY_BREAK
877case 12:
878YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200879{yylval.number=I2C; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000880 YY_BREAK
881case 13:
882YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200883{yylval.number=APIC; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000884 YY_BREAK
885case 14:
886YY_RULE_SETUP
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800887{yylval.number=CPU_CLUSTER; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000888 YY_BREAK
889case 15:
890YY_RULE_SETUP
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800891{yylval.number=DOMAIN; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000892 YY_BREAK
893case 16:
894YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200895{yylval.number=IRQ; return(RESOURCE);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000896 YY_BREAK
897case 17:
898YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200899{yylval.number=DRQ; return(RESOURCE);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000900 YY_BREAK
901case 18:
902YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200903{yylval.number=IO; return(RESOURCE);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000904 YY_BREAK
905case 19:
906YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200907{return(IOAPIC_IRQ);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000908 YY_BREAK
909case 20:
910YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200911{return(INHERIT);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000912 YY_BREAK
913case 21:
914YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200915{return(SUBSYSTEMID);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000916 YY_BREAK
917case 22:
918YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200919{return(END);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000920 YY_BREAK
921case 23:
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000922YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200923{return(EQUALS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000924 YY_BREAK
925case 24:
926YY_RULE_SETUP
Sven Schnelle750edfd2011-03-01 21:43:57 +0000927{yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000928 YY_BREAK
929case 25:
Sven Schnelle750edfd2011-03-01 21:43:57 +0000930YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200931{yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
Sven Schnelle750edfd2011-03-01 21:43:57 +0000932 YY_BREAK
933case 26:
934YY_RULE_SETUP
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200935{yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
Sven Schnelle750edfd2011-03-01 21:43:57 +0000936 YY_BREAK
937case 27:
Patrick Georgi2b108a42012-07-13 12:02:44 +0200938YY_RULE_SETUP
939{yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(PCIINT);}
940 YY_BREAK
941case 28:
942/* rule 28 can match eol */
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200943YY_RULE_SETUP
944{yylval.string = malloc(yyleng-1); strncpy(yylval.string, yytext+1, yyleng-2); yylval.string[yyleng-2]='\0'; return(STRING);}
945 YY_BREAK
Patrick Georgi2b108a42012-07-13 12:02:44 +0200946case 29:
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200947YY_RULE_SETUP
948{yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(STRING);}
949 YY_BREAK
Patrick Georgi2b108a42012-07-13 12:02:44 +0200950case 30:
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000951YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000952ECHO;
953 YY_BREAK
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000954case YY_STATE_EOF(INITIAL):
955 yyterminate();
956
957 case YY_END_OF_BUFFER:
958 {
959 /* Amount of text matched not including the EOB char. */
960 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
961
962 /* Undo the effects of YY_DO_BEFORE_ACTION. */
963 *yy_cp = (yy_hold_char);
964 YY_RESTORE_YY_MORE_OFFSET
965
966 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
967 {
968 /* We're scanning a new file or input source. It's
969 * possible that this happened because the user
970 * just pointed yyin at a new source and called
971 * yylex(). If so, then we have to assure
972 * consistency between YY_CURRENT_BUFFER and our
973 * globals. Here is the right place to do so, because
974 * this is the first action (other than possibly a
975 * back-up) that will match for the new input source.
976 */
977 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
978 YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
979 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
980 }
981
982 /* Note that here we test for yy_c_buf_p "<=" to the position
983 * of the first EOB in the buffer, since yy_c_buf_p will
984 * already have been incremented past the NUL character
985 * (since all states make transitions on EOB to the
986 * end-of-buffer state). Contrast this with the test
987 * in input().
988 */
989 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
990 { /* This was really a NUL. */
991 yy_state_type yy_next_state;
992
993 (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
994
995 yy_current_state = yy_get_previous_state( );
996
997 /* Okay, we're now positioned to make the NUL
998 * transition. We couldn't have
999 * yy_get_previous_state() go ahead and do it
1000 * for us because it doesn't know how to deal
1001 * with the possibility of jamming (and we don't
1002 * want to build jamming into it because then it
1003 * will run more slowly).
1004 */
1005
1006 yy_next_state = yy_try_NUL_trans( yy_current_state );
1007
1008 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1009
1010 if ( yy_next_state )
1011 {
1012 /* Consume the NUL. */
1013 yy_cp = ++(yy_c_buf_p);
1014 yy_current_state = yy_next_state;
1015 goto yy_match;
1016 }
1017
1018 else
1019 {
1020 yy_cp = (yy_c_buf_p);
1021 goto yy_find_action;
1022 }
1023 }
1024
1025 else switch ( yy_get_next_buffer( ) )
1026 {
1027 case EOB_ACT_END_OF_FILE:
1028 {
1029 (yy_did_buffer_switch_on_eof) = 0;
1030
1031 if ( yywrap( ) )
1032 {
1033 /* Note: because we've taken care in
1034 * yy_get_next_buffer() to have set up
1035 * yytext, we can now set up
1036 * yy_c_buf_p so that if some total
1037 * hoser (like flex itself) wants to
1038 * call the scanner after we return the
1039 * YY_NULL, it'll still work - another
1040 * YY_NULL will get returned.
1041 */
1042 (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
1043
1044 yy_act = YY_STATE_EOF(YY_START);
1045 goto do_action;
1046 }
1047
1048 else
1049 {
1050 if ( ! (yy_did_buffer_switch_on_eof) )
1051 YY_NEW_FILE;
1052 }
1053 break;
1054 }
1055
1056 case EOB_ACT_CONTINUE_SCAN:
1057 (yy_c_buf_p) =
1058 (yytext_ptr) + yy_amount_of_matched_text;
1059
1060 yy_current_state = yy_get_previous_state( );
1061
1062 yy_cp = (yy_c_buf_p);
1063 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1064 goto yy_match;
1065
1066 case EOB_ACT_LAST_MATCH:
1067 (yy_c_buf_p) =
1068 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
1069
1070 yy_current_state = yy_get_previous_state( );
1071
1072 yy_cp = (yy_c_buf_p);
1073 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1074 goto yy_find_action;
1075 }
1076 break;
1077 }
1078
1079 default:
1080 YY_FATAL_ERROR(
1081 "fatal flex scanner internal error--no action found" );
1082 } /* end of action switch */
1083 } /* end of scanning one token */
1084} /* end of yylex */
1085
1086/* yy_get_next_buffer - try to read in a new buffer
1087 *
1088 * Returns a code representing an action:
1089 * EOB_ACT_LAST_MATCH -
1090 * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
1091 * EOB_ACT_END_OF_FILE - end of file
1092 */
1093static int yy_get_next_buffer (void)
1094{
1095 register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
1096 register char *source = (yytext_ptr);
1097 register int number_to_move, i;
1098 int ret_val;
1099
1100 if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
1101 YY_FATAL_ERROR(
1102 "fatal flex scanner internal error--end of buffer missed" );
1103
1104 if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
1105 { /* Don't try to fill the buffer, so this is an EOF. */
1106 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
1107 {
1108 /* We matched a single character, the EOB, so
1109 * treat this as a final EOF.
1110 */
1111 return EOB_ACT_END_OF_FILE;
1112 }
1113
1114 else
1115 {
1116 /* We matched some text prior to the EOB, first
1117 * process it.
1118 */
1119 return EOB_ACT_LAST_MATCH;
1120 }
1121 }
1122
1123 /* Try to read more data. */
1124
1125 /* First move last chars to start of buffer. */
1126 number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
1127
1128 for ( i = 0; i < number_to_move; ++i )
1129 *(dest++) = *(source++);
1130
1131 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
1132 /* don't do the read, it's not guaranteed to return an EOF,
1133 * just force an EOF
1134 */
1135 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
1136
1137 else
1138 {
1139 int num_to_read =
1140 YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
1141
1142 while ( num_to_read <= 0 )
1143 { /* Not enough room in the buffer - grow it. */
1144
1145 /* just a shorter name for the current buffer */
1146 YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
1147
1148 int yy_c_buf_p_offset =
1149 (int) ((yy_c_buf_p) - b->yy_ch_buf);
1150
1151 if ( b->yy_is_our_buffer )
1152 {
1153 int new_size = b->yy_buf_size * 2;
1154
1155 if ( new_size <= 0 )
1156 b->yy_buf_size += b->yy_buf_size / 8;
1157 else
1158 b->yy_buf_size *= 2;
1159
1160 b->yy_ch_buf = (char *)
1161 /* Include room in for 2 EOB chars. */
1162 yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
1163 }
1164 else
1165 /* Can't grow it, we don't own it. */
1166 b->yy_ch_buf = 0;
1167
1168 if ( ! b->yy_ch_buf )
1169 YY_FATAL_ERROR(
1170 "fatal error - scanner input buffer overflow" );
1171
1172 (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
1173
1174 num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
1175 number_to_move - 1;
1176
1177 }
1178
1179 if ( num_to_read > YY_READ_BUF_SIZE )
1180 num_to_read = YY_READ_BUF_SIZE;
1181
1182 /* Read in more data. */
1183 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
1184 (yy_n_chars), (size_t) num_to_read );
1185
1186 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1187 }
1188
1189 if ( (yy_n_chars) == 0 )
1190 {
1191 if ( number_to_move == YY_MORE_ADJ )
1192 {
1193 ret_val = EOB_ACT_END_OF_FILE;
1194 yyrestart(yyin );
1195 }
1196
1197 else
1198 {
1199 ret_val = EOB_ACT_LAST_MATCH;
1200 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
1201 YY_BUFFER_EOF_PENDING;
1202 }
1203 }
1204
1205 else
1206 ret_val = EOB_ACT_CONTINUE_SCAN;
1207
1208 if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
1209 /* Extend the array by 50%, plus the number we really need. */
1210 yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
1211 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
1212 if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1213 YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
1214 }
1215
1216 (yy_n_chars) += number_to_move;
1217 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
1218 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
1219
1220 (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
1221
1222 return ret_val;
1223}
1224
1225/* yy_get_previous_state - get the state just before the EOB char was reached */
1226
1227 static yy_state_type yy_get_previous_state (void)
1228{
1229 register yy_state_type yy_current_state;
1230 register char *yy_cp;
Patrick Georgi8d313682010-05-05 13:12:42 +00001231
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001232 yy_current_state = (yy_start);
1233
1234 for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
1235 {
1236 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
1237 if ( yy_accept[yy_current_state] )
1238 {
1239 (yy_last_accepting_state) = yy_current_state;
1240 (yy_last_accepting_cpos) = yy_cp;
1241 }
1242 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1243 {
1244 yy_current_state = (int) yy_def[yy_current_state];
Stefan Reinauer0aa37c42013-02-12 15:20:54 -08001245 if ( yy_current_state >= 116 )
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001246 yy_c = yy_meta[(unsigned int) yy_c];
1247 }
1248 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1249 }
1250
1251 return yy_current_state;
1252}
1253
1254/* yy_try_NUL_trans - try to make a transition on the NUL character
1255 *
1256 * synopsis
1257 * next_state = yy_try_NUL_trans( current_state );
1258 */
1259 static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
1260{
1261 register int yy_is_jam;
1262 register char *yy_cp = (yy_c_buf_p);
1263
1264 register YY_CHAR yy_c = 1;
1265 if ( yy_accept[yy_current_state] )
1266 {
1267 (yy_last_accepting_state) = yy_current_state;
1268 (yy_last_accepting_cpos) = yy_cp;
1269 }
1270 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1271 {
1272 yy_current_state = (int) yy_def[yy_current_state];
Stefan Reinauer0aa37c42013-02-12 15:20:54 -08001273 if ( yy_current_state >= 116 )
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001274 yy_c = yy_meta[(unsigned int) yy_c];
1275 }
1276 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
Stefan Reinauer0aa37c42013-02-12 15:20:54 -08001277 yy_is_jam = (yy_current_state == 115);
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001278
1279 return yy_is_jam ? 0 : yy_current_state;
1280}
1281
1282 static void yyunput (int c, register char * yy_bp )
1283{
1284 register char *yy_cp;
Patrick Georgi8d313682010-05-05 13:12:42 +00001285
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001286 yy_cp = (yy_c_buf_p);
1287
1288 /* undo effects of setting up yytext */
1289 *yy_cp = (yy_hold_char);
1290
1291 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1292 { /* need to shift things up to make room */
1293 /* +2 for EOB chars. */
1294 register int number_to_move = (yy_n_chars) + 2;
1295 register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
1296 YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
1297 register char *source =
1298 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
1299
1300 while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1301 *--dest = *--source;
1302
1303 yy_cp += (int) (dest - source);
1304 yy_bp += (int) (dest - source);
1305 YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
1306 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
1307
1308 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1309 YY_FATAL_ERROR( "flex scanner push-back overflow" );
1310 }
1311
1312 *--yy_cp = (char) c;
1313
1314 (yytext_ptr) = yy_bp;
1315 (yy_hold_char) = *yy_cp;
1316 (yy_c_buf_p) = yy_cp;
1317}
1318
1319#ifndef YY_NO_INPUT
1320#ifdef __cplusplus
1321 static int yyinput (void)
1322#else
1323 static int input (void)
1324#endif
1325
1326{
1327 int c;
Patrick Georgi8d313682010-05-05 13:12:42 +00001328
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001329 *(yy_c_buf_p) = (yy_hold_char);
1330
1331 if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
1332 {
1333 /* yy_c_buf_p now points to the character we want to return.
1334 * If this occurs *before* the EOB characters, then it's a
1335 * valid NUL; if not, then we've hit the end of the buffer.
1336 */
1337 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1338 /* This was really a NUL. */
1339 *(yy_c_buf_p) = '\0';
1340
1341 else
1342 { /* need more input */
1343 int offset = (yy_c_buf_p) - (yytext_ptr);
1344 ++(yy_c_buf_p);
1345
1346 switch ( yy_get_next_buffer( ) )
1347 {
1348 case EOB_ACT_LAST_MATCH:
1349 /* This happens because yy_g_n_b()
1350 * sees that we've accumulated a
1351 * token and flags that we need to
1352 * try matching the token before
1353 * proceeding. But for input(),
1354 * there's no matching to consider.
1355 * So convert the EOB_ACT_LAST_MATCH
1356 * to EOB_ACT_END_OF_FILE.
1357 */
1358
1359 /* Reset buffer status. */
1360 yyrestart(yyin );
1361
1362 /*FALLTHROUGH*/
1363
1364 case EOB_ACT_END_OF_FILE:
1365 {
1366 if ( yywrap( ) )
1367 return EOF;
1368
1369 if ( ! (yy_did_buffer_switch_on_eof) )
1370 YY_NEW_FILE;
1371#ifdef __cplusplus
1372 return yyinput();
1373#else
1374 return input();
1375#endif
1376 }
1377
1378 case EOB_ACT_CONTINUE_SCAN:
1379 (yy_c_buf_p) = (yytext_ptr) + offset;
1380 break;
1381 }
1382 }
1383 }
1384
1385 c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
1386 *(yy_c_buf_p) = '\0'; /* preserve yytext */
1387 (yy_hold_char) = *++(yy_c_buf_p);
1388
1389 return c;
1390}
1391#endif /* ifndef YY_NO_INPUT */
1392
1393/** Immediately switch to a different input stream.
1394 * @param input_file A readable stream.
Patrick Georgi8d313682010-05-05 13:12:42 +00001395 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001396 * @note This function does not reset the start condition to @c INITIAL .
1397 */
1398 void yyrestart (FILE * input_file )
1399{
Patrick Georgi8d313682010-05-05 13:12:42 +00001400
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001401 if ( ! YY_CURRENT_BUFFER ){
1402 yyensure_buffer_stack ();
1403 YY_CURRENT_BUFFER_LVALUE =
1404 yy_create_buffer(yyin,YY_BUF_SIZE );
1405 }
1406
1407 yy_init_buffer(YY_CURRENT_BUFFER,input_file );
1408 yy_load_buffer_state( );
1409}
1410
1411/** Switch to a different input buffer.
1412 * @param new_buffer The new input buffer.
Patrick Georgi8d313682010-05-05 13:12:42 +00001413 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001414 */
1415 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
1416{
Patrick Georgi8d313682010-05-05 13:12:42 +00001417
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001418 /* TODO. We should be able to replace this entire function body
1419 * with
1420 * yypop_buffer_state();
1421 * yypush_buffer_state(new_buffer);
1422 */
1423 yyensure_buffer_stack ();
1424 if ( YY_CURRENT_BUFFER == new_buffer )
1425 return;
1426
1427 if ( YY_CURRENT_BUFFER )
1428 {
1429 /* Flush out information for old buffer. */
1430 *(yy_c_buf_p) = (yy_hold_char);
1431 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1432 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1433 }
1434
1435 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1436 yy_load_buffer_state( );
1437
1438 /* We don't actually know whether we did this switch during
1439 * EOF (yywrap()) processing, but the only time this flag
1440 * is looked at is after yywrap() is called, so it's safe
1441 * to go ahead and always set it.
1442 */
1443 (yy_did_buffer_switch_on_eof) = 1;
1444}
1445
1446static void yy_load_buffer_state (void)
1447{
1448 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1449 (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
1450 yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
1451 (yy_hold_char) = *(yy_c_buf_p);
1452}
1453
1454/** Allocate and initialize an input buffer state.
1455 * @param file A readable stream.
1456 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
Patrick Georgi8d313682010-05-05 13:12:42 +00001457 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001458 * @return the allocated buffer state.
1459 */
1460 YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
1461{
1462 YY_BUFFER_STATE b;
Patrick Georgi8d313682010-05-05 13:12:42 +00001463
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001464 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1465 if ( ! b )
1466 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1467
1468 b->yy_buf_size = size;
1469
1470 /* yy_ch_buf has to be 2 characters longer than the size given because
1471 * we need to put in 2 end-of-buffer characters.
1472 */
1473 b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
1474 if ( ! b->yy_ch_buf )
1475 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1476
1477 b->yy_is_our_buffer = 1;
1478
1479 yy_init_buffer(b,file );
1480
1481 return b;
1482}
1483
1484/** Destroy the buffer.
1485 * @param b a buffer created with yy_create_buffer()
Patrick Georgi8d313682010-05-05 13:12:42 +00001486 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001487 */
1488 void yy_delete_buffer (YY_BUFFER_STATE b )
1489{
Patrick Georgi8d313682010-05-05 13:12:42 +00001490
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001491 if ( ! b )
1492 return;
1493
1494 if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
1495 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
1496
1497 if ( b->yy_is_our_buffer )
1498 yyfree((void *) b->yy_ch_buf );
1499
1500 yyfree((void *) b );
1501}
1502
1503#ifndef __cplusplus
1504extern int isatty (int );
1505#endif /* __cplusplus */
Patrick Georgi8d313682010-05-05 13:12:42 +00001506
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001507/* Initializes or reinitializes a buffer.
1508 * This function is sometimes called more than once on the same buffer,
1509 * such as during a yyrestart() or at EOF.
1510 */
1511 static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
1512
1513{
1514 int oerrno = errno;
Patrick Georgi8d313682010-05-05 13:12:42 +00001515
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001516 yy_flush_buffer(b );
1517
1518 b->yy_input_file = file;
1519 b->yy_fill_buffer = 1;
1520
1521 /* If b is the current buffer, then yy_init_buffer was _probably_
1522 * called from yyrestart() or through yy_get_next_buffer.
1523 * In that case, we don't want to reset the lineno or column.
1524 */
1525 if (b != YY_CURRENT_BUFFER){
1526 b->yy_bs_lineno = 1;
1527 b->yy_bs_column = 0;
1528 }
1529
1530 b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
Patrick Georgi8d313682010-05-05 13:12:42 +00001531
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001532 errno = oerrno;
1533}
1534
1535/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
1536 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
Patrick Georgi8d313682010-05-05 13:12:42 +00001537 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001538 */
1539 void yy_flush_buffer (YY_BUFFER_STATE b )
1540{
1541 if ( ! b )
1542 return;
1543
1544 b->yy_n_chars = 0;
1545
1546 /* We always need two end-of-buffer characters. The first causes
1547 * a transition to the end-of-buffer state. The second causes
1548 * a jam in that state.
1549 */
1550 b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
1551 b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
1552
1553 b->yy_buf_pos = &b->yy_ch_buf[0];
1554
1555 b->yy_at_bol = 1;
1556 b->yy_buffer_status = YY_BUFFER_NEW;
1557
1558 if ( b == YY_CURRENT_BUFFER )
1559 yy_load_buffer_state( );
1560}
1561
1562/** Pushes the new state onto the stack. The new state becomes
1563 * the current state. This function will allocate the stack
1564 * if necessary.
1565 * @param new_buffer The new state.
Patrick Georgi8d313682010-05-05 13:12:42 +00001566 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001567 */
1568void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
1569{
1570 if (new_buffer == NULL)
1571 return;
1572
1573 yyensure_buffer_stack();
1574
1575 /* This block is copied from yy_switch_to_buffer. */
1576 if ( YY_CURRENT_BUFFER )
1577 {
1578 /* Flush out information for old buffer. */
1579 *(yy_c_buf_p) = (yy_hold_char);
1580 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1581 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1582 }
1583
1584 /* Only push if top exists. Otherwise, replace top. */
1585 if (YY_CURRENT_BUFFER)
1586 (yy_buffer_stack_top)++;
1587 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1588
1589 /* copied from yy_switch_to_buffer. */
1590 yy_load_buffer_state( );
1591 (yy_did_buffer_switch_on_eof) = 1;
1592}
1593
1594/** Removes and deletes the top of the stack, if present.
1595 * The next element becomes the new top.
Patrick Georgi8d313682010-05-05 13:12:42 +00001596 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001597 */
1598void yypop_buffer_state (void)
1599{
1600 if (!YY_CURRENT_BUFFER)
1601 return;
1602
1603 yy_delete_buffer(YY_CURRENT_BUFFER );
1604 YY_CURRENT_BUFFER_LVALUE = NULL;
1605 if ((yy_buffer_stack_top) > 0)
1606 --(yy_buffer_stack_top);
1607
1608 if (YY_CURRENT_BUFFER) {
1609 yy_load_buffer_state( );
1610 (yy_did_buffer_switch_on_eof) = 1;
1611 }
1612}
1613
1614/* Allocates the stack if it does not exist.
1615 * Guarantees space for at least one push.
1616 */
1617static void yyensure_buffer_stack (void)
1618{
1619 int num_to_alloc;
Patrick Georgi8d313682010-05-05 13:12:42 +00001620
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001621 if (!(yy_buffer_stack)) {
1622
1623 /* First allocation is just for 2 elements, since we don't know if this
1624 * scanner will even need a stack. We use 2 instead of 1 to avoid an
1625 * immediate realloc on the next call.
1626 */
1627 num_to_alloc = 1;
1628 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
1629 (num_to_alloc * sizeof(struct yy_buffer_state*)
1630 );
1631 if ( ! (yy_buffer_stack) )
1632 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
Patrick Georgi8d313682010-05-05 13:12:42 +00001633
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001634 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
Patrick Georgi8d313682010-05-05 13:12:42 +00001635
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001636 (yy_buffer_stack_max) = num_to_alloc;
1637 (yy_buffer_stack_top) = 0;
1638 return;
1639 }
1640
1641 if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
1642
1643 /* Increase the buffer to prepare for a possible push. */
1644 int grow_size = 8 /* arbitrary grow size */;
1645
1646 num_to_alloc = (yy_buffer_stack_max) + grow_size;
1647 (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
1648 ((yy_buffer_stack),
1649 num_to_alloc * sizeof(struct yy_buffer_state*)
1650 );
1651 if ( ! (yy_buffer_stack) )
1652 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1653
1654 /* zero only the new slots.*/
1655 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
1656 (yy_buffer_stack_max) = num_to_alloc;
1657 }
1658}
1659
1660/** Setup the input buffer state to scan directly from a user-specified character buffer.
1661 * @param base the character buffer
1662 * @param size the size in bytes of the character buffer
Patrick Georgi8d313682010-05-05 13:12:42 +00001663 *
1664 * @return the newly allocated buffer state object.
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001665 */
1666YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
1667{
1668 YY_BUFFER_STATE b;
Patrick Georgi8d313682010-05-05 13:12:42 +00001669
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001670 if ( size < 2 ||
1671 base[size-2] != YY_END_OF_BUFFER_CHAR ||
1672 base[size-1] != YY_END_OF_BUFFER_CHAR )
1673 /* They forgot to leave room for the EOB's. */
1674 return 0;
1675
1676 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1677 if ( ! b )
1678 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
1679
1680 b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
1681 b->yy_buf_pos = b->yy_ch_buf = base;
1682 b->yy_is_our_buffer = 0;
1683 b->yy_input_file = 0;
1684 b->yy_n_chars = b->yy_buf_size;
1685 b->yy_is_interactive = 0;
1686 b->yy_at_bol = 1;
1687 b->yy_fill_buffer = 0;
1688 b->yy_buffer_status = YY_BUFFER_NEW;
1689
1690 yy_switch_to_buffer(b );
1691
1692 return b;
1693}
1694
1695/** Setup the input buffer state to scan a string. The next call to yylex() will
1696 * scan from a @e copy of @a str.
1697 * @param yystr a NUL-terminated string to scan
Patrick Georgi8d313682010-05-05 13:12:42 +00001698 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001699 * @return the newly allocated buffer state object.
1700 * @note If you want to scan bytes that may contain NUL values, then use
1701 * yy_scan_bytes() instead.
1702 */
1703YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
1704{
Patrick Georgi8d313682010-05-05 13:12:42 +00001705
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001706 return yy_scan_bytes(yystr,strlen(yystr) );
1707}
1708
1709/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1710 * scan from a @e copy of @a bytes.
Patrick Georgi8d313682010-05-05 13:12:42 +00001711 * @param yybytes the byte buffer to scan
1712 * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
1713 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001714 * @return the newly allocated buffer state object.
1715 */
1716YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
1717{
1718 YY_BUFFER_STATE b;
1719 char *buf;
1720 yy_size_t n;
1721 int i;
Patrick Georgi8d313682010-05-05 13:12:42 +00001722
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001723 /* Get memory for full buffer, including space for trailing EOB's. */
1724 n = _yybytes_len + 2;
1725 buf = (char *) yyalloc(n );
1726 if ( ! buf )
1727 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
1728
1729 for ( i = 0; i < _yybytes_len; ++i )
1730 buf[i] = yybytes[i];
1731
1732 buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
1733
1734 b = yy_scan_buffer(buf,n );
1735 if ( ! b )
1736 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
1737
1738 /* It's okay to grow etc. this buffer, and we should throw it
1739 * away when we're done.
1740 */
1741 b->yy_is_our_buffer = 1;
1742
1743 return b;
1744}
1745
1746#ifndef YY_EXIT_FAILURE
1747#define YY_EXIT_FAILURE 2
1748#endif
1749
1750static void yy_fatal_error (yyconst char* msg )
1751{
1752 (void) fprintf( stderr, "%s\n", msg );
1753 exit( YY_EXIT_FAILURE );
1754}
1755
1756/* Redefine yyless() so it works in section 3 code. */
1757
1758#undef yyless
1759#define yyless(n) \
1760 do \
1761 { \
1762 /* Undo effects of setting up yytext. */ \
1763 int yyless_macro_arg = (n); \
1764 YY_LESS_LINENO(yyless_macro_arg);\
1765 yytext[yyleng] = (yy_hold_char); \
1766 (yy_c_buf_p) = yytext + yyless_macro_arg; \
1767 (yy_hold_char) = *(yy_c_buf_p); \
1768 *(yy_c_buf_p) = '\0'; \
1769 yyleng = yyless_macro_arg; \
1770 } \
1771 while ( 0 )
1772
1773/* Accessor methods (get/set functions) to struct members. */
1774
1775/** Get the current line number.
Patrick Georgi8d313682010-05-05 13:12:42 +00001776 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001777 */
1778int yyget_lineno (void)
1779{
Patrick Georgi8d313682010-05-05 13:12:42 +00001780
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001781 return yylineno;
1782}
1783
1784/** Get the input stream.
Patrick Georgi8d313682010-05-05 13:12:42 +00001785 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001786 */
1787FILE *yyget_in (void)
1788{
1789 return yyin;
1790}
1791
1792/** Get the output stream.
Patrick Georgi8d313682010-05-05 13:12:42 +00001793 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001794 */
1795FILE *yyget_out (void)
1796{
1797 return yyout;
1798}
1799
1800/** Get the length of the current token.
Patrick Georgi8d313682010-05-05 13:12:42 +00001801 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001802 */
1803int yyget_leng (void)
1804{
1805 return yyleng;
1806}
1807
1808/** Get the current token.
Patrick Georgi8d313682010-05-05 13:12:42 +00001809 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001810 */
1811
1812char *yyget_text (void)
1813{
1814 return yytext;
1815}
1816
1817/** Set the current line number.
1818 * @param line_number
Patrick Georgi8d313682010-05-05 13:12:42 +00001819 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001820 */
1821void yyset_lineno (int line_number )
1822{
Patrick Georgi8d313682010-05-05 13:12:42 +00001823
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001824 yylineno = line_number;
1825}
1826
1827/** Set the input stream. This does not discard the current
1828 * input buffer.
1829 * @param in_str A readable stream.
Patrick Georgi8d313682010-05-05 13:12:42 +00001830 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001831 * @see yy_switch_to_buffer
1832 */
1833void yyset_in (FILE * in_str )
1834{
1835 yyin = in_str ;
1836}
1837
1838void yyset_out (FILE * out_str )
1839{
1840 yyout = out_str ;
1841}
1842
1843int yyget_debug (void)
1844{
1845 return yy_flex_debug;
1846}
1847
1848void yyset_debug (int bdebug )
1849{
1850 yy_flex_debug = bdebug ;
1851}
1852
1853static int yy_init_globals (void)
1854{
1855 /* Initialization is the same as for the non-reentrant scanner.
1856 * This function is called from yylex_destroy(), so don't allocate here.
1857 */
1858
1859 (yy_buffer_stack) = 0;
1860 (yy_buffer_stack_top) = 0;
1861 (yy_buffer_stack_max) = 0;
1862 (yy_c_buf_p) = (char *) 0;
1863 (yy_init) = 0;
1864 (yy_start) = 0;
1865
1866/* Defined in main.c */
1867#ifdef YY_STDINIT
1868 yyin = stdin;
1869 yyout = stdout;
1870#else
1871 yyin = (FILE *) 0;
1872 yyout = (FILE *) 0;
1873#endif
1874
1875 /* For future reference: Set errno on error, since we are called by
1876 * yylex_init()
1877 */
1878 return 0;
1879}
1880
1881/* yylex_destroy is for both reentrant and non-reentrant scanners. */
1882int yylex_destroy (void)
1883{
Patrick Georgi8d313682010-05-05 13:12:42 +00001884
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001885 /* Pop the buffer stack, destroying each element. */
1886 while(YY_CURRENT_BUFFER){
1887 yy_delete_buffer(YY_CURRENT_BUFFER );
1888 YY_CURRENT_BUFFER_LVALUE = NULL;
1889 yypop_buffer_state();
1890 }
1891
1892 /* Destroy the stack itself. */
1893 yyfree((yy_buffer_stack) );
1894 (yy_buffer_stack) = NULL;
1895
1896 /* Reset the globals. This is important in a non-reentrant scanner so the next time
1897 * yylex() is called, initialization will occur. */
1898 yy_init_globals( );
1899
1900 return 0;
1901}
1902
1903/*
1904 * Internal utility routines.
1905 */
1906
1907#ifndef yytext_ptr
1908static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
1909{
1910 register int i;
1911 for ( i = 0; i < n; ++i )
1912 s1[i] = s2[i];
1913}
1914#endif
1915
1916#ifdef YY_NEED_STRLEN
1917static int yy_flex_strlen (yyconst char * s )
1918{
1919 register int n;
1920 for ( n = 0; s[n]; ++n )
1921 ;
1922
1923 return n;
1924}
1925#endif
1926
1927void *yyalloc (yy_size_t size )
1928{
1929 return (void *) malloc( size );
1930}
1931
1932void *yyrealloc (void * ptr, yy_size_t size )
1933{
1934 /* The cast to (char *) in the following accommodates both
1935 * implementations that use char* generic pointers, and those
1936 * that use void* generic pointers. It works with the latter
1937 * because both ANSI C and C++ allow castless assignment from
1938 * any pointer type to void*, and deal with argument conversions
1939 * as though doing an assignment.
1940 */
1941 return (void *) realloc( (char *) ptr, size );
1942}
1943
1944void yyfree (void * ptr )
1945{
1946 free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
1947}
1948
1949#define YYTABLES_NAME "yytables"
1950