| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255 |
- #line 2 "BsLexerFX.c"
- #line 4 "BsLexerFX.c"
- #define YY_INT_ALIGNED short int
- /* A lexical scanner generated by flex */
- #define FLEX_SCANNER
- #define YY_FLEX_MAJOR_VERSION 2
- #define YY_FLEX_MINOR_VERSION 5
- #define YY_FLEX_SUBMINOR_VERSION 37
- #if YY_FLEX_SUBMINOR_VERSION > 0
- #define FLEX_BETA
- #endif
- /* First, we deal with platform-specific or compiler-specific issues. */
- /* begin standard C headers. */
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
- #include <stdlib.h>
- /* end standard C headers. */
- /* flex integer type definitions */
- #ifndef FLEXINT_H
- #define FLEXINT_H
- /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
- #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
- /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
- * if you want the limit (max/min) macros for int types.
- */
- #ifndef __STDC_LIMIT_MACROS
- #define __STDC_LIMIT_MACROS 1
- #endif
- #include <inttypes.h>
- typedef int8_t flex_int8_t;
- typedef uint8_t flex_uint8_t;
- typedef int16_t flex_int16_t;
- typedef uint16_t flex_uint16_t;
- typedef int32_t flex_int32_t;
- typedef uint32_t flex_uint32_t;
- #else
- typedef signed char flex_int8_t;
- typedef short int flex_int16_t;
- typedef int flex_int32_t;
- typedef unsigned char flex_uint8_t;
- typedef unsigned short int flex_uint16_t;
- typedef unsigned int flex_uint32_t;
- /* Limits of integral types. */
- #ifndef INT8_MIN
- #define INT8_MIN (-128)
- #endif
- #ifndef INT16_MIN
- #define INT16_MIN (-32767-1)
- #endif
- #ifndef INT32_MIN
- #define INT32_MIN (-2147483647-1)
- #endif
- #ifndef INT8_MAX
- #define INT8_MAX (127)
- #endif
- #ifndef INT16_MAX
- #define INT16_MAX (32767)
- #endif
- #ifndef INT32_MAX
- #define INT32_MAX (2147483647)
- #endif
- #ifndef UINT8_MAX
- #define UINT8_MAX (255U)
- #endif
- #ifndef UINT16_MAX
- #define UINT16_MAX (65535U)
- #endif
- #ifndef UINT32_MAX
- #define UINT32_MAX (4294967295U)
- #endif
- #endif /* ! C99 */
- #endif /* ! FLEXINT_H */
- #ifdef __cplusplus
- /* The "const" storage-class-modifier is valid. */
- #define YY_USE_CONST
- #else /* ! __cplusplus */
- /* C99 requires __STDC__ to be defined as 1. */
- #if defined (__STDC__)
- #define YY_USE_CONST
- #endif /* defined (__STDC__) */
- #endif /* ! __cplusplus */
- #ifdef YY_USE_CONST
- #define yyconst const
- #else
- #define yyconst
- #endif
- /* Returned upon end-of-file. */
- #define YY_NULL 0
- /* Promotes a possibly negative, possibly signed char to an unsigned
- * integer for use as an array index. If the signed char is negative,
- * we want to instead treat it as an 8-bit unsigned char, hence the
- * double cast.
- */
- #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
- /* An opaque pointer. */
- #ifndef YY_TYPEDEF_YY_SCANNER_T
- #define YY_TYPEDEF_YY_SCANNER_T
- typedef void* yyscan_t;
- #endif
- /* For convenience, these vars (plus the bison vars far below)
- are macros in the reentrant scanner. */
- #define yyin yyg->yyin_r
- #define yyout yyg->yyout_r
- #define yyextra yyg->yyextra_r
- #define yyleng yyg->yyleng_r
- #define yytext yyg->yytext_r
- #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno)
- #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column)
- #define yy_flex_debug yyg->yy_flex_debug_r
- /* Enter a start condition. This macro really ought to take a parameter,
- * but we do it the disgusting crufty way forced on us by the ()-less
- * definition of BEGIN.
- */
- #define BEGIN yyg->yy_start = 1 + 2 *
- /* Translate the current start state into a value that can be later handed
- * to BEGIN to return to the state. The YYSTATE alias is for lex
- * compatibility.
- */
- #define YY_START ((yyg->yy_start - 1) / 2)
- #define YYSTATE YY_START
- /* Action number for EOF rule of a given start state. */
- #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
- /* Special action meaning "start processing a new file". */
- #define YY_NEW_FILE yyrestart(yyin ,yyscanner )
- #define YY_END_OF_BUFFER_CHAR 0
- /* Size of default input buffer. */
- #ifndef YY_BUF_SIZE
- #define YY_BUF_SIZE 16384
- #endif
- /* The state buf must be large enough to hold one state per character in the main buffer.
- */
- #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
- #ifndef YY_TYPEDEF_YY_BUFFER_STATE
- #define YY_TYPEDEF_YY_BUFFER_STATE
- typedef struct yy_buffer_state *YY_BUFFER_STATE;
- #endif
- #ifndef YY_TYPEDEF_YY_SIZE_T
- #define YY_TYPEDEF_YY_SIZE_T
- typedef size_t yy_size_t;
- #endif
- #define EOB_ACT_CONTINUE_SCAN 0
- #define EOB_ACT_END_OF_FILE 1
- #define EOB_ACT_LAST_MATCH 2
- /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires
- * access to the local variable yy_act. Since yyless() is a macro, it would break
- * existing scanners that call yyless() from OUTSIDE yylex.
- * One obvious solution it to make yy_act a global. I tried that, and saw
- * a 5% performance hit in a non-yylineno scanner, because yy_act is
- * normally declared as a register variable-- so it is not worth it.
- */
- #define YY_LESS_LINENO(n) \
- do { \
- int yyl;\
- for ( yyl = n; yyl < yyleng; ++yyl )\
- if ( yytext[yyl] == '\n' )\
- --yylineno;\
- }while(0)
-
- /* Return all but the first "n" matched characters back to the input stream. */
- #define yyless(n) \
- do \
- { \
- /* Undo effects of setting up yytext. */ \
- int yyless_macro_arg = (n); \
- YY_LESS_LINENO(yyless_macro_arg);\
- *yy_cp = yyg->yy_hold_char; \
- YY_RESTORE_YY_MORE_OFFSET \
- yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
- YY_DO_BEFORE_ACTION; /* set up yytext again */ \
- } \
- while ( 0 )
- #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
- #ifndef YY_STRUCT_YY_BUFFER_STATE
- #define YY_STRUCT_YY_BUFFER_STATE
- struct yy_buffer_state
- {
- FILE *yy_input_file;
- char *yy_ch_buf; /* input buffer */
- char *yy_buf_pos; /* current position in input buffer */
- /* Size of input buffer in bytes, not including room for EOB
- * characters.
- */
- yy_size_t yy_buf_size;
- /* Number of characters read into yy_ch_buf, not including EOB
- * characters.
- */
- yy_size_t yy_n_chars;
- /* Whether we "own" the buffer - i.e., we know we created it,
- * and can realloc() it to grow it, and should free() it to
- * delete it.
- */
- int yy_is_our_buffer;
- /* Whether this is an "interactive" input source; if so, and
- * if we're using stdio for input, then we want to use getc()
- * instead of fread(), to make sure we stop fetching input after
- * each newline.
- */
- int yy_is_interactive;
- /* Whether we're considered to be at the beginning of a line.
- * If so, '^' rules will be active on the next match, otherwise
- * not.
- */
- int yy_at_bol;
- int yy_bs_lineno; /**< The line count. */
- int yy_bs_column; /**< The column count. */
-
- /* Whether to try to fill the input buffer when we reach the
- * end of it.
- */
- int yy_fill_buffer;
- int yy_buffer_status;
- #define YY_BUFFER_NEW 0
- #define YY_BUFFER_NORMAL 1
- /* When an EOF's been seen but there's still some text to process
- * then we mark the buffer as YY_EOF_PENDING, to indicate that we
- * shouldn't try reading from the input source any more. We might
- * still have a bunch of tokens to match, though, because of
- * possible backing-up.
- *
- * When we actually see the EOF, we change the status to "new"
- * (via yyrestart()), so that the user can continue scanning by
- * just pointing yyin at a new input file.
- */
- #define YY_BUFFER_EOF_PENDING 2
- };
- #endif /* !YY_STRUCT_YY_BUFFER_STATE */
- /* We provide macros for accessing buffer states in case in the
- * future we want to put the buffer states in a more general
- * "scanner state".
- *
- * Returns the top of the stack, or NULL.
- */
- #define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \
- ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \
- : NULL)
- /* Same as previous macro, but useful when we know that the buffer stack is not
- * NULL or when we need an lvalue. For internal use only.
- */
- #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top]
- void yyrestart (FILE *input_file ,yyscan_t yyscanner );
- void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
- YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner );
- void yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
- void yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
- void yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
- void yypop_buffer_state (yyscan_t yyscanner );
- static void yyensure_buffer_stack (yyscan_t yyscanner );
- static void yy_load_buffer_state (yyscan_t yyscanner );
- static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner );
- #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ,yyscanner)
- YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
- YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
- YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner );
- void *yyalloc (yy_size_t ,yyscan_t yyscanner );
- void *yyrealloc (void *,yy_size_t ,yyscan_t yyscanner );
- void yyfree (void * ,yyscan_t yyscanner );
- #define yy_new_buffer yy_create_buffer
- #define yy_set_interactive(is_interactive) \
- { \
- if ( ! YY_CURRENT_BUFFER ){ \
- yyensure_buffer_stack (yyscanner); \
- YY_CURRENT_BUFFER_LVALUE = \
- yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
- } \
- YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
- }
- #define yy_set_bol(at_bol) \
- { \
- if ( ! YY_CURRENT_BUFFER ){\
- yyensure_buffer_stack (yyscanner); \
- YY_CURRENT_BUFFER_LVALUE = \
- yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
- } \
- YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
- }
- #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
- #define yywrap(yyscanner) 1
- #define YY_SKIP_YYWRAP
- typedef unsigned char YY_CHAR;
- typedef int yy_state_type;
- #define yytext_ptr yytext_r
- static yy_state_type yy_get_previous_state (yyscan_t yyscanner );
- static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner);
- static int yy_get_next_buffer (yyscan_t yyscanner );
- static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner );
- /* Done after the current pattern has been matched and before the
- * corresponding action - sets up yytext.
- */
- #define YY_DO_BEFORE_ACTION \
- yyg->yytext_ptr = yy_bp; \
- yyleng = (size_t) (yy_cp - yy_bp); \
- yyg->yy_hold_char = *yy_cp; \
- *yy_cp = '\0'; \
- yyg->yy_c_buf_p = yy_cp;
- #define YY_NUM_RULES 169
- #define YY_END_OF_BUFFER 170
- /* This struct is not used in this scanner,
- but its presence is necessary. */
- struct yy_trans_info
- {
- flex_int32_t yy_verify;
- flex_int32_t yy_nxt;
- };
- static yyconst flex_int16_t yy_accept[677] =
- { 0,
- 1, 1, 170, 168, 1, 1, 168, 168, 168, 2,
- 2, 141, 140, 167, 167, 167, 167, 139, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 138, 167,
- 167, 95, 96, 97, 167, 167, 167, 167, 167, 167,
- 167, 1, 0, 5, 2, 166, 0, 2, 0, 167,
- 167, 167, 167, 167, 167, 167, 147, 167, 167, 167,
- 167, 167, 167, 105, 167, 167, 167, 167, 167, 167,
- 167, 111, 167, 167, 167, 167, 146, 145, 114, 167,
- 167, 167, 167, 167, 167, 109, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 85, 167, 167, 167, 167,
- 167, 144, 143, 167, 142, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 2, 166, 4, 3, 167, 132, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 106, 167,
- 167, 167, 167, 167, 119, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 151, 113, 167, 167, 118, 122,
- 167, 167, 167, 167, 110, 167, 136, 135, 167, 167,
- 167, 167, 167, 167, 112, 167, 167, 123, 167, 167,
- 167, 167, 167, 167, 150, 167, 149, 148, 167, 167,
- 167, 167, 167, 133, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 0,
- 4, 167, 167, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 58, 167, 128, 167,
- 167, 167, 167, 84, 167, 107, 73, 57, 167, 167,
- 52, 167, 167, 167, 115, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 108, 167,
- 167, 48, 167, 167, 167, 152, 134, 167, 167, 129,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 102, 153, 167, 116, 167,
- 167, 98, 167, 167, 167, 167, 167, 167, 6, 167,
- 0, 4, 167, 160, 167, 81, 167, 167, 79, 38,
- 167, 167, 155, 80, 167, 167, 167, 167, 167, 130,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
- 78, 167, 167, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 158, 167, 167, 40, 167,
- 167, 103, 131, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 74,
- 99, 7, 8, 167, 167, 167, 167, 101, 64, 163,
- 167, 167, 167, 156, 44, 167, 167, 55, 167, 167,
- 167, 167, 167, 124, 167, 167, 167, 167, 167, 53,
- 167, 167, 167, 167, 167, 159, 167, 154, 167, 167,
- 167, 167, 93, 92, 167, 167, 167, 104, 167, 161,
- 167, 167, 167, 167, 167, 125, 164, 167, 167, 167,
- 167, 83, 167, 167, 77, 167, 167, 167, 49, 167,
- 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
- 19, 20, 100, 167, 167, 167, 167, 167, 167, 54,
- 167, 121, 126, 165, 167, 167, 167, 167, 167, 167,
- 120, 47, 167, 162, 167, 167, 167, 167, 167, 167,
- 167, 137, 167, 167, 167, 117, 167, 127, 167, 167,
- 62, 167, 68, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 50,
- 51, 167, 46, 167, 90, 167, 167, 167, 167, 157,
- 167, 41, 45, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
- 167, 167, 167, 167, 167, 167, 167, 59, 61, 65,
- 167, 167, 88, 87, 89, 167, 167, 167, 21, 22,
- 23, 167, 167, 39, 167, 167, 167, 167, 42, 26,
- 27, 28, 167, 167, 82, 167, 167, 167, 167, 31,
- 167, 167, 66, 167, 91, 167, 43, 167, 167, 167,
- 167, 167, 167, 56, 167, 167, 167, 167, 167, 86,
- 167, 167, 94, 167, 67, 167, 167, 63, 25, 24,
- 167, 167, 167, 167, 167, 167, 30, 29, 167, 167,
- 36, 34, 167, 167, 167, 167, 167, 167, 167, 32,
- 167, 167, 37, 167, 167, 72, 167, 167, 167, 167,
- 33, 167, 167, 167, 71, 167, 167, 35, 75, 167,
- 60, 69, 167, 76, 70, 0
- } ;
- static yyconst flex_int32_t yy_ec[256] =
- { 0,
- 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
- 1, 1, 2, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 2, 1, 4, 1, 1, 1, 1, 1, 1,
- 1, 1, 5, 1, 6, 7, 8, 9, 10, 11,
- 12, 13, 14, 14, 14, 14, 14, 1, 1, 1,
- 1, 1, 1, 1, 15, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
- 1, 1, 1, 1, 24, 1, 41, 42, 43, 44,
- 45, 46, 47, 48, 49, 24, 50, 51, 52, 53,
- 54, 55, 56, 57, 58, 59, 60, 61, 24, 62,
- 63, 24, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1
- } ;
- static yyconst flex_int32_t yy_meta[64] =
- { 0,
- 1, 1, 2, 1, 1, 1, 1, 1, 3, 3,
- 3, 3, 3, 3, 4, 4, 4, 4, 3, 3,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 4, 4, 4, 4, 3, 3, 5, 5, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
- 5, 5, 5
- } ;
- static yyconst flex_int16_t yy_base[682] =
- { 0,
- 0, 0, 777, 778, 62, 64, 772, 59, 767, 67,
- 75, 75, 77, 78, 79, 743, 60, 105, 713, 55,
- 0, 753, 73, 112, 81, 88, 84, 711, 130, 123,
- 115, 0, 725, 79, 103, 111, 93, 728, 720, 710,
- 708, 145, 761, 778, 174, 0, 180, 188, 0, 0,
- 738, 745, 739, 717, 705, 704, 0, 726, 120, 700,
- 697, 718, 739, 0, 128, 702, 735, 717, 722, 36,
- 697, 0, 725, 698, 695, 704, 0, 729, 724, 688,
- 690, 137, 126, 721, 711, 719, 684, 698, 175, 149,
- 151, 684, 703, 188, 714, 0, 699, 708, 152, 681,
- 684, 0, 713, 697, 197, 691, 672, 698, 706, 707,
- 705, 668, 118, 664, 658, 169, 660, 172, 661, 658,
- 682, 698, 663, 679, 669, 660, 649, 656, 652, 646,
- 663, 643, 661, 207, 0, 203, 0, 652, 0, 667,
- 642, 650, 652, 678, 642, 651, 649, 647, 0, 664,
- 636, 172, 631, 637, 650, 210, 671, 626, 625, 642,
- 656, 630, 629, 632, 0, 0, 626, 626, 639, 0,
- 624, 629, 643, 653, 0, 624, 0, 0, 638, 649,
- 653, 647, 208, 607, 0, 201, 642, 0, 631, 635,
- 621, 603, 606, 599, 0, 632, 0, 642, 640, 611,
- 631, 214, 619, 0, 597, 600, 592, 608, 591, 594,
- 586, 598, 596, 584, 597, 582, 621, 609, 579, 608,
- 587, 594, 580, 575, 591, 227, 574, 585, 582, 245,
- 778, 575, 598, 581, 584, 571, 604, 578, 571, 575,
- 603, 588, 560, 562, 202, 555, 0, 582, 0, 229,
- 592, 585, 563, 0, 561, 0, 0, 0, 557, 563,
- 0, 575, 546, 190, 0, 590, 544, 574, 553, 548,
- 551, 550, 222, 557, 548, 570, 569, 568, 0, 559,
- 540, 0, 534, 545, 574, 0, 0, 543, 569, 0,
- 232, 565, 562, 533, 538, 524, 524, 537, 536, 535,
- 532, 523, 515, 530, 528, 0, 0, 527, 0, 520,
- 512, 0, 524, 509, 505, 504, 503, 519, 0, 518,
- 256, 263, 517, 544, 502, 525, 514, 525, 0, 498,
- 498, 494, 0, 0, 500, 495, 492, 498, 534, 0,
- 527, 531, 523, 262, 492, 499, 484, 527, 497, 495,
- 0, 507, 497, 505, 485, 486, 483, 482, 470, 478,
- 475, 471, 499, 501, 492, 508, 479, 474, 0, 505,
- 464, 0, 0, 499, 503, 501, 472, 472, 461, 473,
- 468, 463, 452, 451, 460, 451, 491, 444, 478, 0,
- 0, 0, 269, 273, 276, 279, 460, 0, 0, 0,
- 445, 448, 485, 0, 0, 483, 453, 0, 453, 452,
- 451, 465, 478, 0, 476, 443, 440, 445, 432, 0,
- 435, 430, 456, 440, 431, 466, 435, 0, 422, 422,
- 420, 419, 0, 0, 461, 435, 443, 0, 455, 0,
- 414, 413, 452, 425, 453, 0, 0, 411, 449, 409,
- 423, 0, 413, 447, 0, 406, 416, 400, 0, 418,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 431, 440, 396, 401, 408, 433, 0,
- 436, 0, 0, 0, 410, 401, 408, 399, 388, 383,
- 0, 0, 401, 0, 399, 398, 388, 396, 395, 390,
- 386, 0, 405, 391, 372, 0, 377, 0, 285, 388,
- 0, 381, 269, 371, 370, 293, 383, 370, 373, 372,
- 379, 373, 378, 362, 361, 362, 364, 374, 358, 0,
- 0, 375, 0, 358, 0, 357, 356, 371, 356, 0,
- 353, 0, 0, 391, 390, 389, 371, 350, 359, 348,
- 357, 344, 354, 354, 380, 379, 378, 360, 348, 343,
- 348, 330, 344, 335, 331, 334, 340, 0, 0, 0,
- 340, 331, 0, 0, 0, 325, 331, 323, 0, 353,
- 0, 363, 319, 0, 291, 96, 328, 330, 0, 0,
- 348, 0, 358, 328, 0, 327, 326, 325, 312, 336,
- 324, 320, 0, 306, 0, 319, 0, 330, 343, 313,
- 319, 302, 314, 0, 298, 311, 322, 335, 296, 0,
- 295, 294, 0, 313, 0, 304, 332, 0, 0, 0,
- 331, 303, 291, 317, 298, 285, 0, 0, 309, 299,
- 0, 0, 282, 287, 288, 286, 282, 293, 306, 300,
- 294, 283, 0, 284, 287, 0, 268, 263, 272, 271,
- 0, 255, 240, 195, 0, 191, 174, 0, 0, 187,
- 0, 0, 126, 0, 0, 778, 311, 314, 319, 322,
- 94
- } ;
- static yyconst flex_int16_t yy_def[682] =
- { 0,
- 676, 1, 676, 676, 676, 676, 677, 676, 676, 676,
- 676, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 676, 677, 676, 676, 679, 676, 676, 680, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 676, 679, 681, 680, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 676,
- 676, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 676, 676, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
- 678, 678, 678, 678, 678, 0, 676, 676, 676, 676,
- 676
- } ;
- static yyconst flex_int16_t yy_nxt[842] =
- { 0,
- 4, 5, 6, 7, 4, 8, 4, 9, 10, 11,
- 11, 11, 11, 11, 12, 13, 14, 15, 16, 17,
- 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
- 28, 29, 30, 31, 32, 33, 34, 21, 21, 35,
- 36, 21, 21, 21, 21, 37, 21, 21, 21, 21,
- 21, 38, 21, 21, 21, 21, 21, 39, 40, 41,
- 21, 21, 21, 42, 42, 42, 42, 45, 45, 45,
- 45, 45, 45, 47, 73, 48, 48, 48, 48, 48,
- 48, 47, 82, 48, 48, 48, 48, 48, 48, 51,
- 158, 57, 52, 159, 62, 85, 136, 67, 97, 93,
- 74, 121, 53, 63, 49, 58, 86, 83, 75, 94,
- 122, 68, 98, 87, 64, 95, 76, 69, 54, 77,
- 78, 124, 125, 70, 99, 55, 88, 59, 49, 56,
- 60, 65, 71, 128, 89, 123, 613, 66, 79, 61,
- 100, 614, 96, 129, 102, 103, 42, 42, 104, 80,
- 105, 108, 90, 169, 109, 117, 110, 111, 206, 118,
- 91, 126, 106, 112, 145, 113, 207, 114, 171, 172,
- 127, 92, 170, 146, 107, 675, 115, 119, 151, 152,
- 153, 116, 134, 134, 134, 134, 134, 134, 136, 136,
- 136, 136, 136, 136, 47, 180, 48, 48, 48, 48,
- 48, 48, 178, 182, 186, 183, 179, 187, 191, 192,
- 181, 197, 198, 210, 213, 134, 134, 134, 134, 134,
- 134, 230, 231, 244, 249, 211, 245, 272, 290, 276,
- 674, 673, 250, 214, 273, 277, 291, 315, 316, 317,
- 672, 251, 336, 340, 350, 292, 373, 230, 231, 321,
- 321, 351, 671, 322, 322, 322, 322, 322, 322, 274,
- 341, 337, 359, 374, 322, 322, 322, 322, 322, 322,
- 360, 322, 322, 322, 322, 322, 322, 416, 417, 461,
- 462, 463, 231, 464, 465, 466, 467, 468, 469, 470,
- 471, 472, 670, 418, 544, 545, 546, 550, 419, 669,
- 551, 547, 555, 556, 557, 552, 611, 668, 231, 558,
- 612, 43, 667, 43, 43, 43, 50, 50, 50, 135,
- 666, 135, 135, 135, 137, 137, 665, 664, 663, 662,
- 661, 660, 659, 658, 657, 656, 655, 654, 653, 652,
- 651, 650, 649, 648, 647, 646, 645, 644, 643, 642,
- 641, 640, 639, 638, 637, 636, 635, 634, 633, 632,
- 631, 630, 629, 628, 627, 626, 625, 624, 623, 622,
- 621, 620, 619, 618, 617, 616, 615, 610, 609, 608,
- 607, 606, 605, 604, 603, 602, 601, 600, 599, 598,
- 597, 596, 595, 594, 593, 592, 591, 590, 589, 588,
- 587, 586, 585, 584, 583, 582, 581, 580, 579, 578,
- 577, 576, 575, 574, 573, 572, 571, 570, 569, 568,
- 567, 566, 565, 564, 563, 562, 561, 560, 559, 554,
- 553, 549, 548, 543, 542, 541, 540, 539, 538, 537,
- 536, 535, 534, 533, 532, 531, 530, 529, 528, 527,
- 526, 525, 524, 523, 522, 521, 520, 519, 518, 517,
- 516, 515, 514, 513, 512, 511, 510, 509, 508, 507,
- 506, 505, 504, 503, 502, 501, 500, 499, 498, 497,
- 496, 495, 494, 493, 492, 491, 490, 489, 488, 487,
- 486, 485, 484, 483, 482, 481, 480, 479, 478, 477,
- 476, 475, 474, 473, 460, 459, 458, 457, 456, 455,
- 454, 453, 452, 451, 450, 449, 448, 447, 446, 445,
- 444, 443, 442, 441, 440, 439, 438, 437, 436, 435,
- 434, 433, 432, 431, 430, 429, 428, 427, 426, 425,
- 424, 423, 422, 421, 420, 415, 414, 413, 412, 411,
- 410, 409, 408, 407, 406, 405, 404, 403, 402, 401,
- 400, 399, 398, 397, 396, 395, 394, 393, 392, 391,
- 390, 389, 388, 387, 386, 385, 384, 383, 382, 381,
- 380, 379, 378, 377, 376, 375, 372, 371, 370, 369,
- 368, 367, 366, 365, 364, 363, 362, 361, 358, 357,
- 356, 355, 354, 353, 352, 349, 348, 347, 346, 345,
- 344, 343, 342, 339, 338, 335, 334, 333, 332, 331,
- 330, 329, 328, 327, 326, 325, 324, 323, 320, 319,
- 318, 314, 313, 312, 311, 310, 309, 308, 307, 306,
- 305, 304, 303, 302, 301, 300, 299, 298, 297, 296,
- 295, 294, 293, 289, 288, 287, 286, 285, 284, 283,
- 282, 281, 280, 279, 278, 275, 271, 270, 269, 268,
- 267, 266, 265, 264, 263, 262, 261, 260, 259, 258,
- 257, 256, 255, 254, 253, 252, 248, 247, 246, 243,
- 242, 241, 240, 239, 238, 237, 236, 235, 234, 233,
- 232, 229, 228, 227, 226, 225, 224, 223, 222, 221,
- 220, 219, 218, 217, 216, 215, 212, 209, 208, 205,
- 204, 203, 202, 201, 200, 199, 196, 195, 194, 193,
- 190, 189, 188, 185, 184, 177, 176, 175, 174, 173,
- 168, 167, 166, 165, 164, 163, 162, 161, 160, 157,
- 156, 155, 154, 150, 149, 148, 147, 144, 143, 142,
- 141, 140, 139, 138, 44, 133, 132, 131, 130, 120,
- 101, 84, 81, 72, 46, 44, 676, 3, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676
- } ;
- static yyconst flex_int16_t yy_chk[842] =
- { 0,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 5, 5, 6, 6, 8, 8, 8,
- 8, 8, 8, 10, 17, 10, 10, 10, 10, 10,
- 10, 11, 20, 11, 11, 11, 11, 11, 11, 12,
- 70, 13, 12, 70, 14, 23, 681, 15, 27, 25,
- 17, 34, 12, 14, 10, 13, 23, 20, 17, 25,
- 34, 15, 27, 23, 14, 26, 17, 15, 12, 18,
- 18, 35, 35, 15, 27, 12, 24, 13, 10, 12,
- 13, 14, 15, 37, 24, 34, 586, 14, 18, 13,
- 27, 586, 26, 37, 29, 29, 42, 42, 29, 18,
- 29, 30, 24, 82, 30, 31, 30, 30, 113, 31,
- 24, 36, 29, 30, 59, 30, 113, 30, 83, 83,
- 36, 24, 82, 59, 29, 673, 30, 31, 65, 65,
- 65, 30, 45, 45, 45, 45, 45, 45, 47, 47,
- 47, 47, 47, 47, 48, 90, 48, 48, 48, 48,
- 48, 48, 89, 91, 94, 91, 89, 94, 99, 99,
- 90, 105, 105, 116, 118, 134, 134, 134, 134, 134,
- 134, 136, 136, 152, 156, 116, 152, 183, 202, 186,
- 670, 667, 156, 118, 183, 186, 202, 226, 226, 226,
- 666, 156, 245, 250, 264, 202, 291, 136, 136, 230,
- 230, 264, 664, 230, 230, 230, 230, 230, 230, 183,
- 250, 245, 273, 291, 321, 321, 321, 321, 321, 321,
- 273, 322, 322, 322, 322, 322, 322, 344, 344, 393,
- 393, 393, 322, 394, 394, 394, 395, 395, 395, 396,
- 396, 396, 663, 344, 509, 509, 509, 513, 344, 662,
- 513, 509, 516, 516, 516, 513, 585, 660, 322, 516,
- 585, 677, 659, 677, 677, 677, 678, 678, 678, 679,
- 658, 679, 679, 679, 680, 680, 657, 655, 654, 652,
- 651, 650, 649, 648, 647, 646, 645, 644, 643, 640,
- 639, 636, 635, 634, 633, 632, 631, 627, 626, 624,
- 622, 621, 619, 618, 617, 616, 615, 613, 612, 611,
- 610, 609, 608, 606, 604, 602, 601, 600, 599, 598,
- 597, 596, 594, 593, 591, 588, 587, 583, 582, 580,
- 578, 577, 576, 572, 571, 567, 566, 565, 564, 563,
- 562, 561, 560, 559, 558, 557, 556, 555, 554, 553,
- 552, 551, 550, 549, 548, 547, 546, 545, 544, 541,
- 539, 538, 537, 536, 534, 532, 529, 528, 527, 526,
- 525, 524, 523, 522, 521, 520, 519, 518, 517, 515,
- 514, 512, 510, 507, 505, 504, 503, 501, 500, 499,
- 498, 497, 496, 495, 493, 490, 489, 488, 487, 486,
- 485, 481, 479, 478, 477, 476, 475, 474, 460, 458,
- 457, 456, 454, 453, 451, 450, 449, 448, 445, 444,
- 443, 442, 441, 439, 437, 436, 435, 432, 431, 430,
- 429, 427, 426, 425, 424, 423, 422, 421, 419, 418,
- 417, 416, 415, 413, 412, 411, 410, 409, 407, 406,
- 403, 402, 401, 397, 389, 388, 387, 386, 385, 384,
- 383, 382, 381, 380, 379, 378, 377, 376, 375, 374,
- 371, 370, 368, 367, 366, 365, 364, 363, 362, 361,
- 360, 359, 358, 357, 356, 355, 354, 353, 352, 350,
- 349, 348, 347, 346, 345, 343, 342, 341, 339, 338,
- 337, 336, 335, 332, 331, 330, 328, 327, 326, 325,
- 324, 323, 320, 318, 317, 316, 315, 314, 313, 311,
- 310, 308, 305, 304, 303, 302, 301, 300, 299, 298,
- 297, 296, 295, 294, 293, 292, 289, 288, 285, 284,
- 283, 281, 280, 278, 277, 276, 275, 274, 272, 271,
- 270, 269, 268, 267, 266, 263, 262, 260, 259, 255,
- 253, 252, 251, 248, 246, 244, 243, 242, 241, 240,
- 239, 238, 237, 236, 235, 234, 233, 232, 229, 228,
- 227, 225, 224, 223, 222, 221, 220, 219, 218, 217,
- 216, 215, 214, 213, 212, 211, 210, 209, 208, 207,
- 206, 205, 203, 201, 200, 199, 198, 196, 194, 193,
- 192, 191, 190, 189, 187, 184, 182, 181, 180, 179,
- 176, 174, 173, 172, 171, 169, 168, 167, 164, 163,
- 162, 161, 160, 159, 158, 157, 155, 154, 153, 151,
- 150, 148, 147, 146, 145, 144, 143, 142, 141, 140,
- 138, 133, 132, 131, 130, 129, 128, 127, 126, 125,
- 124, 123, 122, 121, 120, 119, 117, 115, 114, 112,
- 111, 110, 109, 108, 107, 106, 104, 103, 101, 100,
- 98, 97, 95, 93, 92, 88, 87, 86, 85, 84,
- 81, 80, 79, 78, 76, 75, 74, 73, 71, 69,
- 68, 67, 66, 63, 62, 61, 60, 58, 56, 55,
- 54, 53, 52, 51, 43, 41, 40, 39, 38, 33,
- 28, 22, 19, 16, 9, 7, 3, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676, 676, 676, 676, 676, 676, 676, 676, 676, 676,
- 676
- } ;
- /* Table of booleans, true if rule could match eol. */
- static yyconst flex_int32_t yy_rule_can_match_eol[170] =
- { 0,
- 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, };
- /* The intent behind this definition is that it'll catch
- * any uses of REJECT which flex missed.
- */
- #define REJECT reject_used_but_not_detected
- #define yymore() yymore_used_but_not_detected
- #define YY_MORE_ADJ 0
- #define YY_RESTORE_YY_MORE_OFFSET
- #line 1 "BsLexerFX.l"
- #line 2 "BsLexerFX.l"
- #include "BsParserFX.h"
- #define YY_USER_ACTION yylloc->first_column = yycolumn + 1; yylloc->first_line = yylineno + 1; yycolumn += (int)yyleng;
- #define YY_USER_INIT yylineno = 0; yycolumn = 0;
- #define YY_NO_UNISTD_H 1
- #line 874 "BsLexerFX.c"
- #define INITIAL 0
- /*windows compatibility case*/
- #include <io.h>
- #define isatty _isatty
- #define fileno _fileno
-
- #define YY_EXTRA_TYPE struct tagParseState *
- /* Holds the entire state of the reentrant scanner. */
- struct yyguts_t
- {
- /* User-defined. Not touched by flex. */
- YY_EXTRA_TYPE yyextra_r;
- /* The rest are the same as the globals declared in the non-reentrant scanner. */
- FILE *yyin_r, *yyout_r;
- size_t yy_buffer_stack_top; /**< index of top of stack. */
- size_t yy_buffer_stack_max; /**< capacity of stack. */
- YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
- char yy_hold_char;
- yy_size_t yy_n_chars;
- yy_size_t yyleng_r;
- char *yy_c_buf_p;
- int yy_init;
- int yy_start;
- int yy_did_buffer_switch_on_eof;
- int yy_start_stack_ptr;
- int yy_start_stack_depth;
- int *yy_start_stack;
- yy_state_type yy_last_accepting_state;
- char* yy_last_accepting_cpos;
- int yylineno_r;
- int yy_flex_debug_r;
- char *yytext_r;
- int yy_more_flag;
- int yy_more_len;
- YYSTYPE * yylval_r;
- YYLTYPE * yylloc_r;
- }; /* end struct yyguts_t */
- static int yy_init_globals (yyscan_t yyscanner );
- /* This must go here because YYSTYPE and YYLTYPE are included
- * from bison output in section 1.*/
- # define yylval yyg->yylval_r
-
- # define yylloc yyg->yylloc_r
-
- int yylex_init (yyscan_t* scanner);
- int yylex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner);
- /* Accessor methods to globals.
- These are made visible to non-reentrant scanners for convenience. */
- int yylex_destroy (yyscan_t yyscanner );
- int yyget_debug (yyscan_t yyscanner );
- void yyset_debug (int debug_flag ,yyscan_t yyscanner );
- YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner );
- void yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner );
- FILE *yyget_in (yyscan_t yyscanner );
- void yyset_in (FILE * in_str ,yyscan_t yyscanner );
- FILE *yyget_out (yyscan_t yyscanner );
- void yyset_out (FILE * out_str ,yyscan_t yyscanner );
- yy_size_t yyget_leng (yyscan_t yyscanner );
- char *yyget_text (yyscan_t yyscanner );
- int yyget_lineno (yyscan_t yyscanner );
- void yyset_lineno (int line_number ,yyscan_t yyscanner );
- int yyget_column (yyscan_t yyscanner );
- void yyset_column (int column_no ,yyscan_t yyscanner );
- YYSTYPE * yyget_lval (yyscan_t yyscanner );
- void yyset_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner );
- YYLTYPE *yyget_lloc (yyscan_t yyscanner );
-
- void yyset_lloc (YYLTYPE * yylloc_param ,yyscan_t yyscanner );
-
- /* Macros after this point can all be overridden by user definitions in
- * section 1.
- */
- #ifndef YY_SKIP_YYWRAP
- #ifdef __cplusplus
- extern "C" int yywrap (yyscan_t yyscanner );
- #else
- extern int yywrap (yyscan_t yyscanner );
- #endif
- #endif
- static void yyunput (int c,char *buf_ptr ,yyscan_t yyscanner);
-
- #ifndef yytext_ptr
- static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner);
- #endif
- #ifdef YY_NEED_STRLEN
- static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner);
- #endif
- #ifndef YY_NO_INPUT
- #ifdef __cplusplus
- static int yyinput (yyscan_t yyscanner );
- #else
- static int input (yyscan_t yyscanner );
- #endif
- #endif
- /* Amount of stuff to slurp up with each read. */
- #ifndef YY_READ_BUF_SIZE
- #define YY_READ_BUF_SIZE 8192
- #endif
- /* Copy whatever the last rule matched to the standard output. */
- #ifndef ECHO
- /* This used to be an fputs(), but since the string might contain NUL's,
- * we now use fwrite().
- */
- #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
- #endif
- /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
- * is returned in "result".
- */
- #ifndef YY_INPUT
- #define YY_INPUT(buf,result,max_size) \
- if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
- { \
- int c = '*'; \
- size_t n; \
- for ( n = 0; n < max_size && \
- (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
- buf[n] = (char) c; \
- if ( c == '\n' ) \
- buf[n++] = (char) c; \
- if ( c == EOF && ferror( yyin ) ) \
- YY_FATAL_ERROR( "input in flex scanner failed" ); \
- result = n; \
- } \
- else \
- { \
- errno=0; \
- while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
- { \
- if( errno != EINTR) \
- { \
- YY_FATAL_ERROR( "input in flex scanner failed" ); \
- break; \
- } \
- errno=0; \
- clearerr(yyin); \
- } \
- }\
- \
- #endif
- /* No semi-colon after return; correct usage is to write "yyterminate();" -
- * we don't want an extra ';' after the "return" because that will cause
- * some compilers to complain about unreachable statements.
- */
- #ifndef yyterminate
- #define yyterminate() return YY_NULL
- #endif
- /* Number of entries by which start-condition stack grows. */
- #ifndef YY_START_STACK_INCR
- #define YY_START_STACK_INCR 25
- #endif
- /* Report a fatal error. */
- #ifndef YY_FATAL_ERROR
- #define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner)
- #endif
- /* end tables serialization structures and prototypes */
- /* Default declaration of generated scanner - a define so the user can
- * easily add parameters.
- */
- #ifndef YY_DECL
- #define YY_DECL_IS_OURS 1
- extern int yylex \
- (YYSTYPE * yylval_param,YYLTYPE * yylloc_param ,yyscan_t yyscanner);
- #define YY_DECL int yylex \
- (YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner)
- #endif /* !YY_DECL */
- /* Code executed at the beginning of each rule, after yytext and yyleng
- * have been set up.
- */
- #ifndef YY_USER_ACTION
- #define YY_USER_ACTION
- #endif
- /* Code executed at the end of each rule. */
- #ifndef YY_BREAK
- #define YY_BREAK break;
- #endif
- #define YY_RULE_SETUP \
- YY_USER_ACTION
- /** The main scanner function which does all the work.
- */
- YY_DECL
- {
- register yy_state_type yy_current_state;
- register char *yy_cp, *yy_bp;
- register int yy_act;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- #line 20 "BsLexerFX.l"
- #line 1117 "BsLexerFX.c"
- yylval = yylval_param;
- yylloc = yylloc_param;
- if ( !yyg->yy_init )
- {
- yyg->yy_init = 1;
- #ifdef YY_USER_INIT
- YY_USER_INIT;
- #endif
- if ( ! yyg->yy_start )
- yyg->yy_start = 1; /* first start state */
- if ( ! yyin )
- yyin = stdin;
- if ( ! yyout )
- yyout = stdout;
- if ( ! YY_CURRENT_BUFFER ) {
- yyensure_buffer_stack (yyscanner);
- YY_CURRENT_BUFFER_LVALUE =
- yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
- }
- yy_load_buffer_state(yyscanner );
- }
- while ( 1 ) /* loops until end-of-file is reached */
- {
- yy_cp = yyg->yy_c_buf_p;
- /* Support of yytext. */
- *yy_cp = yyg->yy_hold_char;
- /* yy_bp points to the position in yy_ch_buf of the start of
- * the current run.
- */
- yy_bp = yy_cp;
- yy_current_state = yyg->yy_start;
- yy_match:
- do
- {
- register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
- if ( yy_accept[yy_current_state] )
- {
- yyg->yy_last_accepting_state = yy_current_state;
- yyg->yy_last_accepting_cpos = yy_cp;
- }
- while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
- {
- yy_current_state = (int) yy_def[yy_current_state];
- if ( yy_current_state >= 677 )
- yy_c = yy_meta[(unsigned int) yy_c];
- }
- yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
- ++yy_cp;
- }
- while ( yy_current_state != 676 );
- yy_cp = yyg->yy_last_accepting_cpos;
- yy_current_state = yyg->yy_last_accepting_state;
- yy_find_action:
- yy_act = yy_accept[yy_current_state];
- YY_DO_BEFORE_ACTION;
- if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] )
- {
- yy_size_t yyl;
- for ( yyl = 0; yyl < yyleng; ++yyl )
- if ( yytext[yyl] == '\n' )
-
- do{ yylineno++;
- yycolumn=0;
- }while(0)
- ;
- }
- do_action: /* This label is used only to access EOF actions. */
- switch ( yy_act )
- { /* beginning of action switch */
- case 0: /* must back up */
- /* undo the effects of YY_DO_BEFORE_ACTION */
- *yy_cp = yyg->yy_hold_char;
- yy_cp = yyg->yy_last_accepting_cpos;
- yy_current_state = yyg->yy_last_accepting_state;
- goto yy_find_action;
- case 1:
- /* rule 1 can match eol */
- YY_RULE_SETUP
- #line 22 "BsLexerFX.l"
- { /* Skip blank */ }
- YY_BREAK
- case 2:
- YY_RULE_SETUP
- #line 23 "BsLexerFX.l"
- { yylval->intValue = atoi(yytext); return TOKEN_INTEGER; }
- YY_BREAK
- case 3:
- YY_RULE_SETUP
- #line 24 "BsLexerFX.l"
- { yylval->intValue = (int)strtol(yytext, 0, 0); return TOKEN_INTEGER; }
- YY_BREAK
- case 4:
- YY_RULE_SETUP
- #line 25 "BsLexerFX.l"
- { yylval->floatValue = (float)atof(yytext); return TOKEN_FLOAT; }
- YY_BREAK
- case 5:
- YY_RULE_SETUP
- #line 26 "BsLexerFX.l"
- { yylval->strValue = mmalloc_strdup(yyextra->memContext, yytext); return TOKEN_STRING; }
- YY_BREAK
- case 6:
- YY_RULE_SETUP
- #line 27 "BsLexerFX.l"
- { yylval->intValue = 1; return TOKEN_BOOLEAN; }
- YY_BREAK
- case 7:
- YY_RULE_SETUP
- #line 28 "BsLexerFX.l"
- { yylval->intValue = 0; return TOKEN_BOOLEAN; }
- YY_BREAK
- /* Value types */
- case 8:
- YY_RULE_SETUP
- #line 32 "BsLexerFX.l"
- { yylval->intValue = PT_Float; return TOKEN_FLOATTYPE; }
- YY_BREAK
- case 9:
- YY_RULE_SETUP
- #line 33 "BsLexerFX.l"
- { yylval->intValue = PT_Float2; return TOKEN_FLOAT2TYPE; }
- YY_BREAK
- case 10:
- YY_RULE_SETUP
- #line 34 "BsLexerFX.l"
- { yylval->intValue = PT_Float3; return TOKEN_FLOAT3TYPE; }
- YY_BREAK
- case 11:
- YY_RULE_SETUP
- #line 35 "BsLexerFX.l"
- { yylval->intValue = PT_Float4; return TOKEN_FLOAT4TYPE; }
- YY_BREAK
- case 12:
- YY_RULE_SETUP
- #line 37 "BsLexerFX.l"
- { yylval->intValue = PT_Mat2x2; return TOKEN_MAT2x2TYPE; }
- YY_BREAK
- case 13:
- YY_RULE_SETUP
- #line 38 "BsLexerFX.l"
- { yylval->intValue = PT_Mat2x3; return TOKEN_MAT2x3TYPE; }
- YY_BREAK
- case 14:
- YY_RULE_SETUP
- #line 39 "BsLexerFX.l"
- { yylval->intValue = PT_Mat2x4; return TOKEN_MAT2x4TYPE; }
- YY_BREAK
- case 15:
- YY_RULE_SETUP
- #line 41 "BsLexerFX.l"
- { yylval->intValue = PT_Mat3x2; return TOKEN_MAT3x2TYPE; }
- YY_BREAK
- case 16:
- YY_RULE_SETUP
- #line 42 "BsLexerFX.l"
- { yylval->intValue = PT_Mat3x3; return TOKEN_MAT3x3TYPE; }
- YY_BREAK
- case 17:
- YY_RULE_SETUP
- #line 43 "BsLexerFX.l"
- { yylval->intValue = PT_Mat3x4; return TOKEN_MAT3x4TYPE; }
- YY_BREAK
- case 18:
- YY_RULE_SETUP
- #line 45 "BsLexerFX.l"
- { yylval->intValue = PT_Mat4x2; return TOKEN_MAT4x2TYPE; }
- YY_BREAK
- case 19:
- YY_RULE_SETUP
- #line 46 "BsLexerFX.l"
- { yylval->intValue = PT_Mat4x3; return TOKEN_MAT4x3TYPE; }
- YY_BREAK
- case 20:
- YY_RULE_SETUP
- #line 47 "BsLexerFX.l"
- { yylval->intValue = PT_Mat4x4; return TOKEN_MAT4x4TYPE; }
- YY_BREAK
- case 21:
- YY_RULE_SETUP
- #line 49 "BsLexerFX.l"
- { yylval->intValue = PT_Sampler1D; return TOKEN_SAMPLER1D; }
- YY_BREAK
- case 22:
- YY_RULE_SETUP
- #line 50 "BsLexerFX.l"
- { yylval->intValue = PT_Sampler2D; return TOKEN_SAMPLER2D; }
- YY_BREAK
- case 23:
- YY_RULE_SETUP
- #line 51 "BsLexerFX.l"
- { yylval->intValue = PT_Sampler3D; return TOKEN_SAMPLER3D; }
- YY_BREAK
- case 24:
- YY_RULE_SETUP
- #line 52 "BsLexerFX.l"
- { yylval->intValue = PT_SamplerCUBE; return TOKEN_SAMPLERCUBE; }
- YY_BREAK
- case 25:
- YY_RULE_SETUP
- #line 53 "BsLexerFX.l"
- { yylval->intValue = PT_Sampler2DMS; return TOKEN_SAMPLER2DMS; }
- YY_BREAK
- case 26:
- YY_RULE_SETUP
- #line 55 "BsLexerFX.l"
- { yylval->intValue = PT_Texture1D; return TOKEN_TEXTURE1D; }
- YY_BREAK
- case 27:
- YY_RULE_SETUP
- #line 56 "BsLexerFX.l"
- { yylval->intValue = PT_Texture2D; return TOKEN_TEXTURE2D; }
- YY_BREAK
- case 28:
- YY_RULE_SETUP
- #line 57 "BsLexerFX.l"
- { yylval->intValue = PT_Texture3D; return TOKEN_TEXTURE3D; }
- YY_BREAK
- case 29:
- YY_RULE_SETUP
- #line 58 "BsLexerFX.l"
- { yylval->intValue = PT_TextureCUBE; return TOKEN_TEXTURECUBE; }
- YY_BREAK
- case 30:
- YY_RULE_SETUP
- #line 59 "BsLexerFX.l"
- { yylval->intValue = PT_Texture2DMS; return TOKEN_TEXTURE2DMS; }
- YY_BREAK
- case 31:
- YY_RULE_SETUP
- #line 61 "BsLexerFX.l"
- { yylval->intValue = PT_ByteBuffer; return TOKEN_BYTEBUFFER; }
- YY_BREAK
- case 32:
- YY_RULE_SETUP
- #line 62 "BsLexerFX.l"
- { yylval->intValue = PT_StructBuffer; return TOKEN_STRUCTBUFFER; }
- YY_BREAK
- case 33:
- YY_RULE_SETUP
- #line 64 "BsLexerFX.l"
- { yylval->intValue = PT_TypedBufferRW; return TOKEN_RWTYPEDBUFFER; }
- YY_BREAK
- case 34:
- YY_RULE_SETUP
- #line 65 "BsLexerFX.l"
- { yylval->intValue = PT_ByteBufferRW; return TOKEN_RWBYTEBUFFER; }
- YY_BREAK
- case 35:
- YY_RULE_SETUP
- #line 66 "BsLexerFX.l"
- { yylval->intValue = PT_StructBufferRW; return TOKEN_RWSTRUCTBUFFER; }
- YY_BREAK
- case 36:
- YY_RULE_SETUP
- #line 67 "BsLexerFX.l"
- { yylval->intValue = PT_AppendBuffer; return TOKEN_RWAPPENDBUFFER; }
- YY_BREAK
- case 37:
- YY_RULE_SETUP
- #line 68 "BsLexerFX.l"
- { yylval->intValue = PT_ConsumeBuffer; return TOKEN_RWCONSUMEBUFFER; }
- YY_BREAK
- case 38:
- YY_RULE_SETUP
- #line 70 "BsLexerFX.l"
- { return TOKEN_PARAMSBLOCK; }
- YY_BREAK
- /* Shader keywords */
- case 39:
- YY_RULE_SETUP
- #line 73 "BsLexerFX.l"
- { return TOKEN_SEPARABLE; }
- YY_BREAK
- case 40:
- YY_RULE_SETUP
- #line 74 "BsLexerFX.l"
- { return TOKEN_QUEUE; }
- YY_BREAK
- case 41:
- YY_RULE_SETUP
- #line 75 "BsLexerFX.l"
- { return TOKEN_PRIORITY; }
- YY_BREAK
- case 42:
- YY_RULE_SETUP
- #line 76 "BsLexerFX.l"
- { return TOKEN_TECHNIQUE; }
- YY_BREAK
- case 43:
- YY_RULE_SETUP
- #line 77 "BsLexerFX.l"
- { return TOKEN_PARAMETERS; }
- YY_BREAK
- case 44:
- YY_RULE_SETUP
- #line 78 "BsLexerFX.l"
- { return TOKEN_BLOCKS; }
- YY_BREAK
- /* Technique keywords */
- case 45:
- YY_RULE_SETUP
- #line 81 "BsLexerFX.l"
- { return TOKEN_RENDERER; }
- YY_BREAK
- case 46:
- YY_RULE_SETUP
- #line 82 "BsLexerFX.l"
- { return TOKEN_LANGUAGE; }
- YY_BREAK
- case 47:
- YY_RULE_SETUP
- #line 83 "BsLexerFX.l"
- { return TOKEN_INCLUDE; }
- YY_BREAK
- case 48:
- YY_RULE_SETUP
- #line 84 "BsLexerFX.l"
- { return TOKEN_PASS; }
- YY_BREAK
- /* Pass keywords */
- case 49:
- YY_RULE_SETUP
- #line 87 "BsLexerFX.l"
- { return TOKEN_VERTEX; }
- YY_BREAK
- case 50:
- YY_RULE_SETUP
- #line 88 "BsLexerFX.l"
- { return TOKEN_FRAGMENT; }
- YY_BREAK
- case 51:
- YY_RULE_SETUP
- #line 89 "BsLexerFX.l"
- { return TOKEN_GEOMETRY; }
- YY_BREAK
- case 52:
- YY_RULE_SETUP
- #line 90 "BsLexerFX.l"
- { return TOKEN_HULL; }
- YY_BREAK
- case 53:
- YY_RULE_SETUP
- #line 91 "BsLexerFX.l"
- { return TOKEN_DOMAIN; }
- YY_BREAK
- case 54:
- YY_RULE_SETUP
- #line 92 "BsLexerFX.l"
- { return TOKEN_COMPUTE; }
- YY_BREAK
- case 55:
- YY_RULE_SETUP
- #line 93 "BsLexerFX.l"
- { return TOKEN_COMMON; }
- YY_BREAK
- case 56:
- YY_RULE_SETUP
- #line 94 "BsLexerFX.l"
- { return TOKEN_STENCILREF; }
- YY_BREAK
- /* Rasterizer state keywords */
- case 57:
- YY_RULE_SETUP
- #line 97 "BsLexerFX.l"
- { return TOKEN_FILLMODE; }
- YY_BREAK
- case 58:
- YY_RULE_SETUP
- #line 98 "BsLexerFX.l"
- { return TOKEN_CULLMODE; }
- YY_BREAK
- case 59:
- YY_RULE_SETUP
- #line 99 "BsLexerFX.l"
- { return TOKEN_DEPTHBIAS; }
- YY_BREAK
- case 60:
- YY_RULE_SETUP
- #line 100 "BsLexerFX.l"
- { return TOKEN_SDEPTHBIAS; }
- YY_BREAK
- case 61:
- YY_RULE_SETUP
- #line 101 "BsLexerFX.l"
- { return TOKEN_DEPTHCLIP; }
- YY_BREAK
- case 62:
- YY_RULE_SETUP
- #line 102 "BsLexerFX.l"
- { return TOKEN_SCISSOR; }
- YY_BREAK
- case 63:
- YY_RULE_SETUP
- #line 103 "BsLexerFX.l"
- { return TOKEN_MULTISAMPLE; }
- YY_BREAK
- case 64:
- YY_RULE_SETUP
- #line 104 "BsLexerFX.l"
- { return TOKEN_AALINE; }
- YY_BREAK
- /* Depth-stencil state keywords */
- case 65:
- YY_RULE_SETUP
- #line 107 "BsLexerFX.l"
- { return TOKEN_DEPTHREAD; }
- YY_BREAK
- case 66:
- YY_RULE_SETUP
- #line 108 "BsLexerFX.l"
- { return TOKEN_DEPTHWRITE; }
- YY_BREAK
- case 67:
- YY_RULE_SETUP
- #line 109 "BsLexerFX.l"
- { return TOKEN_COMPAREFUNC; }
- YY_BREAK
- case 68:
- YY_RULE_SETUP
- #line 110 "BsLexerFX.l"
- { return TOKEN_STENCIL; }
- YY_BREAK
- case 69:
- YY_RULE_SETUP
- #line 111 "BsLexerFX.l"
- { return TOKEN_STENCILREADMASK; }
- YY_BREAK
- case 70:
- YY_RULE_SETUP
- #line 112 "BsLexerFX.l"
- { return TOKEN_STENCILWRITEMASK; }
- YY_BREAK
- case 71:
- YY_RULE_SETUP
- #line 113 "BsLexerFX.l"
- { return TOKEN_STENCILOPFRONT; }
- YY_BREAK
- case 72:
- YY_RULE_SETUP
- #line 114 "BsLexerFX.l"
- { return TOKEN_STENCILOPBACK; }
- YY_BREAK
- case 73:
- YY_RULE_SETUP
- #line 115 "BsLexerFX.l"
- { return TOKEN_FAIL; }
- YY_BREAK
- case 74:
- YY_RULE_SETUP
- #line 116 "BsLexerFX.l"
- { return TOKEN_ZFAIL; }
- YY_BREAK
- /* Blend state keywords */
- case 75:
- YY_RULE_SETUP
- #line 119 "BsLexerFX.l"
- { return TOKEN_ALPHATOCOVERAGE; }
- YY_BREAK
- case 76:
- YY_RULE_SETUP
- #line 120 "BsLexerFX.l"
- { return TOKEN_INDEPENDANTBLEND; }
- YY_BREAK
- case 77:
- YY_RULE_SETUP
- #line 121 "BsLexerFX.l"
- { return TOKEN_TARGET; }
- YY_BREAK
- case 78:
- YY_RULE_SETUP
- #line 122 "BsLexerFX.l"
- { return TOKEN_INDEX; }
- YY_BREAK
- case 79:
- YY_RULE_SETUP
- #line 123 "BsLexerFX.l"
- { return TOKEN_BLEND; }
- YY_BREAK
- case 80:
- YY_RULE_SETUP
- #line 124 "BsLexerFX.l"
- { return TOKEN_COLOR; }
- YY_BREAK
- case 81:
- YY_RULE_SETUP
- #line 125 "BsLexerFX.l"
- { return TOKEN_ALPHA; }
- YY_BREAK
- case 82:
- YY_RULE_SETUP
- #line 126 "BsLexerFX.l"
- { return TOKEN_WRITEMASK; }
- YY_BREAK
- case 83:
- YY_RULE_SETUP
- #line 127 "BsLexerFX.l"
- { return TOKEN_SOURCE; }
- YY_BREAK
- case 84:
- YY_RULE_SETUP
- #line 128 "BsLexerFX.l"
- { return TOKEN_DEST; }
- YY_BREAK
- case 85:
- YY_RULE_SETUP
- #line 129 "BsLexerFX.l"
- { return TOKEN_OP; }
- YY_BREAK
- /* Sampler state keywords */
- case 86:
- YY_RULE_SETUP
- #line 132 "BsLexerFX.l"
- { return TOKEN_ADDRMODE; }
- YY_BREAK
- case 87:
- YY_RULE_SETUP
- #line 133 "BsLexerFX.l"
- { return TOKEN_MINFILTER; }
- YY_BREAK
- case 88:
- YY_RULE_SETUP
- #line 134 "BsLexerFX.l"
- { return TOKEN_MAGFILTER; }
- YY_BREAK
- case 89:
- YY_RULE_SETUP
- #line 135 "BsLexerFX.l"
- { return TOKEN_MIPFILTER; }
- YY_BREAK
- case 90:
- YY_RULE_SETUP
- #line 136 "BsLexerFX.l"
- { return TOKEN_MAXANISO; }
- YY_BREAK
- case 91:
- YY_RULE_SETUP
- #line 137 "BsLexerFX.l"
- { return TOKEN_MIPBIAS; }
- YY_BREAK
- case 92:
- YY_RULE_SETUP
- #line 138 "BsLexerFX.l"
- { return TOKEN_MIPMIN; }
- YY_BREAK
- case 93:
- YY_RULE_SETUP
- #line 139 "BsLexerFX.l"
- { return TOKEN_MIPMAX; }
- YY_BREAK
- case 94:
- YY_RULE_SETUP
- #line 140 "BsLexerFX.l"
- { return TOKEN_BORDERCOLOR; }
- YY_BREAK
- case 95:
- YY_RULE_SETUP
- #line 141 "BsLexerFX.l"
- { return TOKEN_U; }
- YY_BREAK
- case 96:
- YY_RULE_SETUP
- #line 142 "BsLexerFX.l"
- { return TOKEN_V; }
- YY_BREAK
- case 97:
- YY_RULE_SETUP
- #line 143 "BsLexerFX.l"
- { return TOKEN_W; }
- YY_BREAK
- /* Qualifiers */
- case 98:
- YY_RULE_SETUP
- #line 146 "BsLexerFX.l"
- { return TOKEN_AUTO; }
- YY_BREAK
- case 99:
- YY_RULE_SETUP
- #line 147 "BsLexerFX.l"
- { return TOKEN_ALIAS; }
- YY_BREAK
- case 100:
- YY_RULE_SETUP
- #line 148 "BsLexerFX.l"
- { return TOKEN_SHARED; }
- YY_BREAK
- case 101:
- YY_RULE_SETUP
- #line 149 "BsLexerFX.l"
- { return TOKEN_USAGE; }
- YY_BREAK
- /* State values */
- case 102:
- YY_RULE_SETUP
- #line 152 "BsLexerFX.l"
- { yylval->intValue = FMV_Wire; return TOKEN_FILLMODEVALUE; }
- YY_BREAK
- case 103:
- YY_RULE_SETUP
- #line 153 "BsLexerFX.l"
- { yylval->intValue = FMV_Solid; return TOKEN_FILLMODEVALUE; }
- YY_BREAK
- case 104:
- YY_RULE_SETUP
- #line 155 "BsLexerFX.l"
- { yylval->intValue = CMV_None; return TOKEN_CULLMODEVALUE; }
- YY_BREAK
- case 105:
- YY_RULE_SETUP
- #line 156 "BsLexerFX.l"
- { yylval->intValue = CMV_CW; return TOKEN_CULLMODEVALUE; }
- YY_BREAK
- case 106:
- YY_RULE_SETUP
- #line 157 "BsLexerFX.l"
- { yylval->intValue = CMV_CCW; return TOKEN_CULLMODEVALUE; }
- YY_BREAK
- case 107:
- YY_RULE_SETUP
- #line 159 "BsLexerFX.l"
- { yylval->intValue = CFV_Fail; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 108:
- YY_RULE_SETUP
- #line 160 "BsLexerFX.l"
- { yylval->intValue = CFV_Pass; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 109:
- YY_RULE_SETUP
- #line 161 "BsLexerFX.l"
- { yylval->intValue = CFV_LT; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 110:
- YY_RULE_SETUP
- #line 162 "BsLexerFX.l"
- { yylval->intValue = CFV_LTE; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 111:
- YY_RULE_SETUP
- #line 163 "BsLexerFX.l"
- { yylval->intValue = CFV_EQ; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 112:
- YY_RULE_SETUP
- #line 164 "BsLexerFX.l"
- { yylval->intValue = CFV_NEQ; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 113:
- YY_RULE_SETUP
- #line 165 "BsLexerFX.l"
- { yylval->intValue = CFV_GTE; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 114:
- YY_RULE_SETUP
- #line 166 "BsLexerFX.l"
- { yylval->intValue = CFV_GT; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 115:
- YY_RULE_SETUP
- #line 168 "BsLexerFX.l"
- { yylval->intValue = OV_Keep; return TOKEN_OPVALUE; }
- YY_BREAK
- case 116:
- YY_RULE_SETUP
- #line 169 "BsLexerFX.l"
- { yylval->intValue = OV_Zero; return TOKEN_OPVALUE; }
- YY_BREAK
- case 117:
- YY_RULE_SETUP
- #line 170 "BsLexerFX.l"
- { yylval->intValue = OV_Replace; return TOKEN_OPVALUE; }
- YY_BREAK
- case 118:
- YY_RULE_SETUP
- #line 171 "BsLexerFX.l"
- { yylval->intValue = OV_Incr; return TOKEN_OPVALUE; }
- YY_BREAK
- case 119:
- YY_RULE_SETUP
- #line 172 "BsLexerFX.l"
- { yylval->intValue = OV_Decr; return TOKEN_OPVALUE; }
- YY_BREAK
- case 120:
- YY_RULE_SETUP
- #line 173 "BsLexerFX.l"
- { yylval->intValue = OV_IncrWrap; return TOKEN_OPVALUE; }
- YY_BREAK
- case 121:
- YY_RULE_SETUP
- #line 174 "BsLexerFX.l"
- { yylval->intValue = OV_DecrWrap; return TOKEN_OPVALUE; }
- YY_BREAK
- case 122:
- YY_RULE_SETUP
- #line 175 "BsLexerFX.l"
- { yylval->intValue = OV_Invert; return TOKEN_OPVALUE; }
- YY_BREAK
- case 123:
- YY_RULE_SETUP
- #line 176 "BsLexerFX.l"
- { yylval->intValue = OV_One; return TOKEN_OPVALUE; }
- YY_BREAK
- case 124:
- YY_RULE_SETUP
- #line 177 "BsLexerFX.l"
- { yylval->intValue = OV_DestColor; return TOKEN_OPVALUE; }
- YY_BREAK
- case 125:
- YY_RULE_SETUP
- #line 178 "BsLexerFX.l"
- { yylval->intValue = OV_SrcColor; return TOKEN_OPVALUE; }
- YY_BREAK
- case 126:
- YY_RULE_SETUP
- #line 179 "BsLexerFX.l"
- { yylval->intValue = OV_InvDestColor; return TOKEN_OPVALUE; }
- YY_BREAK
- case 127:
- YY_RULE_SETUP
- #line 180 "BsLexerFX.l"
- { yylval->intValue = OV_InvSrcColor; return TOKEN_OPVALUE; }
- YY_BREAK
- case 128:
- YY_RULE_SETUP
- #line 181 "BsLexerFX.l"
- { yylval->intValue = OV_DestAlpha; return TOKEN_OPVALUE; }
- YY_BREAK
- case 129:
- YY_RULE_SETUP
- #line 182 "BsLexerFX.l"
- { yylval->intValue = OV_SrcAlpha; return TOKEN_OPVALUE; }
- YY_BREAK
- case 130:
- YY_RULE_SETUP
- #line 183 "BsLexerFX.l"
- { yylval->intValue = OV_InvDestAlpha; return TOKEN_OPVALUE; }
- YY_BREAK
- case 131:
- YY_RULE_SETUP
- #line 184 "BsLexerFX.l"
- { yylval->intValue = OV_InvSrcAlpha; return TOKEN_OPVALUE; }
- YY_BREAK
- case 132:
- YY_RULE_SETUP
- #line 186 "BsLexerFX.l"
- { yylval->intValue = BOV_Add; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 133:
- YY_RULE_SETUP
- #line 187 "BsLexerFX.l"
- { yylval->intValue = BOV_Subtract; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 134:
- YY_RULE_SETUP
- #line 188 "BsLexerFX.l"
- { yylval->intValue = BOV_RevSubtract; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 135:
- YY_RULE_SETUP
- #line 189 "BsLexerFX.l"
- { yylval->intValue = BOV_Min; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 136:
- YY_RULE_SETUP
- #line 190 "BsLexerFX.l"
- { yylval->intValue = BOV_Max; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 137:
- YY_RULE_SETUP
- #line 192 "BsLexerFX.l"
- { yylval->intValue = 0x0; return TOKEN_COLORMASK; }
- YY_BREAK
- case 138:
- YY_RULE_SETUP
- #line 193 "BsLexerFX.l"
- { yylval->intValue = 0x1; return TOKEN_COLORMASK; }
- YY_BREAK
- case 139:
- YY_RULE_SETUP
- #line 194 "BsLexerFX.l"
- { yylval->intValue = 0x2; return TOKEN_COLORMASK; }
- YY_BREAK
- case 140:
- YY_RULE_SETUP
- #line 195 "BsLexerFX.l"
- { yylval->intValue = 0x4; return TOKEN_COLORMASK; }
- YY_BREAK
- case 141:
- YY_RULE_SETUP
- #line 196 "BsLexerFX.l"
- { yylval->intValue = 0x8; return TOKEN_COLORMASK; }
- YY_BREAK
- case 142:
- YY_RULE_SETUP
- #line 197 "BsLexerFX.l"
- { yylval->intValue = 0x3; return TOKEN_COLORMASK; }
- YY_BREAK
- case 143:
- YY_RULE_SETUP
- #line 198 "BsLexerFX.l"
- { yylval->intValue = 0x5; return TOKEN_COLORMASK; }
- YY_BREAK
- case 144:
- YY_RULE_SETUP
- #line 199 "BsLexerFX.l"
- { yylval->intValue = 0x9; return TOKEN_COLORMASK; }
- YY_BREAK
- case 145:
- YY_RULE_SETUP
- #line 200 "BsLexerFX.l"
- { yylval->intValue = 0x6; return TOKEN_COLORMASK; }
- YY_BREAK
- case 146:
- YY_RULE_SETUP
- #line 201 "BsLexerFX.l"
- { yylval->intValue = 0xA; return TOKEN_COLORMASK; }
- YY_BREAK
- case 147:
- YY_RULE_SETUP
- #line 202 "BsLexerFX.l"
- { yylval->intValue = 0xC; return TOKEN_COLORMASK; }
- YY_BREAK
- case 148:
- YY_RULE_SETUP
- #line 203 "BsLexerFX.l"
- { yylval->intValue = 0x7; return TOKEN_COLORMASK; }
- YY_BREAK
- case 149:
- YY_RULE_SETUP
- #line 204 "BsLexerFX.l"
- { yylval->intValue = 0xB; return TOKEN_COLORMASK; }
- YY_BREAK
- case 150:
- YY_RULE_SETUP
- #line 205 "BsLexerFX.l"
- { yylval->intValue = 0xD; return TOKEN_COLORMASK; }
- YY_BREAK
- case 151:
- YY_RULE_SETUP
- #line 206 "BsLexerFX.l"
- { yylval->intValue = 0xE; return TOKEN_COLORMASK; }
- YY_BREAK
- case 152:
- YY_RULE_SETUP
- #line 207 "BsLexerFX.l"
- { yylval->intValue = 0xF; return TOKEN_COLORMASK; }
- YY_BREAK
- case 153:
- YY_RULE_SETUP
- #line 209 "BsLexerFX.l"
- { yylval->intValue = AMV_Wrap; return TOKEN_ADDRMODEVALUE; }
- YY_BREAK
- case 154:
- YY_RULE_SETUP
- #line 210 "BsLexerFX.l"
- { yylval->intValue = AMV_Mirror; return TOKEN_ADDRMODEVALUE; }
- YY_BREAK
- case 155:
- YY_RULE_SETUP
- #line 211 "BsLexerFX.l"
- { yylval->intValue = AMV_Clamp; return TOKEN_ADDRMODEVALUE; }
- YY_BREAK
- case 156:
- YY_RULE_SETUP
- #line 212 "BsLexerFX.l"
- { yylval->intValue = AMV_Border; return TOKEN_ADDRMODEVALUE; }
- YY_BREAK
- case 157:
- YY_RULE_SETUP
- #line 214 "BsLexerFX.l"
- { yylval->intValue = FV_None; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 158:
- YY_RULE_SETUP
- #line 215 "BsLexerFX.l"
- { yylval->intValue = FV_Point; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 159:
- YY_RULE_SETUP
- #line 216 "BsLexerFX.l"
- { yylval->intValue = FV_Linear; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 160:
- YY_RULE_SETUP
- #line 217 "BsLexerFX.l"
- { yylval->intValue = FV_Anisotropic; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 161:
- YY_RULE_SETUP
- #line 218 "BsLexerFX.l"
- { yylval->intValue = FV_PointCmp; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 162:
- YY_RULE_SETUP
- #line 219 "BsLexerFX.l"
- { yylval->intValue = FV_LinearCmp; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 163:
- YY_RULE_SETUP
- #line 220 "BsLexerFX.l"
- { yylval->intValue = FV_AnisotropicCmp; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 164:
- YY_RULE_SETUP
- #line 222 "BsLexerFX.l"
- { yylval->intValue = BUV_Static; return TOKEN_BUFFERUSAGE; }
- YY_BREAK
- case 165:
- YY_RULE_SETUP
- #line 223 "BsLexerFX.l"
- { yylval->intValue = BUV_Dynamic; return TOKEN_BUFFERUSAGE; }
- YY_BREAK
- case 166:
- YY_RULE_SETUP
- #line 225 "BsLexerFX.l"
- { }
- YY_BREAK
- case 167:
- YY_RULE_SETUP
- #line 226 "BsLexerFX.l"
- { yylval->strValue = mmalloc_strdup(yyextra->memContext, yytext); return TOKEN_IDENTIFIER; }
- YY_BREAK
- case 168:
- YY_RULE_SETUP
- #line 227 "BsLexerFX.l"
- { return yytext[0]; }
- YY_BREAK
- case 169:
- YY_RULE_SETUP
- #line 228 "BsLexerFX.l"
- YY_FATAL_ERROR( "flex scanner jammed" );
- YY_BREAK
- #line 2068 "BsLexerFX.c"
- case YY_STATE_EOF(INITIAL):
- yyterminate();
- case YY_END_OF_BUFFER:
- {
- /* Amount of text matched not including the EOB char. */
- int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1;
- /* Undo the effects of YY_DO_BEFORE_ACTION. */
- *yy_cp = yyg->yy_hold_char;
- YY_RESTORE_YY_MORE_OFFSET
- if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
- {
- /* We're scanning a new file or input source. It's
- * possible that this happened because the user
- * just pointed yyin at a new source and called
- * yylex(). If so, then we have to assure
- * consistency between YY_CURRENT_BUFFER and our
- * globals. Here is the right place to do so, because
- * this is the first action (other than possibly a
- * back-up) that will match for the new input source.
- */
- yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
- YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
- YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
- }
- /* Note that here we test for yy_c_buf_p "<=" to the position
- * of the first EOB in the buffer, since yy_c_buf_p will
- * already have been incremented past the NUL character
- * (since all states make transitions on EOB to the
- * end-of-buffer state). Contrast this with the test
- * in input().
- */
- if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
- { /* This was really a NUL. */
- yy_state_type yy_next_state;
- yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text;
- yy_current_state = yy_get_previous_state( yyscanner );
- /* Okay, we're now positioned to make the NUL
- * transition. We couldn't have
- * yy_get_previous_state() go ahead and do it
- * for us because it doesn't know how to deal
- * with the possibility of jamming (and we don't
- * want to build jamming into it because then it
- * will run more slowly).
- */
- yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner);
- yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
- if ( yy_next_state )
- {
- /* Consume the NUL. */
- yy_cp = ++yyg->yy_c_buf_p;
- yy_current_state = yy_next_state;
- goto yy_match;
- }
- else
- {
- yy_cp = yyg->yy_last_accepting_cpos;
- yy_current_state = yyg->yy_last_accepting_state;
- goto yy_find_action;
- }
- }
- else switch ( yy_get_next_buffer( yyscanner ) )
- {
- case EOB_ACT_END_OF_FILE:
- {
- yyg->yy_did_buffer_switch_on_eof = 0;
- if ( yywrap(yyscanner ) )
- {
- /* Note: because we've taken care in
- * yy_get_next_buffer() to have set up
- * yytext, we can now set up
- * yy_c_buf_p so that if some total
- * hoser (like flex itself) wants to
- * call the scanner after we return the
- * YY_NULL, it'll still work - another
- * YY_NULL will get returned.
- */
- yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ;
- yy_act = YY_STATE_EOF(YY_START);
- goto do_action;
- }
- else
- {
- if ( ! yyg->yy_did_buffer_switch_on_eof )
- YY_NEW_FILE;
- }
- break;
- }
- case EOB_ACT_CONTINUE_SCAN:
- yyg->yy_c_buf_p =
- yyg->yytext_ptr + yy_amount_of_matched_text;
- yy_current_state = yy_get_previous_state( yyscanner );
- yy_cp = yyg->yy_c_buf_p;
- yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
- goto yy_match;
- case EOB_ACT_LAST_MATCH:
- yyg->yy_c_buf_p =
- &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars];
- yy_current_state = yy_get_previous_state( yyscanner );
- yy_cp = yyg->yy_c_buf_p;
- yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
- goto yy_find_action;
- }
- break;
- }
- default:
- YY_FATAL_ERROR(
- "fatal flex scanner internal error--no action found" );
- } /* end of action switch */
- } /* end of scanning one token */
- } /* end of yylex */
- /* yy_get_next_buffer - try to read in a new buffer
- *
- * Returns a code representing an action:
- * EOB_ACT_LAST_MATCH -
- * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
- * EOB_ACT_END_OF_FILE - end of file
- */
- static int yy_get_next_buffer (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
- register char *source = yyg->yytext_ptr;
- register int number_to_move, i;
- int ret_val;
- if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] )
- YY_FATAL_ERROR(
- "fatal flex scanner internal error--end of buffer missed" );
- if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
- { /* Don't try to fill the buffer, so this is an EOF. */
- if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 )
- {
- /* We matched a single character, the EOB, so
- * treat this as a final EOF.
- */
- return EOB_ACT_END_OF_FILE;
- }
- else
- {
- /* We matched some text prior to the EOB, first
- * process it.
- */
- return EOB_ACT_LAST_MATCH;
- }
- }
- /* Try to read more data. */
- /* First move last chars to start of buffer. */
- number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr) - 1;
- for ( i = 0; i < number_to_move; ++i )
- *(dest++) = *(source++);
- if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
- /* don't do the read, it's not guaranteed to return an EOF,
- * just force an EOF
- */
- YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0;
- else
- {
- yy_size_t num_to_read =
- YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
- while ( num_to_read <= 0 )
- { /* Not enough room in the buffer - grow it. */
- /* just a shorter name for the current buffer */
- YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
- int yy_c_buf_p_offset =
- (int) (yyg->yy_c_buf_p - b->yy_ch_buf);
- if ( b->yy_is_our_buffer )
- {
- yy_size_t new_size = b->yy_buf_size * 2;
- if ( new_size <= 0 )
- b->yy_buf_size += b->yy_buf_size / 8;
- else
- b->yy_buf_size *= 2;
- b->yy_ch_buf = (char *)
- /* Include room in for 2 EOB chars. */
- yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner );
- }
- else
- /* Can't grow it, we don't own it. */
- b->yy_ch_buf = 0;
- if ( ! b->yy_ch_buf )
- YY_FATAL_ERROR(
- "fatal error - scanner input buffer overflow" );
- yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
- num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
- number_to_move - 1;
- }
- if ( num_to_read > YY_READ_BUF_SIZE )
- num_to_read = YY_READ_BUF_SIZE;
- /* Read in more data. */
- YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
- yyg->yy_n_chars, num_to_read );
- YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
- }
- if ( yyg->yy_n_chars == 0 )
- {
- if ( number_to_move == YY_MORE_ADJ )
- {
- ret_val = EOB_ACT_END_OF_FILE;
- yyrestart(yyin ,yyscanner);
- }
- else
- {
- ret_val = EOB_ACT_LAST_MATCH;
- YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
- YY_BUFFER_EOF_PENDING;
- }
- }
- else
- ret_val = EOB_ACT_CONTINUE_SCAN;
- if ((yy_size_t) (yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
- /* Extend the array by 50%, plus the number we really need. */
- yy_size_t new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1);
- YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner );
- if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
- YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
- }
- yyg->yy_n_chars += number_to_move;
- YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR;
- YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
- yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
- return ret_val;
- }
- /* yy_get_previous_state - get the state just before the EOB char was reached */
- static yy_state_type yy_get_previous_state (yyscan_t yyscanner)
- {
- register yy_state_type yy_current_state;
- register char *yy_cp;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yy_current_state = yyg->yy_start;
- for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp )
- {
- register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
- if ( yy_accept[yy_current_state] )
- {
- yyg->yy_last_accepting_state = yy_current_state;
- yyg->yy_last_accepting_cpos = yy_cp;
- }
- while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
- {
- yy_current_state = (int) yy_def[yy_current_state];
- if ( yy_current_state >= 677 )
- yy_c = yy_meta[(unsigned int) yy_c];
- }
- yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
- }
- return yy_current_state;
- }
- /* yy_try_NUL_trans - try to make a transition on the NUL character
- *
- * synopsis
- * next_state = yy_try_NUL_trans( current_state );
- */
- static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner)
- {
- register int yy_is_jam;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */
- register char *yy_cp = yyg->yy_c_buf_p;
- register YY_CHAR yy_c = 1;
- if ( yy_accept[yy_current_state] )
- {
- yyg->yy_last_accepting_state = yy_current_state;
- yyg->yy_last_accepting_cpos = yy_cp;
- }
- while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
- {
- yy_current_state = (int) yy_def[yy_current_state];
- if ( yy_current_state >= 677 )
- yy_c = yy_meta[(unsigned int) yy_c];
- }
- yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
- yy_is_jam = (yy_current_state == 676);
- (void)yyg;
- return yy_is_jam ? 0 : yy_current_state;
- }
- static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner)
- {
- register char *yy_cp;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yy_cp = yyg->yy_c_buf_p;
- /* undo effects of setting up yytext */
- *yy_cp = yyg->yy_hold_char;
- if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
- { /* need to shift things up to make room */
- /* +2 for EOB chars. */
- register yy_size_t number_to_move = yyg->yy_n_chars + 2;
- register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
- YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
- register char *source =
- &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
- while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
- *--dest = *--source;
- yy_cp += (int) (dest - source);
- yy_bp += (int) (dest - source);
- YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
- yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
- if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
- YY_FATAL_ERROR( "flex scanner push-back overflow" );
- }
- *--yy_cp = (char) c;
- if ( c == '\n' ){
- --yylineno;
- }
- yyg->yytext_ptr = yy_bp;
- yyg->yy_hold_char = *yy_cp;
- yyg->yy_c_buf_p = yy_cp;
- }
- #ifndef YY_NO_INPUT
- #ifdef __cplusplus
- static int yyinput (yyscan_t yyscanner)
- #else
- static int input (yyscan_t yyscanner)
- #endif
- {
- int c;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- *yyg->yy_c_buf_p = yyg->yy_hold_char;
- if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
- {
- /* yy_c_buf_p now points to the character we want to return.
- * If this occurs *before* the EOB characters, then it's a
- * valid NUL; if not, then we've hit the end of the buffer.
- */
- if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
- /* This was really a NUL. */
- *yyg->yy_c_buf_p = '\0';
- else
- { /* need more input */
- yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
- ++yyg->yy_c_buf_p;
- switch ( yy_get_next_buffer( yyscanner ) )
- {
- case EOB_ACT_LAST_MATCH:
- /* This happens because yy_g_n_b()
- * sees that we've accumulated a
- * token and flags that we need to
- * try matching the token before
- * proceeding. But for input(),
- * there's no matching to consider.
- * So convert the EOB_ACT_LAST_MATCH
- * to EOB_ACT_END_OF_FILE.
- */
- /* Reset buffer status. */
- yyrestart(yyin ,yyscanner);
- /*FALLTHROUGH*/
- case EOB_ACT_END_OF_FILE:
- {
- if ( yywrap(yyscanner ) )
- return EOF;
- if ( ! yyg->yy_did_buffer_switch_on_eof )
- YY_NEW_FILE;
- #ifdef __cplusplus
- return yyinput(yyscanner);
- #else
- return input(yyscanner);
- #endif
- }
- case EOB_ACT_CONTINUE_SCAN:
- yyg->yy_c_buf_p = yyg->yytext_ptr + offset;
- break;
- }
- }
- }
- c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */
- *yyg->yy_c_buf_p = '\0'; /* preserve yytext */
- yyg->yy_hold_char = *++yyg->yy_c_buf_p;
- if ( c == '\n' )
-
- do{ yylineno++;
- yycolumn=0;
- }while(0)
- ;
- return c;
- }
- #endif /* ifndef YY_NO_INPUT */
- /** Immediately switch to a different input stream.
- * @param input_file A readable stream.
- * @param yyscanner The scanner object.
- * @note This function does not reset the start condition to @c INITIAL .
- */
- void yyrestart (FILE * input_file , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- if ( ! YY_CURRENT_BUFFER ){
- yyensure_buffer_stack (yyscanner);
- YY_CURRENT_BUFFER_LVALUE =
- yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
- }
- yy_init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner);
- yy_load_buffer_state(yyscanner );
- }
- /** Switch to a different input buffer.
- * @param new_buffer The new input buffer.
- * @param yyscanner The scanner object.
- */
- void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* TODO. We should be able to replace this entire function body
- * with
- * yypop_buffer_state();
- * yypush_buffer_state(new_buffer);
- */
- yyensure_buffer_stack (yyscanner);
- if ( YY_CURRENT_BUFFER == new_buffer )
- return;
- if ( YY_CURRENT_BUFFER )
- {
- /* Flush out information for old buffer. */
- *yyg->yy_c_buf_p = yyg->yy_hold_char;
- YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
- YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
- }
- YY_CURRENT_BUFFER_LVALUE = new_buffer;
- yy_load_buffer_state(yyscanner );
- /* We don't actually know whether we did this switch during
- * EOF (yywrap()) processing, but the only time this flag
- * is looked at is after yywrap() is called, so it's safe
- * to go ahead and always set it.
- */
- yyg->yy_did_buffer_switch_on_eof = 1;
- }
- static void yy_load_buffer_state (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
- yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
- yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
- yyg->yy_hold_char = *yyg->yy_c_buf_p;
- }
- /** Allocate and initialize an input buffer state.
- * @param file A readable stream.
- * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
- * @param yyscanner The scanner object.
- * @return the allocated buffer state.
- */
- YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner)
- {
- YY_BUFFER_STATE b;
-
- b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner );
- if ( ! b )
- YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
- b->yy_buf_size = size;
- /* yy_ch_buf has to be 2 characters longer than the size given because
- * we need to put in 2 end-of-buffer characters.
- */
- b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ,yyscanner );
- if ( ! b->yy_ch_buf )
- YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
- b->yy_is_our_buffer = 1;
- yy_init_buffer(b,file ,yyscanner);
- return b;
- }
- /** Destroy the buffer.
- * @param b a buffer created with yy_create_buffer()
- * @param yyscanner The scanner object.
- */
- void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- if ( ! b )
- return;
- if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
- YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
- if ( b->yy_is_our_buffer )
- yyfree((void *) b->yy_ch_buf ,yyscanner );
- yyfree((void *) b ,yyscanner );
- }
- /* Initializes or reinitializes a buffer.
- * This function is sometimes called more than once on the same buffer,
- * such as during a yyrestart() or at EOF.
- */
- static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner)
- {
- int oerrno = errno;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yy_flush_buffer(b ,yyscanner);
- b->yy_input_file = file;
- b->yy_fill_buffer = 1;
- /* If b is the current buffer, then yy_init_buffer was _probably_
- * called from yyrestart() or through yy_get_next_buffer.
- * In that case, we don't want to reset the lineno or column.
- */
- if (b != YY_CURRENT_BUFFER){
- b->yy_bs_lineno = 1;
- b->yy_bs_column = 0;
- }
- b->yy_is_interactive = 0;
-
- errno = oerrno;
- }
- /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
- * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
- * @param yyscanner The scanner object.
- */
- void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- if ( ! b )
- return;
- b->yy_n_chars = 0;
- /* We always need two end-of-buffer characters. The first causes
- * a transition to the end-of-buffer state. The second causes
- * a jam in that state.
- */
- b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
- b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
- b->yy_buf_pos = &b->yy_ch_buf[0];
- b->yy_at_bol = 1;
- b->yy_buffer_status = YY_BUFFER_NEW;
- if ( b == YY_CURRENT_BUFFER )
- yy_load_buffer_state(yyscanner );
- }
- /** Pushes the new state onto the stack. The new state becomes
- * the current state. This function will allocate the stack
- * if necessary.
- * @param new_buffer The new state.
- * @param yyscanner The scanner object.
- */
- void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- if (new_buffer == NULL)
- return;
- yyensure_buffer_stack(yyscanner);
- /* This block is copied from yy_switch_to_buffer. */
- if ( YY_CURRENT_BUFFER )
- {
- /* Flush out information for old buffer. */
- *yyg->yy_c_buf_p = yyg->yy_hold_char;
- YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
- YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
- }
- /* Only push if top exists. Otherwise, replace top. */
- if (YY_CURRENT_BUFFER)
- yyg->yy_buffer_stack_top++;
- YY_CURRENT_BUFFER_LVALUE = new_buffer;
- /* copied from yy_switch_to_buffer. */
- yy_load_buffer_state(yyscanner );
- yyg->yy_did_buffer_switch_on_eof = 1;
- }
- /** Removes and deletes the top of the stack, if present.
- * The next element becomes the new top.
- * @param yyscanner The scanner object.
- */
- void yypop_buffer_state (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- if (!YY_CURRENT_BUFFER)
- return;
- yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner);
- YY_CURRENT_BUFFER_LVALUE = NULL;
- if (yyg->yy_buffer_stack_top > 0)
- --yyg->yy_buffer_stack_top;
- if (YY_CURRENT_BUFFER) {
- yy_load_buffer_state(yyscanner );
- yyg->yy_did_buffer_switch_on_eof = 1;
- }
- }
- /* Allocates the stack if it does not exist.
- * Guarantees space for at least one push.
- */
- static void yyensure_buffer_stack (yyscan_t yyscanner)
- {
- yy_size_t num_to_alloc;
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- if (!yyg->yy_buffer_stack) {
- /* First allocation is just for 2 elements, since we don't know if this
- * scanner will even need a stack. We use 2 instead of 1 to avoid an
- * immediate realloc on the next call.
- */
- num_to_alloc = 1;
- yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc
- (num_to_alloc * sizeof(struct yy_buffer_state*)
- , yyscanner);
- if ( ! yyg->yy_buffer_stack )
- YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
-
- memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*));
-
- yyg->yy_buffer_stack_max = num_to_alloc;
- yyg->yy_buffer_stack_top = 0;
- return;
- }
- if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){
- /* Increase the buffer to prepare for a possible push. */
- int grow_size = 8 /* arbitrary grow size */;
- num_to_alloc = yyg->yy_buffer_stack_max + grow_size;
- yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc
- (yyg->yy_buffer_stack,
- num_to_alloc * sizeof(struct yy_buffer_state*)
- , yyscanner);
- if ( ! yyg->yy_buffer_stack )
- YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
- /* zero only the new slots.*/
- memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*));
- yyg->yy_buffer_stack_max = num_to_alloc;
- }
- }
- /** Setup the input buffer state to scan directly from a user-specified character buffer.
- * @param base the character buffer
- * @param size the size in bytes of the character buffer
- * @param yyscanner The scanner object.
- * @return the newly allocated buffer state object.
- */
- YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner)
- {
- YY_BUFFER_STATE b;
-
- if ( size < 2 ||
- base[size-2] != YY_END_OF_BUFFER_CHAR ||
- base[size-1] != YY_END_OF_BUFFER_CHAR )
- /* They forgot to leave room for the EOB's. */
- return 0;
- b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner );
- if ( ! b )
- YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
- b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
- b->yy_buf_pos = b->yy_ch_buf = base;
- b->yy_is_our_buffer = 0;
- b->yy_input_file = 0;
- b->yy_n_chars = b->yy_buf_size;
- b->yy_is_interactive = 0;
- b->yy_at_bol = 1;
- b->yy_fill_buffer = 0;
- b->yy_buffer_status = YY_BUFFER_NEW;
- yy_switch_to_buffer(b ,yyscanner );
- return b;
- }
- /** Setup the input buffer state to scan a string. The next call to yylex() will
- * scan from a @e copy of @a str.
- * @param yystr a NUL-terminated string to scan
- * @param yyscanner The scanner object.
- * @return the newly allocated buffer state object.
- * @note If you want to scan bytes that may contain NUL values, then use
- * yy_scan_bytes() instead.
- */
- YY_BUFFER_STATE yy_scan_string (yyconst char * yystr , yyscan_t yyscanner)
- {
-
- return yy_scan_bytes(yystr,strlen(yystr) ,yyscanner);
- }
- /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
- * scan from a @e copy of @a bytes.
- * @param yybytes the byte buffer to scan
- * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
- * @param yyscanner The scanner object.
- * @return the newly allocated buffer state object.
- */
- YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner)
- {
- YY_BUFFER_STATE b;
- char *buf;
- yy_size_t n;
- yy_size_t i;
-
- /* Get memory for full buffer, including space for trailing EOB's. */
- n = _yybytes_len + 2;
- buf = (char *) yyalloc(n ,yyscanner );
- if ( ! buf )
- YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
- for ( i = 0; i < _yybytes_len; ++i )
- buf[i] = yybytes[i];
- buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
- b = yy_scan_buffer(buf,n ,yyscanner);
- if ( ! b )
- YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
- /* It's okay to grow etc. this buffer, and we should throw it
- * away when we're done.
- */
- b->yy_is_our_buffer = 1;
- return b;
- }
- #ifndef YY_EXIT_FAILURE
- #define YY_EXIT_FAILURE 2
- #endif
- static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner)
- {
- (void) fprintf( stderr, "%s\n", msg );
- exit( YY_EXIT_FAILURE );
- }
- /* Redefine yyless() so it works in section 3 code. */
- #undef yyless
- #define yyless(n) \
- do \
- { \
- /* Undo effects of setting up yytext. */ \
- int yyless_macro_arg = (n); \
- YY_LESS_LINENO(yyless_macro_arg);\
- yytext[yyleng] = yyg->yy_hold_char; \
- yyg->yy_c_buf_p = yytext + yyless_macro_arg; \
- yyg->yy_hold_char = *yyg->yy_c_buf_p; \
- *yyg->yy_c_buf_p = '\0'; \
- yyleng = yyless_macro_arg; \
- } \
- while ( 0 )
- /* Accessor methods (get/set functions) to struct members. */
- /** Get the user-defined data for this scanner.
- * @param yyscanner The scanner object.
- */
- YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yyextra;
- }
- /** Get the current line number.
- * @param yyscanner The scanner object.
- */
- int yyget_lineno (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
-
- if (! YY_CURRENT_BUFFER)
- return 0;
-
- return yylineno;
- }
- /** Get the current column number.
- * @param yyscanner The scanner object.
- */
- int yyget_column (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
-
- if (! YY_CURRENT_BUFFER)
- return 0;
-
- return yycolumn;
- }
- /** Get the input stream.
- * @param yyscanner The scanner object.
- */
- FILE *yyget_in (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yyin;
- }
- /** Get the output stream.
- * @param yyscanner The scanner object.
- */
- FILE *yyget_out (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yyout;
- }
- /** Get the length of the current token.
- * @param yyscanner The scanner object.
- */
- yy_size_t yyget_leng (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yyleng;
- }
- /** Get the current token.
- * @param yyscanner The scanner object.
- */
- char *yyget_text (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yytext;
- }
- /** Set the user-defined data. This data is never touched by the scanner.
- * @param user_defined The data to be associated with this scanner.
- * @param yyscanner The scanner object.
- */
- void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yyextra = user_defined ;
- }
- /** Set the current line number.
- * @param line_number
- * @param yyscanner The scanner object.
- */
- void yyset_lineno (int line_number , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* lineno is only valid if an input buffer exists. */
- if (! YY_CURRENT_BUFFER )
- YY_FATAL_ERROR( "yyset_lineno called with no buffer" );
-
- yylineno = line_number;
- }
- /** Set the current column.
- * @param line_number
- * @param yyscanner The scanner object.
- */
- void yyset_column (int column_no , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* column is only valid if an input buffer exists. */
- if (! YY_CURRENT_BUFFER )
- YY_FATAL_ERROR( "yyset_column called with no buffer" );
-
- yycolumn = column_no;
- }
- /** Set the input stream. This does not discard the current
- * input buffer.
- * @param in_str A readable stream.
- * @param yyscanner The scanner object.
- * @see yy_switch_to_buffer
- */
- void yyset_in (FILE * in_str , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yyin = in_str ;
- }
- void yyset_out (FILE * out_str , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yyout = out_str ;
- }
- int yyget_debug (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yy_flex_debug;
- }
- void yyset_debug (int bdebug , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yy_flex_debug = bdebug ;
- }
- /* Accessor methods for yylval and yylloc */
- YYSTYPE * yyget_lval (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yylval;
- }
- void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yylval = yylval_param;
- }
- YYLTYPE *yyget_lloc (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- return yylloc;
- }
-
- void yyset_lloc (YYLTYPE * yylloc_param , yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- yylloc = yylloc_param;
- }
-
- /* User-visible API */
- /* yylex_init is special because it creates the scanner itself, so it is
- * the ONLY reentrant function that doesn't take the scanner as the last argument.
- * That's why we explicitly handle the declaration, instead of using our macros.
- */
- int yylex_init(yyscan_t* ptr_yy_globals)
- {
- if (ptr_yy_globals == NULL){
- errno = EINVAL;
- return 1;
- }
- *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL );
- if (*ptr_yy_globals == NULL){
- errno = ENOMEM;
- return 1;
- }
- /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */
- memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
- return yy_init_globals ( *ptr_yy_globals );
- }
- /* yylex_init_extra has the same functionality as yylex_init, but follows the
- * convention of taking the scanner as the last argument. Note however, that
- * this is a *pointer* to a scanner, as it will be allocated by this call (and
- * is the reason, too, why this function also must handle its own declaration).
- * The user defined value in the first argument will be available to yyalloc in
- * the yyextra field.
- */
- int yylex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals )
- {
- struct yyguts_t dummy_yyguts;
- yyset_extra (yy_user_defined, &dummy_yyguts);
- if (ptr_yy_globals == NULL){
- errno = EINVAL;
- return 1;
- }
-
- *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts );
-
- if (*ptr_yy_globals == NULL){
- errno = ENOMEM;
- return 1;
- }
-
- /* By setting to 0xAA, we expose bugs in
- yy_init_globals. Leave at 0x00 for releases. */
- memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
-
- yyset_extra (yy_user_defined, *ptr_yy_globals);
-
- return yy_init_globals ( *ptr_yy_globals );
- }
- static int yy_init_globals (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* Initialization is the same as for the non-reentrant scanner.
- * This function is called from yylex_destroy(), so don't allocate here.
- */
- yyg->yy_buffer_stack = 0;
- yyg->yy_buffer_stack_top = 0;
- yyg->yy_buffer_stack_max = 0;
- yyg->yy_c_buf_p = (char *) 0;
- yyg->yy_init = 0;
- yyg->yy_start = 0;
- yyg->yy_start_stack_ptr = 0;
- yyg->yy_start_stack_depth = 0;
- yyg->yy_start_stack = NULL;
- /* Defined in main.c */
- #ifdef YY_STDINIT
- yyin = stdin;
- yyout = stdout;
- #else
- yyin = (FILE *) 0;
- yyout = (FILE *) 0;
- #endif
- /* For future reference: Set errno on error, since we are called by
- * yylex_init()
- */
- return 0;
- }
- /* yylex_destroy is for both reentrant and non-reentrant scanners. */
- int yylex_destroy (yyscan_t yyscanner)
- {
- struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
- /* Pop the buffer stack, destroying each element. */
- while(YY_CURRENT_BUFFER){
- yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner );
- YY_CURRENT_BUFFER_LVALUE = NULL;
- yypop_buffer_state(yyscanner);
- }
- /* Destroy the stack itself. */
- yyfree(yyg->yy_buffer_stack ,yyscanner);
- yyg->yy_buffer_stack = NULL;
- /* Destroy the start condition stack. */
- yyfree(yyg->yy_start_stack ,yyscanner );
- yyg->yy_start_stack = NULL;
- /* Reset the globals. This is important in a non-reentrant scanner so the next time
- * yylex() is called, initialization will occur. */
- yy_init_globals( yyscanner);
- /* Destroy the main struct (reentrant only). */
- yyfree ( yyscanner , yyscanner );
- yyscanner = NULL;
- return 0;
- }
- /*
- * Internal utility routines.
- */
- #ifndef yytext_ptr
- static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner)
- {
- register int i;
- for ( i = 0; i < n; ++i )
- s1[i] = s2[i];
- }
- #endif
- #ifdef YY_NEED_STRLEN
- static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner)
- {
- register int n;
- for ( n = 0; s[n]; ++n )
- ;
- return n;
- }
- #endif
- void *yyalloc (yy_size_t size , yyscan_t yyscanner)
- {
- return (void *) malloc( size );
- }
- void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner)
- {
- /* The cast to (char *) in the following accommodates both
- * implementations that use char* generic pointers, and those
- * that use void* generic pointers. It works with the latter
- * because both ANSI C and C++ allow castless assignment from
- * any pointer type to void*, and deal with argument conversions
- * as though doing an assignment.
- */
- return (void *) realloc( (char *) ptr, size );
- }
- void yyfree (void * ptr , yyscan_t yyscanner)
- {
- free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
- }
- #define YYTABLES_NAME "yytables"
- #line 227 "BsLexerFX.l"
|