lex.zconf.c_shipped 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436
  1. #line 3 "scripts/kconfig/lex.zconf.c"
  2. #define YY_INT_ALIGNED short int
  3. /* A lexical scanner generated by flex */
  4. #define yy_create_buffer zconf_create_buffer
  5. #define yy_delete_buffer zconf_delete_buffer
  6. #define yy_flex_debug zconf_flex_debug
  7. #define yy_init_buffer zconf_init_buffer
  8. #define yy_flush_buffer zconf_flush_buffer
  9. #define yy_load_buffer_state zconf_load_buffer_state
  10. #define yy_switch_to_buffer zconf_switch_to_buffer
  11. #define yyin zconfin
  12. #define yyleng zconfleng
  13. #define yylex zconflex
  14. #define yylineno zconflineno
  15. #define yyout zconfout
  16. #define yyrestart zconfrestart
  17. #define yytext zconftext
  18. #define yywrap zconfwrap
  19. #define yyalloc zconfalloc
  20. #define yyrealloc zconfrealloc
  21. #define yyfree zconffree
  22. #define FLEX_SCANNER
  23. #define YY_FLEX_MAJOR_VERSION 2
  24. #define YY_FLEX_MINOR_VERSION 5
  25. #define YY_FLEX_SUBMINOR_VERSION 35
  26. #if YY_FLEX_SUBMINOR_VERSION > 0
  27. #define FLEX_BETA
  28. #endif
  29. /* First, we deal with platform-specific or compiler-specific issues. */
  30. /* begin standard C headers. */
  31. #include <stdio.h>
  32. #include <string.h>
  33. #include <errno.h>
  34. #include <stdlib.h>
  35. /* end standard C headers. */
  36. /* flex integer type definitions */
  37. #ifndef FLEXINT_H
  38. #define FLEXINT_H
  39. /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
  40. #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
  41. /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
  42. * if you want the limit (max/min) macros for int types.
  43. */
  44. #ifndef __STDC_LIMIT_MACROS
  45. #define __STDC_LIMIT_MACROS 1
  46. #endif
  47. #include <inttypes.h>
  48. typedef int8_t flex_int8_t;
  49. typedef uint8_t flex_uint8_t;
  50. typedef int16_t flex_int16_t;
  51. typedef uint16_t flex_uint16_t;
  52. typedef int32_t flex_int32_t;
  53. typedef uint32_t flex_uint32_t;
  54. #else
  55. typedef signed char flex_int8_t;
  56. typedef short int flex_int16_t;
  57. typedef int flex_int32_t;
  58. typedef unsigned char flex_uint8_t;
  59. typedef unsigned short int flex_uint16_t;
  60. typedef unsigned int flex_uint32_t;
  61. /* Limits of integral types. */
  62. #ifndef INT8_MIN
  63. #define INT8_MIN (-128)
  64. #endif
  65. #ifndef INT16_MIN
  66. #define INT16_MIN (-32767-1)
  67. #endif
  68. #ifndef INT32_MIN
  69. #define INT32_MIN (-2147483647-1)
  70. #endif
  71. #ifndef INT8_MAX
  72. #define INT8_MAX (127)
  73. #endif
  74. #ifndef INT16_MAX
  75. #define INT16_MAX (32767)
  76. #endif
  77. #ifndef INT32_MAX
  78. #define INT32_MAX (2147483647)
  79. #endif
  80. #ifndef UINT8_MAX
  81. #define UINT8_MAX (255U)
  82. #endif
  83. #ifndef UINT16_MAX
  84. #define UINT16_MAX (65535U)
  85. #endif
  86. #ifndef UINT32_MAX
  87. #define UINT32_MAX (4294967295U)
  88. #endif
  89. #endif /* ! C99 */
  90. #endif /* ! FLEXINT_H */
  91. #ifdef __cplusplus
  92. /* The "const" storage-class-modifier is valid. */
  93. #define YY_USE_CONST
  94. #else /* ! __cplusplus */
  95. /* C99 requires __STDC__ to be defined as 1. */
  96. #if defined (__STDC__)
  97. #define YY_USE_CONST
  98. #endif /* defined (__STDC__) */
  99. #endif /* ! __cplusplus */
  100. #ifdef YY_USE_CONST
  101. #define yyconst const
  102. #else
  103. #define yyconst
  104. #endif
  105. /* Returned upon end-of-file. */
  106. #define YY_NULL 0
  107. /* Promotes a possibly negative, possibly signed char to an unsigned
  108. * integer for use as an array index. If the signed char is negative,
  109. * we want to instead treat it as an 8-bit unsigned char, hence the
  110. * double cast.
  111. */
  112. #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
  113. /* Enter a start condition. This macro really ought to take a parameter,
  114. * but we do it the disgusting crufty way forced on us by the ()-less
  115. * definition of BEGIN.
  116. */
  117. #define BEGIN (yy_start) = 1 + 2 *
  118. /* Translate the current start state into a value that can be later handed
  119. * to BEGIN to return to the state. The YYSTATE alias is for lex
  120. * compatibility.
  121. */
  122. #define YY_START (((yy_start) - 1) / 2)
  123. #define YYSTATE YY_START
  124. /* Action number for EOF rule of a given start state. */
  125. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  126. /* Special action meaning "start processing a new file". */
  127. #define YY_NEW_FILE zconfrestart(zconfin )
  128. #define YY_END_OF_BUFFER_CHAR 0
  129. /* Size of default input buffer. */
  130. #ifndef YY_BUF_SIZE
  131. #ifdef __ia64__
  132. /* On IA-64, the buffer size is 16k, not 8k.
  133. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
  134. * Ditto for the __ia64__ case accordingly.
  135. */
  136. #define YY_BUF_SIZE 32768
  137. #else
  138. #define YY_BUF_SIZE 16384
  139. #endif /* __ia64__ */
  140. #endif
  141. /* The state buf must be large enough to hold one state per character in the main buffer.
  142. */
  143. #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
  144. #ifndef YY_TYPEDEF_YY_BUFFER_STATE
  145. #define YY_TYPEDEF_YY_BUFFER_STATE
  146. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  147. #endif
  148. extern int zconfleng;
  149. extern FILE *zconfin, *zconfout;
  150. #define EOB_ACT_CONTINUE_SCAN 0
  151. #define EOB_ACT_END_OF_FILE 1
  152. #define EOB_ACT_LAST_MATCH 2
  153. #define YY_LESS_LINENO(n)
  154. /* Return all but the first "n" matched characters back to the input stream. */
  155. #define yyless(n) \
  156. do \
  157. { \
  158. /* Undo effects of setting up zconftext. */ \
  159. int yyless_macro_arg = (n); \
  160. YY_LESS_LINENO(yyless_macro_arg);\
  161. *yy_cp = (yy_hold_char); \
  162. YY_RESTORE_YY_MORE_OFFSET \
  163. (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
  164. YY_DO_BEFORE_ACTION; /* set up zconftext again */ \
  165. } \
  166. while ( 0 )
  167. #define unput(c) yyunput( c, (yytext_ptr) )
  168. #ifndef YY_TYPEDEF_YY_SIZE_T
  169. #define YY_TYPEDEF_YY_SIZE_T
  170. typedef size_t yy_size_t;
  171. #endif
  172. #ifndef YY_STRUCT_YY_BUFFER_STATE
  173. #define YY_STRUCT_YY_BUFFER_STATE
  174. struct yy_buffer_state
  175. {
  176. FILE *yy_input_file;
  177. char *yy_ch_buf; /* input buffer */
  178. char *yy_buf_pos; /* current position in input buffer */
  179. /* Size of input buffer in bytes, not including room for EOB
  180. * characters.
  181. */
  182. yy_size_t yy_buf_size;
  183. /* Number of characters read into yy_ch_buf, not including EOB
  184. * characters.
  185. */
  186. int yy_n_chars;
  187. /* Whether we "own" the buffer - i.e., we know we created it,
  188. * and can realloc() it to grow it, and should free() it to
  189. * delete it.
  190. */
  191. int yy_is_our_buffer;
  192. /* Whether this is an "interactive" input source; if so, and
  193. * if we're using stdio for input, then we want to use getc()
  194. * instead of fread(), to make sure we stop fetching input after
  195. * each newline.
  196. */
  197. int yy_is_interactive;
  198. /* Whether we're considered to be at the beginning of a line.
  199. * If so, '^' rules will be active on the next match, otherwise
  200. * not.
  201. */
  202. int yy_at_bol;
  203. int yy_bs_lineno; /**< The line count. */
  204. int yy_bs_column; /**< The column count. */
  205. /* Whether to try to fill the input buffer when we reach the
  206. * end of it.
  207. */
  208. int yy_fill_buffer;
  209. int yy_buffer_status;
  210. #define YY_BUFFER_NEW 0
  211. #define YY_BUFFER_NORMAL 1
  212. /* When an EOF's been seen but there's still some text to process
  213. * then we mark the buffer as YY_EOF_PENDING, to indicate that we
  214. * shouldn't try reading from the input source any more. We might
  215. * still have a bunch of tokens to match, though, because of
  216. * possible backing-up.
  217. *
  218. * When we actually see the EOF, we change the status to "new"
  219. * (via zconfrestart()), so that the user can continue scanning by
  220. * just pointing zconfin at a new input file.
  221. */
  222. #define YY_BUFFER_EOF_PENDING 2
  223. };
  224. #endif /* !YY_STRUCT_YY_BUFFER_STATE */
  225. /* Stack of input buffers. */
  226. static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
  227. static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
  228. static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
  229. /* We provide macros for accessing buffer states in case in the
  230. * future we want to put the buffer states in a more general
  231. * "scanner state".
  232. *
  233. * Returns the top of the stack, or NULL.
  234. */
  235. #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
  236. ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
  237. : NULL)
  238. /* Same as previous macro, but useful when we know that the buffer stack is not
  239. * NULL or when we need an lvalue. For internal use only.
  240. */
  241. #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
  242. /* yy_hold_char holds the character lost when zconftext is formed. */
  243. static char yy_hold_char;
  244. static int yy_n_chars; /* number of characters read into yy_ch_buf */
  245. int zconfleng;
  246. /* Points to current character in buffer. */
  247. static char *yy_c_buf_p = (char *) 0;
  248. static int yy_init = 0; /* whether we need to initialize */
  249. static int yy_start = 0; /* start state number */
  250. /* Flag which is used to allow zconfwrap()'s to do buffer switches
  251. * instead of setting up a fresh zconfin. A bit of a hack ...
  252. */
  253. static int yy_did_buffer_switch_on_eof;
  254. void zconfrestart (FILE *input_file );
  255. void zconf_switch_to_buffer (YY_BUFFER_STATE new_buffer );
  256. YY_BUFFER_STATE zconf_create_buffer (FILE *file,int size );
  257. void zconf_delete_buffer (YY_BUFFER_STATE b );
  258. void zconf_flush_buffer (YY_BUFFER_STATE b );
  259. void zconfpush_buffer_state (YY_BUFFER_STATE new_buffer );
  260. void zconfpop_buffer_state (void );
  261. static void zconfensure_buffer_stack (void );
  262. static void zconf_load_buffer_state (void );
  263. static void zconf_init_buffer (YY_BUFFER_STATE b,FILE *file );
  264. #define YY_FLUSH_BUFFER zconf_flush_buffer(YY_CURRENT_BUFFER )
  265. YY_BUFFER_STATE zconf_scan_buffer (char *base,yy_size_t size );
  266. YY_BUFFER_STATE zconf_scan_string (yyconst char *yy_str );
  267. YY_BUFFER_STATE zconf_scan_bytes (yyconst char *bytes,int len );
  268. void *zconfalloc (yy_size_t );
  269. void *zconfrealloc (void *,yy_size_t );
  270. void zconffree (void * );
  271. #define yy_new_buffer zconf_create_buffer
  272. #define yy_set_interactive(is_interactive) \
  273. { \
  274. if ( ! YY_CURRENT_BUFFER ){ \
  275. zconfensure_buffer_stack (); \
  276. YY_CURRENT_BUFFER_LVALUE = \
  277. zconf_create_buffer(zconfin,YY_BUF_SIZE ); \
  278. } \
  279. YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
  280. }
  281. #define yy_set_bol(at_bol) \
  282. { \
  283. if ( ! YY_CURRENT_BUFFER ){\
  284. zconfensure_buffer_stack (); \
  285. YY_CURRENT_BUFFER_LVALUE = \
  286. zconf_create_buffer(zconfin,YY_BUF_SIZE ); \
  287. } \
  288. YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
  289. }
  290. #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
  291. /* Begin user sect3 */
  292. #define zconfwrap(n) 1
  293. #define YY_SKIP_YYWRAP
  294. typedef unsigned char YY_CHAR;
  295. FILE *zconfin = (FILE *) 0, *zconfout = (FILE *) 0;
  296. typedef int yy_state_type;
  297. extern int zconflineno;
  298. int zconflineno = 1;
  299. extern char *zconftext;
  300. #define yytext_ptr zconftext
  301. static yyconst flex_int16_t yy_nxt[][17] =
  302. {
  303. {
  304. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  305. 0, 0, 0, 0, 0, 0, 0
  306. },
  307. {
  308. 11, 12, 13, 14, 12, 12, 15, 12, 12, 12,
  309. 12, 12, 12, 12, 12, 12, 12
  310. },
  311. {
  312. 11, 12, 13, 14, 12, 12, 15, 12, 12, 12,
  313. 12, 12, 12, 12, 12, 12, 12
  314. },
  315. {
  316. 11, 16, 16, 17, 16, 16, 16, 16, 16, 16,
  317. 16, 16, 16, 18, 16, 16, 16
  318. },
  319. {
  320. 11, 16, 16, 17, 16, 16, 16, 16, 16, 16,
  321. 16, 16, 16, 18, 16, 16, 16
  322. },
  323. {
  324. 11, 19, 20, 21, 19, 19, 19, 19, 19, 19,
  325. 19, 19, 19, 19, 19, 19, 19
  326. },
  327. {
  328. 11, 19, 20, 21, 19, 19, 19, 19, 19, 19,
  329. 19, 19, 19, 19, 19, 19, 19
  330. },
  331. {
  332. 11, 22, 22, 23, 22, 24, 22, 22, 24, 22,
  333. 22, 22, 22, 22, 22, 25, 22
  334. },
  335. {
  336. 11, 22, 22, 23, 22, 24, 22, 22, 24, 22,
  337. 22, 22, 22, 22, 22, 25, 22
  338. },
  339. {
  340. 11, 26, 26, 27, 28, 29, 30, 31, 29, 32,
  341. 33, 34, 35, 35, 36, 37, 38
  342. },
  343. {
  344. 11, 26, 26, 27, 28, 29, 30, 31, 29, 32,
  345. 33, 34, 35, 35, 36, 37, 38
  346. },
  347. {
  348. -11, -11, -11, -11, -11, -11, -11, -11, -11, -11,
  349. -11, -11, -11, -11, -11, -11, -11
  350. },
  351. {
  352. 11, -12, -12, -12, -12, -12, -12, -12, -12, -12,
  353. -12, -12, -12, -12, -12, -12, -12
  354. },
  355. {
  356. 11, -13, 39, 40, -13, -13, 41, -13, -13, -13,
  357. -13, -13, -13, -13, -13, -13, -13
  358. },
  359. {
  360. 11, -14, -14, -14, -14, -14, -14, -14, -14, -14,
  361. -14, -14, -14, -14, -14, -14, -14
  362. },
  363. {
  364. 11, 42, 42, 43, 42, 42, 42, 42, 42, 42,
  365. 42, 42, 42, 42, 42, 42, 42
  366. },
  367. {
  368. 11, -16, -16, -16, -16, -16, -16, -16, -16, -16,
  369. -16, -16, -16, -16, -16, -16, -16
  370. },
  371. {
  372. 11, -17, -17, -17, -17, -17, -17, -17, -17, -17,
  373. -17, -17, -17, -17, -17, -17, -17
  374. },
  375. {
  376. 11, -18, -18, -18, -18, -18, -18, -18, -18, -18,
  377. -18, -18, -18, 44, -18, -18, -18
  378. },
  379. {
  380. 11, 45, 45, -19, 45, 45, 45, 45, 45, 45,
  381. 45, 45, 45, 45, 45, 45, 45
  382. },
  383. {
  384. 11, -20, 46, 47, -20, -20, -20, -20, -20, -20,
  385. -20, -20, -20, -20, -20, -20, -20
  386. },
  387. {
  388. 11, 48, -21, -21, 48, 48, 48, 48, 48, 48,
  389. 48, 48, 48, 48, 48, 48, 48
  390. },
  391. {
  392. 11, 49, 49, 50, 49, -22, 49, 49, -22, 49,
  393. 49, 49, 49, 49, 49, -22, 49
  394. },
  395. {
  396. 11, -23, -23, -23, -23, -23, -23, -23, -23, -23,
  397. -23, -23, -23, -23, -23, -23, -23
  398. },
  399. {
  400. 11, -24, -24, -24, -24, -24, -24, -24, -24, -24,
  401. -24, -24, -24, -24, -24, -24, -24
  402. },
  403. {
  404. 11, 51, 51, 52, 51, 51, 51, 51, 51, 51,
  405. 51, 51, 51, 51, 51, 51, 51
  406. },
  407. {
  408. 11, -26, -26, -26, -26, -26, -26, -26, -26, -26,
  409. -26, -26, -26, -26, -26, -26, -26
  410. },
  411. {
  412. 11, -27, -27, -27, -27, -27, -27, -27, -27, -27,
  413. -27, -27, -27, -27, -27, -27, -27
  414. },
  415. {
  416. 11, -28, -28, -28, -28, -28, -28, -28, -28, -28,
  417. -28, -28, -28, -28, 53, -28, -28
  418. },
  419. {
  420. 11, -29, -29, -29, -29, -29, -29, -29, -29, -29,
  421. -29, -29, -29, -29, -29, -29, -29
  422. },
  423. {
  424. 11, 54, 54, -30, 54, 54, 54, 54, 54, 54,
  425. 54, 54, 54, 54, 54, 54, 54
  426. },
  427. {
  428. 11, -31, -31, -31, -31, -31, -31, 55, -31, -31,
  429. -31, -31, -31, -31, -31, -31, -31
  430. },
  431. {
  432. 11, -32, -32, -32, -32, -32, -32, -32, -32, -32,
  433. -32, -32, -32, -32, -32, -32, -32
  434. },
  435. {
  436. 11, -33, -33, -33, -33, -33, -33, -33, -33, -33,
  437. -33, -33, -33, -33, -33, -33, -33
  438. },
  439. {
  440. 11, -34, -34, -34, -34, -34, -34, -34, -34, -34,
  441. -34, 56, 57, 57, -34, -34, -34
  442. },
  443. {
  444. 11, -35, -35, -35, -35, -35, -35, -35, -35, -35,
  445. -35, 57, 57, 57, -35, -35, -35
  446. },
  447. {
  448. 11, -36, -36, -36, -36, -36, -36, -36, -36, -36,
  449. -36, -36, -36, -36, -36, -36, -36
  450. },
  451. {
  452. 11, -37, -37, 58, -37, -37, -37, -37, -37, -37,
  453. -37, -37, -37, -37, -37, -37, -37
  454. },
  455. {
  456. 11, -38, -38, -38, -38, -38, -38, -38, -38, -38,
  457. -38, -38, -38, -38, -38, -38, 59
  458. },
  459. {
  460. 11, -39, 39, 40, -39, -39, 41, -39, -39, -39,
  461. -39, -39, -39, -39, -39, -39, -39
  462. },
  463. {
  464. 11, -40, -40, -40, -40, -40, -40, -40, -40, -40,
  465. -40, -40, -40, -40, -40, -40, -40
  466. },
  467. {
  468. 11, 42, 42, 43, 42, 42, 42, 42, 42, 42,
  469. 42, 42, 42, 42, 42, 42, 42
  470. },
  471. {
  472. 11, 42, 42, 43, 42, 42, 42, 42, 42, 42,
  473. 42, 42, 42, 42, 42, 42, 42
  474. },
  475. {
  476. 11, -43, -43, -43, -43, -43, -43, -43, -43, -43,
  477. -43, -43, -43, -43, -43, -43, -43
  478. },
  479. {
  480. 11, -44, -44, -44, -44, -44, -44, -44, -44, -44,
  481. -44, -44, -44, 44, -44, -44, -44
  482. },
  483. {
  484. 11, 45, 45, -45, 45, 45, 45, 45, 45, 45,
  485. 45, 45, 45, 45, 45, 45, 45
  486. },
  487. {
  488. 11, -46, 46, 47, -46, -46, -46, -46, -46, -46,
  489. -46, -46, -46, -46, -46, -46, -46
  490. },
  491. {
  492. 11, 48, -47, -47, 48, 48, 48, 48, 48, 48,
  493. 48, 48, 48, 48, 48, 48, 48
  494. },
  495. {
  496. 11, -48, -48, -48, -48, -48, -48, -48, -48, -48,
  497. -48, -48, -48, -48, -48, -48, -48
  498. },
  499. {
  500. 11, 49, 49, 50, 49, -49, 49, 49, -49, 49,
  501. 49, 49, 49, 49, 49, -49, 49
  502. },
  503. {
  504. 11, -50, -50, -50, -50, -50, -50, -50, -50, -50,
  505. -50, -50, -50, -50, -50, -50, -50
  506. },
  507. {
  508. 11, -51, -51, 52, -51, -51, -51, -51, -51, -51,
  509. -51, -51, -51, -51, -51, -51, -51
  510. },
  511. {
  512. 11, -52, -52, -52, -52, -52, -52, -52, -52, -52,
  513. -52, -52, -52, -52, -52, -52, -52
  514. },
  515. {
  516. 11, -53, -53, -53, -53, -53, -53, -53, -53, -53,
  517. -53, -53, -53, -53, -53, -53, -53
  518. },
  519. {
  520. 11, 54, 54, -54, 54, 54, 54, 54, 54, 54,
  521. 54, 54, 54, 54, 54, 54, 54
  522. },
  523. {
  524. 11, -55, -55, -55, -55, -55, -55, -55, -55, -55,
  525. -55, -55, -55, -55, -55, -55, -55
  526. },
  527. {
  528. 11, -56, -56, -56, -56, -56, -56, -56, -56, -56,
  529. -56, 60, 57, 57, -56, -56, -56
  530. },
  531. {
  532. 11, -57, -57, -57, -57, -57, -57, -57, -57, -57,
  533. -57, 57, 57, 57, -57, -57, -57
  534. },
  535. {
  536. 11, -58, -58, -58, -58, -58, -58, -58, -58, -58,
  537. -58, -58, -58, -58, -58, -58, -58
  538. },
  539. {
  540. 11, -59, -59, -59, -59, -59, -59, -59, -59, -59,
  541. -59, -59, -59, -59, -59, -59, -59
  542. },
  543. {
  544. 11, -60, -60, -60, -60, -60, -60, -60, -60, -60,
  545. -60, 57, 57, 57, -60, -60, -60
  546. },
  547. } ;
  548. static yy_state_type yy_get_previous_state (void );
  549. static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
  550. static int yy_get_next_buffer (void );
  551. static void yy_fatal_error (yyconst char msg[] );
  552. /* Done after the current pattern has been matched and before the
  553. * corresponding action - sets up zconftext.
  554. */
  555. #define YY_DO_BEFORE_ACTION \
  556. (yytext_ptr) = yy_bp; \
  557. zconfleng = (size_t) (yy_cp - yy_bp); \
  558. (yy_hold_char) = *yy_cp; \
  559. *yy_cp = '\0'; \
  560. (yy_c_buf_p) = yy_cp;
  561. #define YY_NUM_RULES 33
  562. #define YY_END_OF_BUFFER 34
  563. /* This struct is not used in this scanner,
  564. but its presence is necessary. */
  565. struct yy_trans_info
  566. {
  567. flex_int32_t yy_verify;
  568. flex_int32_t yy_nxt;
  569. };
  570. static yyconst flex_int16_t yy_accept[61] =
  571. { 0,
  572. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  573. 34, 5, 4, 2, 3, 7, 8, 6, 32, 29,
  574. 31, 24, 28, 27, 26, 22, 17, 13, 16, 20,
  575. 22, 11, 12, 19, 19, 14, 22, 22, 4, 2,
  576. 3, 3, 1, 6, 32, 29, 31, 30, 24, 23,
  577. 26, 25, 15, 20, 9, 19, 19, 21, 10, 18
  578. } ;
  579. static yyconst flex_int32_t yy_ec[256] =
  580. { 0,
  581. 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
  582. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  583. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  584. 1, 2, 4, 5, 6, 1, 1, 7, 8, 9,
  585. 10, 1, 1, 1, 11, 12, 12, 13, 13, 13,
  586. 13, 13, 13, 13, 13, 13, 13, 1, 1, 1,
  587. 14, 1, 1, 1, 13, 13, 13, 13, 13, 13,
  588. 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
  589. 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
  590. 1, 15, 1, 1, 13, 1, 13, 13, 13, 13,
  591. 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
  592. 13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
  593. 13, 13, 1, 16, 1, 1, 1, 1, 1, 1,
  594. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  595. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  596. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  597. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  598. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  599. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  600. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  601. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  602. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  603. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  604. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  605. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  606. 1, 1, 1, 1, 1
  607. } ;
  608. extern int zconf_flex_debug;
  609. int zconf_flex_debug = 0;
  610. /* The intent behind this definition is that it'll catch
  611. * any uses of REJECT which flex missed.
  612. */
  613. #define REJECT reject_used_but_not_detected
  614. #define yymore() yymore_used_but_not_detected
  615. #define YY_MORE_ADJ 0
  616. #define YY_RESTORE_YY_MORE_OFFSET
  617. char *zconftext;
  618. #define YY_NO_INPUT 1
  619. /*
  620. * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
  621. * Released under the terms of the GNU GPL v2.0.
  622. */
  623. #include <limits.h>
  624. #include <stdio.h>
  625. #include <stdlib.h>
  626. #include <string.h>
  627. #include <unistd.h>
  628. #define LKC_DIRECT_LINK
  629. #include "lkc.h"
  630. #define START_STRSIZE 16
  631. static struct {
  632. struct file *file;
  633. int lineno;
  634. } current_pos;
  635. static char *text;
  636. static int text_size, text_asize;
  637. struct buffer {
  638. struct buffer *parent;
  639. YY_BUFFER_STATE state;
  640. };
  641. struct buffer *current_buf;
  642. static int last_ts, first_ts;
  643. static void zconf_endhelp(void);
  644. static void zconf_endfile(void);
  645. static void new_string(void)
  646. {
  647. text = malloc(START_STRSIZE);
  648. text_asize = START_STRSIZE;
  649. text_size = 0;
  650. *text = 0;
  651. }
  652. static void append_string(const char *str, int size)
  653. {
  654. int new_size = text_size + size + 1;
  655. if (new_size > text_asize) {
  656. new_size += START_STRSIZE - 1;
  657. new_size &= -START_STRSIZE;
  658. text = realloc(text, new_size);
  659. text_asize = new_size;
  660. }
  661. memcpy(text + text_size, str, size);
  662. text_size += size;
  663. text[text_size] = 0;
  664. }
  665. static void alloc_string(const char *str, int size)
  666. {
  667. text = malloc(size + 1);
  668. memcpy(text, str, size);
  669. text[size] = 0;
  670. }
  671. #define INITIAL 0
  672. #define COMMAND 1
  673. #define HELP 2
  674. #define STRING 3
  675. #define PARAM 4
  676. #ifndef YY_NO_UNISTD_H
  677. /* Special case for "unistd.h", since it is non-ANSI. We include it way
  678. * down here because we want the user's section 1 to have been scanned first.
  679. * The user has a chance to override it with an option.
  680. */
  681. #include <unistd.h>
  682. #endif
  683. #ifndef YY_EXTRA_TYPE
  684. #define YY_EXTRA_TYPE void *
  685. #endif
  686. static int yy_init_globals (void );
  687. /* Accessor methods to globals.
  688. These are made visible to non-reentrant scanners for convenience. */
  689. int zconflex_destroy (void );
  690. int zconfget_debug (void );
  691. void zconfset_debug (int debug_flag );
  692. YY_EXTRA_TYPE zconfget_extra (void );
  693. void zconfset_extra (YY_EXTRA_TYPE user_defined );
  694. FILE *zconfget_in (void );
  695. void zconfset_in (FILE * in_str );
  696. FILE *zconfget_out (void );
  697. void zconfset_out (FILE * out_str );
  698. int zconfget_leng (void );
  699. char *zconfget_text (void );
  700. int zconfget_lineno (void );
  701. void zconfset_lineno (int line_number );
  702. /* Macros after this point can all be overridden by user definitions in
  703. * section 1.
  704. */
  705. #ifndef YY_SKIP_YYWRAP
  706. #ifdef __cplusplus
  707. extern "C" int zconfwrap (void );
  708. #else
  709. extern int zconfwrap (void );
  710. #endif
  711. #endif
  712. static void yyunput (int c,char *buf_ptr );
  713. #ifndef yytext_ptr
  714. static void yy_flex_strncpy (char *,yyconst char *,int );
  715. #endif
  716. #ifdef YY_NEED_STRLEN
  717. static int yy_flex_strlen (yyconst char * );
  718. #endif
  719. #ifndef YY_NO_INPUT
  720. #ifdef __cplusplus
  721. static int yyinput (void );
  722. #else
  723. static int input (void );
  724. #endif
  725. #endif
  726. /* Amount of stuff to slurp up with each read. */
  727. #ifndef YY_READ_BUF_SIZE
  728. #ifdef __ia64__
  729. /* On IA-64, the buffer size is 16k, not 8k */
  730. #define YY_READ_BUF_SIZE 16384
  731. #else
  732. #define YY_READ_BUF_SIZE 8192
  733. #endif /* __ia64__ */
  734. #endif
  735. /* Copy whatever the last rule matched to the standard output. */
  736. #ifndef ECHO
  737. /* This used to be an fputs(), but since the string might contain NUL's,
  738. * we now use fwrite().
  739. */
  740. #define ECHO do { if (fwrite( zconftext, zconfleng, 1, zconfout )) {} } while (0)
  741. #endif
  742. /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
  743. * is returned in "result".
  744. */
  745. #ifndef YY_INPUT
  746. #define YY_INPUT(buf,result,max_size) \
  747. errno=0; \
  748. while ( (result = read( fileno(zconfin), (char *) buf, max_size )) < 0 ) \
  749. { \
  750. if( errno != EINTR) \
  751. { \
  752. YY_FATAL_ERROR( "input in flex scanner failed" ); \
  753. break; \
  754. } \
  755. errno=0; \
  756. clearerr(zconfin); \
  757. }\
  758. \
  759. #endif
  760. /* No semi-colon after return; correct usage is to write "yyterminate();" -
  761. * we don't want an extra ';' after the "return" because that will cause
  762. * some compilers to complain about unreachable statements.
  763. */
  764. #ifndef yyterminate
  765. #define yyterminate() return YY_NULL
  766. #endif
  767. /* Number of entries by which start-condition stack grows. */
  768. #ifndef YY_START_STACK_INCR
  769. #define YY_START_STACK_INCR 25
  770. #endif
  771. /* Report a fatal error. */
  772. #ifndef YY_FATAL_ERROR
  773. #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
  774. #endif
  775. /* end tables serialization structures and prototypes */
  776. /* Default declaration of generated scanner - a define so the user can
  777. * easily add parameters.
  778. */
  779. #ifndef YY_DECL
  780. #define YY_DECL_IS_OURS 1
  781. extern int zconflex (void);
  782. #define YY_DECL int zconflex (void)
  783. #endif /* !YY_DECL */
  784. /* Code executed at the beginning of each rule, after zconftext and zconfleng
  785. * have been set up.
  786. */
  787. #ifndef YY_USER_ACTION
  788. #define YY_USER_ACTION
  789. #endif
  790. /* Code executed at the end of each rule. */
  791. #ifndef YY_BREAK
  792. #define YY_BREAK break;
  793. #endif
  794. #define YY_RULE_SETUP \
  795. YY_USER_ACTION
  796. /** The main scanner function which does all the work.
  797. */
  798. YY_DECL
  799. {
  800. register yy_state_type yy_current_state;
  801. register char *yy_cp, *yy_bp;
  802. register int yy_act;
  803. int str = 0;
  804. int ts, i;
  805. if ( !(yy_init) )
  806. {
  807. (yy_init) = 1;
  808. #ifdef YY_USER_INIT
  809. YY_USER_INIT;
  810. #endif
  811. if ( ! (yy_start) )
  812. (yy_start) = 1; /* first start state */
  813. if ( ! zconfin )
  814. zconfin = stdin;
  815. if ( ! zconfout )
  816. zconfout = stdout;
  817. if ( ! YY_CURRENT_BUFFER ) {
  818. zconfensure_buffer_stack ();
  819. YY_CURRENT_BUFFER_LVALUE =
  820. zconf_create_buffer(zconfin,YY_BUF_SIZE );
  821. }
  822. zconf_load_buffer_state( );
  823. }
  824. while ( 1 ) /* loops until end-of-file is reached */
  825. {
  826. yy_cp = (yy_c_buf_p);
  827. /* Support of zconftext. */
  828. *yy_cp = (yy_hold_char);
  829. /* yy_bp points to the position in yy_ch_buf of the start of
  830. * the current run.
  831. */
  832. yy_bp = yy_cp;
  833. yy_current_state = (yy_start);
  834. yy_match:
  835. while ( (yy_current_state = yy_nxt[yy_current_state][ yy_ec[YY_SC_TO_UI(*yy_cp)] ]) > 0 )
  836. ++yy_cp;
  837. yy_current_state = -yy_current_state;
  838. yy_find_action:
  839. yy_act = yy_accept[yy_current_state];
  840. YY_DO_BEFORE_ACTION;
  841. do_action: /* This label is used only to access EOF actions. */
  842. switch ( yy_act )
  843. { /* beginning of action switch */
  844. case 1:
  845. /* rule 1 can match eol */
  846. case 2:
  847. /* rule 2 can match eol */
  848. YY_RULE_SETUP
  849. {
  850. current_file->lineno++;
  851. return T_EOL;
  852. }
  853. YY_BREAK
  854. case 3:
  855. YY_RULE_SETUP
  856. YY_BREAK
  857. case 4:
  858. YY_RULE_SETUP
  859. {
  860. BEGIN(COMMAND);
  861. }
  862. YY_BREAK
  863. case 5:
  864. YY_RULE_SETUP
  865. {
  866. unput(zconftext[0]);
  867. BEGIN(COMMAND);
  868. }
  869. YY_BREAK
  870. case 6:
  871. YY_RULE_SETUP
  872. {
  873. struct kconf_id *id = kconf_id_lookup(zconftext, zconfleng);
  874. BEGIN(PARAM);
  875. current_pos.file = current_file;
  876. current_pos.lineno = current_file->lineno;
  877. if (id && id->flags & TF_COMMAND) {
  878. zconflval.id = id;
  879. return id->token;
  880. }
  881. alloc_string(zconftext, zconfleng);
  882. zconflval.string = text;
  883. return T_WORD;
  884. }
  885. YY_BREAK
  886. case 7:
  887. YY_RULE_SETUP
  888. YY_BREAK
  889. case 8:
  890. /* rule 8 can match eol */
  891. YY_RULE_SETUP
  892. {
  893. BEGIN(INITIAL);
  894. current_file->lineno++;
  895. return T_EOL;
  896. }
  897. YY_BREAK
  898. case 9:
  899. YY_RULE_SETUP
  900. return T_AND;
  901. YY_BREAK
  902. case 10:
  903. YY_RULE_SETUP
  904. return T_OR;
  905. YY_BREAK
  906. case 11:
  907. YY_RULE_SETUP
  908. return T_OPEN_PAREN;
  909. YY_BREAK
  910. case 12:
  911. YY_RULE_SETUP
  912. return T_CLOSE_PAREN;
  913. YY_BREAK
  914. case 13:
  915. YY_RULE_SETUP
  916. return T_NOT;
  917. YY_BREAK
  918. case 14:
  919. YY_RULE_SETUP
  920. return T_EQUAL;
  921. YY_BREAK
  922. case 15:
  923. YY_RULE_SETUP
  924. return T_UNEQUAL;
  925. YY_BREAK
  926. case 16:
  927. YY_RULE_SETUP
  928. {
  929. str = zconftext[0];
  930. new_string();
  931. BEGIN(STRING);
  932. }
  933. YY_BREAK
  934. case 17:
  935. /* rule 17 can match eol */
  936. YY_RULE_SETUP
  937. BEGIN(INITIAL); current_file->lineno++; return T_EOL;
  938. YY_BREAK
  939. case 18:
  940. YY_RULE_SETUP
  941. /* ignore */
  942. YY_BREAK
  943. case 19:
  944. YY_RULE_SETUP
  945. {
  946. struct kconf_id *id = kconf_id_lookup(zconftext, zconfleng);
  947. if (id && id->flags & TF_PARAM) {
  948. zconflval.id = id;
  949. return id->token;
  950. }
  951. alloc_string(zconftext, zconfleng);
  952. zconflval.string = text;
  953. return T_WORD;
  954. }
  955. YY_BREAK
  956. case 20:
  957. YY_RULE_SETUP
  958. /* comment */
  959. YY_BREAK
  960. case 21:
  961. /* rule 21 can match eol */
  962. YY_RULE_SETUP
  963. current_file->lineno++;
  964. YY_BREAK
  965. case 22:
  966. YY_RULE_SETUP
  967. YY_BREAK
  968. case YY_STATE_EOF(PARAM):
  969. {
  970. BEGIN(INITIAL);
  971. }
  972. YY_BREAK
  973. case 23:
  974. /* rule 23 can match eol */
  975. *yy_cp = (yy_hold_char); /* undo effects of setting up zconftext */
  976. (yy_c_buf_p) = yy_cp -= 1;
  977. YY_DO_BEFORE_ACTION; /* set up zconftext again */
  978. YY_RULE_SETUP
  979. {
  980. append_string(zconftext, zconfleng);
  981. zconflval.string = text;
  982. return T_WORD_QUOTE;
  983. }
  984. YY_BREAK
  985. case 24:
  986. YY_RULE_SETUP
  987. {
  988. append_string(zconftext, zconfleng);
  989. }
  990. YY_BREAK
  991. case 25:
  992. /* rule 25 can match eol */
  993. *yy_cp = (yy_hold_char); /* undo effects of setting up zconftext */
  994. (yy_c_buf_p) = yy_cp -= 1;
  995. YY_DO_BEFORE_ACTION; /* set up zconftext again */
  996. YY_RULE_SETUP
  997. {
  998. append_string(zconftext + 1, zconfleng - 1);
  999. zconflval.string = text;
  1000. return T_WORD_QUOTE;
  1001. }
  1002. YY_BREAK
  1003. case 26:
  1004. YY_RULE_SETUP
  1005. {
  1006. append_string(zconftext + 1, zconfleng - 1);
  1007. }
  1008. YY_BREAK
  1009. case 27:
  1010. YY_RULE_SETUP
  1011. {
  1012. if (str == zconftext[0]) {
  1013. BEGIN(PARAM);
  1014. zconflval.string = text;
  1015. return T_WORD_QUOTE;
  1016. } else
  1017. append_string(zconftext, 1);
  1018. }
  1019. YY_BREAK
  1020. case 28:
  1021. /* rule 28 can match eol */
  1022. YY_RULE_SETUP
  1023. {
  1024. printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
  1025. current_file->lineno++;
  1026. BEGIN(INITIAL);
  1027. return T_EOL;
  1028. }
  1029. YY_BREAK
  1030. case YY_STATE_EOF(STRING):
  1031. {
  1032. BEGIN(INITIAL);
  1033. }
  1034. YY_BREAK
  1035. case 29:
  1036. YY_RULE_SETUP
  1037. {
  1038. ts = 0;
  1039. for (i = 0; i < zconfleng; i++) {
  1040. if (zconftext[i] == '\t')
  1041. ts = (ts & ~7) + 8;
  1042. else
  1043. ts++;
  1044. }
  1045. last_ts = ts;
  1046. if (first_ts) {
  1047. if (ts < first_ts) {
  1048. zconf_endhelp();
  1049. return T_HELPTEXT;
  1050. }
  1051. ts -= first_ts;
  1052. while (ts > 8) {
  1053. append_string(" ", 8);
  1054. ts -= 8;
  1055. }
  1056. append_string(" ", ts);
  1057. }
  1058. }
  1059. YY_BREAK
  1060. case 30:
  1061. /* rule 30 can match eol */
  1062. *yy_cp = (yy_hold_char); /* undo effects of setting up zconftext */
  1063. (yy_c_buf_p) = yy_cp -= 1;
  1064. YY_DO_BEFORE_ACTION; /* set up zconftext again */
  1065. YY_RULE_SETUP
  1066. {
  1067. current_file->lineno++;
  1068. zconf_endhelp();
  1069. return T_HELPTEXT;
  1070. }
  1071. YY_BREAK
  1072. case 31:
  1073. /* rule 31 can match eol */
  1074. YY_RULE_SETUP
  1075. {
  1076. current_file->lineno++;
  1077. append_string("\n", 1);
  1078. }
  1079. YY_BREAK
  1080. case 32:
  1081. YY_RULE_SETUP
  1082. {
  1083. while (zconfleng) {
  1084. if ((zconftext[zconfleng-1] != ' ') && (zconftext[zconfleng-1] != '\t'))
  1085. break;
  1086. zconfleng--;
  1087. }
  1088. append_string(zconftext, zconfleng);
  1089. if (!first_ts)
  1090. first_ts = last_ts;
  1091. }
  1092. YY_BREAK
  1093. case YY_STATE_EOF(HELP):
  1094. {
  1095. zconf_endhelp();
  1096. return T_HELPTEXT;
  1097. }
  1098. YY_BREAK
  1099. case YY_STATE_EOF(INITIAL):
  1100. case YY_STATE_EOF(COMMAND):
  1101. {
  1102. if (current_file) {
  1103. zconf_endfile();
  1104. return T_EOL;
  1105. }
  1106. fclose(zconfin);
  1107. yyterminate();
  1108. }
  1109. YY_BREAK
  1110. case 33:
  1111. YY_RULE_SETUP
  1112. YY_FATAL_ERROR( "flex scanner jammed" );
  1113. YY_BREAK
  1114. case YY_END_OF_BUFFER:
  1115. {
  1116. /* Amount of text matched not including the EOB char. */
  1117. int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
  1118. /* Undo the effects of YY_DO_BEFORE_ACTION. */
  1119. *yy_cp = (yy_hold_char);
  1120. YY_RESTORE_YY_MORE_OFFSET
  1121. if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
  1122. {
  1123. /* We're scanning a new file or input source. It's
  1124. * possible that this happened because the user
  1125. * just pointed zconfin at a new source and called
  1126. * zconflex(). If so, then we have to assure
  1127. * consistency between YY_CURRENT_BUFFER and our
  1128. * globals. Here is the right place to do so, because
  1129. * this is the first action (other than possibly a
  1130. * back-up) that will match for the new input source.
  1131. */
  1132. (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
  1133. YY_CURRENT_BUFFER_LVALUE->yy_input_file = zconfin;
  1134. YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
  1135. }
  1136. /* Note that here we test for yy_c_buf_p "<=" to the position
  1137. * of the first EOB in the buffer, since yy_c_buf_p will
  1138. * already have been incremented past the NUL character
  1139. * (since all states make transitions on EOB to the
  1140. * end-of-buffer state). Contrast this with the test
  1141. * in input().
  1142. */
  1143. if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
  1144. { /* This was really a NUL. */
  1145. yy_state_type yy_next_state;
  1146. (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
  1147. yy_current_state = yy_get_previous_state( );
  1148. /* Okay, we're now positioned to make the NUL
  1149. * transition. We couldn't have
  1150. * yy_get_previous_state() go ahead and do it
  1151. * for us because it doesn't know how to deal
  1152. * with the possibility of jamming (and we don't
  1153. * want to build jamming into it because then it
  1154. * will run more slowly).
  1155. */
  1156. yy_next_state = yy_try_NUL_trans( yy_current_state );
  1157. yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  1158. if ( yy_next_state )
  1159. {
  1160. /* Consume the NUL. */
  1161. yy_cp = ++(yy_c_buf_p);
  1162. yy_current_state = yy_next_state;
  1163. goto yy_match;
  1164. }
  1165. else
  1166. {
  1167. yy_cp = (yy_c_buf_p);
  1168. goto yy_find_action;
  1169. }
  1170. }
  1171. else switch ( yy_get_next_buffer( ) )
  1172. {
  1173. case EOB_ACT_END_OF_FILE:
  1174. {
  1175. (yy_did_buffer_switch_on_eof) = 0;
  1176. if ( zconfwrap( ) )
  1177. {
  1178. /* Note: because we've taken care in
  1179. * yy_get_next_buffer() to have set up
  1180. * zconftext, we can now set up
  1181. * yy_c_buf_p so that if some total
  1182. * hoser (like flex itself) wants to
  1183. * call the scanner after we return the
  1184. * YY_NULL, it'll still work - another
  1185. * YY_NULL will get returned.
  1186. */
  1187. (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
  1188. yy_act = YY_STATE_EOF(YY_START);
  1189. goto do_action;
  1190. }
  1191. else
  1192. {
  1193. if ( ! (yy_did_buffer_switch_on_eof) )
  1194. YY_NEW_FILE;
  1195. }
  1196. break;
  1197. }
  1198. case EOB_ACT_CONTINUE_SCAN:
  1199. (yy_c_buf_p) =
  1200. (yytext_ptr) + yy_amount_of_matched_text;
  1201. yy_current_state = yy_get_previous_state( );
  1202. yy_cp = (yy_c_buf_p);
  1203. yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  1204. goto yy_match;
  1205. case EOB_ACT_LAST_MATCH:
  1206. (yy_c_buf_p) =
  1207. &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
  1208. yy_current_state = yy_get_previous_state( );
  1209. yy_cp = (yy_c_buf_p);
  1210. yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  1211. goto yy_find_action;
  1212. }
  1213. break;
  1214. }
  1215. default:
  1216. YY_FATAL_ERROR(
  1217. "fatal flex scanner internal error--no action found" );
  1218. } /* end of action switch */
  1219. } /* end of scanning one token */
  1220. } /* end of zconflex */
  1221. /* yy_get_next_buffer - try to read in a new buffer
  1222. *
  1223. * Returns a code representing an action:
  1224. * EOB_ACT_LAST_MATCH -
  1225. * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  1226. * EOB_ACT_END_OF_FILE - end of file
  1227. */
  1228. static int yy_get_next_buffer (void)
  1229. {
  1230. register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
  1231. register char *source = (yytext_ptr);
  1232. register int number_to_move, i;
  1233. int ret_val;
  1234. if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
  1235. YY_FATAL_ERROR(
  1236. "fatal flex scanner internal error--end of buffer missed" );
  1237. if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
  1238. { /* Don't try to fill the buffer, so this is an EOF. */
  1239. if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
  1240. {
  1241. /* We matched a single character, the EOB, so
  1242. * treat this as a final EOF.
  1243. */
  1244. return EOB_ACT_END_OF_FILE;
  1245. }
  1246. else
  1247. {
  1248. /* We matched some text prior to the EOB, first
  1249. * process it.
  1250. */
  1251. return EOB_ACT_LAST_MATCH;
  1252. }
  1253. }
  1254. /* Try to read more data. */
  1255. /* First move last chars to start of buffer. */
  1256. number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
  1257. for ( i = 0; i < number_to_move; ++i )
  1258. *(dest++) = *(source++);
  1259. if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  1260. /* don't do the read, it's not guaranteed to return an EOF,
  1261. * just force an EOF
  1262. */
  1263. YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
  1264. else
  1265. {
  1266. int num_to_read =
  1267. YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
  1268. while ( num_to_read <= 0 )
  1269. { /* Not enough room in the buffer - grow it. */
  1270. /* just a shorter name for the current buffer */
  1271. YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
  1272. int yy_c_buf_p_offset =
  1273. (int) ((yy_c_buf_p) - b->yy_ch_buf);
  1274. if ( b->yy_is_our_buffer )
  1275. {
  1276. int new_size = b->yy_buf_size * 2;
  1277. if ( new_size <= 0 )
  1278. b->yy_buf_size += b->yy_buf_size / 8;
  1279. else
  1280. b->yy_buf_size *= 2;
  1281. b->yy_ch_buf = (char *)
  1282. /* Include room in for 2 EOB chars. */
  1283. zconfrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
  1284. }
  1285. else
  1286. /* Can't grow it, we don't own it. */
  1287. b->yy_ch_buf = 0;
  1288. if ( ! b->yy_ch_buf )
  1289. YY_FATAL_ERROR(
  1290. "fatal error - scanner input buffer overflow" );
  1291. (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
  1292. num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
  1293. number_to_move - 1;
  1294. }
  1295. if ( num_to_read > YY_READ_BUF_SIZE )
  1296. num_to_read = YY_READ_BUF_SIZE;
  1297. /* Read in more data. */
  1298. YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
  1299. (yy_n_chars), (size_t) num_to_read );
  1300. YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  1301. }
  1302. if ( (yy_n_chars) == 0 )
  1303. {
  1304. if ( number_to_move == YY_MORE_ADJ )
  1305. {
  1306. ret_val = EOB_ACT_END_OF_FILE;
  1307. zconfrestart(zconfin );
  1308. }
  1309. else
  1310. {
  1311. ret_val = EOB_ACT_LAST_MATCH;
  1312. YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
  1313. YY_BUFFER_EOF_PENDING;
  1314. }
  1315. }
  1316. else
  1317. ret_val = EOB_ACT_CONTINUE_SCAN;
  1318. if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
  1319. /* Extend the array by 50%, plus the number we really need. */
  1320. yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
  1321. YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) zconfrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
  1322. if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
  1323. YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
  1324. }
  1325. (yy_n_chars) += number_to_move;
  1326. YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
  1327. YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
  1328. (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
  1329. return ret_val;
  1330. }
  1331. /* yy_get_previous_state - get the state just before the EOB char was reached */
  1332. static yy_state_type yy_get_previous_state (void)
  1333. {
  1334. register yy_state_type yy_current_state;
  1335. register char *yy_cp;
  1336. yy_current_state = (yy_start);
  1337. for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
  1338. {
  1339. yy_current_state = yy_nxt[yy_current_state][(*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1)];
  1340. }
  1341. return yy_current_state;
  1342. }
  1343. /* yy_try_NUL_trans - try to make a transition on the NUL character
  1344. *
  1345. * synopsis
  1346. * next_state = yy_try_NUL_trans( current_state );
  1347. */
  1348. static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
  1349. {
  1350. register int yy_is_jam;
  1351. yy_current_state = yy_nxt[yy_current_state][1];
  1352. yy_is_jam = (yy_current_state <= 0);
  1353. return yy_is_jam ? 0 : yy_current_state;
  1354. }
  1355. static void yyunput (int c, register char * yy_bp )
  1356. {
  1357. register char *yy_cp;
  1358. yy_cp = (yy_c_buf_p);
  1359. /* undo effects of setting up zconftext */
  1360. *yy_cp = (yy_hold_char);
  1361. if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
  1362. { /* need to shift things up to make room */
  1363. /* +2 for EOB chars. */
  1364. register int number_to_move = (yy_n_chars) + 2;
  1365. register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
  1366. YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
  1367. register char *source =
  1368. &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
  1369. while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
  1370. *--dest = *--source;
  1371. yy_cp += (int) (dest - source);
  1372. yy_bp += (int) (dest - source);
  1373. YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
  1374. (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
  1375. if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
  1376. YY_FATAL_ERROR( "flex scanner push-back overflow" );
  1377. }
  1378. *--yy_cp = (char) c;
  1379. (yytext_ptr) = yy_bp;
  1380. (yy_hold_char) = *yy_cp;
  1381. (yy_c_buf_p) = yy_cp;
  1382. }
  1383. #ifndef YY_NO_INPUT
  1384. #ifdef __cplusplus
  1385. static int yyinput (void)
  1386. #else
  1387. static int input (void)
  1388. #endif
  1389. {
  1390. int c;
  1391. *(yy_c_buf_p) = (yy_hold_char);
  1392. if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
  1393. {
  1394. /* yy_c_buf_p now points to the character we want to return.
  1395. * If this occurs *before* the EOB characters, then it's a
  1396. * valid NUL; if not, then we've hit the end of the buffer.
  1397. */
  1398. if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
  1399. /* This was really a NUL. */
  1400. *(yy_c_buf_p) = '\0';
  1401. else
  1402. { /* need more input */
  1403. int offset = (yy_c_buf_p) - (yytext_ptr);
  1404. ++(yy_c_buf_p);
  1405. switch ( yy_get_next_buffer( ) )
  1406. {
  1407. case EOB_ACT_LAST_MATCH:
  1408. /* This happens because yy_g_n_b()
  1409. * sees that we've accumulated a
  1410. * token and flags that we need to
  1411. * try matching the token before
  1412. * proceeding. But for input(),
  1413. * there's no matching to consider.
  1414. * So convert the EOB_ACT_LAST_MATCH
  1415. * to EOB_ACT_END_OF_FILE.
  1416. */
  1417. /* Reset buffer status. */
  1418. zconfrestart(zconfin );
  1419. /*FALLTHROUGH*/
  1420. case EOB_ACT_END_OF_FILE:
  1421. {
  1422. if ( zconfwrap( ) )
  1423. return EOF;
  1424. if ( ! (yy_did_buffer_switch_on_eof) )
  1425. YY_NEW_FILE;
  1426. #ifdef __cplusplus
  1427. return yyinput();
  1428. #else
  1429. return input();
  1430. #endif
  1431. }
  1432. case EOB_ACT_CONTINUE_SCAN:
  1433. (yy_c_buf_p) = (yytext_ptr) + offset;
  1434. break;
  1435. }
  1436. }
  1437. }
  1438. c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
  1439. *(yy_c_buf_p) = '\0'; /* preserve zconftext */
  1440. (yy_hold_char) = *++(yy_c_buf_p);
  1441. return c;
  1442. }
  1443. #endif /* ifndef YY_NO_INPUT */
  1444. /** Immediately switch to a different input stream.
  1445. * @param input_file A readable stream.
  1446. *
  1447. * @note This function does not reset the start condition to @c INITIAL .
  1448. */
  1449. void zconfrestart (FILE * input_file )
  1450. {
  1451. if ( ! YY_CURRENT_BUFFER ){
  1452. zconfensure_buffer_stack ();
  1453. YY_CURRENT_BUFFER_LVALUE =
  1454. zconf_create_buffer(zconfin,YY_BUF_SIZE );
  1455. }
  1456. zconf_init_buffer(YY_CURRENT_BUFFER,input_file );
  1457. zconf_load_buffer_state( );
  1458. }
  1459. /** Switch to a different input buffer.
  1460. * @param new_buffer The new input buffer.
  1461. *
  1462. */
  1463. void zconf_switch_to_buffer (YY_BUFFER_STATE new_buffer )
  1464. {
  1465. /* TODO. We should be able to replace this entire function body
  1466. * with
  1467. * zconfpop_buffer_state();
  1468. * zconfpush_buffer_state(new_buffer);
  1469. */
  1470. zconfensure_buffer_stack ();
  1471. if ( YY_CURRENT_BUFFER == new_buffer )
  1472. return;
  1473. if ( YY_CURRENT_BUFFER )
  1474. {
  1475. /* Flush out information for old buffer. */
  1476. *(yy_c_buf_p) = (yy_hold_char);
  1477. YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
  1478. YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  1479. }
  1480. YY_CURRENT_BUFFER_LVALUE = new_buffer;
  1481. zconf_load_buffer_state( );
  1482. /* We don't actually know whether we did this switch during
  1483. * EOF (zconfwrap()) processing, but the only time this flag
  1484. * is looked at is after zconfwrap() is called, so it's safe
  1485. * to go ahead and always set it.
  1486. */
  1487. (yy_did_buffer_switch_on_eof) = 1;
  1488. }
  1489. static void zconf_load_buffer_state (void)
  1490. {
  1491. (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
  1492. (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
  1493. zconfin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
  1494. (yy_hold_char) = *(yy_c_buf_p);
  1495. }
  1496. /** Allocate and initialize an input buffer state.
  1497. * @param file A readable stream.
  1498. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
  1499. *
  1500. * @return the allocated buffer state.
  1501. */
  1502. YY_BUFFER_STATE zconf_create_buffer (FILE * file, int size )
  1503. {
  1504. YY_BUFFER_STATE b;
  1505. b = (YY_BUFFER_STATE) zconfalloc(sizeof( struct yy_buffer_state ) );
  1506. if ( ! b )
  1507. YY_FATAL_ERROR( "out of dynamic memory in zconf_create_buffer()" );
  1508. b->yy_buf_size = size;
  1509. /* yy_ch_buf has to be 2 characters longer than the size given because
  1510. * we need to put in 2 end-of-buffer characters.
  1511. */
  1512. b->yy_ch_buf = (char *) zconfalloc(b->yy_buf_size + 2 );
  1513. if ( ! b->yy_ch_buf )
  1514. YY_FATAL_ERROR( "out of dynamic memory in zconf_create_buffer()" );
  1515. b->yy_is_our_buffer = 1;
  1516. zconf_init_buffer(b,file );
  1517. return b;
  1518. }
  1519. /** Destroy the buffer.
  1520. * @param b a buffer created with zconf_create_buffer()
  1521. *
  1522. */
  1523. void zconf_delete_buffer (YY_BUFFER_STATE b )
  1524. {
  1525. if ( ! b )
  1526. return;
  1527. if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
  1528. YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
  1529. if ( b->yy_is_our_buffer )
  1530. zconffree((void *) b->yy_ch_buf );
  1531. zconffree((void *) b );
  1532. }
  1533. /* Initializes or reinitializes a buffer.
  1534. * This function is sometimes called more than once on the same buffer,
  1535. * such as during a zconfrestart() or at EOF.
  1536. */
  1537. static void zconf_init_buffer (YY_BUFFER_STATE b, FILE * file )
  1538. {
  1539. int oerrno = errno;
  1540. zconf_flush_buffer(b );
  1541. b->yy_input_file = file;
  1542. b->yy_fill_buffer = 1;
  1543. /* If b is the current buffer, then zconf_init_buffer was _probably_
  1544. * called from zconfrestart() or through yy_get_next_buffer.
  1545. * In that case, we don't want to reset the lineno or column.
  1546. */
  1547. if (b != YY_CURRENT_BUFFER){
  1548. b->yy_bs_lineno = 1;
  1549. b->yy_bs_column = 0;
  1550. }
  1551. b->yy_is_interactive = 0;
  1552. errno = oerrno;
  1553. }
  1554. /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
  1555. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
  1556. *
  1557. */
  1558. void zconf_flush_buffer (YY_BUFFER_STATE b )
  1559. {
  1560. if ( ! b )
  1561. return;
  1562. b->yy_n_chars = 0;
  1563. /* We always need two end-of-buffer characters. The first causes
  1564. * a transition to the end-of-buffer state. The second causes
  1565. * a jam in that state.
  1566. */
  1567. b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
  1568. b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  1569. b->yy_buf_pos = &b->yy_ch_buf[0];
  1570. b->yy_at_bol = 1;
  1571. b->yy_buffer_status = YY_BUFFER_NEW;
  1572. if ( b == YY_CURRENT_BUFFER )
  1573. zconf_load_buffer_state( );
  1574. }
  1575. /** Pushes the new state onto the stack. The new state becomes
  1576. * the current state. This function will allocate the stack
  1577. * if necessary.
  1578. * @param new_buffer The new state.
  1579. *
  1580. */
  1581. void zconfpush_buffer_state (YY_BUFFER_STATE new_buffer )
  1582. {
  1583. if (new_buffer == NULL)
  1584. return;
  1585. zconfensure_buffer_stack();
  1586. /* This block is copied from zconf_switch_to_buffer. */
  1587. if ( YY_CURRENT_BUFFER )
  1588. {
  1589. /* Flush out information for old buffer. */
  1590. *(yy_c_buf_p) = (yy_hold_char);
  1591. YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
  1592. YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  1593. }
  1594. /* Only push if top exists. Otherwise, replace top. */
  1595. if (YY_CURRENT_BUFFER)
  1596. (yy_buffer_stack_top)++;
  1597. YY_CURRENT_BUFFER_LVALUE = new_buffer;
  1598. /* copied from zconf_switch_to_buffer. */
  1599. zconf_load_buffer_state( );
  1600. (yy_did_buffer_switch_on_eof) = 1;
  1601. }
  1602. /** Removes and deletes the top of the stack, if present.
  1603. * The next element becomes the new top.
  1604. *
  1605. */
  1606. void zconfpop_buffer_state (void)
  1607. {
  1608. if (!YY_CURRENT_BUFFER)
  1609. return;
  1610. zconf_delete_buffer(YY_CURRENT_BUFFER );
  1611. YY_CURRENT_BUFFER_LVALUE = NULL;
  1612. if ((yy_buffer_stack_top) > 0)
  1613. --(yy_buffer_stack_top);
  1614. if (YY_CURRENT_BUFFER) {
  1615. zconf_load_buffer_state( );
  1616. (yy_did_buffer_switch_on_eof) = 1;
  1617. }
  1618. }
  1619. /* Allocates the stack if it does not exist.
  1620. * Guarantees space for at least one push.
  1621. */
  1622. static void zconfensure_buffer_stack (void)
  1623. {
  1624. int num_to_alloc;
  1625. if (!(yy_buffer_stack)) {
  1626. /* First allocation is just for 2 elements, since we don't know if this
  1627. * scanner will even need a stack. We use 2 instead of 1 to avoid an
  1628. * immediate realloc on the next call.
  1629. */
  1630. num_to_alloc = 1;
  1631. (yy_buffer_stack) = (struct yy_buffer_state**)zconfalloc
  1632. (num_to_alloc * sizeof(struct yy_buffer_state*)
  1633. );
  1634. if ( ! (yy_buffer_stack) )
  1635. YY_FATAL_ERROR( "out of dynamic memory in zconfensure_buffer_stack()" );
  1636. memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
  1637. (yy_buffer_stack_max) = num_to_alloc;
  1638. (yy_buffer_stack_top) = 0;
  1639. return;
  1640. }
  1641. if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
  1642. /* Increase the buffer to prepare for a possible push. */
  1643. int grow_size = 8 /* arbitrary grow size */;
  1644. num_to_alloc = (yy_buffer_stack_max) + grow_size;
  1645. (yy_buffer_stack) = (struct yy_buffer_state**)zconfrealloc
  1646. ((yy_buffer_stack),
  1647. num_to_alloc * sizeof(struct yy_buffer_state*)
  1648. );
  1649. if ( ! (yy_buffer_stack) )
  1650. YY_FATAL_ERROR( "out of dynamic memory in zconfensure_buffer_stack()" );
  1651. /* zero only the new slots.*/
  1652. memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
  1653. (yy_buffer_stack_max) = num_to_alloc;
  1654. }
  1655. }
  1656. /** Setup the input buffer state to scan directly from a user-specified character buffer.
  1657. * @param base the character buffer
  1658. * @param size the size in bytes of the character buffer
  1659. *
  1660. * @return the newly allocated buffer state object.
  1661. */
  1662. YY_BUFFER_STATE zconf_scan_buffer (char * base, yy_size_t size )
  1663. {
  1664. YY_BUFFER_STATE b;
  1665. if ( size < 2 ||
  1666. base[size-2] != YY_END_OF_BUFFER_CHAR ||
  1667. base[size-1] != YY_END_OF_BUFFER_CHAR )
  1668. /* They forgot to leave room for the EOB's. */
  1669. return 0;
  1670. b = (YY_BUFFER_STATE) zconfalloc(sizeof( struct yy_buffer_state ) );
  1671. if ( ! b )
  1672. YY_FATAL_ERROR( "out of dynamic memory in zconf_scan_buffer()" );
  1673. b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
  1674. b->yy_buf_pos = b->yy_ch_buf = base;
  1675. b->yy_is_our_buffer = 0;
  1676. b->yy_input_file = 0;
  1677. b->yy_n_chars = b->yy_buf_size;
  1678. b->yy_is_interactive = 0;
  1679. b->yy_at_bol = 1;
  1680. b->yy_fill_buffer = 0;
  1681. b->yy_buffer_status = YY_BUFFER_NEW;
  1682. zconf_switch_to_buffer(b );
  1683. return b;
  1684. }
  1685. /** Setup the input buffer state to scan a string. The next call to zconflex() will
  1686. * scan from a @e copy of @a str.
  1687. * @param yystr a NUL-terminated string to scan
  1688. *
  1689. * @return the newly allocated buffer state object.
  1690. * @note If you want to scan bytes that may contain NUL values, then use
  1691. * zconf_scan_bytes() instead.
  1692. */
  1693. YY_BUFFER_STATE zconf_scan_string (yyconst char * yystr )
  1694. {
  1695. return zconf_scan_bytes(yystr,strlen(yystr) );
  1696. }
  1697. /** Setup the input buffer state to scan the given bytes. The next call to zconflex() will
  1698. * scan from a @e copy of @a bytes.
  1699. * @param yybytes the byte buffer to scan
  1700. * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
  1701. *
  1702. * @return the newly allocated buffer state object.
  1703. */
  1704. YY_BUFFER_STATE zconf_scan_bytes (yyconst char * yybytes, int _yybytes_len )
  1705. {
  1706. YY_BUFFER_STATE b;
  1707. char *buf;
  1708. yy_size_t n;
  1709. int i;
  1710. /* Get memory for full buffer, including space for trailing EOB's. */
  1711. n = _yybytes_len + 2;
  1712. buf = (char *) zconfalloc(n );
  1713. if ( ! buf )
  1714. YY_FATAL_ERROR( "out of dynamic memory in zconf_scan_bytes()" );
  1715. for ( i = 0; i < _yybytes_len; ++i )
  1716. buf[i] = yybytes[i];
  1717. buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
  1718. b = zconf_scan_buffer(buf,n );
  1719. if ( ! b )
  1720. YY_FATAL_ERROR( "bad buffer in zconf_scan_bytes()" );
  1721. /* It's okay to grow etc. this buffer, and we should throw it
  1722. * away when we're done.
  1723. */
  1724. b->yy_is_our_buffer = 1;
  1725. return b;
  1726. }
  1727. #ifndef YY_EXIT_FAILURE
  1728. #define YY_EXIT_FAILURE 2
  1729. #endif
  1730. static void yy_fatal_error (yyconst char* msg )
  1731. {
  1732. (void) fprintf( stderr, "%s\n", msg );
  1733. exit( YY_EXIT_FAILURE );
  1734. }
  1735. /* Redefine yyless() so it works in section 3 code. */
  1736. #undef yyless
  1737. #define yyless(n) \
  1738. do \
  1739. { \
  1740. /* Undo effects of setting up zconftext. */ \
  1741. int yyless_macro_arg = (n); \
  1742. YY_LESS_LINENO(yyless_macro_arg);\
  1743. zconftext[zconfleng] = (yy_hold_char); \
  1744. (yy_c_buf_p) = zconftext + yyless_macro_arg; \
  1745. (yy_hold_char) = *(yy_c_buf_p); \
  1746. *(yy_c_buf_p) = '\0'; \
  1747. zconfleng = yyless_macro_arg; \
  1748. } \
  1749. while ( 0 )
  1750. /* Accessor methods (get/set functions) to struct members. */
  1751. /** Get the current line number.
  1752. *
  1753. */
  1754. int zconfget_lineno (void)
  1755. {
  1756. return zconflineno;
  1757. }
  1758. /** Get the input stream.
  1759. *
  1760. */
  1761. FILE *zconfget_in (void)
  1762. {
  1763. return zconfin;
  1764. }
  1765. /** Get the output stream.
  1766. *
  1767. */
  1768. FILE *zconfget_out (void)
  1769. {
  1770. return zconfout;
  1771. }
  1772. /** Get the length of the current token.
  1773. *
  1774. */
  1775. int zconfget_leng (void)
  1776. {
  1777. return zconfleng;
  1778. }
  1779. /** Get the current token.
  1780. *
  1781. */
  1782. char *zconfget_text (void)
  1783. {
  1784. return zconftext;
  1785. }
  1786. /** Set the current line number.
  1787. * @param line_number
  1788. *
  1789. */
  1790. void zconfset_lineno (int line_number )
  1791. {
  1792. zconflineno = line_number;
  1793. }
  1794. /** Set the input stream. This does not discard the current
  1795. * input buffer.
  1796. * @param in_str A readable stream.
  1797. *
  1798. * @see zconf_switch_to_buffer
  1799. */
  1800. void zconfset_in (FILE * in_str )
  1801. {
  1802. zconfin = in_str ;
  1803. }
  1804. void zconfset_out (FILE * out_str )
  1805. {
  1806. zconfout = out_str ;
  1807. }
  1808. int zconfget_debug (void)
  1809. {
  1810. return zconf_flex_debug;
  1811. }
  1812. void zconfset_debug (int bdebug )
  1813. {
  1814. zconf_flex_debug = bdebug ;
  1815. }
  1816. static int yy_init_globals (void)
  1817. {
  1818. /* Initialization is the same as for the non-reentrant scanner.
  1819. * This function is called from zconflex_destroy(), so don't allocate here.
  1820. */
  1821. (yy_buffer_stack) = 0;
  1822. (yy_buffer_stack_top) = 0;
  1823. (yy_buffer_stack_max) = 0;
  1824. (yy_c_buf_p) = (char *) 0;
  1825. (yy_init) = 0;
  1826. (yy_start) = 0;
  1827. /* Defined in main.c */
  1828. #ifdef YY_STDINIT
  1829. zconfin = stdin;
  1830. zconfout = stdout;
  1831. #else
  1832. zconfin = (FILE *) 0;
  1833. zconfout = (FILE *) 0;
  1834. #endif
  1835. /* For future reference: Set errno on error, since we are called by
  1836. * zconflex_init()
  1837. */
  1838. return 0;
  1839. }
  1840. /* zconflex_destroy is for both reentrant and non-reentrant scanners. */
  1841. int zconflex_destroy (void)
  1842. {
  1843. /* Pop the buffer stack, destroying each element. */
  1844. while(YY_CURRENT_BUFFER){
  1845. zconf_delete_buffer(YY_CURRENT_BUFFER );
  1846. YY_CURRENT_BUFFER_LVALUE = NULL;
  1847. zconfpop_buffer_state();
  1848. }
  1849. /* Destroy the stack itself. */
  1850. zconffree((yy_buffer_stack) );
  1851. (yy_buffer_stack) = NULL;
  1852. /* Reset the globals. This is important in a non-reentrant scanner so the next time
  1853. * zconflex() is called, initialization will occur. */
  1854. yy_init_globals( );
  1855. return 0;
  1856. }
  1857. /*
  1858. * Internal utility routines.
  1859. */
  1860. #ifndef yytext_ptr
  1861. static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
  1862. {
  1863. register int i;
  1864. for ( i = 0; i < n; ++i )
  1865. s1[i] = s2[i];
  1866. }
  1867. #endif
  1868. #ifdef YY_NEED_STRLEN
  1869. static int yy_flex_strlen (yyconst char * s )
  1870. {
  1871. register int n;
  1872. for ( n = 0; s[n]; ++n )
  1873. ;
  1874. return n;
  1875. }
  1876. #endif
  1877. void *zconfalloc (yy_size_t size )
  1878. {
  1879. return (void *) malloc( size );
  1880. }
  1881. void *zconfrealloc (void * ptr, yy_size_t size )
  1882. {
  1883. /* The cast to (char *) in the following accommodates both
  1884. * implementations that use char* generic pointers, and those
  1885. * that use void* generic pointers. It works with the latter
  1886. * because both ANSI C and C++ allow castless assignment from
  1887. * any pointer type to void*, and deal with argument conversions
  1888. * as though doing an assignment.
  1889. */
  1890. return (void *) realloc( (char *) ptr, size );
  1891. }
  1892. void zconffree (void * ptr )
  1893. {
  1894. free( (char *) ptr ); /* see zconfrealloc() for (char *) cast */
  1895. }
  1896. #define YYTABLES_NAME "yytables"
  1897. void zconf_starthelp(void)
  1898. {
  1899. new_string();
  1900. last_ts = first_ts = 0;
  1901. BEGIN(HELP);
  1902. }
  1903. static void zconf_endhelp(void)
  1904. {
  1905. zconflval.string = text;
  1906. BEGIN(INITIAL);
  1907. }
  1908. /*
  1909. * Try to open specified file with following names:
  1910. * ./name
  1911. * $(srctree)/name
  1912. * The latter is used when srctree is separate from objtree
  1913. * when compiling the kernel.
  1914. * Return NULL if file is not found.
  1915. */
  1916. FILE *zconf_fopen(const char *name)
  1917. {
  1918. char *env, fullname[PATH_MAX+1];
  1919. FILE *f;
  1920. f = fopen(name, "r");
  1921. if (!f && name != NULL && name[0] != '/') {
  1922. env = getenv(SRCTREE);
  1923. if (env) {
  1924. sprintf(fullname, "%s/%s", env, name);
  1925. f = fopen(fullname, "r");
  1926. }
  1927. }
  1928. return f;
  1929. }
  1930. void zconf_initscan(const char *name)
  1931. {
  1932. zconfin = zconf_fopen(name);
  1933. if (!zconfin) {
  1934. printf("can't find file %s\n", name);
  1935. exit(1);
  1936. }
  1937. current_buf = malloc(sizeof(*current_buf));
  1938. memset(current_buf, 0, sizeof(*current_buf));
  1939. current_file = file_lookup(name);
  1940. current_file->lineno = 1;
  1941. }
  1942. void zconf_nextfile(const char *name)
  1943. {
  1944. struct file *iter;
  1945. struct file *file = file_lookup(name);
  1946. struct buffer *buf = malloc(sizeof(*buf));
  1947. memset(buf, 0, sizeof(*buf));
  1948. current_buf->state = YY_CURRENT_BUFFER;
  1949. zconfin = zconf_fopen(file->name);
  1950. if (!zconfin) {
  1951. printf("%s:%d: can't open file \"%s\"\n",
  1952. zconf_curname(), zconf_lineno(), file->name);
  1953. exit(1);
  1954. }
  1955. zconf_switch_to_buffer(zconf_create_buffer(zconfin,YY_BUF_SIZE));
  1956. buf->parent = current_buf;
  1957. current_buf = buf;
  1958. for (iter = current_file->parent; iter; iter = iter->parent ) {
  1959. if (!strcmp(current_file->name,iter->name) ) {
  1960. printf("%s:%d: recursive inclusion detected. "
  1961. "Inclusion path:\n current file : '%s'\n",
  1962. zconf_curname(), zconf_lineno(),
  1963. zconf_curname());
  1964. iter = current_file->parent;
  1965. while (iter && \
  1966. strcmp(iter->name,current_file->name)) {
  1967. printf(" included from: '%s:%d'\n",
  1968. iter->name, iter->lineno-1);
  1969. iter = iter->parent;
  1970. }
  1971. if (iter)
  1972. printf(" included from: '%s:%d'\n",
  1973. iter->name, iter->lineno+1);
  1974. exit(1);
  1975. }
  1976. }
  1977. file->lineno = 1;
  1978. file->parent = current_file;
  1979. current_file = file;
  1980. }
  1981. static void zconf_endfile(void)
  1982. {
  1983. struct buffer *parent;
  1984. current_file = current_file->parent;
  1985. parent = current_buf->parent;
  1986. if (parent) {
  1987. fclose(zconfin);
  1988. zconf_delete_buffer(YY_CURRENT_BUFFER);
  1989. zconf_switch_to_buffer(parent->state);
  1990. }
  1991. free(current_buf);
  1992. current_buf = parent;
  1993. }
  1994. int zconf_lineno(void)
  1995. {
  1996. return current_pos.lineno;
  1997. }
  1998. const char *zconf_curname(void)
  1999. {
  2000. return current_pos.file ? current_pos.file->name : "<none>";
  2001. }