| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778 |
- // Filename: cppBison.y
- // Created by: drose (16Jan99)
- //
- ////////////////////////////////////////////////////////////////////
- %{
- #include "cppBisonDefs.h"
- #include "cppParser.h"
- #include "cppExpression.h"
- #include "cppSimpleType.h"
- #include "cppExtensionType.h"
- #include "cppStructType.h"
- #include "cppEnumType.h"
- #include "cppFunctionType.h"
- #include "cppTBDType.h"
- #include "cppMakeSeq.h"
- #include "cppParameterList.h"
- #include "cppInstance.h"
- #include "cppClassTemplateParameter.h"
- #include "cppTemplateParameterList.h"
- #include "cppInstanceIdentifier.h"
- #include "cppTypedef.h"
- #include "cppTypeDeclaration.h"
- #include "cppVisibility.h"
- #include "cppIdentifier.h"
- #include "cppScope.h"
- #include "cppTemplateScope.h"
- #include "cppNamespace.h"
- #include "cppUsing.h"
- ////////////////////////////////////////////////////////////////////
- // Defining the interface to the parser.
- ////////////////////////////////////////////////////////////////////
- CPPScope *current_scope = NULL;
- CPPScope *global_scope = NULL;
- CPPPreprocessor *current_lexer = NULL;
- static CPPStructType *current_struct = NULL;
- static CPPEnumType *current_enum = NULL;
- static int current_storage_class = 0;
- static CPPType *current_type = NULL;
- static CPPExpression *current_expr = NULL;
- static int publish_nest_level = 0;
- static CPPVisibility publish_previous;
- static YYLTYPE publish_loc;
- static vector<CPPScope *> last_scopes;
- static vector<int> last_storage_classes;
- static vector<CPPStructType *> last_structs;
- int yyparse();
- #define YYERROR_VERBOSE
- static void
- yyerror(const string &msg) {
- current_lexer->error(msg);
- }
- static void
- yyerror(const string &msg, YYLTYPE &loc) {
- current_lexer->error(msg, loc.first_line, loc.first_column);
- }
- static void
- yywarning(const string &msg, YYLTYPE &loc) {
- current_lexer->warning(msg, loc.first_line, loc.first_column);
- }
- static int
- yylex(YYSTYPE *lval, YYLTYPE *lloc) {
- CPPToken token = current_lexer->get_next_token();
- *lval = token._lval;
- *lloc = token._lloc;
- return token._token;
- }
- void
- parse_cpp(CPPParser *cp) {
- CPPScope *old_scope = current_scope;
- CPPScope *old_global_scope = global_scope;
- CPPPreprocessor *old_lexer = current_lexer;
- current_scope = cp;
- global_scope = cp;
- current_lexer = cp;
- publish_nest_level = 0;
- yyparse();
- if (publish_nest_level != 0) {
- yyerror("Unclosed __begin_publish", publish_loc);
- publish_nest_level = 0;
- }
- current_scope = old_scope;
- global_scope = old_global_scope;
- current_lexer = old_lexer;
-
- }
- CPPExpression *
- parse_const_expr(CPPPreprocessor *pp, CPPScope *new_current_scope,
- CPPScope *new_global_scope) {
- CPPScope *old_scope = current_scope;
- CPPScope *old_global_scope = global_scope;
- CPPPreprocessor *old_lexer = current_lexer;
- CPPExpression *old_expr = current_expr;
- current_scope = new_current_scope;
- global_scope = new_global_scope;
- current_expr = (CPPExpression *)NULL;
- current_lexer = pp;
- yyparse();
- CPPExpression *result = current_expr;
- current_scope = old_scope;
- global_scope = old_global_scope;
- current_lexer = old_lexer;
- current_expr = old_expr;
- return result;
- }
- CPPType *
- parse_type(CPPPreprocessor *pp, CPPScope *new_current_scope,
- CPPScope *new_global_scope) {
- CPPScope *old_scope = current_scope;
- CPPScope *old_global_scope = global_scope;
- CPPPreprocessor *old_lexer = current_lexer;
- CPPType *old_type = current_type;
- current_scope = new_current_scope;
- global_scope = new_global_scope;
- current_type = (CPPType *)NULL;
- current_lexer = pp;
- yyparse();
- CPPType *result = current_type;
-
- current_scope = old_scope;
- global_scope = old_global_scope;
- current_lexer = old_lexer;
- current_type = old_type;
- return result;
- }
- static void
- push_scope(CPPScope *new_scope) {
- last_scopes.push_back(current_scope);
- if (new_scope != NULL) {
- current_scope = new_scope;
- }
- }
- static void
- pop_scope() {
- assert(!last_scopes.empty());
- current_scope = last_scopes.back();
- last_scopes.pop_back();
- }
- static void
- push_storage_class(int new_storage_class) {
- last_storage_classes.push_back(current_storage_class);
- current_storage_class = new_storage_class;
- }
- static void
- pop_storage_class() {
- assert(!last_storage_classes.empty());
- current_storage_class = last_storage_classes.back();
- last_storage_classes.pop_back();
- }
- static void
- push_struct(CPPStructType *new_struct) {
- last_structs.push_back(current_struct);
- current_struct = new_struct;
- }
- static void
- pop_struct() {
- assert(!last_structs.empty());
- current_struct = last_structs.back();
- last_structs.pop_back();
- }
- %}
- /* This is a bison-specific declaration to enable recursive calls to
- yyparse(). It changes the calling sequence to yylex(), passing
- pointers to the current yylval and yylloc. */
- %pure_parser
- %token <u.real> REAL
- %token <u.integer> INTEGER
- %token <u.integer> CHAR_TOK
- %token <str> STRING SIMPLE_IDENTIFIER
- %token <u.identifier> IDENTIFIER TYPENAME_IDENTIFIER SCOPING
- %token <u.type> TYPEDEFNAME
- %token ELLIPSIS
- %token OROR
- %token ANDAND
- %token EQCOMPARE
- %token NECOMPARE
- %token LECOMPARE
- %token GECOMPARE
- %token LSHIFT
- %token RSHIFT
- %token POINTSAT_STAR
- %token DOT_STAR
- %token UNARY
- %token UNARY_NOT
- %token UNARY_NEGATE
- %token UNARY_MINUS
- %token UNARY_STAR
- %token UNARY_REF
- %token POINTSAT
- %token SCOPE
- %token PLUSPLUS
- %token MINUSMINUS
- %token TIMESEQUAL
- %token DIVIDEEQUAL
- %token MODEQUAL
- %token PLUSEQUAL
- %token MINUSEQUAL
- %token OREQUAL
- %token ANDEQUAL
- %token XOREQUAL
- %token LSHIFTEQUAL
- %token RSHIFTEQUAL
- %token TOKENPASTE
- %token KW_BEGIN_PUBLISH
- %token KW_BLOCKING
- %token KW_BOOL
- %token KW_CATCH
- %token KW_CHAR
- %token KW_WCHAR_T
- %token KW_CLASS
- %token KW_CONST
- %token KW_DELETE
- %token KW_DOUBLE
- %token KW_DYNAMIC_CAST
- %token KW_ELSE
- %token KW_END_PUBLISH
- %token KW_ENUM
- %token KW_EXTERN
- %token KW_EXPLICIT
- %token KW_PUBLISHED
- %token KW_FALSE
- %token KW_FLOAT
- %token KW_FRIEND
- %token KW_FOR
- %token KW_GOTO
- %token KW_IF
- %token KW_INLINE
- %token KW_INT
- %token KW_LONG
- %token KW_LONGLONG
- %token KW_MAKE_SEQ
- %token KW_MUTABLE
- %token KW_NAMESPACE
- %token KW_NEW
- %token KW_OPERATOR
- %token KW_PRIVATE
- %token KW_PROTECTED
- %token KW_PUBLIC
- %token KW_REGISTER
- %token KW_RETURN
- %token KW_SHORT
- %token KW_SIGNED
- %token KW_SIZEOF
- %token KW_STATIC
- %token KW_STATIC_CAST
- %token KW_STRUCT
- %token KW_TEMPLATE
- %token KW_THROW
- %token KW_TRUE
- %token KW_TRY
- %token KW_TYPEDEF
- %token KW_TYPENAME
- %token KW_UNION
- %token KW_UNSIGNED
- %token KW_USING
- %token KW_VIRTUAL
- %token KW_VOID
- %token KW_VOLATILE
- %token KW_WHILE
- /* These special tokens are used to set the starting state of the
- parser. The lexer places the appropriate one of these on the head
- of the input stream. */
- %token START_CPP
- %token START_CONST_EXPR
- %token START_TYPE
- %type <u.integer> storage_class
- %type <u.instance> function_prototype
- %type <u.integer> function_post
- %type <str> function_operator
- %type <u.decl> template_formal_parameter
- %type <u.type> template_formal_parameter_type
- %type <u.inst_ident> instance_identifier
- %type <u.param_list> formal_parameter_list
- %type <u.param_list> formal_parameters
- %type <u.expr> template_parameter_maybe_initialize
- %type <u.expr> maybe_initialize
- %type <u.expr> maybe_initialize_or_function_body
- %type <u.instance> formal_parameter
- %type <u.inst_ident> not_paren_formal_parameter_identifier
- %type <u.inst_ident> formal_parameter_identifier
- %type <u.inst_ident> empty_instance_identifier
- %type <u.type> type
- %type <u.decl> type_decl
- %type <u.type> predefined_type
- %type <u.type> full_type
- %type <u.struct_type> anonymous_struct
- %type <u.struct_type> named_struct
- %type <u.enum_type> anonymous_enum
- %type <u.enum_type> named_enum
- %type <u.extension_enum> enum_keyword
- %type <u.extension_enum> struct_keyword
- %type <u.simple_type> simple_type
- %type <u.simple_type> simple_int_type
- %type <u.simple_type> simple_float_type
- %type <u.simple_type> simple_void_type
- %type <u.type> class_derivation_name
- /*%type <u.type> typedefname*/
- %type <u.identifier> name
- %type <str> string
- /* We need to treat KW_OPERATOR as a scopable keyword. */
- %type <u.identifier> KW_OPERATOR
- %type <u.expr> optional_const_expr
- %type <u.expr> optional_const_expr_comma
- %type <u.expr> const_expr_comma
- %type <u.expr> no_angle_bracket_const_expr
- %type <u.expr> const_expr
- %type <u.expr> const_operand
- %type <u.expr> formal_const_expr
- %type <u.expr> formal_const_operand
- /* Precedence rules. */
- %left IDENTIFIER TYPENAME_IDENTIFIER TYPEDEFNAME KW_ENUM ELLIPSIS KW_OPERATOR KW_TYPENAME KW_INT KW_SHORT KW_UNSIGNED KW_SIGNED KW_LONG KW_FLOAT KW_DOUBLE KW_CHAR KW_WCHAR_T KW_BOOL
- %left '{' ',' ';'
- %nonassoc KW_THROW
- %right ':'
- %right '='
- %right '?'
- %left OROR
- %left ANDAND
- %left '|'
- %left '^'
- %left '&'
- %left EQCOMPARE NECOMPARE
- %left LECOMPARE GECOMPARE '<' '>'
- %left LSHIFT RSHIFT
- %left '+' '-'
- %left '*' '/' '%'
- %left POINTSAT_STAR DOT_STAR
- %right UNARY PLUSPLUS MINUSMINUS '~'
- %left POINTSAT '.' '(' '['
- %right SCOPE
- %nonassoc KW_NEW KW_DELETE KW_TRY KW_CATCH
- %%
- grammar:
- START_CPP cpp
- | START_CONST_EXPR const_expr
- {
- current_expr = $2;
- }
- | START_TYPE full_type
- {
- current_type = $2;
- }
- ;
- cpp:
- empty
- | cpp ';'
- | cpp declaration
- ;
- constructor_inits:
- constructor_init
- | constructor_inits ',' constructor_init
- ;
- constructor_init:
- name '(' optional_const_expr_comma ')'
- {
- delete $3;
- }
- ;
- /* This is principally for the syntax: extern "C" { ... }.
- We use storage_class instead of simply KW_EXTERN to avoid
- shift/reduce conflicts with yacc's limited differentiation
- ability. */
- extern_c:
- storage_class '{'
- {
- push_storage_class((current_storage_class & ~CPPInstance::SC_c_binding) |
- ($1 & CPPInstance::SC_c_binding));
- }
- cpp '}'
- {
- pop_storage_class();
- }
- ;
- declaration:
- type_like_declaration
- | template_declaration
- | extern_c
- | namespace_declaration
- | using_declaration
- | friend_declaration
- | KW_TYPEDEF typedef_declaration
- | KW_BEGIN_PUBLISH
- {
- if (publish_nest_level != 0) {
- yyerror("Unclosed __begin_publish", publish_loc);
- publish_nest_level = 0;
- current_scope->set_current_vis(V_public);
- }
- publish_previous = current_scope->get_current_vis();
- publish_loc = @1;
- publish_nest_level++;
- current_scope->set_current_vis(V_published);
- }
- | KW_END_PUBLISH
- {
- if (publish_nest_level != 1) {
- yyerror("Unmatched __end_publish", @1);
- } else {
- current_scope->set_current_vis(publish_previous);
- }
- publish_nest_level = 0;
- }
- | KW_PUBLISHED ':'
- {
- current_scope->set_current_vis(V_published);
- }
- | KW_PUBLIC ':'
- {
- if (publish_nest_level > 0) {
- current_scope->set_current_vis(V_published);
- } else {
- current_scope->set_current_vis(V_public);
- }
- }
- | KW_PROTECTED ':'
- {
- current_scope->set_current_vis(V_protected);
- }
- | KW_PRIVATE ':'
- {
- current_scope->set_current_vis(V_private);
- }
- | KW_MAKE_SEQ '(' name ',' name ',' name ')' ';'
- {
- CPPMakeSeq *make_seq = new CPPMakeSeq($3->get_simple_name(), $5->get_simple_name(), $7->get_simple_name(), @1.file);
- current_scope->add_declaration(make_seq, global_scope, current_lexer, @1);
- }
- ;
- friend_declaration:
- KW_FRIEND
- {
- CPPScope *new_scope = new CPPScope(current_scope, CPPNameComponent("temp"),
- V_public);
- push_scope(new_scope);
- }
- declaration
- {
- delete current_scope;
- pop_scope();
- }
- ;
- storage_class:
- empty
- {
- $$ = 0;
- }
- | storage_class KW_EXTERN
- {
- $$ = $1 | (int)CPPInstance::SC_extern;
- }
- | storage_class KW_EXTERN string
- {
- $$ = $1 | (int)CPPInstance::SC_extern;
- if ($3 == "C") {
- $$ |= (int)CPPInstance::SC_c_binding;
- } else if ($3 == "C++") {
- $$ &= ~(int)CPPInstance::SC_c_binding;
- } else {
- yywarning("Ignoring unknown linkage type \"" + $3 + "\"", @3);
- }
- }
- | storage_class KW_STATIC
- {
- $$ = $1 | (int)CPPInstance::SC_static;
- }
- | storage_class KW_INLINE
- {
- $$ = $1 | (int)CPPInstance::SC_inline;
- }
- | storage_class KW_VIRTUAL
- {
- $$ = $1 | (int)CPPInstance::SC_virtual;
- }
- | storage_class KW_EXPLICIT
- {
- $$ = $1 | (int)CPPInstance::SC_explicit;
- }
- | storage_class KW_VOLATILE
- {
- $$ = $1 | (int)CPPInstance::SC_volatile;
- }
- | storage_class KW_MUTABLE
- {
- $$ = $1 | (int)CPPInstance::SC_mutable;
- }
- | storage_class KW_REGISTER
- {
- $$ = $1 | (int)CPPInstance::SC_register;
- }
- | storage_class KW_BLOCKING
- {
- $$ = $1 | (int)CPPInstance::SC_blocking;
- }
- ;
- type_like_declaration:
- multiple_var_declaration
- {
- /* multiple_var_declaration adds itself to the scope. */
- }
- | storage_class type_decl ';'
- {
- // We don't really care about the storage class here. In fact, it's
- // not actually legal to define a class or struct using a particular
- // storage class, but we require it just to help yacc out in its
- // parsing.
- current_scope->add_declaration($2, global_scope, current_lexer, @2);
- }
- | storage_class function_prototype maybe_initialize_or_function_body
- {
- if ($2 != (CPPInstance *)NULL) {
- $2->_storage_class |= (current_storage_class | $1);
- current_scope->add_declaration($2, global_scope, current_lexer, @2);
- $2->set_initializer($3);
- }
- }
- ;
- multiple_var_declaration:
- storage_class type_decl
- {
- // We don't need to push/pop type, because we can't nest
- // multiple_var_declarations.
- if ($2->as_type_declaration()) {
- current_type = $2->as_type_declaration()->_type;
- } else {
- current_type = $2->as_type();
- }
- push_storage_class($1);
- }
- multiple_instance_identifiers
- {
- pop_storage_class();
- }
- | storage_class KW_CONST type
- {
- // We don't need to push/pop type, because we can't nest
- // multiple_var_declarations.
- current_type = $3;
- push_storage_class($1);
- }
- multiple_const_instance_identifiers
- {
- pop_storage_class();
- }
- /* We don't need to include a rule for variables that point to
- functions, because we get those from the function_prototype
- definition. */
- ;
- multiple_instance_identifiers:
- instance_identifier maybe_initialize_or_function_body
- {
- CPPInstance *inst = new CPPInstance(current_type, $1,
- current_storage_class,
- @1.file);
- inst->set_initializer($2);
- current_scope->add_declaration(inst, global_scope, current_lexer, @1);
- }
- | instance_identifier maybe_initialize ',' multiple_instance_identifiers
- {
- CPPInstance *inst = new CPPInstance(current_type, $1,
- current_storage_class,
- @1.file);
- inst->set_initializer($2);
- current_scope->add_declaration(inst, global_scope, current_lexer, @1);
- }
- ;
- multiple_const_instance_identifiers:
- instance_identifier maybe_initialize_or_function_body
- {
- $1->add_modifier(IIT_const);
- CPPInstance *inst = new CPPInstance(current_type, $1,
- current_storage_class,
- @1.file);
- inst->set_initializer($2);
- current_scope->add_declaration(inst, global_scope, current_lexer, @1);
- }
- | instance_identifier maybe_initialize ',' multiple_const_instance_identifiers
- {
- $1->add_modifier(IIT_const);
- CPPInstance *inst = new CPPInstance(current_type, $1,
- current_storage_class,
- @1.file);
- inst->set_initializer($2);
- current_scope->add_declaration(inst, global_scope, current_lexer, @1);
- }
- ;
- typedef_declaration:
- storage_class type_decl
- {
- // We don't need to push/pop type, because we can't nest
- // multiple_var_declarations.
- if ($2->as_type_declaration()) {
- current_type = $2->as_type_declaration()->_type;
- } else {
- current_type = $2->as_type();
- }
- push_storage_class($1);
- }
- typedef_instance_identifiers
- {
- pop_storage_class();
- }
- | storage_class KW_CONST type
- {
- // We don't need to push/pop type, because we can't nest
- // multiple_var_declarations.
- current_type = $3;
- push_storage_class($1);
- }
- typedef_const_instance_identifiers
- {
- pop_storage_class();
- }
- | storage_class function_prototype maybe_initialize_or_function_body
- {
- if ($2 != (CPPDeclaration *)NULL) {
- CPPInstance *inst = $2->as_instance();
- if (inst != (CPPInstance *)NULL) {
- inst->_storage_class |= (current_storage_class | $1);
- current_scope->add_declaration(inst, global_scope, current_lexer, @2);
- current_scope->add_declaration(new CPPTypedef(inst, current_scope == global_scope), global_scope, current_lexer, @2);
- }
- }
- }
- ;
- typedef_instance_identifiers:
- instance_identifier maybe_initialize_or_function_body
- {
- CPPInstance *inst = new CPPInstance(current_type, $1,
- current_storage_class,
- @1.file);
- inst->set_initializer($2);
- current_scope->add_declaration(new CPPTypedef(inst, current_scope == global_scope), global_scope, current_lexer, @1);
- }
- | instance_identifier maybe_initialize ',' typedef_instance_identifiers
- {
- CPPInstance *inst = new CPPInstance(current_type, $1,
- current_storage_class,
- @1.file);
- inst->set_initializer($2);
- current_scope->add_declaration(new CPPTypedef(inst, current_scope == global_scope), global_scope, current_lexer, @1);
- }
- ;
- typedef_const_instance_identifiers:
- instance_identifier maybe_initialize_or_function_body
- {
- $1->add_modifier(IIT_const);
- CPPInstance *inst = new CPPInstance(current_type, $1,
- current_storage_class,
- @1.file);
- inst->set_initializer($2);
- current_scope->add_declaration(new CPPTypedef(inst, current_scope == global_scope), global_scope, current_lexer, @1);
- }
- | instance_identifier maybe_initialize ',' typedef_const_instance_identifiers
- {
- $1->add_modifier(IIT_const);
- CPPInstance *inst = new CPPInstance(current_type, $1,
- current_storage_class,
- @1.file);
- inst->set_initializer($2);
- current_scope->add_declaration(new CPPTypedef(inst, current_scope == global_scope), global_scope, current_lexer, @1);
- }
- ;
- function_prototype:
- /* Functions with implicit return types, and constructors */
- IDENTIFIER '('
- {
- push_scope($1->get_scope(current_scope, global_scope));
- }
- formal_parameter_list ')' function_post
- {
- pop_scope();
- CPPType *type;
- if ($1->get_simple_name() == current_scope->get_simple_name()) {
- // This is a constructor, and has no return.
- type = new CPPSimpleType(CPPSimpleType::T_void);
- } else {
- // This isn't a constructor, so it has an implicit return type of
- // int.
- type = new CPPSimpleType(CPPSimpleType::T_int);
- }
- CPPInstanceIdentifier *ii = new CPPInstanceIdentifier($1);
- ii->add_func_modifier($4, $6);
- $$ = new CPPInstance(type, ii, 0, @1.file);
- }
- | TYPENAME_IDENTIFIER '('
- {
- push_scope($1->get_scope(current_scope, global_scope));
- }
- formal_parameter_list ')' function_post
- {
- pop_scope();
- CPPType *type;
- if ($1->get_simple_name() == current_scope->get_simple_name()) {
- // This is a constructor, and has no return.
- type = new CPPSimpleType(CPPSimpleType::T_void);
- } else {
- // This isn't a constructor, so it has an implicit return type of
- // int.
- type = new CPPSimpleType(CPPSimpleType::T_int);
- }
- CPPInstanceIdentifier *ii = new CPPInstanceIdentifier($1);
- ii->add_func_modifier($4, $6);
- $$ = new CPPInstance(type, ii, 0, @1.file);
- }
- /* Destructors */
- | '~' name '('
- {
- push_scope($2->get_scope(current_scope, global_scope));
- }
- formal_parameter_list ')' function_post
- {
- pop_scope();
- if ($2->is_scoped()) {
- yyerror("Invalid destructor name: ~" + $2->get_fully_scoped_name(), @2);
- } else {
- CPPIdentifier *ident =
- new CPPIdentifier("~" + $2->get_simple_name(), @2.file);
- delete $2;
- CPPType *type;
- type = new CPPSimpleType(CPPSimpleType::T_void);
-
- CPPInstanceIdentifier *ii = new CPPInstanceIdentifier(ident);
- ii->add_func_modifier($5, $7);
- $$ = new CPPInstance(type, ii, 0, @2.file);
- }
- }
- /* This is a special case: a function pointer declaration that looks
- at first a lot like a constructor declaration. This is provided to
- help yacc sort out the differences. It isn't an ideal solution,
- because it doesn't catch a lot of subtle variants on this form--but
- this will get at least the 99% most common uses. */
- | TYPENAME_IDENTIFIER '(' '*' instance_identifier ')' '('
- {
- push_scope($4->get_scope(current_scope, global_scope));
- }
- formal_parameter_list ')' function_post
- {
- pop_scope();
- CPPType *type = $1->find_type(current_scope, global_scope, false, current_lexer);
- assert(type != NULL);
- CPPInstanceIdentifier *ii = $4;
- ii->add_modifier(IIT_pointer);
- ii->add_func_modifier($8, $10);
- $$ = new CPPInstance(type, ii, 0, @1.file);
- }
- | TYPENAME_IDENTIFIER '(' SCOPING '*' instance_identifier ')' '('
- {
- push_scope($5->get_scope(current_scope, global_scope));
- }
- formal_parameter_list ')' function_post
- {
- pop_scope();
- CPPType *type = $1->find_type(current_scope, global_scope, false, current_lexer);
- assert(type != NULL);
- CPPInstanceIdentifier *ii = $5;
- ii->add_scoped_pointer_modifier($3);
- ii->add_func_modifier($9, $11);
- $$ = new CPPInstance(type, ii, 0, @1.file);
- }
- /* Typecast operators */
- | KW_OPERATOR type not_paren_formal_parameter_identifier '('
- {
- if ($1 != NULL) {
- push_scope($1->get_scope(current_scope, global_scope));
- }
- }
- formal_parameter_list ')' function_post
- {
- if ($1 != NULL) {
- pop_scope();
- }
- // We use formal_parameter_identifier, because that can match a type
- // name with or without an identifier, but especially without, which
- // is what follows the keyword "operator" in a typecast function.
- // As an added bonus, the type of the formal_parameter will be the
- // typecast type, i.e. the return type of the typecast function.
- // We give typecast operators the name "operator typecast <name>",
- // where <name> is a simple name of the type to be typecast. Use
- // the method's return type to determine the full type description.
- string name = "operator typecast " + $2->get_simple_name();
- CPPIdentifier *ident = $1;
- if (ident == NULL) {
- ident = new CPPIdentifier(name, @1.file);
- } else {
- ident->add_name(name);
- }
- $$ = CPPInstance::make_typecast_function
- (new CPPInstance($2, $3, 0, @3.file), ident, $6, $8);
- }
- | KW_OPERATOR KW_CONST type not_paren_formal_parameter_identifier '('
- {
- if ($1 != NULL) {
- push_scope($1->get_scope(current_scope, global_scope));
- }
- }
- formal_parameter_list ')' function_post
- {
- if ($1 != NULL) {
- pop_scope();
- }
- CPPIdentifier *ident = $1;
- if (ident == NULL) {
- ident = new CPPIdentifier("operator typecast", @1.file);
- } else {
- ident->add_name("operator typecast");
- }
- $4->add_modifier(IIT_const);
- $$ = CPPInstance::make_typecast_function
- (new CPPInstance($3, $4, 0, @4.file), ident, $7, $9);
- }
- /* Not actually a function prototype, but maybe a template
- instantiation. Just included here (instead of somewhere else) to
- avoid shift/reduce conflicts. */
- | IDENTIFIER
- {
- CPPDeclaration *decl =
- $1->find_symbol(current_scope, global_scope, current_lexer);
- if (decl != (CPPDeclaration *)NULL) {
- $$ = decl->as_instance();
- } else {
- $$ = (CPPInstance *)NULL;
- }
- }
- ;
- function_post:
- empty
- {
- $$ = 0;
- }
- | KW_CONST
- {
- $$ = (int)CPPFunctionType::F_const_method;
- }
- | function_post KW_THROW '(' ')'
- {
- $$ = $1;
- }
- | function_post KW_THROW '(' name ')'
- {
- $$ = $1;
- }
- ;
- function_operator:
- '!'
- {
- $$ = "!";
- }
- | '~'
- {
- $$ = "~";
- }
- | '*'
- {
- $$ = "*";
- }
- | '/'
- {
- $$ = "/";
- }
- | '%'
- {
- $$ = "%";
- }
- | '+'
- {
- $$ = "+";
- }
- | '-'
- {
- $$ = "-";
- }
- | '|'
- {
- $$ = "|";
- }
- | '&'
- {
- $$ = "&";
- }
- | '^'
- {
- $$ = "^";
- }
- | OROR
- {
- $$ = "||";
- }
- | ANDAND
- {
- $$ = "&&";
- }
- | EQCOMPARE
- {
- $$ = "==";
- }
- | NECOMPARE
- {
- $$ = "!=";
- }
- | LECOMPARE
- {
- $$ = "<=";
- }
- | GECOMPARE
- {
- $$ = ">=";
- }
- | '<'
- {
- $$ = "<";
- }
- | '>'
- {
- $$ = ">";
- }
- | LSHIFT
- {
- $$ = "<<";
- }
- | RSHIFT
- {
- $$ = ">>";
- }
- | '='
- {
- $$ = "=";
- }
- | ','
- {
- $$ = ",";
- }
- | PLUSPLUS
- {
- $$ = "++";
- }
- | MINUSMINUS
- {
- $$ = "--";
- }
- | TIMESEQUAL
- {
- $$ = "*=";
- }
- | DIVIDEEQUAL
- {
- $$ = "/=";
- }
- | MODEQUAL
- {
- $$ = "%=";
- }
- | PLUSEQUAL
- {
- $$ = "+=";
- }
- | MINUSEQUAL
- {
- $$ = "-=";
- }
- | OREQUAL
- {
- $$ = "|=";
- }
- | ANDEQUAL
- {
- $$ = "&=";
- }
- | XOREQUAL
- {
- $$ = "^=";
- }
- | LSHIFTEQUAL
- {
- $$ = "<<=";
- }
- | RSHIFTEQUAL
- {
- $$ = ">>=";
- }
- | POINTSAT
- {
- $$ = "->";
- }
- | '[' ']'
- {
- $$ = "[]";
- }
- | '(' ')'
- {
- $$ = "()";
- }
- | KW_NEW
- {
- $$ = "new";
- }
- | KW_DELETE
- {
- $$ = "delete";
- }
- ;
- more_template_declaration:
- type_like_declaration
- | template_declaration
- ;
- template_declaration:
- KW_TEMPLATE
- {
- push_scope(new CPPTemplateScope(current_scope));
- }
- '<' template_formal_parameters '>' more_template_declaration
- {
- pop_scope();
- }
- ;
- template_formal_parameters:
- empty
- | template_nonempty_formal_parameters
- ;
- template_nonempty_formal_parameters:
- template_formal_parameter
- {
- CPPTemplateScope *ts = current_scope->as_template_scope();
- assert(ts != NULL);
- ts->add_template_parameter($1);
- }
- | template_nonempty_formal_parameters ',' template_formal_parameter
- {
- CPPTemplateScope *ts = current_scope->as_template_scope();
- assert(ts != NULL);
- ts->add_template_parameter($3);
- }
- ;
- template_formal_parameter:
- KW_CLASS name
- {
- $$ = CPPType::new_type(new CPPClassTemplateParameter($2));
- }
- | KW_CLASS name '=' full_type
- {
- $$ = CPPType::new_type(new CPPClassTemplateParameter($2, $4));
- }
- | template_formal_parameter_type formal_parameter_identifier template_parameter_maybe_initialize
- {
- CPPInstance *inst = new CPPInstance($1, $2, 0, @2.file);
- inst->set_initializer($3);
- $$ = inst;
- }
- | KW_CONST template_formal_parameter_type formal_parameter_identifier template_parameter_maybe_initialize
- {
- $3->add_modifier(IIT_const);
- CPPInstance *inst = new CPPInstance($2, $3, 0, @3.file);
- inst->set_initializer($4);
- $$ = inst;
- }
- ;
- template_formal_parameter_type:
- simple_type
- {
- $$ = CPPType::new_type($1);
- }
- | IDENTIFIER
- {
- yywarning("Not a type: " + $1->get_fully_scoped_name(), @1);
- $$ = CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_unknown));
- }
- | TYPENAME_IDENTIFIER
- {
- $$ = $1->find_type(current_scope, global_scope, false, current_lexer);
- assert($$ != NULL);
- }
- | KW_TYPENAME name
- {
- $$ = CPPType::new_type(new CPPTBDType($2));
- }
- ;
- instance_identifier:
- name
- {
- $$ = new CPPInstanceIdentifier($1);
- }
- | KW_OPERATOR function_operator
- {
- // For an operator function. We implement this simply by building a
- // ficticious name for the function; in other respects it's just
- // like a regular function.
- CPPIdentifier *ident = $1;
- if (ident == NULL) {
- ident = new CPPIdentifier("operator "+$2, @2.file);
- } else {
- ident->_names.push_back("operator "+$2);
- }
- $$ = new CPPInstanceIdentifier(ident);
- }
- | KW_CONST instance_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_const);
- }
- | '*' instance_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_pointer);
- }
- | '&' instance_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_reference);
- }
- | SCOPING '*' instance_identifier %prec UNARY
- {
- $$ = $3;
- $$->add_scoped_pointer_modifier($1);
- }
- | instance_identifier '[' optional_const_expr ']'
- {
- $$ = $1;
- $$->add_array_modifier($3);
- }
- | instance_identifier ':' INTEGER
- {
- // bitfield definition. We ignore the bitfield for now.
- $$ = $1;
- }
- | '(' instance_identifier ')'
- {
- $$ = $2;
- $$->add_modifier(IIT_paren);
- }
- | instance_identifier '('
- {
- push_scope($1->get_scope(current_scope, global_scope));
- }
- formal_parameter_list ')' function_post
- {
- pop_scope();
- $$ = $1;
- if ($4->is_parameter_expr() && $6 == 0) {
- // Oops, this must have been an instance declaration with a
- // parameter list, not a function prototype.
- $$->add_initializer_modifier($4);
- } else {
- // This was (probably) a function prototype.
- $$->add_func_modifier($4, $6);
- }
- }
- ;
- formal_parameter_list:
- empty
- {
- $$ = new CPPParameterList;
- }
- | ELLIPSIS
- {
- $$ = new CPPParameterList;
- $$->_includes_ellipsis = true;
- }
- | formal_parameters
- {
- $$ = $1;
- }
- | formal_parameters ',' ELLIPSIS
- {
- $$ = $1;
- $$->_includes_ellipsis = true;
- }
- | formal_parameters ELLIPSIS
- {
- $$ = $1;
- $$->_includes_ellipsis = true;
- }
- ;
- formal_parameters:
- formal_parameter
- {
- $$ = new CPPParameterList;
- $$->_parameters.push_back($1);
- }
- | formal_parameters ',' formal_parameter
- {
- $$ = $1;
- $$->_parameters.push_back($3);
- }
- ;
- template_parameter_maybe_initialize:
- empty
- {
- $$ = (CPPExpression *)NULL;
- }
- | '=' no_angle_bracket_const_expr
- {
- $$ = $2;
- }
- ;
- maybe_initialize:
- empty
- {
- $$ = (CPPExpression *)NULL;
- }
- | '=' const_expr
- {
- $$ = $2;
- }
- ;
- maybe_initialize_or_function_body:
- ';'
- {
- $$ = (CPPExpression *)NULL;
- }
- | '{' code '}'
- {
- $$ = (CPPExpression *)NULL;
- }
- | ':' constructor_inits '{' code '}'
- {
- $$ = (CPPExpression *)NULL;
- }
- | '=' const_expr ';'
- {
- $$ = $2;
- }
- | '=' '{' structure_init '}'
- {
- $$ = (CPPExpression *)NULL;
- }
- ;
- structure_init:
- empty
- | structure_init_body
- | structure_init_body ','
- ;
- structure_init_body:
- const_expr
- {
- }
- | '{' structure_init '}'
- | structure_init_body ',' const_expr
- | structure_init_body ',' '{' structure_init '}'
- ;
- formal_parameter:
- type formal_parameter_identifier maybe_initialize
- {
- $$ = new CPPInstance($1, $2, 0, @2.file);
- $$->set_initializer($3);
- }
- | IDENTIFIER formal_parameter_identifier maybe_initialize
- {
- yywarning("Not a type: " + $1->get_fully_scoped_name(), @1);
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_unknown));
- $$ = new CPPInstance(type, $2, 0, @2.file);
- $$->set_initializer($3);
- }
- | KW_CONST type formal_parameter_identifier maybe_initialize
- {
- $3->add_modifier(IIT_const);
- $$ = new CPPInstance($2, $3, 0, @3.file);
- $$->set_initializer($4);
- }
- | formal_const_expr
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_parameter));
- $$ = new CPPInstance(type, "expr");
- $$->set_initializer($1);
- }
- ;
- not_paren_formal_parameter_identifier:
- empty
- {
- $$ = new CPPInstanceIdentifier((CPPIdentifier *)NULL);
- }
- | IDENTIFIER
- {
- $$ = new CPPInstanceIdentifier($1);
- }
- | TYPENAME_IDENTIFIER
- {
- $$ = new CPPInstanceIdentifier($1);
- }
- | KW_CONST not_paren_formal_parameter_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_const);
- }
- | '*' not_paren_formal_parameter_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_pointer);
- }
- | '&' not_paren_formal_parameter_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_reference);
- }
- | SCOPING '*' not_paren_formal_parameter_identifier %prec UNARY
- {
- $$ = $3;
- $$->add_scoped_pointer_modifier($1);
- }
- | not_paren_formal_parameter_identifier '[' optional_const_expr ']'
- {
- $$ = $1;
- $$->add_array_modifier($3);
- }
- ;
- formal_parameter_identifier:
- empty
- {
- $$ = new CPPInstanceIdentifier((CPPIdentifier *)NULL);
- }
- | IDENTIFIER
- {
- $$ = new CPPInstanceIdentifier($1);
- }
- | TYPENAME_IDENTIFIER
- {
- $$ = new CPPInstanceIdentifier($1);
- }
- | KW_CONST formal_parameter_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_const);
- }
- | '*' formal_parameter_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_pointer);
- }
- | '&' formal_parameter_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_reference);
- }
- | SCOPING '*' formal_parameter_identifier %prec UNARY
- {
- $$ = $3;
- $$->add_scoped_pointer_modifier($1);
- }
- | formal_parameter_identifier '[' optional_const_expr ']'
- {
- $$ = $1;
- $$->add_array_modifier($3);
- }
- | '(' formal_parameter_identifier ')' '(' formal_parameter_list ')' function_post
- {
- $$ = $2;
- $$->add_modifier(IIT_paren);
- $$->add_func_modifier($5, $7);
- }
- | '(' formal_parameter_identifier ')'
- {
- $$ = $2;
- $$->add_modifier(IIT_paren);
- }
- ;
- empty_instance_identifier:
- empty
- {
- $$ = new CPPInstanceIdentifier((CPPIdentifier *)NULL);
- }
- | KW_CONST empty_instance_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_const);
- }
- | '*' empty_instance_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_pointer);
- }
- | '&' empty_instance_identifier %prec UNARY
- {
- $$ = $2;
- $$->add_modifier(IIT_reference);
- }
- | SCOPING '*' empty_instance_identifier %prec UNARY
- {
- $$ = $3;
- $$->add_scoped_pointer_modifier($1);
- }
- | empty_instance_identifier '[' optional_const_expr ']'
- {
- $$ = $1;
- $$->add_array_modifier($3);
- }
- | '(' empty_instance_identifier ')' '(' formal_parameter_list ')' function_post
- {
- $$ = $2;
- $$->add_modifier(IIT_paren);
- $$->add_func_modifier($5, $7);
- }
- ;
- type:
- simple_type
- {
- $$ = CPPType::new_type($1);
- }
- | TYPENAME_IDENTIFIER
- {
- $$ = $1->find_type(current_scope, global_scope, false, current_lexer);
- assert($$ != NULL);
- }
- | KW_TYPENAME name
- {
- $$ = CPPType::new_type(new CPPTBDType($2));
- }
- | anonymous_struct
- {
- $$ = CPPType::new_type($1);
- }
- | named_struct
- {
- $$ = CPPType::new_type($1);
- }
- | anonymous_enum
- {
- $$ = CPPType::new_type($1);
- }
- | named_enum
- {
- $$ = CPPType::new_type($1);
- }
- | struct_keyword name
- {
- CPPType *type = $2->find_type(current_scope, global_scope, false, current_lexer);
- if (type != NULL) {
- $$ = type;
- } else {
- CPPExtensionType *et =
- CPPType::new_type(new CPPExtensionType($1, $2, current_scope, @1.file))
- ->as_extension_type();
- CPPScope *scope = $2->get_scope(current_scope, global_scope);
- if (scope != NULL) {
- scope->define_extension_type(et);
- }
- $$ = et;
- }
- }
- | enum_keyword name
- {
- CPPType *type = $2->find_type(current_scope, global_scope, false, current_lexer);
- if (type != NULL) {
- $$ = type;
- } else {
- CPPExtensionType *et =
- CPPType::new_type(new CPPExtensionType($1, $2, current_scope, @1.file))
- ->as_extension_type();
- CPPScope *scope = $2->get_scope(current_scope, global_scope);
- if (scope != NULL) {
- scope->define_extension_type(et);
- }
- $$ = et;
- }
- }
- ;
- type_decl:
- simple_type
- {
- $$ = CPPType::new_type($1);
- }
- | TYPENAME_IDENTIFIER
- {
- $$ = $1->find_type(current_scope, global_scope, false, current_lexer);
- assert($$ != NULL);
- }
- | KW_TYPENAME name
- {
- $$ = CPPType::new_type(new CPPTBDType($2));
- }
- | anonymous_struct
- {
- $$ = CPPType::new_type($1);
- }
- | named_struct
- {
- $$ = new CPPTypeDeclaration(CPPType::new_type($1));
- }
- | anonymous_enum
- {
- $$ = CPPType::new_type($1);
- }
- | named_enum
- {
- $$ = new CPPTypeDeclaration(CPPType::new_type($1));
- }
- | struct_keyword name
- {
- CPPType *type = $2->find_type(current_scope, global_scope, false, current_lexer);
- if (type != NULL) {
- $$ = type;
- } else {
- CPPExtensionType *et =
- CPPType::new_type(new CPPExtensionType($1, $2, current_scope, @1.file))
- ->as_extension_type();
- CPPScope *scope = $2->get_scope(current_scope, global_scope);
- if (scope != NULL) {
- scope->define_extension_type(et);
- }
- $$ = et;
- }
- }
- | enum_keyword name
- {
- CPPType *type = $2->find_type(current_scope, global_scope, false, current_lexer);
- if (type != NULL) {
- $$ = type;
- } else {
- CPPExtensionType *et =
- CPPType::new_type(new CPPExtensionType($1, $2, current_scope, @1.file))
- ->as_extension_type();
- CPPScope *scope = $2->get_scope(current_scope, global_scope);
- if (scope != NULL) {
- scope->define_extension_type(et);
- }
- $$ = et;
- }
- }
- ;
- predefined_type:
- simple_type
- {
- $$ = CPPType::new_type($1);
- }
- | TYPENAME_IDENTIFIER
- {
- $$ = $1->find_type(current_scope, global_scope, false, current_lexer);
- assert($$ != NULL);
- }
- | KW_TYPENAME name
- {
- $$ = CPPType::new_type(new CPPTBDType($2));
- }
- | struct_keyword name
- {
- CPPType *type = $2->find_type(current_scope, global_scope, false, current_lexer);
- if (type != NULL) {
- $$ = type;
- } else {
- CPPExtensionType *et =
- CPPType::new_type(new CPPExtensionType($1, $2, current_scope, @1.file))
- ->as_extension_type();
- CPPScope *scope = $2->get_scope(current_scope, global_scope);
- if (scope != NULL) {
- scope->define_extension_type(et);
- }
- $$ = et;
- }
- }
- | enum_keyword name
- {
- CPPType *type = $2->find_type(current_scope, global_scope, false, current_lexer);
- if (type != NULL) {
- $$ = type;
- } else {
- CPPExtensionType *et =
- CPPType::new_type(new CPPExtensionType($1, $2, current_scope, @1.file))
- ->as_extension_type();
- CPPScope *scope = $2->get_scope(current_scope, global_scope);
- if (scope != NULL) {
- scope->define_extension_type(et);
- }
- $$ = et;
- }
- }
- ;
- full_type:
- type empty_instance_identifier
- {
- CPPInstance *inst = new CPPInstance($1, $2, 0, @1.file);
- $$ = inst->_type;
- delete inst;
- }
- | KW_CONST type empty_instance_identifier
- {
- $3->add_modifier(IIT_const);
- CPPInstance *inst = new CPPInstance($2, $3, 0, @1.file);
- $$ = inst->_type;
- delete inst;
- }
- ;
- anonymous_struct:
- struct_keyword '{'
- {
- CPPVisibility starting_vis =
- ($1 == CPPExtensionType::T_class) ? V_private : V_public;
-
- CPPScope *new_scope = new CPPScope(current_scope, CPPNameComponent("anon"),
- starting_vis);
- CPPStructType *st = new CPPStructType($1, NULL, current_scope,
- new_scope, @1.file);
- new_scope->set_struct_type(st);
- push_scope(new_scope);
- push_struct(st);
- }
- cpp '}'
- {
- $$ = current_struct;
- current_struct->_incomplete = false;
- pop_struct();
- pop_scope();
- }
- ;
- named_struct:
- struct_keyword name
- {
- CPPVisibility starting_vis =
- ($1 == CPPExtensionType::T_class) ? V_private : V_public;
- CPPScope *scope = $2->get_scope(current_scope, global_scope, current_lexer);
- if (scope == NULL) {
- scope = current_scope;
- }
- CPPScope *new_scope = new CPPScope(scope, $2->_names.back(),
- starting_vis);
- CPPStructType *st = new CPPStructType($1, $2, current_scope,
- new_scope, @1.file);
- new_scope->set_struct_type(st);
- current_scope->define_extension_type(st);
-
- push_scope(new_scope);
- push_struct(st);
- }
- maybe_class_derivation '{' cpp '}'
- {
- $$ = current_struct;
- current_struct->_incomplete = false;
- pop_struct();
- pop_scope();
- }
- ;
- maybe_class_derivation:
- empty
- | class_derivation
- ;
- class_derivation:
- ':' base_specification
- | class_derivation ',' base_specification
- ;
- base_specification:
- KW_PUBLIC class_derivation_name
- {
- current_struct->append_derivation($2, V_public, false);
- }
- | KW_PROTECTED class_derivation_name
- {
- current_struct->append_derivation($2, V_protected, false);
- }
- | KW_PRIVATE class_derivation_name
- {
- current_struct->append_derivation($2, V_private, false);
- }
- | KW_VIRTUAL KW_PUBLIC class_derivation_name
- {
- current_struct->append_derivation($3, V_public, true);
- }
- | KW_VIRTUAL KW_PROTECTED class_derivation_name
- {
- current_struct->append_derivation($3, V_protected, true);
- }
- | KW_VIRTUAL KW_PRIVATE class_derivation_name
- {
- current_struct->append_derivation($3, V_private, true);
- }
- | KW_PUBLIC KW_VIRTUAL class_derivation_name
- {
- current_struct->append_derivation($3, V_public, true);
- }
- | KW_PROTECTED KW_VIRTUAL class_derivation_name
- {
- current_struct->append_derivation($3, V_protected, true);
- }
- | KW_PRIVATE KW_VIRTUAL class_derivation_name
- {
- current_struct->append_derivation($3, V_private, true);
- }
- ;
- anonymous_enum:
- enum_keyword '{'
- {
- current_enum = new CPPEnumType(NULL, current_scope, @1.file);
- }
- enum_body '}'
- {
- $$ = current_enum;
- current_enum = NULL;
- }
- ;
- named_enum:
- enum_keyword name '{'
- {
- current_enum = new CPPEnumType($2, current_scope, @1.file);
- }
- enum_body '}'
- {
- $$ = current_enum;
- current_enum = NULL;
- }
- ;
- enum_body:
- empty
- | enum_body_no_trailing_comma
- | enum_body_no_trailing_comma ','
- ;
- enum_body_no_trailing_comma:
- name
- {
- assert(current_enum != NULL);
- current_enum->add_element($1->get_simple_name(), current_scope);
- }
- | name '=' const_expr
- {
- assert(current_enum != NULL);
- current_enum->add_element($1->get_simple_name(), current_scope, $3);
- }
- | enum_body_no_trailing_comma ',' name
- {
- assert(current_enum != NULL);
- current_enum->add_element($3->get_simple_name(), current_scope);
- }
- | enum_body_no_trailing_comma ',' name '=' const_expr
- {
- assert(current_enum != NULL);
- current_enum->add_element($3->get_simple_name(), current_scope, $5);
- }
- ;
- enum_keyword:
- KW_ENUM
- {
- $$ = CPPExtensionType::T_enum;
- }
- ;
- struct_keyword:
- KW_CLASS
- {
- $$ = CPPExtensionType::T_class;
- }
- | KW_STRUCT
- {
- $$ = CPPExtensionType::T_struct;
- }
- | KW_UNION
- {
- $$ = CPPExtensionType::T_union;
- }
- ;
- namespace_declaration:
- KW_NAMESPACE name '{'
- {
- CPPScope *scope = $2->find_scope(current_scope, global_scope, current_lexer);
- if (scope == NULL) {
- // This must be a new namespace declaration.
- CPPScope *parent_scope =
- $2->get_scope(current_scope, global_scope, current_lexer);
- if (parent_scope == NULL) {
- parent_scope = current_scope;
- }
- scope = new CPPScope(parent_scope, $2->_names.back(), V_public);
- }
- CPPNamespace *nspace = new CPPNamespace($2, scope, @1.file);
- current_scope->add_declaration(nspace, global_scope, current_lexer, @1);
- current_scope->define_namespace(nspace);
- push_scope(scope);
- }
- cpp '}'
- {
- pop_scope();
- }
- | KW_NAMESPACE '{' cpp '}'
- ;
- using_declaration:
- KW_USING name
- {
- CPPUsing *using_decl = new CPPUsing($2, false, @1.file);
- current_scope->add_declaration(using_decl, global_scope, current_lexer, @1);
- current_scope->add_using(using_decl, global_scope, current_lexer);
- }
- | KW_USING KW_NAMESPACE name
- {
- CPPUsing *using_decl = new CPPUsing($3, true, @1.file);
- current_scope->add_declaration(using_decl, global_scope, current_lexer, @1);
- current_scope->add_using(using_decl, global_scope, current_lexer);
- }
- ;
- simple_type:
- simple_int_type
- | simple_float_type
- | simple_void_type
- ;
- simple_int_type:
- KW_BOOL
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_bool);
- }
- | KW_CHAR
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_char);
- }
- | KW_WCHAR_T
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_wchar_t);
- }
- | KW_SHORT
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_short);
- }
- | KW_LONG
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_long);
- }
- | KW_LONGLONG
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_longlong);
- }
- | KW_UNSIGNED
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_unsigned);
- }
- | KW_SIGNED
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_signed);
- }
- | KW_INT
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_int);
- }
- | KW_SHORT simple_int_type
- {
- $$ = $2;
- $$->_flags |= CPPSimpleType::F_short;
- }
- | KW_LONG simple_int_type
- {
- $$ = $2;
- if ($$->_flags & CPPSimpleType::F_long) {
- $$->_flags |= CPPSimpleType::F_longlong;
- } else {
- $$->_flags |= CPPSimpleType::F_long;
- }
- }
- | KW_UNSIGNED simple_int_type
- {
- $$ = $2;
- $$->_flags |= CPPSimpleType::F_unsigned;
- }
- | KW_SIGNED simple_int_type
- {
- $$ = $2;
- $$->_flags |= CPPSimpleType::F_signed;
- }
- ;
- simple_float_type:
- KW_FLOAT
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_float);
- }
- | KW_LONG KW_FLOAT
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_float,
- CPPSimpleType::F_long);
- }
- | KW_DOUBLE
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_double);
- }
- | KW_LONG KW_LONG KW_FLOAT
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_float,
- CPPSimpleType::F_longlong);
- }
- | KW_LONG KW_DOUBLE
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_double,
- CPPSimpleType::F_long);
- }
- ;
- simple_void_type:
- KW_VOID
- {
- $$ = new CPPSimpleType(CPPSimpleType::T_void);
- }
- ;
- /* We don't care what the code is. We just want to be sure we match
- up opening and closing braces properly. For anything else, we'll
- accept just token salad. */
- code:
- {
- current_lexer->_resolve_identifiers = false;
- }
- code_block
- {
- current_lexer->_resolve_identifiers = true;
- }
- ;
- code_block:
- empty
- | code_block element
- ;
- element:
- REAL
- {
- }
- | INTEGER
- {
- }
- | STRING
- {
- }
- | CHAR_TOK
- {
- }
- | IDENTIFIER
- {
- }
- | TYPENAME_IDENTIFIER
- {
- }
- | SCOPING
- {
- }
- | SIMPLE_IDENTIFIER
- {
- }
- | ELLIPSIS | OROR | ANDAND
- | EQCOMPARE | NECOMPARE | LECOMPARE | GECOMPARE
- | LSHIFT | RSHIFT | POINTSAT_STAR | DOT_STAR | POINTSAT
- | SCOPE | PLUSPLUS | MINUSMINUS
- | TIMESEQUAL | DIVIDEEQUAL | MODEQUAL | PLUSEQUAL | MINUSEQUAL
- | OREQUAL | ANDEQUAL | XOREQUAL | LSHIFTEQUAL | RSHIFTEQUAL
- | KW_BOOL | KW_CATCH | KW_CHAR | KW_WCHAR_T | KW_CLASS | KW_CONST
- | KW_DELETE | KW_DOUBLE | KW_DYNAMIC_CAST | KW_ELSE | KW_ENUM
- | KW_EXTERN | KW_EXPLICIT | KW_FALSE
- | KW_FLOAT | KW_FRIEND | KW_FOR | KW_GOTO
- | KW_IF | KW_INLINE | KW_INT
- | KW_LONG | KW_MUTABLE | KW_NEW | KW_PRIVATE | KW_PROTECTED
- | KW_PUBLIC | KW_PUBLISHED | KW_REGISTER | KW_RETURN
- | KW_SHORT | KW_SIGNED | KW_SIZEOF | KW_STATIC | KW_STATIC_CAST
- | KW_STRUCT | KW_THROW | KW_TRUE | KW_TRY | KW_TYPEDEF | KW_TYPENAME
- | KW_UNION | KW_UNSIGNED | KW_VIRTUAL | KW_VOID | KW_VOLATILE
- | KW_WHILE | TOKENPASTE
- | KW_OPERATOR
- {
- }
- | '+' | '-' | '*' | '/' | '&' | '|' | '^' | '!' | '~' | '=' | '%'
- | '<' | '>' | '(' | ')' | '.' | ',' | ';' | ':' | '[' | ']'
- | '?' | '{' code_block '}'
- ;
- optional_const_expr:
- empty
- {
- $$ = (CPPExpression *)NULL;
- }
- | const_expr
- {
- $$ = $1;
- }
- ;
- optional_const_expr_comma:
- empty
- {
- $$ = (CPPExpression *)NULL;
- }
- | const_expr_comma
- {
- $$ = $1;
- }
- ;
- const_expr_comma:
- const_expr
- {
- $$ = $1;
- }
- | const_expr_comma ',' const_expr
- {
- $$ = new CPPExpression(',', $1, $3);
- }
- ;
- no_angle_bracket_const_expr:
- const_operand
- {
- $$ = $1;
- }
- | '(' full_type ')' no_angle_bracket_const_expr %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($2, $4));
- }
- | KW_STATIC_CAST '<' full_type '>' '(' const_expr_comma ')'
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($3, $6));
- }
- | KW_DYNAMIC_CAST '<' full_type '>' '(' const_expr_comma ')'
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($3, $6));
- }
- | KW_SIZEOF '(' full_type ')' %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::sizeof_func($3));
- }
- | '!' no_angle_bracket_const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_NOT, $2);
- }
- | '~' no_angle_bracket_const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_NEGATE, $2);
- }
- | '-' no_angle_bracket_const_expr %prec UNARY
- {
- if ($2->_type == CPPExpression::T_integer) {
- $$ = $2;
- $$->_u._integer = -$$->_u._integer;
- } else if ($2->_type == CPPExpression::T_real) {
- $$ = $2;
- $$->_u._real = -$$->_u._real;
- } else {
- $$ = new CPPExpression(UNARY_MINUS, $2);
- }
- }
- | '*' no_angle_bracket_const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_STAR, $2);
- }
- | '&' no_angle_bracket_const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_REF, $2);
- }
- | no_angle_bracket_const_expr '*' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('*', $1, $3);
- }
- | no_angle_bracket_const_expr '/' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('/', $1, $3);
- }
- | no_angle_bracket_const_expr '%' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('%', $1, $3);
- }
- | no_angle_bracket_const_expr '+' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('+', $1, $3);
- }
- | no_angle_bracket_const_expr '-' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('-', $1, $3);
- }
- | no_angle_bracket_const_expr '|' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('|', $1, $3);
- }
- | no_angle_bracket_const_expr '^' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('^', $1, $3);
- }
- | no_angle_bracket_const_expr '&' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('&', $1, $3);
- }
- | no_angle_bracket_const_expr OROR no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(OROR, $1, $3);
- }
- | no_angle_bracket_const_expr ANDAND no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(ANDAND, $1, $3);
- }
- | no_angle_bracket_const_expr EQCOMPARE no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(EQCOMPARE, $1, $3);
- }
- | no_angle_bracket_const_expr NECOMPARE no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(NECOMPARE, $1, $3);
- }
- | no_angle_bracket_const_expr LECOMPARE no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(LECOMPARE, $1, $3);
- }
- | no_angle_bracket_const_expr GECOMPARE no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(GECOMPARE, $1, $3);
- }
- | no_angle_bracket_const_expr LSHIFT no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(LSHIFT, $1, $3);
- }
- | no_angle_bracket_const_expr RSHIFT no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(RSHIFT, $1, $3);
- }
- | no_angle_bracket_const_expr '?' no_angle_bracket_const_expr ':' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('?', $1, $3, $5);
- }
- | no_angle_bracket_const_expr '[' const_expr ']'
- {
- $$ = new CPPExpression('[', $1, $3);
- }
- | no_angle_bracket_const_expr '(' const_expr_comma ')'
- {
- $$ = new CPPExpression('f', $1, $3);
- }
- | no_angle_bracket_const_expr '(' ')'
- {
- $$ = new CPPExpression('f', $1);
- }
- | no_angle_bracket_const_expr '.' no_angle_bracket_const_expr
- {
- $$ = new CPPExpression('.', $1, $3);
- }
- | no_angle_bracket_const_expr POINTSAT no_angle_bracket_const_expr
- {
- $$ = new CPPExpression(POINTSAT, $1, $3);
- }
- | '(' const_expr_comma ')'
- {
- $$ = $2;
- }
- ;
- const_expr:
- const_operand
- {
- $$ = $1;
- }
- | '(' full_type ')' const_expr %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($2, $4));
- }
- | KW_STATIC_CAST '<' full_type '>' '(' const_expr_comma ')'
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($3, $6));
- }
- | KW_DYNAMIC_CAST '<' full_type '>' '(' const_expr_comma ')'
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($3, $6));
- }
- | TYPENAME_IDENTIFIER '(' optional_const_expr_comma ')'
- {
- // A constructor call.
- CPPType *type = $1->find_type(current_scope, global_scope, false, current_lexer);
- assert(type != NULL);
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_INT '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_int));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_CHAR '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_char));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_WCHAR_T '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_wchar_t));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_BOOL '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_bool));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_SHORT '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_short));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_LONG '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_long));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_UNSIGNED '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_unsigned));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_SIGNED '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_int,
- CPPSimpleType::F_signed));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_FLOAT '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_float));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_DOUBLE '(' optional_const_expr_comma ')'
- {
- CPPType *type =
- CPPType::new_type(new CPPSimpleType(CPPSimpleType::T_double));
- $$ = new CPPExpression(CPPExpression::construct_op(type, $3));
- }
- | KW_SIZEOF '(' full_type ')' %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::sizeof_func($3));
- }
- | KW_NEW predefined_type %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::new_op($2));
- }
- | KW_NEW predefined_type '(' optional_const_expr_comma ')' %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::new_op($2, $4));
- }
- | '!' const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_NOT, $2);
- }
- | '~' const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_NEGATE, $2);
- }
- | '-' const_expr %prec UNARY
- {
- if ($2->_type == CPPExpression::T_integer) {
- $$ = $2;
- $$->_u._integer = -$$->_u._integer;
- } else if ($2->_type == CPPExpression::T_real) {
- $$ = $2;
- $$->_u._real = -$$->_u._real;
- } else {
- $$ = new CPPExpression(UNARY_MINUS, $2);
- }
- }
- | '*' const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_STAR, $2);
- }
- | '&' const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_REF, $2);
- }
- | const_expr '*' const_expr
- {
- $$ = new CPPExpression('*', $1, $3);
- }
- | const_expr '/' const_expr
- {
- $$ = new CPPExpression('/', $1, $3);
- }
- | const_expr '%' const_expr
- {
- $$ = new CPPExpression('%', $1, $3);
- }
- | const_expr '+' const_expr
- {
- $$ = new CPPExpression('+', $1, $3);
- }
- | const_expr '-' const_expr
- {
- $$ = new CPPExpression('-', $1, $3);
- }
- | const_expr '|' const_expr
- {
- $$ = new CPPExpression('|', $1, $3);
- }
- | const_expr '^' const_expr
- {
- $$ = new CPPExpression('^', $1, $3);
- }
- | const_expr '&' const_expr
- {
- $$ = new CPPExpression('&', $1, $3);
- }
- | const_expr OROR const_expr
- {
- $$ = new CPPExpression(OROR, $1, $3);
- }
- | const_expr ANDAND const_expr
- {
- $$ = new CPPExpression(ANDAND, $1, $3);
- }
- | const_expr EQCOMPARE const_expr
- {
- $$ = new CPPExpression(EQCOMPARE, $1, $3);
- }
- | const_expr NECOMPARE const_expr
- {
- $$ = new CPPExpression(NECOMPARE, $1, $3);
- }
- | const_expr LECOMPARE const_expr
- {
- $$ = new CPPExpression(LECOMPARE, $1, $3);
- }
- | const_expr GECOMPARE const_expr
- {
- $$ = new CPPExpression(GECOMPARE, $1, $3);
- }
- | const_expr '<' const_expr
- {
- $$ = new CPPExpression('<', $1, $3);
- }
- | const_expr '>' const_expr
- {
- $$ = new CPPExpression('>', $1, $3);
- }
- | const_expr LSHIFT const_expr
- {
- $$ = new CPPExpression(LSHIFT, $1, $3);
- }
- | const_expr RSHIFT const_expr
- {
- $$ = new CPPExpression(RSHIFT, $1, $3);
- }
- | const_expr '?' const_expr ':' const_expr
- {
- $$ = new CPPExpression('?', $1, $3, $5);
- }
- | const_expr '[' const_expr ']'
- {
- $$ = new CPPExpression('[', $1, $3);
- }
- | const_expr '(' const_expr_comma ')'
- {
- $$ = new CPPExpression('f', $1, $3);
- }
- | const_expr '(' ')'
- {
- $$ = new CPPExpression('f', $1);
- }
- | const_expr '.' const_expr
- {
- $$ = new CPPExpression('.', $1, $3);
- }
- | const_expr POINTSAT const_expr
- {
- $$ = new CPPExpression(POINTSAT, $1, $3);
- }
- | '(' const_expr_comma ')'
- {
- $$ = $2;
- }
- ;
- const_operand:
- INTEGER
- {
- $$ = new CPPExpression($1);
- }
- | KW_TRUE
- {
- $$ = new CPPExpression(true);
- }
- | KW_FALSE
- {
- $$ = new CPPExpression(false);
- }
- | CHAR_TOK
- {
- $$ = new CPPExpression($1);
- }
- | REAL
- {
- $$ = new CPPExpression($1);
- }
- | string
- {
- $$ = new CPPExpression($1);
- }
- | IDENTIFIER
- {
- $$ = new CPPExpression($1, current_scope, global_scope, current_lexer);
- }
- ;
- /* This is used for a const_expr as a "formal parameter", which really
- means an instance declaration using a parameter list (which looks a
- lot like a function prototype). It differs from const_expr mainly
- in that it forbids some expressions unless they are parenthesized,
- to avoid shift/reduce conflicts with the actual formal parameter
- definition. */
- formal_const_expr:
- formal_const_operand
- {
- $$ = $1;
- }
- | '(' full_type ')' const_expr %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($2, $4));
- }
- | KW_STATIC_CAST '<' full_type '>' '(' const_expr_comma ')'
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($3, $6));
- }
- | KW_DYNAMIC_CAST '<' full_type '>' '(' const_expr_comma ')'
- {
- $$ = new CPPExpression(CPPExpression::typecast_op($3, $6));
- }
- | KW_SIZEOF '(' full_type ')' %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::sizeof_func($3));
- }
- | KW_NEW predefined_type %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::new_op($2));
- }
- | KW_NEW predefined_type '(' optional_const_expr_comma ')' %prec UNARY
- {
- $$ = new CPPExpression(CPPExpression::new_op($2, $4));
- }
- | '!' const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_NOT, $2);
- }
- | '~' const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_NEGATE, $2);
- }
- | '-' const_expr %prec UNARY
- {
- if ($2->_type == CPPExpression::T_integer) {
- $$ = $2;
- $$->_u._integer = -$$->_u._integer;
- } else if ($2->_type == CPPExpression::T_real) {
- $$ = $2;
- $$->_u._real = -$$->_u._real;
- } else {
- $$ = new CPPExpression(UNARY_MINUS, $2);
- }
- }
- | '&' const_expr %prec UNARY
- {
- $$ = new CPPExpression(UNARY_REF, $2);
- }
- | formal_const_expr '*' const_expr
- {
- $$ = new CPPExpression('*', $1, $3);
- }
- | formal_const_expr '/' const_expr
- {
- $$ = new CPPExpression('/', $1, $3);
- }
- | formal_const_expr '%' const_expr
- {
- $$ = new CPPExpression('%', $1, $3);
- }
- | formal_const_expr '+' const_expr
- {
- $$ = new CPPExpression('+', $1, $3);
- }
- | formal_const_expr '-' const_expr
- {
- $$ = new CPPExpression('-', $1, $3);
- }
- | formal_const_expr '|' const_expr
- {
- $$ = new CPPExpression('|', $1, $3);
- }
- | formal_const_expr '^' const_expr
- {
- $$ = new CPPExpression('^', $1, $3);
- }
- | formal_const_expr '&' const_expr
- {
- $$ = new CPPExpression('&', $1, $3);
- }
- | formal_const_expr OROR const_expr
- {
- $$ = new CPPExpression(OROR, $1, $3);
- }
- | formal_const_expr ANDAND const_expr
- {
- $$ = new CPPExpression(ANDAND, $1, $3);
- }
- | formal_const_expr EQCOMPARE const_expr
- {
- $$ = new CPPExpression(EQCOMPARE, $1, $3);
- }
- | formal_const_expr NECOMPARE const_expr
- {
- $$ = new CPPExpression(NECOMPARE, $1, $3);
- }
- | formal_const_expr LECOMPARE const_expr
- {
- $$ = new CPPExpression(LECOMPARE, $1, $3);
- }
- | formal_const_expr GECOMPARE const_expr
- {
- $$ = new CPPExpression(GECOMPARE, $1, $3);
- }
- | formal_const_expr '<' const_expr
- {
- $$ = new CPPExpression('<', $1, $3);
- }
- | formal_const_expr '>' const_expr
- {
- $$ = new CPPExpression('>', $1, $3);
- }
- | formal_const_expr LSHIFT const_expr
- {
- $$ = new CPPExpression(LSHIFT, $1, $3);
- }
- | formal_const_expr RSHIFT const_expr
- {
- $$ = new CPPExpression(RSHIFT, $1, $3);
- }
- | formal_const_expr '?' const_expr ':' const_expr
- {
- $$ = new CPPExpression('?', $1, $3, $5);
- }
- | formal_const_expr '[' const_expr ']'
- {
- $$ = new CPPExpression('[', $1, $3);
- }
- | formal_const_expr '(' const_expr_comma ')'
- {
- $$ = new CPPExpression('f', $1, $3);
- }
- | formal_const_expr '(' ')'
- {
- $$ = new CPPExpression('f', $1);
- }
- | formal_const_expr '.' const_expr
- {
- $$ = new CPPExpression('.', $1, $3);
- }
- | formal_const_expr POINTSAT const_expr
- {
- $$ = new CPPExpression(POINTSAT, $1, $3);
- }
- | '(' const_expr_comma ')'
- {
- $$ = $2;
- }
- ;
- formal_const_operand:
- INTEGER
- {
- $$ = new CPPExpression($1);
- }
- | KW_TRUE
- {
- $$ = new CPPExpression(true);
- }
- | KW_FALSE
- {
- $$ = new CPPExpression(false);
- }
- | CHAR_TOK
- {
- $$ = new CPPExpression($1);
- }
- | REAL
- {
- $$ = new CPPExpression($1);
- }
- | string
- {
- $$ = new CPPExpression($1);
- }
- ;
- class_derivation_name:
- name
- {
- CPPType *type = $1->find_type(current_scope, global_scope, true);
- if (type == NULL) {
- type = CPPType::new_type(new CPPTBDType($1));
- }
- $$ = type;
- }
- | struct_keyword name
- {
- CPPType *type = $2->find_type(current_scope, global_scope, true, current_lexer);
- if (type == NULL) {
- type = CPPType::new_type(new CPPTBDType($2));
- }
- $$ = type;
- }
- | KW_TYPENAME name
- {
- $$ = CPPType::new_type(new CPPTBDType($2));
- }
- ;
- /*
- typedefname:
- TYPENAME_IDENTIFIER
- {
- CPPType *type = $1->find_type(current_scope, global_scope, false, current_lexer);
- assert(type != NULL);
- $$ = type;
- }
- | KW_TYPENAME name
- {
- $$ = CPPType::new_type(new CPPTBDType($2));
- }
- ;
- */
- name:
- IDENTIFIER
- {
- $$ = $1;
- }
- | TYPENAME_IDENTIFIER
- {
- $$ = $1;
- }
- ;
- string:
- STRING
- {
- $$ = $1;
- }
- | string STRING
- {
- $$ = $1 + $2;
- }
- ;
- empty:
- ;
|