| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489 |
- #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)
- /* Begin user sect3 */
- #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 193
- #define YY_END_OF_BUFFER 194
- /* 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[740] =
- { 0,
- 1, 1, 165, 165, 176, 176, 179, 179, 0, 0,
- 189, 189, 194, 192, 1, 1, 192, 192, 192, 192,
- 2, 2, 139, 138, 191, 191, 191, 191, 137, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 136,
- 191, 191, 93, 94, 95, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 167, 165, 165, 167, 177, 176,
- 176, 175, 180, 179, 179, 178, 183, 183, 181, 182,
- 189, 189, 184, 185, 186, 187, 188, 1, 0, 5,
- 0, 2, 190, 0, 2, 0, 191, 191, 191, 191,
- 191, 191, 191, 145, 191, 191, 191, 191, 191, 191,
- 103, 191, 191, 191, 191, 191, 191, 191, 109, 191,
- 191, 191, 191, 144, 143, 112, 191, 191, 191, 191,
- 191, 191, 107, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 83, 191, 191, 191, 191, 191, 142, 141,
- 191, 140, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 165, 0, 166, 176, 179, 189, 0,
- 2, 190, 4, 3, 191, 130, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 104, 191, 191, 191, 191,
- 191, 117, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 149, 111, 191, 191, 116, 120, 191, 191, 191,
- 108, 191, 134, 133, 191, 191, 191, 191, 191, 191,
- 110, 191, 191, 121, 191, 191, 191, 191, 191, 191,
- 148, 191, 147, 146, 191, 191, 191, 191, 191, 131,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 8, 191, 191, 191, 191, 0, 0,
- 4, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 56, 191, 126, 191,
- 191, 191, 191, 82, 191, 105, 71, 55, 191, 191,
- 171, 191, 191, 113, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 106, 191, 191,
- 53, 191, 191, 191, 150, 132, 191, 191, 127, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 100, 151, 191, 114, 191,
- 191, 96, 191, 191, 191, 9, 10, 11, 191, 191,
- 191, 191, 6, 191, 0, 0, 4, 191, 158, 191,
- 79, 191, 191, 77, 43, 191, 191, 153, 78, 191,
- 191, 191, 191, 191, 128, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 76, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 156,
- 191, 191, 45, 191, 191, 101, 129, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 72, 97, 16, 7, 12, 191,
- 191, 191, 191, 99, 0, 62, 161, 191, 191, 191,
- 154, 50, 191, 191, 174, 191, 191, 191, 191, 191,
- 122, 191, 191, 191, 191, 191, 172, 191, 191, 191,
- 191, 157, 191, 152, 191, 191, 191, 191, 91, 90,
- 191, 191, 191, 102, 191, 159, 191, 191, 191, 191,
- 191, 123, 162, 191, 191, 191, 191, 81, 191, 191,
- 75, 191, 191, 191, 191, 168, 191, 13, 14, 15,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 98,
- 0, 191, 191, 191, 191, 191, 191, 173, 191, 119,
- 124, 163, 191, 191, 191, 191, 191, 191, 118, 191,
- 160, 191, 191, 191, 191, 191, 191, 191, 135, 191,
- 191, 191, 115, 191, 125, 191, 191, 60, 191, 66,
- 191, 191, 191, 191, 191, 191, 164, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 169, 170,
- 191, 52, 191, 88, 191, 191, 191, 191, 155, 191,
- 46, 51, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
- 191, 191, 191, 191, 191, 191, 191, 57, 59, 63,
- 191, 191, 86, 85, 87, 191, 191, 191, 26, 27,
- 28, 191, 191, 44, 191, 191, 191, 191, 48, 31,
- 32, 33, 191, 191, 191, 80, 191, 191, 191, 191,
- 36, 191, 191, 64, 191, 89, 191, 49, 191, 191,
- 191, 191, 191, 191, 54, 191, 191, 191, 191, 191,
- 191, 84, 191, 191, 92, 191, 65, 191, 191, 61,
- 30, 29, 191, 191, 191, 191, 191, 191, 35, 34,
- 47, 191, 191, 41, 39, 191, 191, 191, 191, 191,
- 191, 191, 37, 191, 191, 42, 191, 191, 70, 191,
- 191, 191, 191, 38, 191, 191, 191, 69, 191, 191,
- 40, 73, 191, 58, 67, 191, 74, 68, 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, 5, 1, 1, 1, 1, 1,
- 1, 1, 6, 1, 7, 8, 9, 10, 11, 12,
- 13, 14, 15, 15, 15, 15, 15, 1, 1, 1,
- 16, 1, 1, 1, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
- 1, 1, 1, 1, 26, 1, 43, 44, 45, 46,
- 47, 48, 49, 50, 51, 26, 52, 53, 54, 55,
- 56, 57, 58, 59, 60, 61, 62, 63, 26, 64,
- 65, 26, 66, 1, 67, 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[68] =
- { 0,
- 1, 1, 2, 1, 1, 1, 1, 1, 1, 3,
- 3, 3, 3, 3, 3, 1, 3, 3, 3, 3,
- 3, 3, 4, 4, 4, 4, 4, 4, 4, 4,
- 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
- 4, 4, 3, 3, 3, 3, 3, 3, 4, 4,
- 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
- 4, 4, 4, 4, 4, 1, 1
- } ;
- static yyconst flex_int16_t yy_base[750] =
- { 0,
- 0, 0, 66, 69, 72, 74, 76, 78, 80, 82,
- 83, 89, 888, 889, 102, 104, 883, 835, 98, 876,
- 110, 118, 123, 110, 117, 130, 851, 138, 121, 821,
- 59, 0, 861, 142, 145, 133, 104, 141, 819, 181,
- 174, 144, 0, 833, 167, 94, 153, 823, 140, 823,
- 834, 826, 816, 814, 889, 157, 192, 869, 889, 210,
- 220, 889, 889, 222, 229, 889, 889, 889, 889, 889,
- 889, 231, 889, 889, 889, 889, 889, 234, 868, 889,
- 816, 228, 0, 234, 242, 0, 0, 842, 849, 843,
- 821, 809, 808, 0, 830, 171, 804, 801, 822, 843,
- 0, 205, 806, 839, 821, 826, 204, 801, 0, 829,
- 802, 799, 808, 0, 833, 828, 792, 794, 79, 800,
- 824, 814, 822, 787, 801, 53, 88, 208, 787, 806,
- 247, 817, 0, 802, 811, 208, 784, 787, 0, 816,
- 800, 253, 794, 775, 801, 809, 810, 808, 771, 139,
- 767, 761, 215, 763, 227, 778, 763, 760, 784, 800,
- 765, 781, 771, 762, 751, 758, 757, 753, 747, 746,
- 763, 743, 761, 273, 799, 889, 275, 277, 279, 757,
- 273, 0, 282, 0, 750, 0, 765, 740, 748, 750,
- 776, 740, 749, 747, 745, 0, 762, 734, 244, 729,
- 735, 748, 282, 769, 724, 723, 740, 754, 728, 727,
- 730, 0, 0, 724, 724, 737, 0, 728, 742, 752,
- 0, 723, 0, 0, 737, 748, 752, 746, 280, 706,
- 0, 183, 741, 0, 730, 734, 720, 702, 705, 698,
- 0, 731, 0, 741, 739, 710, 730, 283, 718, 0,
- 696, 699, 691, 707, 690, 693, 685, 697, 695, 683,
- 688, 695, 680, 719, 707, 677, 706, 685, 692, 678,
- 677, 672, 688, 298, 301, 671, 682, 679, 674, 312,
- 889, 671, 694, 677, 680, 667, 700, 674, 667, 671,
- 699, 684, 656, 658, 277, 651, 0, 678, 0, 256,
- 688, 681, 659, 0, 657, 0, 0, 0, 653, 659,
- 0, 671, 264, 0, 687, 641, 671, 650, 645, 648,
- 647, 289, 654, 645, 667, 666, 665, 0, 656, 637,
- 0, 631, 642, 671, 0, 0, 640, 666, 0, 272,
- 662, 659, 630, 635, 621, 621, 634, 633, 632, 629,
- 620, 612, 613, 626, 624, 0, 0, 623, 0, 616,
- 608, 0, 608, 619, 604, 0, 0, 0, 600, 599,
- 598, 614, 0, 613, 597, 331, 337, 611, 638, 596,
- 619, 608, 619, 0, 592, 592, 588, 0, 0, 594,
- 589, 586, 592, 628, 0, 621, 625, 617, 319, 586,
- 593, 578, 621, 590, 0, 602, 592, 600, 580, 581,
- 578, 577, 565, 573, 570, 566, 594, 596, 587, 603,
- 574, 569, 0, 600, 559, 0, 0, 594, 598, 596,
- 567, 567, 556, 568, 563, 558, 547, 546, 555, 546,
- 547, 585, 538, 572, 0, 0, 0, 0, 342, 348,
- 351, 354, 554, 0, 553, 0, 0, 538, 541, 578,
- 0, 0, 576, 546, 0, 546, 545, 544, 558, 571,
- 0, 569, 536, 533, 538, 525, 0, 528, 523, 549,
- 525, 560, 529, 0, 516, 516, 514, 513, 0, 0,
- 555, 529, 537, 0, 549, 0, 508, 507, 546, 519,
- 547, 0, 0, 505, 543, 503, 517, 0, 507, 541,
- 0, 500, 510, 513, 493, 0, 511, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 506, 523, 532, 488, 493, 500, 525, 0, 528, 0,
- 0, 0, 502, 493, 500, 491, 480, 475, 0, 493,
- 0, 491, 490, 480, 488, 487, 482, 478, 0, 497,
- 483, 464, 0, 469, 0, 358, 480, 0, 473, 341,
- 463, 462, 370, 464, 474, 461, 889, 464, 463, 470,
- 464, 469, 453, 452, 453, 455, 465, 449, 0, 0,
- 466, 0, 449, 0, 448, 447, 462, 447, 0, 444,
- 0, 0, 482, 481, 480, 462, 441, 450, 439, 448,
- 435, 445, 445, 471, 470, 469, 451, 440, 438, 433,
- 438, 420, 434, 425, 421, 424, 430, 0, 0, 0,
- 430, 421, 0, 0, 0, 415, 421, 413, 0, 443,
- 0, 453, 409, 0, 313, 330, 418, 420, 0, 0,
- 438, 0, 448, 410, 417, 0, 416, 415, 414, 401,
- 425, 413, 409, 0, 395, 0, 408, 0, 419, 432,
- 402, 408, 391, 403, 0, 387, 400, 411, 424, 383,
- 384, 0, 383, 382, 0, 401, 0, 392, 420, 0,
- 0, 0, 419, 391, 379, 405, 386, 373, 0, 0,
- 0, 397, 387, 0, 0, 370, 375, 376, 374, 370,
- 381, 392, 383, 372, 339, 0, 340, 343, 0, 323,
- 319, 333, 335, 0, 310, 281, 273, 0, 253, 191,
- 0, 0, 183, 0, 0, 83, 0, 0, 889, 389,
- 393, 397, 401, 405, 409, 411, 415, 419, 116
- } ;
- static yyconst flex_int16_t yy_def[750] =
- { 0,
- 739, 1, 740, 740, 741, 741, 742, 742, 743, 743,
- 744, 744, 739, 739, 739, 739, 745, 739, 739, 739,
- 739, 739, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 739, 739, 739, 747, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 745, 739,
- 739, 739, 748, 739, 739, 749, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 739, 747, 739, 739, 739, 739, 739,
- 739, 748, 739, 749, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 739, 739,
- 739, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 739, 739, 739, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 739, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 739, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 739, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 746, 746,
- 746, 746, 746, 746, 746, 746, 746, 746, 0, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739
- } ;
- static yyconst flex_int16_t yy_nxt[957] =
- { 0,
- 14, 15, 16, 17, 18, 14, 19, 14, 20, 21,
- 22, 22, 22, 22, 22, 14, 23, 24, 25, 26,
- 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
- 37, 38, 39, 40, 41, 42, 43, 44, 45, 32,
- 32, 46, 47, 32, 48, 32, 32, 49, 32, 32,
- 50, 32, 32, 51, 32, 32, 32, 32, 32, 52,
- 53, 54, 32, 32, 32, 14, 14, 56, 57, 58,
- 56, 57, 58, 60, 61, 60, 61, 64, 65, 64,
- 65, 68, 224, 68, 72, 72, 225, 62, 119, 62,
- 72, 72, 73, 74, 75, 76, 77, 216, 73, 74,
- 75, 76, 77, 78, 78, 78, 78, 82, 82, 82,
- 82, 82, 82, 120, 162, 163, 217, 84, 184, 85,
- 85, 85, 85, 85, 85, 84, 94, 85, 85, 85,
- 85, 85, 85, 132, 738, 99, 226, 114, 115, 88,
- 95, 66, 89, 66, 100, 69, 70, 69, 70, 86,
- 104, 227, 90, 130, 110, 101, 116, 134, 174, 174,
- 133, 125, 96, 131, 105, 97, 122, 117, 91, 126,
- 106, 135, 102, 86, 98, 92, 107, 123, 103, 93,
- 111, 252, 167, 136, 124, 108, 154, 127, 112, 253,
- 155, 159, 168, 174, 174, 128, 113, 139, 140, 137,
- 160, 141, 156, 142, 145, 164, 129, 146, 157, 147,
- 148, 177, 177, 325, 165, 143, 149, 192, 150, 326,
- 151, 177, 177, 178, 178, 161, 193, 144, 737, 152,
- 178, 178, 179, 179, 153, 78, 78, 181, 181, 181,
- 181, 181, 181, 183, 183, 183, 183, 183, 183, 84,
- 736, 85, 85, 85, 85, 85, 85, 198, 199, 200,
- 205, 256, 228, 206, 229, 232, 237, 238, 233, 243,
- 244, 259, 395, 257, 174, 174, 177, 177, 178, 178,
- 179, 179, 181, 181, 181, 181, 181, 181, 427, 396,
- 260, 183, 183, 183, 183, 183, 183, 294, 299, 339,
- 295, 321, 280, 281, 735, 428, 300, 340, 322, 366,
- 367, 368, 369, 370, 371, 301, 341, 376, 376, 391,
- 404, 377, 377, 377, 377, 377, 377, 405, 280, 281,
- 672, 413, 734, 323, 673, 733, 473, 474, 392, 414,
- 377, 377, 377, 377, 377, 377, 377, 377, 377, 377,
- 377, 377, 475, 518, 519, 520, 732, 476, 281, 521,
- 522, 523, 524, 525, 526, 527, 528, 529, 603, 604,
- 605, 609, 674, 731, 610, 730, 606, 675, 729, 611,
- 614, 615, 616, 728, 281, 727, 726, 725, 617, 55,
- 55, 55, 55, 59, 59, 59, 59, 63, 63, 63,
- 63, 67, 67, 67, 67, 71, 71, 71, 71, 79,
- 724, 79, 79, 87, 87, 175, 723, 175, 175, 182,
- 722, 182, 182, 721, 720, 719, 718, 717, 716, 715,
- 714, 713, 712, 711, 710, 709, 708, 707, 706, 705,
- 704, 703, 702, 701, 700, 699, 698, 697, 696, 695,
- 694, 693, 692, 691, 690, 689, 688, 687, 686, 685,
- 684, 683, 682, 681, 680, 679, 678, 677, 676, 671,
- 670, 669, 668, 667, 666, 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, 613, 612, 608, 607, 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, 558, 557, 556, 555, 554, 553, 552, 551, 550,
- 549, 548, 547, 546, 545, 544, 543, 542, 541, 540,
- 539, 538, 537, 536, 535, 534, 533, 532, 531, 530,
- 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, 472, 471, 470, 469, 468, 467, 466, 465, 464,
- 463, 462, 461, 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, 426, 425, 424, 423, 422,
- 421, 420, 419, 418, 417, 416, 415, 412, 411, 410,
- 409, 408, 407, 406, 403, 402, 401, 400, 399, 398,
- 397, 394, 393, 390, 389, 388, 387, 386, 385, 384,
- 383, 382, 381, 380, 379, 378, 375, 374, 373, 372,
- 365, 364, 363, 362, 361, 360, 359, 358, 357, 356,
- 355, 354, 353, 352, 351, 350, 349, 348, 347, 346,
- 345, 344, 343, 342, 338, 337, 336, 335, 334, 333,
- 332, 331, 330, 329, 328, 327, 324, 320, 319, 318,
- 317, 316, 315, 314, 313, 312, 311, 310, 309, 308,
- 307, 306, 305, 304, 303, 302, 298, 297, 296, 293,
- 292, 291, 290, 289, 288, 287, 286, 285, 284, 283,
- 282, 279, 176, 278, 277, 276, 275, 274, 273, 272,
- 271, 270, 269, 268, 267, 266, 265, 264, 263, 262,
- 261, 258, 255, 254, 251, 250, 249, 248, 247, 246,
- 245, 242, 241, 240, 239, 236, 235, 234, 231, 230,
- 223, 222, 221, 220, 219, 218, 215, 214, 213, 212,
- 211, 210, 209, 208, 207, 204, 203, 202, 201, 197,
- 196, 195, 194, 191, 190, 189, 188, 187, 186, 185,
- 180, 80, 176, 173, 172, 171, 170, 169, 166, 158,
- 138, 121, 118, 109, 83, 81, 80, 739, 13, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739
- } ;
- static yyconst flex_int16_t yy_chk[957] =
- { 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, 1, 1, 1, 1, 3, 3, 3,
- 4, 4, 4, 5, 5, 6, 6, 7, 7, 8,
- 8, 9, 126, 10, 11, 11, 126, 5, 31, 6,
- 12, 12, 11, 11, 11, 11, 11, 119, 12, 12,
- 12, 12, 12, 15, 15, 16, 16, 19, 19, 19,
- 19, 19, 19, 31, 46, 46, 119, 21, 749, 21,
- 21, 21, 21, 21, 21, 22, 24, 22, 22, 22,
- 22, 22, 22, 37, 736, 25, 127, 29, 29, 23,
- 24, 7, 23, 8, 25, 9, 9, 10, 10, 21,
- 26, 127, 23, 36, 28, 25, 29, 38, 56, 56,
- 37, 35, 24, 36, 26, 24, 34, 29, 23, 35,
- 26, 38, 25, 21, 24, 23, 26, 34, 25, 23,
- 28, 150, 49, 38, 34, 26, 42, 35, 28, 150,
- 42, 45, 49, 57, 57, 35, 28, 40, 40, 38,
- 45, 40, 42, 40, 41, 47, 35, 41, 42, 41,
- 41, 60, 60, 232, 47, 40, 41, 96, 41, 232,
- 41, 61, 61, 64, 64, 45, 96, 40, 733, 41,
- 65, 65, 72, 72, 41, 78, 78, 82, 82, 82,
- 82, 82, 82, 84, 84, 84, 84, 84, 84, 85,
- 730, 85, 85, 85, 85, 85, 85, 102, 102, 102,
- 107, 153, 128, 107, 128, 131, 136, 136, 131, 142,
- 142, 155, 300, 153, 174, 174, 177, 177, 178, 178,
- 179, 179, 181, 181, 181, 181, 181, 181, 340, 300,
- 155, 183, 183, 183, 183, 183, 183, 199, 203, 248,
- 199, 229, 183, 183, 729, 340, 203, 248, 229, 274,
- 274, 274, 275, 275, 275, 203, 248, 280, 280, 295,
- 313, 280, 280, 280, 280, 280, 280, 313, 183, 183,
- 645, 322, 727, 229, 645, 726, 399, 399, 295, 322,
- 376, 376, 376, 376, 376, 376, 377, 377, 377, 377,
- 377, 377, 399, 449, 449, 449, 725, 399, 377, 450,
- 450, 450, 451, 451, 451, 452, 452, 452, 566, 566,
- 566, 570, 646, 723, 570, 722, 566, 646, 721, 570,
- 573, 573, 573, 720, 377, 718, 717, 715, 573, 740,
- 740, 740, 740, 741, 741, 741, 741, 742, 742, 742,
- 742, 743, 743, 743, 743, 744, 744, 744, 744, 745,
- 714, 745, 745, 746, 746, 747, 713, 747, 747, 748,
- 712, 748, 748, 711, 710, 709, 708, 707, 706, 703,
- 702, 698, 697, 696, 695, 694, 693, 689, 688, 686,
- 684, 683, 681, 680, 679, 678, 677, 676, 674, 673,
- 672, 671, 670, 669, 667, 665, 663, 662, 661, 660,
- 659, 658, 657, 655, 654, 653, 651, 648, 647, 643,
- 642, 640, 638, 637, 636, 632, 631, 627, 626, 625,
- 624, 623, 622, 621, 620, 619, 618, 617, 616, 615,
- 614, 613, 612, 611, 610, 609, 608, 607, 606, 605,
- 604, 603, 600, 598, 597, 596, 595, 593, 591, 588,
- 587, 586, 585, 584, 583, 582, 581, 580, 579, 578,
- 576, 575, 574, 572, 571, 569, 567, 564, 562, 561,
- 560, 558, 557, 556, 555, 554, 553, 552, 550, 548,
- 547, 546, 545, 544, 543, 539, 537, 536, 535, 534,
- 533, 532, 531, 517, 515, 514, 513, 512, 510, 509,
- 507, 506, 505, 504, 501, 500, 499, 498, 497, 495,
- 493, 492, 491, 488, 487, 486, 485, 483, 482, 481,
- 480, 479, 478, 476, 475, 474, 473, 472, 470, 469,
- 468, 467, 466, 464, 463, 460, 459, 458, 455, 453,
- 444, 443, 442, 441, 440, 439, 438, 437, 436, 435,
- 434, 433, 432, 431, 430, 429, 428, 425, 424, 422,
- 421, 420, 419, 418, 417, 416, 415, 414, 413, 412,
- 411, 410, 409, 408, 407, 406, 404, 403, 402, 401,
- 400, 398, 397, 396, 394, 393, 392, 391, 390, 387,
- 386, 385, 383, 382, 381, 380, 379, 378, 375, 374,
- 372, 371, 370, 369, 365, 364, 363, 361, 360, 358,
- 355, 354, 353, 352, 351, 350, 349, 348, 347, 346,
- 345, 344, 343, 342, 341, 338, 337, 334, 333, 332,
- 330, 329, 327, 326, 325, 324, 323, 321, 320, 319,
- 318, 317, 316, 315, 312, 310, 309, 305, 303, 302,
- 301, 298, 296, 294, 293, 292, 291, 290, 289, 288,
- 287, 286, 285, 284, 283, 282, 279, 278, 277, 276,
- 273, 272, 271, 270, 269, 268, 267, 266, 265, 264,
- 263, 262, 261, 260, 259, 258, 257, 256, 255, 254,
- 253, 252, 251, 249, 247, 246, 245, 244, 242, 240,
- 239, 238, 237, 236, 235, 233, 230, 228, 227, 226,
- 225, 222, 220, 219, 218, 216, 215, 214, 211, 210,
- 209, 208, 207, 206, 205, 204, 202, 201, 200, 198,
- 197, 195, 194, 193, 192, 191, 190, 189, 188, 187,
- 185, 180, 175, 173, 172, 171, 170, 169, 168, 167,
- 166, 165, 164, 163, 162, 161, 160, 159, 158, 157,
- 156, 154, 152, 151, 149, 148, 147, 146, 145, 144,
- 143, 141, 140, 138, 137, 135, 134, 132, 130, 129,
- 125, 124, 123, 122, 121, 120, 118, 117, 116, 115,
- 113, 112, 111, 110, 108, 106, 105, 104, 103, 100,
- 99, 98, 97, 95, 93, 92, 91, 90, 89, 88,
- 81, 79, 58, 54, 53, 52, 51, 50, 48, 44,
- 39, 33, 30, 27, 20, 18, 17, 13, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739, 739, 739, 739, 739,
- 739, 739, 739, 739, 739, 739
- } ;
- /* Table of booleans, true if rule could match eol. */
- static yyconst flex_int32_t yy_rule_can_match_eol[194] =
- { 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, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
- 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 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; yylloc->filename = getCurrentFilename(yyextra);
- #define YY_USER_INIT yylineno = 0; yycolumn = 0;
- #define YY_NO_UNISTD_H 1
- /* Start conditions */
- #line 928 "BsLexerFX.c"
- #define INITIAL 0
- #define INCLUDE 1
- #define CODEBLOCK_HEADER 2
- #define CODEBLOCK_EQUALS 3
- #define CODEBLOCK 4
- #define CODEBLOCK_END 5
- /*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 28 "BsLexerFX.l"
- #line 1176 "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 >= 740 )
- 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 != 739 );
- 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 30 "BsLexerFX.l"
- { /* Skip blank */ }
- YY_BREAK
- case 2:
- YY_RULE_SETUP
- #line 31 "BsLexerFX.l"
- { yylval->intValue = atoi(yytext); return TOKEN_INTEGER; }
- YY_BREAK
- case 3:
- YY_RULE_SETUP
- #line 32 "BsLexerFX.l"
- { yylval->intValue = (int)strtol(yytext, 0, 0); return TOKEN_INTEGER; }
- YY_BREAK
- case 4:
- YY_RULE_SETUP
- #line 33 "BsLexerFX.l"
- { yylval->floatValue = (float)atof(yytext); return TOKEN_FLOAT; }
- YY_BREAK
- case 5:
- YY_RULE_SETUP
- #line 34 "BsLexerFX.l"
- { yylval->strValue = mmalloc_strdup(yyextra->memContext, yytext); return TOKEN_STRING; }
- YY_BREAK
- case 6:
- YY_RULE_SETUP
- #line 35 "BsLexerFX.l"
- { yylval->intValue = 1; return TOKEN_BOOLEAN; }
- YY_BREAK
- case 7:
- YY_RULE_SETUP
- #line 36 "BsLexerFX.l"
- { yylval->intValue = 0; return TOKEN_BOOLEAN; }
- YY_BREAK
- /* Value types */
- case 8:
- YY_RULE_SETUP
- #line 40 "BsLexerFX.l"
- { yylval->intValue = PT_Int; return TOKEN_INTTYPE; }
- YY_BREAK
- case 9:
- YY_RULE_SETUP
- #line 41 "BsLexerFX.l"
- { yylval->intValue = PT_Int2; return TOKEN_INT2TYPE; }
- YY_BREAK
- case 10:
- YY_RULE_SETUP
- #line 42 "BsLexerFX.l"
- { yylval->intValue = PT_Int3; return TOKEN_INT3TYPE; }
- YY_BREAK
- case 11:
- YY_RULE_SETUP
- #line 43 "BsLexerFX.l"
- { yylval->intValue = PT_Int4; return TOKEN_INT4TYPE; }
- YY_BREAK
- case 12:
- YY_RULE_SETUP
- #line 45 "BsLexerFX.l"
- { yylval->intValue = PT_Float; return TOKEN_FLOATTYPE; }
- YY_BREAK
- case 13:
- YY_RULE_SETUP
- #line 46 "BsLexerFX.l"
- { yylval->intValue = PT_Float2; return TOKEN_FLOAT2TYPE; }
- YY_BREAK
- case 14:
- YY_RULE_SETUP
- #line 47 "BsLexerFX.l"
- { yylval->intValue = PT_Float3; return TOKEN_FLOAT3TYPE; }
- YY_BREAK
- case 15:
- YY_RULE_SETUP
- #line 48 "BsLexerFX.l"
- { yylval->intValue = PT_Float4; return TOKEN_FLOAT4TYPE; }
- YY_BREAK
- case 16:
- YY_RULE_SETUP
- #line 49 "BsLexerFX.l"
- { yylval->intValue = PT_Color; return TOKEN_COLORTYPE; }
- YY_BREAK
- case 17:
- YY_RULE_SETUP
- #line 51 "BsLexerFX.l"
- { yylval->intValue = PT_Mat2x2; return TOKEN_MAT2x2TYPE; }
- YY_BREAK
- case 18:
- YY_RULE_SETUP
- #line 52 "BsLexerFX.l"
- { yylval->intValue = PT_Mat2x3; return TOKEN_MAT2x3TYPE; }
- YY_BREAK
- case 19:
- YY_RULE_SETUP
- #line 53 "BsLexerFX.l"
- { yylval->intValue = PT_Mat2x4; return TOKEN_MAT2x4TYPE; }
- YY_BREAK
- case 20:
- YY_RULE_SETUP
- #line 55 "BsLexerFX.l"
- { yylval->intValue = PT_Mat3x2; return TOKEN_MAT3x2TYPE; }
- YY_BREAK
- case 21:
- YY_RULE_SETUP
- #line 56 "BsLexerFX.l"
- { yylval->intValue = PT_Mat3x3; return TOKEN_MAT3x3TYPE; }
- YY_BREAK
- case 22:
- YY_RULE_SETUP
- #line 57 "BsLexerFX.l"
- { yylval->intValue = PT_Mat3x4; return TOKEN_MAT3x4TYPE; }
- YY_BREAK
- case 23:
- YY_RULE_SETUP
- #line 59 "BsLexerFX.l"
- { yylval->intValue = PT_Mat4x2; return TOKEN_MAT4x2TYPE; }
- YY_BREAK
- case 24:
- YY_RULE_SETUP
- #line 60 "BsLexerFX.l"
- { yylval->intValue = PT_Mat4x3; return TOKEN_MAT4x3TYPE; }
- YY_BREAK
- case 25:
- YY_RULE_SETUP
- #line 61 "BsLexerFX.l"
- { yylval->intValue = PT_Mat4x4; return TOKEN_MAT4x4TYPE; }
- YY_BREAK
- case 26:
- YY_RULE_SETUP
- #line 63 "BsLexerFX.l"
- { yylval->intValue = PT_Sampler1D; return TOKEN_SAMPLER1D; }
- YY_BREAK
- case 27:
- YY_RULE_SETUP
- #line 64 "BsLexerFX.l"
- { yylval->intValue = PT_Sampler2D; return TOKEN_SAMPLER2D; }
- YY_BREAK
- case 28:
- YY_RULE_SETUP
- #line 65 "BsLexerFX.l"
- { yylval->intValue = PT_Sampler3D; return TOKEN_SAMPLER3D; }
- YY_BREAK
- case 29:
- YY_RULE_SETUP
- #line 66 "BsLexerFX.l"
- { yylval->intValue = PT_SamplerCUBE; return TOKEN_SAMPLERCUBE; }
- YY_BREAK
- case 30:
- YY_RULE_SETUP
- #line 67 "BsLexerFX.l"
- { yylval->intValue = PT_Sampler2DMS; return TOKEN_SAMPLER2DMS; }
- YY_BREAK
- case 31:
- YY_RULE_SETUP
- #line 69 "BsLexerFX.l"
- { yylval->intValue = PT_Texture1D; return TOKEN_TEXTURE1D; }
- YY_BREAK
- case 32:
- YY_RULE_SETUP
- #line 70 "BsLexerFX.l"
- { yylval->intValue = PT_Texture2D; return TOKEN_TEXTURE2D; }
- YY_BREAK
- case 33:
- YY_RULE_SETUP
- #line 71 "BsLexerFX.l"
- { yylval->intValue = PT_Texture3D; return TOKEN_TEXTURE3D; }
- YY_BREAK
- case 34:
- YY_RULE_SETUP
- #line 72 "BsLexerFX.l"
- { yylval->intValue = PT_TextureCUBE; return TOKEN_TEXTURECUBE; }
- YY_BREAK
- case 35:
- YY_RULE_SETUP
- #line 73 "BsLexerFX.l"
- { yylval->intValue = PT_Texture2DMS; return TOKEN_TEXTURE2DMS; }
- YY_BREAK
- case 36:
- YY_RULE_SETUP
- #line 75 "BsLexerFX.l"
- { yylval->intValue = PT_ByteBuffer; return TOKEN_BYTEBUFFER; }
- YY_BREAK
- case 37:
- YY_RULE_SETUP
- #line 76 "BsLexerFX.l"
- { yylval->intValue = PT_StructBuffer; return TOKEN_STRUCTBUFFER; }
- YY_BREAK
- case 38:
- YY_RULE_SETUP
- #line 78 "BsLexerFX.l"
- { yylval->intValue = PT_TypedBufferRW; return TOKEN_RWTYPEDBUFFER; }
- YY_BREAK
- case 39:
- YY_RULE_SETUP
- #line 79 "BsLexerFX.l"
- { yylval->intValue = PT_ByteBufferRW; return TOKEN_RWBYTEBUFFER; }
- YY_BREAK
- case 40:
- YY_RULE_SETUP
- #line 80 "BsLexerFX.l"
- { yylval->intValue = PT_StructBufferRW; return TOKEN_RWSTRUCTBUFFER; }
- YY_BREAK
- case 41:
- YY_RULE_SETUP
- #line 81 "BsLexerFX.l"
- { yylval->intValue = PT_AppendBuffer; return TOKEN_RWAPPENDBUFFER; }
- YY_BREAK
- case 42:
- YY_RULE_SETUP
- #line 82 "BsLexerFX.l"
- { yylval->intValue = PT_ConsumeBuffer; return TOKEN_RWCONSUMEBUFFER; }
- YY_BREAK
- case 43:
- YY_RULE_SETUP
- #line 84 "BsLexerFX.l"
- { return TOKEN_PARAMSBLOCK; }
- YY_BREAK
- /* Shader keywords */
- case 44:
- YY_RULE_SETUP
- #line 87 "BsLexerFX.l"
- { return TOKEN_SEPARABLE; }
- YY_BREAK
- case 45:
- YY_RULE_SETUP
- #line 88 "BsLexerFX.l"
- { return TOKEN_QUEUE; }
- YY_BREAK
- case 46:
- YY_RULE_SETUP
- #line 89 "BsLexerFX.l"
- { return TOKEN_PRIORITY; }
- YY_BREAK
- case 47:
- YY_RULE_SETUP
- #line 90 "BsLexerFX.l"
- { return TOKEN_TRANSPARENT; }
- YY_BREAK
- case 48:
- YY_RULE_SETUP
- #line 91 "BsLexerFX.l"
- { return TOKEN_TECHNIQUE; }
- YY_BREAK
- case 49:
- YY_RULE_SETUP
- #line 92 "BsLexerFX.l"
- { return TOKEN_PARAMETERS; }
- YY_BREAK
- case 50:
- YY_RULE_SETUP
- #line 93 "BsLexerFX.l"
- { return TOKEN_BLOCKS; }
- YY_BREAK
- /* Technique keywords */
- case 51:
- YY_RULE_SETUP
- #line 96 "BsLexerFX.l"
- { return TOKEN_RENDERER; }
- YY_BREAK
- case 52:
- YY_RULE_SETUP
- #line 97 "BsLexerFX.l"
- { return TOKEN_LANGUAGE; }
- YY_BREAK
- case 53:
- YY_RULE_SETUP
- #line 98 "BsLexerFX.l"
- { return TOKEN_PASS; }
- YY_BREAK
- /* Pass keywords */
- case 54:
- YY_RULE_SETUP
- #line 101 "BsLexerFX.l"
- { return TOKEN_STENCILREF; }
- YY_BREAK
- /* Rasterizer state keywords */
- case 55:
- YY_RULE_SETUP
- #line 104 "BsLexerFX.l"
- { return TOKEN_FILLMODE; }
- YY_BREAK
- case 56:
- YY_RULE_SETUP
- #line 105 "BsLexerFX.l"
- { return TOKEN_CULLMODE; }
- YY_BREAK
- case 57:
- YY_RULE_SETUP
- #line 106 "BsLexerFX.l"
- { return TOKEN_DEPTHBIAS; }
- YY_BREAK
- case 58:
- YY_RULE_SETUP
- #line 107 "BsLexerFX.l"
- { return TOKEN_SDEPTHBIAS; }
- YY_BREAK
- case 59:
- YY_RULE_SETUP
- #line 108 "BsLexerFX.l"
- { return TOKEN_DEPTHCLIP; }
- YY_BREAK
- case 60:
- YY_RULE_SETUP
- #line 109 "BsLexerFX.l"
- { return TOKEN_SCISSOR; }
- YY_BREAK
- case 61:
- YY_RULE_SETUP
- #line 110 "BsLexerFX.l"
- { return TOKEN_MULTISAMPLE; }
- YY_BREAK
- case 62:
- YY_RULE_SETUP
- #line 111 "BsLexerFX.l"
- { return TOKEN_AALINE; }
- YY_BREAK
- /* Depth-stencil state keywords */
- case 63:
- YY_RULE_SETUP
- #line 114 "BsLexerFX.l"
- { return TOKEN_DEPTHREAD; }
- YY_BREAK
- case 64:
- YY_RULE_SETUP
- #line 115 "BsLexerFX.l"
- { return TOKEN_DEPTHWRITE; }
- YY_BREAK
- case 65:
- YY_RULE_SETUP
- #line 116 "BsLexerFX.l"
- { return TOKEN_COMPAREFUNC; }
- YY_BREAK
- case 66:
- YY_RULE_SETUP
- #line 117 "BsLexerFX.l"
- { return TOKEN_STENCIL; }
- YY_BREAK
- case 67:
- YY_RULE_SETUP
- #line 118 "BsLexerFX.l"
- { return TOKEN_STENCILREADMASK; }
- YY_BREAK
- case 68:
- YY_RULE_SETUP
- #line 119 "BsLexerFX.l"
- { return TOKEN_STENCILWRITEMASK; }
- YY_BREAK
- case 69:
- YY_RULE_SETUP
- #line 120 "BsLexerFX.l"
- { return TOKEN_STENCILOPFRONT; }
- YY_BREAK
- case 70:
- YY_RULE_SETUP
- #line 121 "BsLexerFX.l"
- { return TOKEN_STENCILOPBACK; }
- YY_BREAK
- case 71:
- YY_RULE_SETUP
- #line 122 "BsLexerFX.l"
- { return TOKEN_FAIL; }
- YY_BREAK
- case 72:
- YY_RULE_SETUP
- #line 123 "BsLexerFX.l"
- { return TOKEN_ZFAIL; }
- YY_BREAK
- /* Blend state keywords */
- case 73:
- YY_RULE_SETUP
- #line 126 "BsLexerFX.l"
- { return TOKEN_ALPHATOCOVERAGE; }
- YY_BREAK
- case 74:
- YY_RULE_SETUP
- #line 127 "BsLexerFX.l"
- { return TOKEN_INDEPENDANTBLEND; }
- YY_BREAK
- case 75:
- YY_RULE_SETUP
- #line 128 "BsLexerFX.l"
- { return TOKEN_TARGET; }
- YY_BREAK
- case 76:
- YY_RULE_SETUP
- #line 129 "BsLexerFX.l"
- { return TOKEN_INDEX; }
- YY_BREAK
- case 77:
- YY_RULE_SETUP
- #line 130 "BsLexerFX.l"
- { return TOKEN_BLEND; }
- YY_BREAK
- case 78:
- YY_RULE_SETUP
- #line 131 "BsLexerFX.l"
- { return TOKEN_COLOR; }
- YY_BREAK
- case 79:
- YY_RULE_SETUP
- #line 132 "BsLexerFX.l"
- { return TOKEN_ALPHA; }
- YY_BREAK
- case 80:
- YY_RULE_SETUP
- #line 133 "BsLexerFX.l"
- { return TOKEN_WRITEMASK; }
- YY_BREAK
- case 81:
- YY_RULE_SETUP
- #line 134 "BsLexerFX.l"
- { return TOKEN_SOURCE; }
- YY_BREAK
- case 82:
- YY_RULE_SETUP
- #line 135 "BsLexerFX.l"
- { return TOKEN_DEST; }
- YY_BREAK
- case 83:
- YY_RULE_SETUP
- #line 136 "BsLexerFX.l"
- { return TOKEN_OP; }
- YY_BREAK
- /* Sampler state keywords */
- case 84:
- YY_RULE_SETUP
- #line 139 "BsLexerFX.l"
- { return TOKEN_ADDRMODE; }
- YY_BREAK
- case 85:
- YY_RULE_SETUP
- #line 140 "BsLexerFX.l"
- { return TOKEN_MINFILTER; }
- YY_BREAK
- case 86:
- YY_RULE_SETUP
- #line 141 "BsLexerFX.l"
- { return TOKEN_MAGFILTER; }
- YY_BREAK
- case 87:
- YY_RULE_SETUP
- #line 142 "BsLexerFX.l"
- { return TOKEN_MIPFILTER; }
- YY_BREAK
- case 88:
- YY_RULE_SETUP
- #line 143 "BsLexerFX.l"
- { return TOKEN_MAXANISO; }
- YY_BREAK
- case 89:
- YY_RULE_SETUP
- #line 144 "BsLexerFX.l"
- { return TOKEN_MIPBIAS; }
- YY_BREAK
- case 90:
- YY_RULE_SETUP
- #line 145 "BsLexerFX.l"
- { return TOKEN_MIPMIN; }
- YY_BREAK
- case 91:
- YY_RULE_SETUP
- #line 146 "BsLexerFX.l"
- { return TOKEN_MIPMAX; }
- YY_BREAK
- case 92:
- YY_RULE_SETUP
- #line 147 "BsLexerFX.l"
- { return TOKEN_BORDERCOLOR; }
- YY_BREAK
- case 93:
- YY_RULE_SETUP
- #line 148 "BsLexerFX.l"
- { return TOKEN_U; }
- YY_BREAK
- case 94:
- YY_RULE_SETUP
- #line 149 "BsLexerFX.l"
- { return TOKEN_V; }
- YY_BREAK
- case 95:
- YY_RULE_SETUP
- #line 150 "BsLexerFX.l"
- { return TOKEN_W; }
- YY_BREAK
- /* Qualifiers */
- case 96:
- YY_RULE_SETUP
- #line 153 "BsLexerFX.l"
- { return TOKEN_AUTO; }
- YY_BREAK
- case 97:
- YY_RULE_SETUP
- #line 154 "BsLexerFX.l"
- { return TOKEN_ALIAS; }
- YY_BREAK
- case 98:
- YY_RULE_SETUP
- #line 155 "BsLexerFX.l"
- { return TOKEN_SHARED; }
- YY_BREAK
- case 99:
- YY_RULE_SETUP
- #line 156 "BsLexerFX.l"
- { return TOKEN_USAGE; }
- YY_BREAK
- /* State values */
- case 100:
- YY_RULE_SETUP
- #line 159 "BsLexerFX.l"
- { yylval->intValue = FMV_Wire; return TOKEN_FILLMODEVALUE; }
- YY_BREAK
- case 101:
- YY_RULE_SETUP
- #line 160 "BsLexerFX.l"
- { yylval->intValue = FMV_Solid; return TOKEN_FILLMODEVALUE; }
- YY_BREAK
- case 102:
- YY_RULE_SETUP
- #line 162 "BsLexerFX.l"
- { yylval->intValue = CMV_None; return TOKEN_CULLMODEVALUE; }
- YY_BREAK
- case 103:
- YY_RULE_SETUP
- #line 163 "BsLexerFX.l"
- { yylval->intValue = CMV_CW; return TOKEN_CULLMODEVALUE; }
- YY_BREAK
- case 104:
- YY_RULE_SETUP
- #line 164 "BsLexerFX.l"
- { yylval->intValue = CMV_CCW; return TOKEN_CULLMODEVALUE; }
- YY_BREAK
- case 105:
- YY_RULE_SETUP
- #line 166 "BsLexerFX.l"
- { yylval->intValue = CFV_Fail; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 106:
- YY_RULE_SETUP
- #line 167 "BsLexerFX.l"
- { yylval->intValue = CFV_Pass; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 107:
- YY_RULE_SETUP
- #line 168 "BsLexerFX.l"
- { yylval->intValue = CFV_LT; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 108:
- YY_RULE_SETUP
- #line 169 "BsLexerFX.l"
- { yylval->intValue = CFV_LTE; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 109:
- YY_RULE_SETUP
- #line 170 "BsLexerFX.l"
- { yylval->intValue = CFV_EQ; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 110:
- YY_RULE_SETUP
- #line 171 "BsLexerFX.l"
- { yylval->intValue = CFV_NEQ; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 111:
- YY_RULE_SETUP
- #line 172 "BsLexerFX.l"
- { yylval->intValue = CFV_GTE; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 112:
- YY_RULE_SETUP
- #line 173 "BsLexerFX.l"
- { yylval->intValue = CFV_GT; return TOKEN_COMPFUNCVALUE; }
- YY_BREAK
- case 113:
- YY_RULE_SETUP
- #line 175 "BsLexerFX.l"
- { yylval->intValue = OV_Keep; return TOKEN_OPVALUE; }
- YY_BREAK
- case 114:
- YY_RULE_SETUP
- #line 176 "BsLexerFX.l"
- { yylval->intValue = OV_Zero; return TOKEN_OPVALUE; }
- YY_BREAK
- case 115:
- YY_RULE_SETUP
- #line 177 "BsLexerFX.l"
- { yylval->intValue = OV_Replace; return TOKEN_OPVALUE; }
- YY_BREAK
- case 116:
- YY_RULE_SETUP
- #line 178 "BsLexerFX.l"
- { yylval->intValue = OV_Incr; return TOKEN_OPVALUE; }
- YY_BREAK
- case 117:
- YY_RULE_SETUP
- #line 179 "BsLexerFX.l"
- { yylval->intValue = OV_Decr; return TOKEN_OPVALUE; }
- YY_BREAK
- case 118:
- YY_RULE_SETUP
- #line 180 "BsLexerFX.l"
- { yylval->intValue = OV_IncrWrap; return TOKEN_OPVALUE; }
- YY_BREAK
- case 119:
- YY_RULE_SETUP
- #line 181 "BsLexerFX.l"
- { yylval->intValue = OV_DecrWrap; return TOKEN_OPVALUE; }
- YY_BREAK
- case 120:
- YY_RULE_SETUP
- #line 182 "BsLexerFX.l"
- { yylval->intValue = OV_Invert; return TOKEN_OPVALUE; }
- YY_BREAK
- case 121:
- YY_RULE_SETUP
- #line 183 "BsLexerFX.l"
- { yylval->intValue = OV_One; return TOKEN_OPVALUE; }
- YY_BREAK
- case 122:
- YY_RULE_SETUP
- #line 184 "BsLexerFX.l"
- { yylval->intValue = OV_DestColor; return TOKEN_OPVALUE; }
- YY_BREAK
- case 123:
- YY_RULE_SETUP
- #line 185 "BsLexerFX.l"
- { yylval->intValue = OV_SrcColor; return TOKEN_OPVALUE; }
- YY_BREAK
- case 124:
- YY_RULE_SETUP
- #line 186 "BsLexerFX.l"
- { yylval->intValue = OV_InvDestColor; return TOKEN_OPVALUE; }
- YY_BREAK
- case 125:
- YY_RULE_SETUP
- #line 187 "BsLexerFX.l"
- { yylval->intValue = OV_InvSrcColor; return TOKEN_OPVALUE; }
- YY_BREAK
- case 126:
- YY_RULE_SETUP
- #line 188 "BsLexerFX.l"
- { yylval->intValue = OV_DestAlpha; return TOKEN_OPVALUE; }
- YY_BREAK
- case 127:
- YY_RULE_SETUP
- #line 189 "BsLexerFX.l"
- { yylval->intValue = OV_SrcAlpha; return TOKEN_OPVALUE; }
- YY_BREAK
- case 128:
- YY_RULE_SETUP
- #line 190 "BsLexerFX.l"
- { yylval->intValue = OV_InvDestAlpha; return TOKEN_OPVALUE; }
- YY_BREAK
- case 129:
- YY_RULE_SETUP
- #line 191 "BsLexerFX.l"
- { yylval->intValue = OV_InvSrcAlpha; return TOKEN_OPVALUE; }
- YY_BREAK
- case 130:
- YY_RULE_SETUP
- #line 193 "BsLexerFX.l"
- { yylval->intValue = BOV_Add; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 131:
- YY_RULE_SETUP
- #line 194 "BsLexerFX.l"
- { yylval->intValue = BOV_Subtract; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 132:
- YY_RULE_SETUP
- #line 195 "BsLexerFX.l"
- { yylval->intValue = BOV_RevSubtract; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 133:
- YY_RULE_SETUP
- #line 196 "BsLexerFX.l"
- { yylval->intValue = BOV_Min; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 134:
- YY_RULE_SETUP
- #line 197 "BsLexerFX.l"
- { yylval->intValue = BOV_Max; return TOKEN_BLENDOPVALUE; }
- YY_BREAK
- case 135:
- YY_RULE_SETUP
- #line 199 "BsLexerFX.l"
- { yylval->intValue = 0x0; return TOKEN_COLORMASK; }
- YY_BREAK
- case 136:
- YY_RULE_SETUP
- #line 200 "BsLexerFX.l"
- { yylval->intValue = 0x1; return TOKEN_COLORMASK; }
- YY_BREAK
- case 137:
- YY_RULE_SETUP
- #line 201 "BsLexerFX.l"
- { yylval->intValue = 0x2; return TOKEN_COLORMASK; }
- YY_BREAK
- case 138:
- YY_RULE_SETUP
- #line 202 "BsLexerFX.l"
- { yylval->intValue = 0x4; return TOKEN_COLORMASK; }
- YY_BREAK
- case 139:
- YY_RULE_SETUP
- #line 203 "BsLexerFX.l"
- { yylval->intValue = 0x8; return TOKEN_COLORMASK; }
- YY_BREAK
- case 140:
- YY_RULE_SETUP
- #line 204 "BsLexerFX.l"
- { yylval->intValue = 0x3; return TOKEN_COLORMASK; }
- YY_BREAK
- case 141:
- YY_RULE_SETUP
- #line 205 "BsLexerFX.l"
- { yylval->intValue = 0x5; return TOKEN_COLORMASK; }
- YY_BREAK
- case 142:
- YY_RULE_SETUP
- #line 206 "BsLexerFX.l"
- { yylval->intValue = 0x9; return TOKEN_COLORMASK; }
- YY_BREAK
- case 143:
- YY_RULE_SETUP
- #line 207 "BsLexerFX.l"
- { yylval->intValue = 0x6; return TOKEN_COLORMASK; }
- YY_BREAK
- case 144:
- YY_RULE_SETUP
- #line 208 "BsLexerFX.l"
- { yylval->intValue = 0xA; return TOKEN_COLORMASK; }
- YY_BREAK
- case 145:
- YY_RULE_SETUP
- #line 209 "BsLexerFX.l"
- { yylval->intValue = 0xC; return TOKEN_COLORMASK; }
- YY_BREAK
- case 146:
- YY_RULE_SETUP
- #line 210 "BsLexerFX.l"
- { yylval->intValue = 0x7; return TOKEN_COLORMASK; }
- YY_BREAK
- case 147:
- YY_RULE_SETUP
- #line 211 "BsLexerFX.l"
- { yylval->intValue = 0xB; return TOKEN_COLORMASK; }
- YY_BREAK
- case 148:
- YY_RULE_SETUP
- #line 212 "BsLexerFX.l"
- { yylval->intValue = 0xD; return TOKEN_COLORMASK; }
- YY_BREAK
- case 149:
- YY_RULE_SETUP
- #line 213 "BsLexerFX.l"
- { yylval->intValue = 0xE; return TOKEN_COLORMASK; }
- YY_BREAK
- case 150:
- YY_RULE_SETUP
- #line 214 "BsLexerFX.l"
- { yylval->intValue = 0xF; return TOKEN_COLORMASK; }
- YY_BREAK
- case 151:
- YY_RULE_SETUP
- #line 216 "BsLexerFX.l"
- { yylval->intValue = AMV_Wrap; return TOKEN_ADDRMODEVALUE; }
- YY_BREAK
- case 152:
- YY_RULE_SETUP
- #line 217 "BsLexerFX.l"
- { yylval->intValue = AMV_Mirror; return TOKEN_ADDRMODEVALUE; }
- YY_BREAK
- case 153:
- YY_RULE_SETUP
- #line 218 "BsLexerFX.l"
- { yylval->intValue = AMV_Clamp; return TOKEN_ADDRMODEVALUE; }
- YY_BREAK
- case 154:
- YY_RULE_SETUP
- #line 219 "BsLexerFX.l"
- { yylval->intValue = AMV_Border; return TOKEN_ADDRMODEVALUE; }
- YY_BREAK
- case 155:
- YY_RULE_SETUP
- #line 221 "BsLexerFX.l"
- { yylval->intValue = FV_None; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 156:
- YY_RULE_SETUP
- #line 222 "BsLexerFX.l"
- { yylval->intValue = FV_Point; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 157:
- YY_RULE_SETUP
- #line 223 "BsLexerFX.l"
- { yylval->intValue = FV_Linear; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 158:
- YY_RULE_SETUP
- #line 224 "BsLexerFX.l"
- { yylval->intValue = FV_Anisotropic; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 159:
- YY_RULE_SETUP
- #line 225 "BsLexerFX.l"
- { yylval->intValue = FV_PointCmp; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 160:
- YY_RULE_SETUP
- #line 226 "BsLexerFX.l"
- { yylval->intValue = FV_LinearCmp; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 161:
- YY_RULE_SETUP
- #line 227 "BsLexerFX.l"
- { yylval->intValue = FV_AnisotropicCmp; return TOKEN_FILTERVALUE; }
- YY_BREAK
- case 162:
- YY_RULE_SETUP
- #line 229 "BsLexerFX.l"
- { yylval->intValue = BUV_Static; return TOKEN_BUFFERUSAGE; }
- YY_BREAK
- case 163:
- YY_RULE_SETUP
- #line 230 "BsLexerFX.l"
- { yylval->intValue = BUV_Dynamic; return TOKEN_BUFFERUSAGE; }
- YY_BREAK
- /* Preprocessor */
- case 164:
- YY_RULE_SETUP
- #line 233 "BsLexerFX.l"
- { BEGIN(INCLUDE); }
- YY_BREAK
- case 165:
- /* rule 165 can match eol */
- YY_RULE_SETUP
- #line 235 "BsLexerFX.l"
- { /* Skip blank */ }
- YY_BREAK
- case 166:
- YY_RULE_SETUP
- #line 236 "BsLexerFX.l"
- {
- int size = 0;
- char* includeBuffer = includePush(yyextra, yytext, yylineno, yycolumn, &size);
- if(!includeBuffer)
- yyterminate();
- YY_BUFFER_STATE currentBuffer = YY_CURRENT_BUFFER;
- YY_BUFFER_STATE newBuffer = yy_scan_buffer(includeBuffer,size,yyscanner);
- yy_switch_to_buffer(currentBuffer,yyscanner);
- yypush_buffer_state(newBuffer,yyscanner);
- yylineno = 0;
- yycolumn = 0;
- BEGIN(INITIAL);
- }
- YY_BREAK
- case 167:
- YY_RULE_SETUP
- #line 253 "BsLexerFX.l"
- { return yytext[0]; }
- YY_BREAK
- case YY_STATE_EOF(INITIAL):
- case YY_STATE_EOF(INCLUDE):
- case YY_STATE_EOF(CODEBLOCK_HEADER):
- case YY_STATE_EOF(CODEBLOCK_EQUALS):
- case YY_STATE_EOF(CODEBLOCK):
- case YY_STATE_EOF(CODEBLOCK_END):
- #line 255 "BsLexerFX.l"
- {
- if(!yyextra->includeStack)
- yyterminate();
- yypop_buffer_state(yyscanner);
- includePop(yyextra);
- }
- YY_BREAK
- /* Code blocks */
- case 168:
- YY_RULE_SETUP
- #line 264 "BsLexerFX.l"
- { BEGIN(CODEBLOCK_HEADER); return TOKEN_VERTEX; }
- YY_BREAK
- case 169:
- YY_RULE_SETUP
- #line 265 "BsLexerFX.l"
- { BEGIN(CODEBLOCK_HEADER); return TOKEN_FRAGMENT; }
- YY_BREAK
- case 170:
- YY_RULE_SETUP
- #line 266 "BsLexerFX.l"
- { BEGIN(CODEBLOCK_HEADER); return TOKEN_GEOMETRY; }
- YY_BREAK
- case 171:
- YY_RULE_SETUP
- #line 267 "BsLexerFX.l"
- { BEGIN(CODEBLOCK_HEADER); return TOKEN_HULL; }
- YY_BREAK
- case 172:
- YY_RULE_SETUP
- #line 268 "BsLexerFX.l"
- { BEGIN(CODEBLOCK_HEADER); return TOKEN_DOMAIN; }
- YY_BREAK
- case 173:
- YY_RULE_SETUP
- #line 269 "BsLexerFX.l"
- { BEGIN(CODEBLOCK_HEADER); return TOKEN_COMPUTE; }
- YY_BREAK
- case 174:
- YY_RULE_SETUP
- #line 270 "BsLexerFX.l"
- { BEGIN(CODEBLOCK_HEADER); return TOKEN_COMMON; }
- YY_BREAK
- /* Track when the code block begins, insert all code block characters into our own buffer, record a sequential index */
- /* of all code blocks in the text, and track bracket open/closed state so we know when we're done with the code block. */
- /* And finally output a sequential code block index to the parser (it shouldn't be aware of anything else in the block). */
- case 175:
- YY_RULE_SETUP
- #line 275 "BsLexerFX.l"
- { BEGIN(CODEBLOCK_EQUALS); return yytext[0]; }
- YY_BREAK
- case 176:
- /* rule 176 can match eol */
- YY_RULE_SETUP
- #line 276 "BsLexerFX.l"
- { /* Skip blank */ }
- YY_BREAK
- case 177:
- YY_RULE_SETUP
- #line 277 "BsLexerFX.l"
- { return yytext[0]; }
- YY_BREAK
- case 178:
- YY_RULE_SETUP
- #line 279 "BsLexerFX.l"
- { BEGIN(CODEBLOCK); beginCodeBlock(yyextra); yyextra->numOpenBrackets = 1; return yytext[0]; }
- YY_BREAK
- case 179:
- /* rule 179 can match eol */
- YY_RULE_SETUP
- #line 280 "BsLexerFX.l"
- { /* Skip blank */ }
- YY_BREAK
- case 180:
- YY_RULE_SETUP
- #line 281 "BsLexerFX.l"
- { return yytext[0]; }
- YY_BREAK
- case 181:
- YY_RULE_SETUP
- #line 283 "BsLexerFX.l"
- { yyextra->numOpenBrackets++; appendCodeBlock(yyextra, yytext[0]); }
- YY_BREAK
- case 182:
- YY_RULE_SETUP
- #line 284 "BsLexerFX.l"
- {
- yyextra->numOpenBrackets--;
- if(yyextra->numOpenBrackets == 0)
- {
- BEGIN(CODEBLOCK_END);
- unput('0');
- }
- else
- appendCodeBlock(yyextra, yytext[0]);
- }
- YY_BREAK
- case 183:
- /* rule 183 can match eol */
- YY_RULE_SETUP
- #line 295 "BsLexerFX.l"
- { appendCodeBlock(yyextra, yytext[0]); }
- YY_BREAK
- /* Logic for manually inserting "Index = codeBlockIndex;". We insert arbitrary numbers which allows us to sequentially */
- /* output all the tokens we need. We use only single-character values so we don't override anything in the text buffer */
- /* (since the starting value was also a single character "{"). */
- case 184:
- YY_RULE_SETUP
- #line 300 "BsLexerFX.l"
- { unput('1'); return TOKEN_INDEX; }
- YY_BREAK
- case 185:
- YY_RULE_SETUP
- #line 301 "BsLexerFX.l"
- { unput('2'); return '='; }
- YY_BREAK
- case 186:
- YY_RULE_SETUP
- #line 302 "BsLexerFX.l"
- { yylval->intValue = getCodeBlockIndex(yyextra); unput('3'); return TOKEN_INTEGER; }
- YY_BREAK
- case 187:
- YY_RULE_SETUP
- #line 303 "BsLexerFX.l"
- { unput('4'); return ';'; }
- YY_BREAK
- case 188:
- YY_RULE_SETUP
- #line 304 "BsLexerFX.l"
- { BEGIN(INITIAL); return '}'; }
- YY_BREAK
- case 189:
- /* rule 189 can match eol */
- YY_RULE_SETUP
- #line 305 "BsLexerFX.l"
- { /* Never reached */ }
- YY_BREAK
- /* Catch all rules */
- case 190:
- YY_RULE_SETUP
- #line 308 "BsLexerFX.l"
- { }
- YY_BREAK
- case 191:
- YY_RULE_SETUP
- #line 309 "BsLexerFX.l"
- { yylval->strValue = mmalloc_strdup(yyextra->memContext, yytext); return TOKEN_IDENTIFIER; }
- YY_BREAK
- case 192:
- YY_RULE_SETUP
- #line 310 "BsLexerFX.l"
- { return yytext[0]; }
- YY_BREAK
- case 193:
- YY_RULE_SETUP
- #line 312 "BsLexerFX.l"
- YY_FATAL_ERROR( "flex scanner jammed" );
- YY_BREAK
- #line 2302 "BsLexerFX.c"
- 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 >= 740 )
- 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 >= 740 )
- 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 == 739);
- (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 311 "BsLexerFX.l"
|