blob: eb759d2eab869ea5dfe7239a263043906c7a6657 [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
Aaron Durbinffda804b2014-09-03 12:40:15 -0500371#define YY_NUM_RULES 31
372#define YY_END_OF_BUFFER 32
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,
Aaron Durbinffda804b2014-09-03 12:40:15 -0500382 0, 0, 32, 30, 1, 3, 30, 30, 30, 26,
383 26, 24, 27, 30, 27, 27, 27, 30, 30, 30,
384 30, 30, 30, 30, 1, 3, 30, 0, 30, 0,
385 2, 26, 27, 30, 30, 30, 30, 27, 30, 30,
386 30, 30, 30, 19, 30, 30, 30, 7, 30, 30,
387 30, 30, 29, 29, 25, 30, 30, 15, 30, 30,
388 18, 23, 12, 30, 30, 17, 30, 8, 9, 11,
389 30, 30, 28, 4, 30, 30, 30, 30, 30, 30,
390 30, 30, 30, 30, 30, 30, 30, 13, 30, 30,
391 30, 5, 16, 30, 10, 30, 30, 30, 21, 30,
Sven Schnelle750edfd2011-03-01 21:43:57 +0000392
Aaron Durbinffda804b2014-09-03 12:40:15 -0500393 30, 30, 30, 30, 6, 30, 30, 30, 30, 30,
394 20, 30, 14, 22, 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
Patrick Georgib890a122015-03-26 15:17:45 +0100558 * Foundation, Inc.
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000559 */
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
Aaron Durbinffda804b2014-09-03 12:40:15 -0500891{yylval.number=CPU; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000892 YY_BREAK
893case 16:
894YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500895{yylval.number=DOMAIN; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000896 YY_BREAK
897case 17:
898YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500899{yylval.number=IRQ; return(RESOURCE);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000900 YY_BREAK
901case 18:
902YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500903{yylval.number=DRQ; return(RESOURCE);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000904 YY_BREAK
905case 19:
906YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500907{yylval.number=IO; return(RESOURCE);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000908 YY_BREAK
909case 20:
910YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500911{return(IOAPIC_IRQ);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000912 YY_BREAK
913case 21:
914YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500915{return(INHERIT);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000916 YY_BREAK
917case 22:
918YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500919{return(SUBSYSTEMID);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000920 YY_BREAK
921case 23:
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000922YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500923{return(END);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000924 YY_BREAK
925case 24:
926YY_RULE_SETUP
Aaron Durbinffda804b2014-09-03 12:40:15 -0500927{return(EQUALS);}
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
Aaron Durbinffda804b2014-09-03 12:40:15 -0500939{yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
Patrick Georgi2b108a42012-07-13 12:02:44 +0200940 YY_BREAK
941case 28:
Aaron Durbinffda804b2014-09-03 12:40:15 -0500942YY_RULE_SETUP
943{yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(PCIINT);}
944 YY_BREAK
945case 29:
946/* rule 29 can match eol */
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200947YY_RULE_SETUP
948{yylval.string = malloc(yyleng-1); strncpy(yylval.string, yytext+1, yyleng-2); yylval.string[yyleng-2]='\0'; return(STRING);}
949 YY_BREAK
Aaron Durbinffda804b2014-09-03 12:40:15 -0500950case 30:
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200951YY_RULE_SETUP
952{yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(STRING);}
953 YY_BREAK
Aaron Durbinffda804b2014-09-03 12:40:15 -0500954case 31:
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000955YY_RULE_SETUP
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000956ECHO;
957 YY_BREAK
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000958case YY_STATE_EOF(INITIAL):
959 yyterminate();
960
961 case YY_END_OF_BUFFER:
962 {
963 /* Amount of text matched not including the EOB char. */
964 int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
965
966 /* Undo the effects of YY_DO_BEFORE_ACTION. */
967 *yy_cp = (yy_hold_char);
968 YY_RESTORE_YY_MORE_OFFSET
969
970 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
971 {
972 /* We're scanning a new file or input source. It's
973 * possible that this happened because the user
974 * just pointed yyin at a new source and called
975 * yylex(). If so, then we have to assure
976 * consistency between YY_CURRENT_BUFFER and our
977 * globals. Here is the right place to do so, because
978 * this is the first action (other than possibly a
979 * back-up) that will match for the new input source.
980 */
981 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
982 YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
983 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
984 }
985
986 /* Note that here we test for yy_c_buf_p "<=" to the position
987 * of the first EOB in the buffer, since yy_c_buf_p will
988 * already have been incremented past the NUL character
989 * (since all states make transitions on EOB to the
990 * end-of-buffer state). Contrast this with the test
991 * in input().
992 */
993 if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
994 { /* This was really a NUL. */
995 yy_state_type yy_next_state;
996
997 (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
998
999 yy_current_state = yy_get_previous_state( );
1000
1001 /* Okay, we're now positioned to make the NUL
1002 * transition. We couldn't have
1003 * yy_get_previous_state() go ahead and do it
1004 * for us because it doesn't know how to deal
1005 * with the possibility of jamming (and we don't
1006 * want to build jamming into it because then it
1007 * will run more slowly).
1008 */
1009
1010 yy_next_state = yy_try_NUL_trans( yy_current_state );
1011
1012 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1013
1014 if ( yy_next_state )
1015 {
1016 /* Consume the NUL. */
1017 yy_cp = ++(yy_c_buf_p);
1018 yy_current_state = yy_next_state;
1019 goto yy_match;
1020 }
1021
1022 else
1023 {
1024 yy_cp = (yy_c_buf_p);
1025 goto yy_find_action;
1026 }
1027 }
1028
1029 else switch ( yy_get_next_buffer( ) )
1030 {
1031 case EOB_ACT_END_OF_FILE:
1032 {
1033 (yy_did_buffer_switch_on_eof) = 0;
1034
1035 if ( yywrap( ) )
1036 {
1037 /* Note: because we've taken care in
1038 * yy_get_next_buffer() to have set up
1039 * yytext, we can now set up
1040 * yy_c_buf_p so that if some total
1041 * hoser (like flex itself) wants to
1042 * call the scanner after we return the
1043 * YY_NULL, it'll still work - another
1044 * YY_NULL will get returned.
1045 */
1046 (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
1047
1048 yy_act = YY_STATE_EOF(YY_START);
1049 goto do_action;
1050 }
1051
1052 else
1053 {
1054 if ( ! (yy_did_buffer_switch_on_eof) )
1055 YY_NEW_FILE;
1056 }
1057 break;
1058 }
1059
1060 case EOB_ACT_CONTINUE_SCAN:
1061 (yy_c_buf_p) =
1062 (yytext_ptr) + yy_amount_of_matched_text;
1063
1064 yy_current_state = yy_get_previous_state( );
1065
1066 yy_cp = (yy_c_buf_p);
1067 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1068 goto yy_match;
1069
1070 case EOB_ACT_LAST_MATCH:
1071 (yy_c_buf_p) =
1072 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
1073
1074 yy_current_state = yy_get_previous_state( );
1075
1076 yy_cp = (yy_c_buf_p);
1077 yy_bp = (yytext_ptr) + YY_MORE_ADJ;
1078 goto yy_find_action;
1079 }
1080 break;
1081 }
1082
1083 default:
1084 YY_FATAL_ERROR(
1085 "fatal flex scanner internal error--no action found" );
1086 } /* end of action switch */
1087 } /* end of scanning one token */
1088} /* end of yylex */
1089
1090/* yy_get_next_buffer - try to read in a new buffer
1091 *
1092 * Returns a code representing an action:
1093 * EOB_ACT_LAST_MATCH -
1094 * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
1095 * EOB_ACT_END_OF_FILE - end of file
1096 */
1097static int yy_get_next_buffer (void)
1098{
1099 register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
1100 register char *source = (yytext_ptr);
1101 register int number_to_move, i;
1102 int ret_val;
1103
1104 if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
1105 YY_FATAL_ERROR(
1106 "fatal flex scanner internal error--end of buffer missed" );
1107
1108 if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
1109 { /* Don't try to fill the buffer, so this is an EOF. */
1110 if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
1111 {
1112 /* We matched a single character, the EOB, so
1113 * treat this as a final EOF.
1114 */
1115 return EOB_ACT_END_OF_FILE;
1116 }
1117
1118 else
1119 {
1120 /* We matched some text prior to the EOB, first
1121 * process it.
1122 */
1123 return EOB_ACT_LAST_MATCH;
1124 }
1125 }
1126
1127 /* Try to read more data. */
1128
1129 /* First move last chars to start of buffer. */
1130 number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
1131
1132 for ( i = 0; i < number_to_move; ++i )
1133 *(dest++) = *(source++);
1134
1135 if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
1136 /* don't do the read, it's not guaranteed to return an EOF,
1137 * just force an EOF
1138 */
1139 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
1140
1141 else
1142 {
1143 int num_to_read =
1144 YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
1145
1146 while ( num_to_read <= 0 )
1147 { /* Not enough room in the buffer - grow it. */
1148
1149 /* just a shorter name for the current buffer */
1150 YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
1151
1152 int yy_c_buf_p_offset =
1153 (int) ((yy_c_buf_p) - b->yy_ch_buf);
1154
1155 if ( b->yy_is_our_buffer )
1156 {
1157 int new_size = b->yy_buf_size * 2;
1158
1159 if ( new_size <= 0 )
1160 b->yy_buf_size += b->yy_buf_size / 8;
1161 else
1162 b->yy_buf_size *= 2;
1163
1164 b->yy_ch_buf = (char *)
1165 /* Include room in for 2 EOB chars. */
1166 yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
1167 }
1168 else
1169 /* Can't grow it, we don't own it. */
1170 b->yy_ch_buf = 0;
1171
1172 if ( ! b->yy_ch_buf )
1173 YY_FATAL_ERROR(
1174 "fatal error - scanner input buffer overflow" );
1175
1176 (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
1177
1178 num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
1179 number_to_move - 1;
1180
1181 }
1182
1183 if ( num_to_read > YY_READ_BUF_SIZE )
1184 num_to_read = YY_READ_BUF_SIZE;
1185
1186 /* Read in more data. */
1187 YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
1188 (yy_n_chars), (size_t) num_to_read );
1189
1190 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1191 }
1192
1193 if ( (yy_n_chars) == 0 )
1194 {
1195 if ( number_to_move == YY_MORE_ADJ )
1196 {
1197 ret_val = EOB_ACT_END_OF_FILE;
1198 yyrestart(yyin );
1199 }
1200
1201 else
1202 {
1203 ret_val = EOB_ACT_LAST_MATCH;
1204 YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
1205 YY_BUFFER_EOF_PENDING;
1206 }
1207 }
1208
1209 else
1210 ret_val = EOB_ACT_CONTINUE_SCAN;
1211
1212 if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
1213 /* Extend the array by 50%, plus the number we really need. */
1214 yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
1215 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
1216 if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1217 YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
1218 }
1219
1220 (yy_n_chars) += number_to_move;
1221 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
1222 YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
1223
1224 (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
1225
1226 return ret_val;
1227}
1228
1229/* yy_get_previous_state - get the state just before the EOB char was reached */
1230
1231 static yy_state_type yy_get_previous_state (void)
1232{
1233 register yy_state_type yy_current_state;
1234 register char *yy_cp;
Patrick Georgi8d313682010-05-05 13:12:42 +00001235
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001236 yy_current_state = (yy_start);
1237
1238 for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
1239 {
1240 register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
1241 if ( yy_accept[yy_current_state] )
1242 {
1243 (yy_last_accepting_state) = yy_current_state;
1244 (yy_last_accepting_cpos) = yy_cp;
1245 }
1246 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1247 {
1248 yy_current_state = (int) yy_def[yy_current_state];
Stefan Reinauer0aa37c42013-02-12 15:20:54 -08001249 if ( yy_current_state >= 116 )
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001250 yy_c = yy_meta[(unsigned int) yy_c];
1251 }
1252 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
1253 }
1254
1255 return yy_current_state;
1256}
1257
1258/* yy_try_NUL_trans - try to make a transition on the NUL character
1259 *
1260 * synopsis
1261 * next_state = yy_try_NUL_trans( current_state );
1262 */
1263 static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
1264{
1265 register int yy_is_jam;
1266 register char *yy_cp = (yy_c_buf_p);
1267
1268 register YY_CHAR yy_c = 1;
1269 if ( yy_accept[yy_current_state] )
1270 {
1271 (yy_last_accepting_state) = yy_current_state;
1272 (yy_last_accepting_cpos) = yy_cp;
1273 }
1274 while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
1275 {
1276 yy_current_state = (int) yy_def[yy_current_state];
Stefan Reinauer0aa37c42013-02-12 15:20:54 -08001277 if ( yy_current_state >= 116 )
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001278 yy_c = yy_meta[(unsigned int) yy_c];
1279 }
1280 yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
Stefan Reinauer0aa37c42013-02-12 15:20:54 -08001281 yy_is_jam = (yy_current_state == 115);
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001282
1283 return yy_is_jam ? 0 : yy_current_state;
1284}
1285
1286 static void yyunput (int c, register char * yy_bp )
1287{
1288 register char *yy_cp;
Patrick Georgi8d313682010-05-05 13:12:42 +00001289
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001290 yy_cp = (yy_c_buf_p);
1291
1292 /* undo effects of setting up yytext */
1293 *yy_cp = (yy_hold_char);
1294
1295 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1296 { /* need to shift things up to make room */
1297 /* +2 for EOB chars. */
1298 register int number_to_move = (yy_n_chars) + 2;
1299 register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
1300 YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
1301 register char *source =
1302 &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
1303
1304 while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
1305 *--dest = *--source;
1306
1307 yy_cp += (int) (dest - source);
1308 yy_bp += (int) (dest - source);
1309 YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
1310 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
1311
1312 if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
1313 YY_FATAL_ERROR( "flex scanner push-back overflow" );
1314 }
1315
1316 *--yy_cp = (char) c;
1317
1318 (yytext_ptr) = yy_bp;
1319 (yy_hold_char) = *yy_cp;
1320 (yy_c_buf_p) = yy_cp;
1321}
1322
1323#ifndef YY_NO_INPUT
1324#ifdef __cplusplus
1325 static int yyinput (void)
1326#else
1327 static int input (void)
1328#endif
1329
1330{
1331 int c;
Patrick Georgi8d313682010-05-05 13:12:42 +00001332
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001333 *(yy_c_buf_p) = (yy_hold_char);
1334
1335 if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
1336 {
1337 /* yy_c_buf_p now points to the character we want to return.
1338 * If this occurs *before* the EOB characters, then it's a
1339 * valid NUL; if not, then we've hit the end of the buffer.
1340 */
1341 if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
1342 /* This was really a NUL. */
1343 *(yy_c_buf_p) = '\0';
1344
1345 else
1346 { /* need more input */
1347 int offset = (yy_c_buf_p) - (yytext_ptr);
1348 ++(yy_c_buf_p);
1349
1350 switch ( yy_get_next_buffer( ) )
1351 {
1352 case EOB_ACT_LAST_MATCH:
1353 /* This happens because yy_g_n_b()
1354 * sees that we've accumulated a
1355 * token and flags that we need to
1356 * try matching the token before
1357 * proceeding. But for input(),
1358 * there's no matching to consider.
1359 * So convert the EOB_ACT_LAST_MATCH
1360 * to EOB_ACT_END_OF_FILE.
1361 */
1362
1363 /* Reset buffer status. */
1364 yyrestart(yyin );
1365
1366 /*FALLTHROUGH*/
1367
1368 case EOB_ACT_END_OF_FILE:
1369 {
1370 if ( yywrap( ) )
1371 return EOF;
1372
1373 if ( ! (yy_did_buffer_switch_on_eof) )
1374 YY_NEW_FILE;
1375#ifdef __cplusplus
1376 return yyinput();
1377#else
1378 return input();
1379#endif
1380 }
1381
1382 case EOB_ACT_CONTINUE_SCAN:
1383 (yy_c_buf_p) = (yytext_ptr) + offset;
1384 break;
1385 }
1386 }
1387 }
1388
1389 c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
1390 *(yy_c_buf_p) = '\0'; /* preserve yytext */
1391 (yy_hold_char) = *++(yy_c_buf_p);
1392
1393 return c;
1394}
1395#endif /* ifndef YY_NO_INPUT */
1396
1397/** Immediately switch to a different input stream.
1398 * @param input_file A readable stream.
Patrick Georgi8d313682010-05-05 13:12:42 +00001399 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001400 * @note This function does not reset the start condition to @c INITIAL .
1401 */
1402 void yyrestart (FILE * input_file )
1403{
Patrick Georgi8d313682010-05-05 13:12:42 +00001404
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001405 if ( ! YY_CURRENT_BUFFER ){
1406 yyensure_buffer_stack ();
1407 YY_CURRENT_BUFFER_LVALUE =
1408 yy_create_buffer(yyin,YY_BUF_SIZE );
1409 }
1410
1411 yy_init_buffer(YY_CURRENT_BUFFER,input_file );
1412 yy_load_buffer_state( );
1413}
1414
1415/** Switch to a different input buffer.
1416 * @param new_buffer The new input buffer.
Patrick Georgi8d313682010-05-05 13:12:42 +00001417 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001418 */
1419 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
1420{
Patrick Georgi8d313682010-05-05 13:12:42 +00001421
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001422 /* TODO. We should be able to replace this entire function body
1423 * with
1424 * yypop_buffer_state();
1425 * yypush_buffer_state(new_buffer);
1426 */
1427 yyensure_buffer_stack ();
1428 if ( YY_CURRENT_BUFFER == new_buffer )
1429 return;
1430
1431 if ( YY_CURRENT_BUFFER )
1432 {
1433 /* Flush out information for old buffer. */
1434 *(yy_c_buf_p) = (yy_hold_char);
1435 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1436 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1437 }
1438
1439 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1440 yy_load_buffer_state( );
1441
1442 /* We don't actually know whether we did this switch during
1443 * EOF (yywrap()) processing, but the only time this flag
1444 * is looked at is after yywrap() is called, so it's safe
1445 * to go ahead and always set it.
1446 */
1447 (yy_did_buffer_switch_on_eof) = 1;
1448}
1449
1450static void yy_load_buffer_state (void)
1451{
1452 (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
1453 (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
1454 yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
1455 (yy_hold_char) = *(yy_c_buf_p);
1456}
1457
1458/** Allocate and initialize an input buffer state.
1459 * @param file A readable stream.
1460 * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
Patrick Georgi8d313682010-05-05 13:12:42 +00001461 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001462 * @return the allocated buffer state.
1463 */
1464 YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
1465{
1466 YY_BUFFER_STATE b;
Patrick Georgi8d313682010-05-05 13:12:42 +00001467
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001468 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1469 if ( ! b )
1470 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1471
1472 b->yy_buf_size = size;
1473
1474 /* yy_ch_buf has to be 2 characters longer than the size given because
1475 * we need to put in 2 end-of-buffer characters.
1476 */
1477 b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
1478 if ( ! b->yy_ch_buf )
1479 YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
1480
1481 b->yy_is_our_buffer = 1;
1482
1483 yy_init_buffer(b,file );
1484
1485 return b;
1486}
1487
1488/** Destroy the buffer.
1489 * @param b a buffer created with yy_create_buffer()
Patrick Georgi8d313682010-05-05 13:12:42 +00001490 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001491 */
1492 void yy_delete_buffer (YY_BUFFER_STATE b )
1493{
Patrick Georgi8d313682010-05-05 13:12:42 +00001494
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001495 if ( ! b )
1496 return;
1497
1498 if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
1499 YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
1500
1501 if ( b->yy_is_our_buffer )
1502 yyfree((void *) b->yy_ch_buf );
1503
1504 yyfree((void *) b );
1505}
1506
1507#ifndef __cplusplus
1508extern int isatty (int );
1509#endif /* __cplusplus */
Patrick Georgi8d313682010-05-05 13:12:42 +00001510
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001511/* Initializes or reinitializes a buffer.
1512 * This function is sometimes called more than once on the same buffer,
1513 * such as during a yyrestart() or at EOF.
1514 */
1515 static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
1516
1517{
1518 int oerrno = errno;
Patrick Georgi8d313682010-05-05 13:12:42 +00001519
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001520 yy_flush_buffer(b );
1521
1522 b->yy_input_file = file;
1523 b->yy_fill_buffer = 1;
1524
1525 /* If b is the current buffer, then yy_init_buffer was _probably_
1526 * called from yyrestart() or through yy_get_next_buffer.
1527 * In that case, we don't want to reset the lineno or column.
1528 */
1529 if (b != YY_CURRENT_BUFFER){
1530 b->yy_bs_lineno = 1;
1531 b->yy_bs_column = 0;
1532 }
1533
1534 b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
Patrick Georgi8d313682010-05-05 13:12:42 +00001535
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001536 errno = oerrno;
1537}
1538
1539/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
1540 * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
Patrick Georgi8d313682010-05-05 13:12:42 +00001541 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001542 */
1543 void yy_flush_buffer (YY_BUFFER_STATE b )
1544{
1545 if ( ! b )
1546 return;
1547
1548 b->yy_n_chars = 0;
1549
1550 /* We always need two end-of-buffer characters. The first causes
1551 * a transition to the end-of-buffer state. The second causes
1552 * a jam in that state.
1553 */
1554 b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
1555 b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
1556
1557 b->yy_buf_pos = &b->yy_ch_buf[0];
1558
1559 b->yy_at_bol = 1;
1560 b->yy_buffer_status = YY_BUFFER_NEW;
1561
1562 if ( b == YY_CURRENT_BUFFER )
1563 yy_load_buffer_state( );
1564}
1565
1566/** Pushes the new state onto the stack. The new state becomes
1567 * the current state. This function will allocate the stack
1568 * if necessary.
1569 * @param new_buffer The new state.
Patrick Georgi8d313682010-05-05 13:12:42 +00001570 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001571 */
1572void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
1573{
1574 if (new_buffer == NULL)
1575 return;
1576
1577 yyensure_buffer_stack();
1578
1579 /* This block is copied from yy_switch_to_buffer. */
1580 if ( YY_CURRENT_BUFFER )
1581 {
1582 /* Flush out information for old buffer. */
1583 *(yy_c_buf_p) = (yy_hold_char);
1584 YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
1585 YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
1586 }
1587
1588 /* Only push if top exists. Otherwise, replace top. */
1589 if (YY_CURRENT_BUFFER)
1590 (yy_buffer_stack_top)++;
1591 YY_CURRENT_BUFFER_LVALUE = new_buffer;
1592
1593 /* copied from yy_switch_to_buffer. */
1594 yy_load_buffer_state( );
1595 (yy_did_buffer_switch_on_eof) = 1;
1596}
1597
1598/** Removes and deletes the top of the stack, if present.
1599 * The next element becomes the new top.
Patrick Georgi8d313682010-05-05 13:12:42 +00001600 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001601 */
1602void yypop_buffer_state (void)
1603{
1604 if (!YY_CURRENT_BUFFER)
1605 return;
1606
1607 yy_delete_buffer(YY_CURRENT_BUFFER );
1608 YY_CURRENT_BUFFER_LVALUE = NULL;
1609 if ((yy_buffer_stack_top) > 0)
1610 --(yy_buffer_stack_top);
1611
1612 if (YY_CURRENT_BUFFER) {
1613 yy_load_buffer_state( );
1614 (yy_did_buffer_switch_on_eof) = 1;
1615 }
1616}
1617
1618/* Allocates the stack if it does not exist.
1619 * Guarantees space for at least one push.
1620 */
1621static void yyensure_buffer_stack (void)
1622{
1623 int num_to_alloc;
Patrick Georgi8d313682010-05-05 13:12:42 +00001624
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001625 if (!(yy_buffer_stack)) {
1626
1627 /* First allocation is just for 2 elements, since we don't know if this
1628 * scanner will even need a stack. We use 2 instead of 1 to avoid an
1629 * immediate realloc on the next call.
1630 */
1631 num_to_alloc = 1;
1632 (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
1633 (num_to_alloc * sizeof(struct yy_buffer_state*)
1634 );
1635 if ( ! (yy_buffer_stack) )
1636 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
Patrick Georgi8d313682010-05-05 13:12:42 +00001637
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001638 memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
Patrick Georgi8d313682010-05-05 13:12:42 +00001639
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001640 (yy_buffer_stack_max) = num_to_alloc;
1641 (yy_buffer_stack_top) = 0;
1642 return;
1643 }
1644
1645 if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
1646
1647 /* Increase the buffer to prepare for a possible push. */
1648 int grow_size = 8 /* arbitrary grow size */;
1649
1650 num_to_alloc = (yy_buffer_stack_max) + grow_size;
1651 (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
1652 ((yy_buffer_stack),
1653 num_to_alloc * sizeof(struct yy_buffer_state*)
1654 );
1655 if ( ! (yy_buffer_stack) )
1656 YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
1657
1658 /* zero only the new slots.*/
1659 memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
1660 (yy_buffer_stack_max) = num_to_alloc;
1661 }
1662}
1663
1664/** Setup the input buffer state to scan directly from a user-specified character buffer.
1665 * @param base the character buffer
1666 * @param size the size in bytes of the character buffer
Patrick Georgi8d313682010-05-05 13:12:42 +00001667 *
1668 * @return the newly allocated buffer state object.
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001669 */
1670YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
1671{
1672 YY_BUFFER_STATE b;
Patrick Georgi8d313682010-05-05 13:12:42 +00001673
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001674 if ( size < 2 ||
1675 base[size-2] != YY_END_OF_BUFFER_CHAR ||
1676 base[size-1] != YY_END_OF_BUFFER_CHAR )
1677 /* They forgot to leave room for the EOB's. */
1678 return 0;
1679
1680 b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
1681 if ( ! b )
1682 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
1683
1684 b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
1685 b->yy_buf_pos = b->yy_ch_buf = base;
1686 b->yy_is_our_buffer = 0;
1687 b->yy_input_file = 0;
1688 b->yy_n_chars = b->yy_buf_size;
1689 b->yy_is_interactive = 0;
1690 b->yy_at_bol = 1;
1691 b->yy_fill_buffer = 0;
1692 b->yy_buffer_status = YY_BUFFER_NEW;
1693
1694 yy_switch_to_buffer(b );
1695
1696 return b;
1697}
1698
1699/** Setup the input buffer state to scan a string. The next call to yylex() will
1700 * scan from a @e copy of @a str.
1701 * @param yystr a NUL-terminated string to scan
Patrick Georgi8d313682010-05-05 13:12:42 +00001702 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001703 * @return the newly allocated buffer state object.
1704 * @note If you want to scan bytes that may contain NUL values, then use
1705 * yy_scan_bytes() instead.
1706 */
1707YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
1708{
Patrick Georgi8d313682010-05-05 13:12:42 +00001709
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001710 return yy_scan_bytes(yystr,strlen(yystr) );
1711}
1712
1713/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
1714 * scan from a @e copy of @a bytes.
Patrick Georgi8d313682010-05-05 13:12:42 +00001715 * @param yybytes the byte buffer to scan
1716 * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
1717 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001718 * @return the newly allocated buffer state object.
1719 */
1720YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
1721{
1722 YY_BUFFER_STATE b;
1723 char *buf;
1724 yy_size_t n;
1725 int i;
Patrick Georgi8d313682010-05-05 13:12:42 +00001726
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001727 /* Get memory for full buffer, including space for trailing EOB's. */
1728 n = _yybytes_len + 2;
1729 buf = (char *) yyalloc(n );
1730 if ( ! buf )
1731 YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
1732
1733 for ( i = 0; i < _yybytes_len; ++i )
1734 buf[i] = yybytes[i];
1735
1736 buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
1737
1738 b = yy_scan_buffer(buf,n );
1739 if ( ! b )
1740 YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
1741
1742 /* It's okay to grow etc. this buffer, and we should throw it
1743 * away when we're done.
1744 */
1745 b->yy_is_our_buffer = 1;
1746
1747 return b;
1748}
1749
1750#ifndef YY_EXIT_FAILURE
1751#define YY_EXIT_FAILURE 2
1752#endif
1753
1754static void yy_fatal_error (yyconst char* msg )
1755{
1756 (void) fprintf( stderr, "%s\n", msg );
1757 exit( YY_EXIT_FAILURE );
1758}
1759
1760/* Redefine yyless() so it works in section 3 code. */
1761
1762#undef yyless
1763#define yyless(n) \
1764 do \
1765 { \
1766 /* Undo effects of setting up yytext. */ \
1767 int yyless_macro_arg = (n); \
1768 YY_LESS_LINENO(yyless_macro_arg);\
1769 yytext[yyleng] = (yy_hold_char); \
1770 (yy_c_buf_p) = yytext + yyless_macro_arg; \
1771 (yy_hold_char) = *(yy_c_buf_p); \
1772 *(yy_c_buf_p) = '\0'; \
1773 yyleng = yyless_macro_arg; \
1774 } \
1775 while ( 0 )
1776
1777/* Accessor methods (get/set functions) to struct members. */
1778
1779/** Get the current line number.
Patrick Georgi8d313682010-05-05 13:12:42 +00001780 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001781 */
1782int yyget_lineno (void)
1783{
Patrick Georgi8d313682010-05-05 13:12:42 +00001784
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001785 return yylineno;
1786}
1787
1788/** Get the input stream.
Patrick Georgi8d313682010-05-05 13:12:42 +00001789 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001790 */
1791FILE *yyget_in (void)
1792{
1793 return yyin;
1794}
1795
1796/** Get the output stream.
Patrick Georgi8d313682010-05-05 13:12:42 +00001797 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001798 */
1799FILE *yyget_out (void)
1800{
1801 return yyout;
1802}
1803
1804/** Get the length of the current token.
Patrick Georgi8d313682010-05-05 13:12:42 +00001805 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001806 */
1807int yyget_leng (void)
1808{
1809 return yyleng;
1810}
1811
1812/** Get the current token.
Patrick Georgi8d313682010-05-05 13:12:42 +00001813 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001814 */
1815
1816char *yyget_text (void)
1817{
1818 return yytext;
1819}
1820
1821/** Set the current line number.
1822 * @param line_number
Patrick Georgi8d313682010-05-05 13:12:42 +00001823 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001824 */
1825void yyset_lineno (int line_number )
1826{
Patrick Georgi8d313682010-05-05 13:12:42 +00001827
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001828 yylineno = line_number;
1829}
1830
1831/** Set the input stream. This does not discard the current
1832 * input buffer.
1833 * @param in_str A readable stream.
Patrick Georgi8d313682010-05-05 13:12:42 +00001834 *
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001835 * @see yy_switch_to_buffer
1836 */
1837void yyset_in (FILE * in_str )
1838{
1839 yyin = in_str ;
1840}
1841
1842void yyset_out (FILE * out_str )
1843{
1844 yyout = out_str ;
1845}
1846
1847int yyget_debug (void)
1848{
1849 return yy_flex_debug;
1850}
1851
1852void yyset_debug (int bdebug )
1853{
1854 yy_flex_debug = bdebug ;
1855}
1856
1857static int yy_init_globals (void)
1858{
1859 /* Initialization is the same as for the non-reentrant scanner.
1860 * This function is called from yylex_destroy(), so don't allocate here.
1861 */
1862
1863 (yy_buffer_stack) = 0;
1864 (yy_buffer_stack_top) = 0;
1865 (yy_buffer_stack_max) = 0;
1866 (yy_c_buf_p) = (char *) 0;
1867 (yy_init) = 0;
1868 (yy_start) = 0;
1869
1870/* Defined in main.c */
1871#ifdef YY_STDINIT
1872 yyin = stdin;
1873 yyout = stdout;
1874#else
1875 yyin = (FILE *) 0;
1876 yyout = (FILE *) 0;
1877#endif
1878
1879 /* For future reference: Set errno on error, since we are called by
1880 * yylex_init()
1881 */
1882 return 0;
1883}
1884
1885/* yylex_destroy is for both reentrant and non-reentrant scanners. */
1886int yylex_destroy (void)
1887{
Patrick Georgi8d313682010-05-05 13:12:42 +00001888
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001889 /* Pop the buffer stack, destroying each element. */
1890 while(YY_CURRENT_BUFFER){
1891 yy_delete_buffer(YY_CURRENT_BUFFER );
1892 YY_CURRENT_BUFFER_LVALUE = NULL;
1893 yypop_buffer_state();
1894 }
1895
1896 /* Destroy the stack itself. */
1897 yyfree((yy_buffer_stack) );
1898 (yy_buffer_stack) = NULL;
1899
1900 /* Reset the globals. This is important in a non-reentrant scanner so the next time
1901 * yylex() is called, initialization will occur. */
1902 yy_init_globals( );
1903
1904 return 0;
1905}
1906
1907/*
1908 * Internal utility routines.
1909 */
1910
1911#ifndef yytext_ptr
1912static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
1913{
1914 register int i;
1915 for ( i = 0; i < n; ++i )
1916 s1[i] = s2[i];
1917}
1918#endif
1919
1920#ifdef YY_NEED_STRLEN
1921static int yy_flex_strlen (yyconst char * s )
1922{
1923 register int n;
1924 for ( n = 0; s[n]; ++n )
1925 ;
1926
1927 return n;
1928}
1929#endif
1930
1931void *yyalloc (yy_size_t size )
1932{
1933 return (void *) malloc( size );
1934}
1935
1936void *yyrealloc (void * ptr, yy_size_t size )
1937{
1938 /* The cast to (char *) in the following accommodates both
1939 * implementations that use char* generic pointers, and those
1940 * that use void* generic pointers. It works with the latter
1941 * because both ANSI C and C++ allow castless assignment from
1942 * any pointer type to void*, and deal with argument conversions
1943 * as though doing an assignment.
1944 */
1945 return (void *) realloc( (char *) ptr, size );
1946}
1947
1948void yyfree (void * ptr )
1949{
1950 free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
1951}
1952
1953#define YYTABLES_NAME "yytables"