| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261 |
- // Copyright (c) 2008 Roberto Raggi <[email protected]>
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #include "Bind.h"
- #include "AST.h"
- #include "TranslationUnit.h"
- #include "Control.h"
- #include "Names.h"
- #include "Symbols.h"
- #include "CoreTypes.h"
- #include "Literals.h"
- #include "Scope.h"
- #include "cppassert.h"
- #include <vector>
- #include <string>
- #include <memory>
- #include <algorithm>
- using namespace CPlusPlus;
- const int Bind::kMaxDepth(100);
- Bind::Bind(TranslationUnit *unit)
- : ASTVisitor(unit),
- _scope(0),
- _expression(0),
- _name(0),
- _declaratorId(0),
- _visibility(Symbol::Public),
- _objcVisibility(Symbol::Public),
- _methodKey(Function::NormalMethod),
- _skipFunctionBodies(false),
- _depth(0)
- {
- }
- bool Bind::skipFunctionBodies() const
- {
- return _skipFunctionBodies;
- }
- void Bind::setSkipFunctionBodies(bool skipFunctionBodies)
- {
- _skipFunctionBodies = skipFunctionBodies;
- }
- unsigned Bind::location(DeclaratorAST *ast, unsigned defaultLocation) const
- {
- if (! ast)
- return defaultLocation;
- else if (ast->core_declarator)
- return location(ast->core_declarator, defaultLocation);
- return ast->firstToken();
- }
- unsigned Bind::location(CoreDeclaratorAST *ast, unsigned defaultLocation) const
- {
- if (! ast)
- return defaultLocation;
- else if (NestedDeclaratorAST *nested = ast->asNestedDeclarator())
- return location(nested->declarator, defaultLocation);
- else if (DeclaratorIdAST *id = ast->asDeclaratorId())
- return location(id->name, defaultLocation);
- return ast->firstToken();
- }
- unsigned Bind::location(NameAST *name, unsigned defaultLocation) const
- {
- if (! name)
- return defaultLocation;
- else if (DestructorNameAST *dtor = name->asDestructorName())
- return location(dtor->unqualified_name, defaultLocation);
- else if (TemplateIdAST *templId = name->asTemplateId())
- return templId->identifier_token;
- else if (QualifiedNameAST *q = name->asQualifiedName()) {
- if (q->unqualified_name)
- return location(q->unqualified_name, defaultLocation);
- }
- return name->firstToken();
- }
- void Bind::setDeclSpecifiers(Symbol *symbol, const FullySpecifiedType &declSpecifiers)
- {
- if (! symbol)
- return;
- int storage = Symbol::NoStorage;
- if (declSpecifiers.isFriend())
- storage = Symbol::Friend;
- else if (declSpecifiers.isAuto())
- storage = Symbol::Auto;
- else if (declSpecifiers.isRegister())
- storage = Symbol::Register;
- else if (declSpecifiers.isStatic())
- storage = Symbol::Static;
- else if (declSpecifiers.isExtern())
- storage = Symbol::Extern;
- else if (declSpecifiers.isMutable())
- storage = Symbol::Mutable;
- else if (declSpecifiers.isTypedef())
- storage = Symbol::Typedef;
- symbol->setStorage(storage);
- if (Function *funTy = symbol->asFunction()) {
- if (declSpecifiers.isVirtual())
- funTy->setVirtual(true);
- }
- if (declSpecifiers.isDeprecated())
- symbol->setDeprecated(true);
- if (declSpecifiers.isUnavailable())
- symbol->setUnavailable(true);
- }
- Scope *Bind::switchScope(Scope *scope)
- {
- if (! scope)
- return _scope;
- std::swap(_scope, scope);
- return scope;
- }
- int Bind::switchVisibility(int visibility)
- {
- std::swap(_visibility, visibility);
- return visibility;
- }
- int Bind::switchObjCVisibility(int visibility)
- {
- std::swap(_objcVisibility, visibility);
- return visibility;
- }
- int Bind::switchMethodKey(int methodKey)
- {
- std::swap(_methodKey, methodKey);
- return methodKey;
- }
- void Bind::operator()(TranslationUnitAST *ast, Namespace *globalNamespace)
- {
- Scope *previousScope = switchScope(globalNamespace);
- translationUnit(ast);
- (void) switchScope(previousScope);
- }
- void Bind::operator()(DeclarationAST *ast, Scope *scope)
- {
- Scope *previousScope = switchScope(scope);
- declaration(ast);
- (void) switchScope(previousScope);
- }
- void Bind::operator()(StatementAST *ast, Scope *scope)
- {
- Scope *previousScope = switchScope(scope);
- statement(ast);
- (void) switchScope(previousScope);
- }
- FullySpecifiedType Bind::operator()(ExpressionAST *ast, Scope *scope)
- {
- Scope *previousScope = switchScope(scope);
- FullySpecifiedType ty = expression(ast);
- (void) switchScope(previousScope);
- return ty;
- }
- FullySpecifiedType Bind::operator()(NewTypeIdAST *ast, Scope *scope)
- {
- Scope *previousScope = switchScope(scope);
- FullySpecifiedType ty = newTypeId(ast);
- (void) switchScope(previousScope);
- return ty;
- }
- void Bind::statement(StatementAST *ast)
- {
- accept(ast);
- }
- Bind::ExpressionTy Bind::expression(ExpressionAST *ast)
- {
- ExpressionTy value = ExpressionTy();
- std::swap(_expression, value);
- accept(ast);
- std::swap(_expression, value);
- return value;
- }
- void Bind::declaration(DeclarationAST *ast)
- {
- accept(ast);
- }
- const Name *Bind::name(NameAST *ast)
- {
- const Name *value = 0;
- std::swap(_name, value);
- accept(ast);
- std::swap(_name, value);
- return value;
- }
- FullySpecifiedType Bind::specifier(SpecifierAST *ast, const FullySpecifiedType &init)
- {
- FullySpecifiedType value = init;
- std::swap(_type, value);
- accept(ast);
- std::swap(_type, value);
- return value;
- }
- FullySpecifiedType Bind::ptrOperator(PtrOperatorAST *ast, const FullySpecifiedType &init)
- {
- FullySpecifiedType value = init;
- std::swap(_type, value);
- accept(ast);
- std::swap(_type, value);
- return value;
- }
- FullySpecifiedType Bind::coreDeclarator(CoreDeclaratorAST *ast, const FullySpecifiedType &init)
- {
- FullySpecifiedType value = init;
- std::swap(_type, value);
- accept(ast);
- std::swap(_type, value);
- return value;
- }
- FullySpecifiedType Bind::postfixDeclarator(PostfixDeclaratorAST *ast, const FullySpecifiedType &init)
- {
- FullySpecifiedType value = init;
- std::swap(_type, value);
- accept(ast);
- std::swap(_type, value);
- return value;
- }
- bool Bind::preVisit(AST *)
- {
- ++_depth;
- if (_depth > kMaxDepth)
- return false;
- return true;
- }
- void Bind::postVisit(AST *)
- {
- --_depth;
- }
- // AST
- bool Bind::visit(ObjCSelectorArgumentAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- const Name *Bind::objCSelectorArgument(ObjCSelectorArgumentAST *ast, bool *hasArg)
- {
- if (! (ast && ast->name_token))
- return 0;
- if (ast->colon_token)
- *hasArg = true;
- return identifier(ast->name_token);
- }
- bool Bind::visit(GnuAttributeAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::attribute(GnuAttributeAST *ast)
- {
- if (! ast)
- return;
- // unsigned identifier_token = ast->identifier_token;
- if (const Identifier *id = identifier(ast->identifier_token)) {
- if (id == control()->deprecatedId())
- _type.setDeprecated(true);
- else if (id == control()->unavailableId())
- _type.setUnavailable(true);
- }
- // unsigned lparen_token = ast->lparen_token;
- // unsigned tag_token = ast->tag_token;
- for (ExpressionListAST *it = ast->expression_list; it; it = it->next) {
- ExpressionTy value = this->expression(it->value);
- }
- // unsigned rparen_token = ast->rparen_token;
- }
- bool Bind::visit(DeclaratorAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- FullySpecifiedType Bind::declarator(DeclaratorAST *ast, const FullySpecifiedType &init, DeclaratorIdAST **declaratorId)
- {
- FullySpecifiedType type = init;
- if (! ast)
- return type;
- std::swap(_declaratorId, declaratorId);
- bool isAuto = false;
- const bool cxx11Enabled = translationUnit()->languageFeatures().cxx11Enabled;
- if (cxx11Enabled)
- isAuto = type.isAuto();
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- if (type.isAuto())
- isAuto = true;
- }
- for (PtrOperatorListAST *it = ast->ptr_operator_list; it; it = it->next) {
- type = this->ptrOperator(it->value, type);
- }
- for (PostfixDeclaratorListAST *it = ast->postfix_declarator_list; it; it = it->next) {
- type = this->postfixDeclarator(it->value, type);
- }
- type = this->coreDeclarator(ast->core_declarator, type);
- for (SpecifierListAST *it = ast->post_attribute_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- if (type.isAuto())
- isAuto = true;
- }
- if (!type->isFunctionType()) {
- ExpressionTy initializer = this->expression(ast->initializer);
- if (cxx11Enabled && isAuto) {
- type = initializer;
- type.setAuto(true);
- }
- }
- std::swap(_declaratorId, declaratorId);
- return type;
- }
- bool Bind::visit(QtPropertyDeclarationItemAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- bool Bind::visit(QtInterfaceNameAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::qtInterfaceName(QtInterfaceNameAST *ast)
- {
- if (! ast)
- return;
- /*const Name *interface_name =*/ this->name(ast->interface_name);
- for (NameListAST *it = ast->constraint_list; it; it = it->next) {
- /*const Name *value =*/ this->name(it->value);
- }
- }
- bool Bind::visit(BaseSpecifierAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::baseSpecifier(BaseSpecifierAST *ast, unsigned colon_token, Class *klass)
- {
- if (! ast)
- return;
- unsigned sourceLocation = location(ast->name, ast->firstToken());
- if (! sourceLocation)
- sourceLocation = std::max(colon_token, klass->sourceLocation());
- const Name *baseClassName = this->name(ast->name);
- BaseClass *baseClass = control()->newBaseClass(sourceLocation, baseClassName);
- if (ast->virtual_token)
- baseClass->setVirtual(true);
- if (ast->access_specifier_token) {
- const int visibility = visibilityForAccessSpecifier(tokenKind(ast->access_specifier_token));
- baseClass->setVisibility(visibility); // ### well, not exactly.
- }
- klass->addBaseClass(baseClass);
- ast->symbol = baseClass;
- }
- bool Bind::visit(CtorInitializerAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::ctorInitializer(CtorInitializerAST *ast, Function *fun)
- {
- if (! ast)
- return;
- // unsigned colon_token = ast->colon_token;
- for (MemInitializerListAST *it = ast->member_initializer_list; it; it = it->next) {
- this->memInitializer(it->value, fun);
- }
- // unsigned dot_dot_dot_token = ast->dot_dot_dot_token;
- }
- bool Bind::visit(EnumeratorAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::enumerator(EnumeratorAST *ast, Enum *symbol)
- {
- (void) symbol;
- if (! ast)
- return;
- // unsigned identifier_token = ast->identifier_token;
- // unsigned equal_token = ast->equal_token;
- /*ExpressionTy expression =*/ this->expression(ast->expression);
- if (ast->identifier_token) {
- const Name *name = identifier(ast->identifier_token);
- EnumeratorDeclaration *e = control()->newEnumeratorDeclaration(ast->identifier_token, name);
- e->setType(control()->integerType(IntegerType::Int)); // ### introduce IntegerType::Enumerator
- if (ExpressionAST *expr = ast->expression)
- e->setConstantValue(asStringLiteral(expr->firstToken(), expr->lastToken()));
- symbol->addMember(e);
- }
- }
- bool Bind::visit(DynamicExceptionSpecificationAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- FullySpecifiedType Bind::exceptionSpecification(ExceptionSpecificationAST *ast, const FullySpecifiedType &init)
- {
- FullySpecifiedType type = init;
- if (! ast)
- return type;
- if (DynamicExceptionSpecificationAST *dyn = ast->asDynamicExceptionSpecification()) {
- // unsigned throw_token = ast->throw_token;
- // unsigned lparen_token = ast->lparen_token;
- // unsigned dot_dot_dot_token = ast->dot_dot_dot_token;
- for (ExpressionListAST *it = dyn->type_id_list; it; it = it->next) {
- /*ExpressionTy value =*/ this->expression(it->value);
- }
- } else if (NoExceptSpecificationAST *no = ast->asNoExceptSpecification()) {
- /*ExpressionTy value =*/ this->expression(no->expression);
- }
- // unsigned rparen_token = ast->rparen_token;
- return type;
- }
- bool Bind::visit(MemInitializerAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::memInitializer(MemInitializerAST *ast, Function *fun)
- {
- if (! ast)
- return;
- /*const Name *name =*/ this->name(ast->name);
- Scope *previousScope = switchScope(fun);
- this->expression(ast->expression);
- (void) switchScope(previousScope);
- }
- bool Bind::visit(NestedNameSpecifierAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- const Name *Bind::nestedNameSpecifier(NestedNameSpecifierAST *ast)
- {
- if (! ast)
- return 0;
- const Name *class_or_namespace_name = this->name(ast->class_or_namespace_name);
- return class_or_namespace_name;
- }
- bool Bind::visit(ExpressionListParenAST *ast)
- {
- // unsigned lparen_token = ast->lparen_token;
- for (ExpressionListAST *it = ast->expression_list; it; it = it->next) {
- /*ExpressionTy value =*/ this->expression(it->value);
- }
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- void Bind::newPlacement(ExpressionListParenAST *ast)
- {
- if (! ast)
- return;
- // unsigned lparen_token = ast->lparen_token;
- for (ExpressionListAST *it = ast->expression_list; it; it = it->next) {
- ExpressionTy value = this->expression(it->value);
- }
- // unsigned rparen_token = ast->rparen_token;
- }
- bool Bind::visit(NewArrayDeclaratorAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- FullySpecifiedType Bind::newArrayDeclarator(NewArrayDeclaratorAST *ast, const FullySpecifiedType &init)
- {
- FullySpecifiedType type = init;
- if (! ast)
- return type;
- // unsigned lbracket_token = ast->lbracket_token;
- ExpressionTy expression = this->expression(ast->expression);
- // unsigned rbracket_token = ast->rbracket_token;
- return type;
- }
- bool Bind::visit(NewTypeIdAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- FullySpecifiedType Bind::newTypeId(NewTypeIdAST *ast)
- {
- FullySpecifiedType type;
- if (! ast)
- return type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- for (PtrOperatorListAST *it = ast->ptr_operator_list; it; it = it->next) {
- type = this->ptrOperator(it->value, type);
- }
- for (NewArrayDeclaratorListAST *it = ast->new_array_declarator_list; it; it = it->next) {
- type = this->newArrayDeclarator(it->value, type);
- }
- return type;
- }
- bool Bind::visit(OperatorAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- OperatorNameId::Kind Bind::cppOperator(OperatorAST *ast)
- {
- OperatorNameId::Kind kind = OperatorNameId::InvalidOp;
- if (! ast)
- return kind;
- // unsigned op_token = ast->op_token;
- // unsigned open_token = ast->open_token;
- // unsigned close_token = ast->close_token;
- switch (tokenKind(ast->op_token)) {
- case T_NEW:
- if (ast->open_token)
- kind = OperatorNameId::NewArrayOp;
- else
- kind = OperatorNameId::NewOp;
- break;
- case T_DELETE:
- if (ast->open_token)
- kind = OperatorNameId::DeleteArrayOp;
- else
- kind = OperatorNameId::DeleteOp;
- break;
- case T_PLUS:
- kind = OperatorNameId::PlusOp;
- break;
- case T_MINUS:
- kind = OperatorNameId::MinusOp;
- break;
- case T_STAR:
- kind = OperatorNameId::StarOp;
- break;
- case T_SLASH:
- kind = OperatorNameId::SlashOp;
- break;
- case T_PERCENT:
- kind = OperatorNameId::PercentOp;
- break;
- case T_CARET:
- kind = OperatorNameId::CaretOp;
- break;
- case T_AMPER:
- kind = OperatorNameId::AmpOp;
- break;
- case T_PIPE:
- kind = OperatorNameId::PipeOp;
- break;
- case T_TILDE:
- kind = OperatorNameId::TildeOp;
- break;
- case T_EXCLAIM:
- kind = OperatorNameId::ExclaimOp;
- break;
- case T_EQUAL:
- kind = OperatorNameId::EqualOp;
- break;
- case T_LESS:
- kind = OperatorNameId::LessOp;
- break;
- case T_GREATER:
- kind = OperatorNameId::GreaterOp;
- break;
- case T_PLUS_EQUAL:
- kind = OperatorNameId::PlusEqualOp;
- break;
- case T_MINUS_EQUAL:
- kind = OperatorNameId::MinusEqualOp;
- break;
- case T_STAR_EQUAL:
- kind = OperatorNameId::StarEqualOp;
- break;
- case T_SLASH_EQUAL:
- kind = OperatorNameId::SlashEqualOp;
- break;
- case T_PERCENT_EQUAL:
- kind = OperatorNameId::PercentEqualOp;
- break;
- case T_CARET_EQUAL:
- kind = OperatorNameId::CaretEqualOp;
- break;
- case T_AMPER_EQUAL:
- kind = OperatorNameId::AmpEqualOp;
- break;
- case T_PIPE_EQUAL:
- kind = OperatorNameId::PipeEqualOp;
- break;
- case T_LESS_LESS:
- kind = OperatorNameId::LessLessOp;
- break;
- case T_GREATER_GREATER:
- kind = OperatorNameId::GreaterGreaterOp;
- break;
- case T_LESS_LESS_EQUAL:
- kind = OperatorNameId::LessLessEqualOp;
- break;
- case T_GREATER_GREATER_EQUAL:
- kind = OperatorNameId::GreaterGreaterEqualOp;
- break;
- case T_EQUAL_EQUAL:
- kind = OperatorNameId::EqualEqualOp;
- break;
- case T_EXCLAIM_EQUAL:
- kind = OperatorNameId::ExclaimEqualOp;
- break;
- case T_LESS_EQUAL:
- kind = OperatorNameId::LessEqualOp;
- break;
- case T_GREATER_EQUAL:
- kind = OperatorNameId::GreaterEqualOp;
- break;
- case T_AMPER_AMPER:
- kind = OperatorNameId::AmpAmpOp;
- break;
- case T_PIPE_PIPE:
- kind = OperatorNameId::PipePipeOp;
- break;
- case T_PLUS_PLUS:
- kind = OperatorNameId::PlusPlusOp;
- break;
- case T_MINUS_MINUS:
- kind = OperatorNameId::MinusMinusOp;
- break;
- case T_COMMA:
- kind = OperatorNameId::CommaOp;
- break;
- case T_ARROW_STAR:
- kind = OperatorNameId::ArrowStarOp;
- break;
- case T_ARROW:
- kind = OperatorNameId::ArrowOp;
- break;
- case T_LPAREN:
- kind = OperatorNameId::FunctionCallOp;
- break;
- case T_LBRACKET:
- kind = OperatorNameId::ArrayAccessOp;
- break;
- default:
- kind = OperatorNameId::InvalidOp;
- } // switch
- return kind;
- }
- bool Bind::visit(ParameterDeclarationClauseAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::parameterDeclarationClause(ParameterDeclarationClauseAST *ast, unsigned lparen_token, Function *fun)
- {
- if (! ast)
- return;
- if (! fun) {
- translationUnit()->warning(lparen_token, "undefined function");
- return;
- }
- Scope *previousScope = switchScope(fun);
- for (ParameterDeclarationListAST *it = ast->parameter_declaration_list; it; it = it->next) {
- this->declaration(it->value);
- }
- if (ast->dot_dot_dot_token)
- fun->setVariadic(true);
- (void) switchScope(previousScope);
- }
- bool Bind::visit(TranslationUnitAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::translationUnit(TranslationUnitAST *ast)
- {
- if (! ast)
- return;
- for (DeclarationListAST *it = ast->declaration_list; it; it = it->next) {
- this->declaration(it->value);
- }
- }
- bool Bind::visit(ObjCProtocolRefsAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::objCProtocolRefs(ObjCProtocolRefsAST *ast, Symbol *objcClassOrProtocol)
- {
- if (! ast)
- return;
- for (NameListAST *it = ast->identifier_list; it; it = it->next) {
- const Name *protocolName = this->name(it->value);
- ObjCBaseProtocol *baseProtocol = control()->newObjCBaseProtocol(it->value->firstToken(), protocolName);
- if (ObjCClass *klass = objcClassOrProtocol->asObjCClass())
- klass->addProtocol(baseProtocol);
- else if (ObjCProtocol *proto = objcClassOrProtocol->asObjCProtocol())
- proto->addProtocol(baseProtocol);
- }
- }
- bool Bind::visit(ObjCMessageArgumentAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::objCMessageArgument(ObjCMessageArgumentAST *ast)
- {
- if (! ast)
- return;
- ExpressionTy parameter_value_expression = this->expression(ast->parameter_value_expression);
- }
- bool Bind::visit(ObjCTypeNameAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- FullySpecifiedType Bind::objCTypeName(ObjCTypeNameAST *ast)
- {
- if (! ast)
- return FullySpecifiedType();
- // unsigned type_qualifier_token = ast->type_qualifier_token;
- ExpressionTy type_id = this->expression(ast->type_id);
- return type_id;
- }
- bool Bind::visit(ObjCInstanceVariablesDeclarationAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::objCInstanceVariablesDeclaration(ObjCInstanceVariablesDeclarationAST *ast, ObjCClass *klass)
- {
- (void) klass;
- if (! ast)
- return;
- // unsigned lbrace_token = ast->lbrace_token;
- for (DeclarationListAST *it = ast->instance_variable_list; it; it = it->next) {
- this->declaration(it->value);
- }
- // unsigned rbrace_token = ast->rbrace_token;
- }
- bool Bind::visit(ObjCPropertyAttributeAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::objCPropertyAttribute(ObjCPropertyAttributeAST *ast)
- {
- if (! ast)
- return;
- // unsigned attribute_identifier_token = ast->attribute_identifier_token;
- // unsigned equals_token = ast->equals_token;
- /*const Name *method_selector =*/ this->name(ast->method_selector);
- }
- bool Bind::visit(ObjCMessageArgumentDeclarationAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::objCMessageArgumentDeclaration(ObjCMessageArgumentDeclarationAST *ast, ObjCMethod *method)
- {
- if (! ast)
- return;
- FullySpecifiedType type = this->objCTypeName(ast->type_name);
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- const Name *param_name = this->name(ast->param_name);
- Argument *arg = control()->newArgument(location(ast->param_name, ast->firstToken()), param_name);
- arg->setType(type);
- ast->argument = arg;
- method->addMember(arg);
- }
- bool Bind::visit(ObjCMethodPrototypeAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- ObjCMethod *Bind::objCMethodPrototype(ObjCMethodPrototypeAST *ast)
- {
- if (! ast)
- return 0;
- // unsigned method_type_token = ast->method_type_token;
- FullySpecifiedType returnType = this->objCTypeName(ast->type_name);
- const Name *selector = this->name(ast->selector);
- const unsigned sourceLocation = location(ast->selector, ast->firstToken());
- ObjCMethod *method = control()->newObjCMethod(sourceLocation, selector);
- // ### set the offsets
- method->setReturnType(returnType);
- if (isObjCClassMethod(tokenKind(ast->method_type_token)))
- method->setStorage(Symbol::Static);
- method->setVisibility(_objcVisibility);
- ast->symbol = method;
- Scope *previousScope = switchScope(method);
- for (ObjCMessageArgumentDeclarationListAST *it = ast->argument_list; it; it = it->next) {
- this->objCMessageArgumentDeclaration(it->value, method);
- }
- (void) switchScope(previousScope);
- if (ast->dot_dot_dot_token)
- method->setVariadic(true);
- FullySpecifiedType specifiers;
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- specifiers = this->specifier(it->value, specifiers);
- }
- //setDeclSpecifiers(method, specifiers);
- return method;
- }
- bool Bind::visit(ObjCSynthesizedPropertyAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::objCSynthesizedProperty(ObjCSynthesizedPropertyAST *ast)
- {
- if (! ast)
- return;
- // unsigned property_identifier_token = ast->property_identifier_token;
- // unsigned equals_token = ast->equals_token;
- // unsigned alias_identifier_token = ast->alias_identifier_token;
- }
- bool Bind::visit(LambdaIntroducerAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::lambdaIntroducer(LambdaIntroducerAST *ast)
- {
- if (! ast)
- return;
- // unsigned lbracket_token = ast->lbracket_token;
- this->lambdaCapture(ast->lambda_capture);
- // unsigned rbracket_token = ast->rbracket_token;
- }
- bool Bind::visit(LambdaCaptureAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::lambdaCapture(LambdaCaptureAST *ast)
- {
- if (! ast)
- return;
- // unsigned default_capture_token = ast->default_capture_token;
- for (CaptureListAST *it = ast->capture_list; it; it = it->next) {
- this->capture(it->value);
- }
- }
- bool Bind::visit(CaptureAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- void Bind::capture(CaptureAST *ast)
- {
- if (! ast)
- return;
- name(ast->identifier);
- }
- bool Bind::visit(LambdaDeclaratorAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- Function *Bind::lambdaDeclarator(LambdaDeclaratorAST *ast)
- {
- if (! ast)
- return 0;
- Function *fun = control()->newFunction(0, 0);
- fun->setStartOffset(tokenAt(ast->firstToken()).utf16charsBegin());
- fun->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- FullySpecifiedType type;
- if (ast->trailing_return_type)
- type = this->trailingReturnType(ast->trailing_return_type, type);
- ast->symbol = fun;
- // unsigned lparen_token = ast->lparen_token;
- this->parameterDeclarationClause(ast->parameter_declaration_clause, ast->lparen_token, fun);
- // unsigned rparen_token = ast->rparen_token;
- for (SpecifierListAST *it = ast->attributes; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- // unsigned mutable_token = ast->mutable_token;
- type = this->exceptionSpecification(ast->exception_specification, type);
- if (!type.isValid())
- type.setType(control()->voidType());
- fun->setReturnType(type);
- return fun;
- }
- bool Bind::visit(TrailingReturnTypeAST *ast)
- {
- (void) ast;
- CPP_CHECK(!"unreachable");
- return false;
- }
- FullySpecifiedType Bind::trailingReturnType(TrailingReturnTypeAST *ast, const FullySpecifiedType &init)
- {
- FullySpecifiedType type = init;
- if (! ast)
- return type;
- // unsigned arrow_token = ast->arrow_token;
- for (SpecifierListAST *it = ast->attributes; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- return type;
- }
- const StringLiteral *Bind::asStringLiteral(unsigned firstToken, unsigned lastToken)
- {
- std::string buffer;
- for (unsigned index = firstToken; index != lastToken; ++index) {
- const Token &tk = tokenAt(index);
- if (index != firstToken && (tk.whitespace() || tk.newline()))
- buffer += ' ';
- buffer += tk.spell();
- }
- return control()->stringLiteral(buffer.c_str(), unsigned(buffer.size()));
- }
- // StatementAST
- bool Bind::visit(QtMemberDeclarationAST *ast)
- {
- const Name *name = 0;
- if (tokenKind(ast->q_token) == T_Q_D)
- name = control()->identifier("d");
- else
- name = control()->identifier("q");
- FullySpecifiedType declTy = this->expression(ast->type_id);
- if (tokenKind(ast->q_token) == T_Q_D) {
- if (NamedType *namedTy = declTy->asNamedType()) {
- if (const Identifier *nameId = namedTy->name()->asNameId()) {
- std::string privateClass;
- privateClass += nameId->identifier()->chars();
- privateClass += "Private";
- const Name *privName = control()->identifier(privateClass.c_str(), unsigned(privateClass.size()));
- declTy.setType(control()->namedType(privName));
- }
- }
- }
- Declaration *symbol = control()->newDeclaration(/*generated*/ 0, name);
- symbol->setType(control()->pointerType(declTy));
- _scope->addMember(symbol);
- return false;
- }
- bool Bind::visit(CaseStatementAST *ast)
- {
- ExpressionTy expression = this->expression(ast->expression);
- this->statement(ast->statement);
- return false;
- }
- bool Bind::visit(CompoundStatementAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- unsigned startScopeToken = ast->lbrace_token ? ast->lbrace_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- ast->symbol = block;
- _scope->addMember(block);
- Scope *previousScope = switchScope(block);
- for (StatementListAST *it = ast->statement_list; it; it = it->next) {
- this->statement(it->value);
- }
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(DeclarationStatementAST *ast)
- {
- this->declaration(ast->declaration);
- return false;
- }
- bool Bind::visit(DoStatementAST *ast)
- {
- this->statement(ast->statement);
- ExpressionTy expression = this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(ExpressionOrDeclarationStatementAST *ast)
- {
- this->statement(ast->expression);
- this->statement(ast->declaration);
- return false;
- }
- bool Bind::visit(ExpressionStatementAST *ast)
- {
- ExpressionTy expression = this->expression(ast->expression);
- // unsigned semicolon_token = ast->semicolon_token;
- return false;
- }
- bool Bind::visit(ForeachStatementAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- const unsigned startScopeToken = ast->lparen_token ? ast->lparen_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken()).utf16charsBegin());
- _scope->addMember(block);
- ast->symbol = block;
- Scope *previousScope = switchScope(block);
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- const StringLiteral *initializer = 0;
- if (type.isAuto() && translationUnit()->languageFeatures().cxx11Enabled) {
- ExpressionTy exprType = this->expression(ast->expression);
- ArrayType* arrayType = 0;
- arrayType = exprType->asArrayType();
- if (arrayType != 0)
- type = arrayType->elementType();
- else if (ast->expression != 0) {
- unsigned startOfExpression = ast->expression->firstToken();
- unsigned endOfExpression = ast->expression->lastToken();
- const StringLiteral *sl = asStringLiteral(startOfExpression, endOfExpression);
- const std::string buff = std::string("*") + sl->chars() + ".begin()";
- initializer = control()->stringLiteral(buff.c_str(), unsigned(buff.size()));
- }
- }
- if (declaratorId && declaratorId->name) {
- unsigned sourceLocation = location(declaratorId->name, ast->firstToken());
- Declaration *decl = control()->newDeclaration(sourceLocation, declaratorId->name->name);
- decl->setType(type);
- decl->setInitializer(initializer);
- block->addMember(decl);
- }
- /*ExpressionTy initializer =*/ this->expression(ast->initializer);
- /*ExpressionTy expression =*/ this->expression(ast->expression);
- this->statement(ast->statement);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(RangeBasedForStatementAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- const unsigned startScopeToken = ast->lparen_token ? ast->lparen_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken()).utf16charsBegin());
- _scope->addMember(block);
- ast->symbol = block;
- Scope *previousScope = switchScope(block);
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- const StringLiteral *initializer = 0;
- if (type.isAuto() && translationUnit()->languageFeatures().cxx11Enabled) {
- ExpressionTy exprType = this->expression(ast->expression);
- ArrayType* arrayType = 0;
- arrayType = exprType->asArrayType();
- if (arrayType != 0)
- type = arrayType->elementType();
- else if (ast->expression != 0) {
- unsigned startOfExpression = ast->expression->firstToken();
- unsigned endOfExpression = ast->expression->lastToken();
- const StringLiteral *sl = asStringLiteral(startOfExpression, endOfExpression);
- const std::string buff = std::string("*") + sl->chars() + ".begin()";
- initializer = control()->stringLiteral(buff.c_str(), unsigned(buff.size()));
- }
- }
- if (declaratorId && declaratorId->name) {
- unsigned sourceLocation = location(declaratorId->name, ast->firstToken());
- Declaration *decl = control()->newDeclaration(sourceLocation, declaratorId->name->name);
- decl->setType(type);
- decl->setInitializer(initializer);
- block->addMember(decl);
- }
- /*ExpressionTy expression =*/ this->expression(ast->expression);
- this->statement(ast->statement);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(ForStatementAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- const unsigned startScopeToken = ast->lparen_token ? ast->lparen_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken()).utf16charsBegin());
- _scope->addMember(block);
- ast->symbol = block;
- Scope *previousScope = switchScope(block);
- this->statement(ast->initializer);
- /*ExpressionTy condition =*/ this->expression(ast->condition);
- // unsigned semicolon_token = ast->semicolon_token;
- /*ExpressionTy expression =*/ this->expression(ast->expression);
- // unsigned rparen_token = ast->rparen_token;
- this->statement(ast->statement);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(IfStatementAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- const unsigned startScopeToken = ast->lparen_token ? ast->lparen_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken()).utf16charsBegin());
- _scope->addMember(block);
- ast->symbol = block;
- Scope *previousScope = switchScope(block);
- /*ExpressionTy condition =*/ this->expression(ast->condition);
- this->statement(ast->statement);
- this->statement(ast->else_statement);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(LabeledStatementAST *ast)
- {
- // unsigned label_token = ast->label_token;
- // unsigned colon_token = ast->colon_token;
- this->statement(ast->statement);
- return false;
- }
- bool Bind::visit(BreakStatementAST *ast)
- {
- (void) ast;
- // unsigned break_token = ast->break_token;
- // unsigned semicolon_token = ast->semicolon_token;
- return false;
- }
- bool Bind::visit(ContinueStatementAST *ast)
- {
- (void) ast;
- // unsigned continue_token = ast->continue_token;
- // unsigned semicolon_token = ast->semicolon_token;
- return false;
- }
- bool Bind::visit(GotoStatementAST *ast)
- {
- (void) ast;
- // unsigned goto_token = ast->goto_token;
- // unsigned identifier_token = ast->identifier_token;
- // unsigned semicolon_token = ast->semicolon_token;
- return false;
- }
- bool Bind::visit(ReturnStatementAST *ast)
- {
- ExpressionTy expression = this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(SwitchStatementAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- const unsigned startScopeToken = ast->lparen_token ? ast->lparen_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken()).utf16charsBegin());
- _scope->addMember(block);
- ast->symbol = block;
- Scope *previousScope = switchScope(block);
- /*ExpressionTy condition =*/ this->expression(ast->condition);
- this->statement(ast->statement);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(TryBlockStatementAST *ast)
- {
- // unsigned try_token = ast->try_token;
- this->statement(ast->statement);
- for (CatchClauseListAST *it = ast->catch_clause_list; it; it = it->next) {
- this->statement(it->value);
- }
- return false;
- }
- bool Bind::visit(CatchClauseAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- const unsigned startScopeToken = ast->lparen_token ? ast->lparen_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken()).utf16charsBegin());
- _scope->addMember(block);
- ast->symbol = block;
- Scope *previousScope = switchScope(block);
- this->declaration(ast->exception_declaration);
- // unsigned rparen_token = ast->rparen_token;
- this->statement(ast->statement);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(WhileStatementAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- const unsigned startScopeToken = ast->lparen_token ? ast->lparen_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken()).utf16charsBegin());
- _scope->addMember(block);
- ast->symbol = block;
- Scope *previousScope = switchScope(block);
- /*ExpressionTy condition =*/ this->expression(ast->condition);
- this->statement(ast->statement);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(ObjCFastEnumerationAST *ast)
- {
- Block *block = control()->newBlock(ast->firstToken());
- const unsigned startScopeToken = ast->lparen_token ? ast->lparen_token : ast->firstToken();
- block->setStartOffset(tokenAt(startScopeToken).utf16charsEnd());
- block->setEndOffset(tokenAt(ast->lastToken()).utf16charsBegin());
- _scope->addMember(block);
- ast->symbol = block;
- Scope *previousScope = switchScope(block);
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- if (declaratorId && declaratorId->name) {
- unsigned sourceLocation = location(declaratorId->name, ast->firstToken());
- Declaration *decl = control()->newDeclaration(sourceLocation, declaratorId->name->name);
- decl->setType(type);
- block->addMember(decl);
- }
- /*ExpressionTy initializer =*/ this->expression(ast->initializer);
- /*ExpressionTy fast_enumeratable_expression =*/ this->expression(ast->fast_enumeratable_expression);
- this->statement(ast->statement);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(ObjCSynchronizedStatementAST *ast)
- {
- // unsigned synchronized_token = ast->synchronized_token;
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy synchronized_object = this->expression(ast->synchronized_object);
- // unsigned rparen_token = ast->rparen_token;
- this->statement(ast->statement);
- return false;
- }
- // ExpressionAST
- bool Bind::visit(IdExpressionAST *ast)
- {
- /*const Name *name =*/ this->name(ast->name);
- return false;
- }
- bool Bind::visit(CompoundExpressionAST *ast)
- {
- // unsigned lparen_token = ast->lparen_token;
- this->statement(ast->statement);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(CompoundLiteralAST *ast)
- {
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy type_id = this->expression(ast->type_id);
- // unsigned rparen_token = ast->rparen_token;
- ExpressionTy initializer = this->expression(ast->initializer);
- return false;
- }
- bool Bind::visit(QtMethodAST *ast)
- {
- // unsigned method_token = ast->method_token;
- // unsigned lparen_token = ast->lparen_token;
- FullySpecifiedType type;
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(BinaryExpressionAST *ast)
- {
- ExpressionTy left_expression = this->expression(ast->left_expression);
- // unsigned binary_op_token = ast->binary_op_token;
- ExpressionTy right_expression = this->expression(ast->right_expression);
- return false;
- }
- bool Bind::visit(CastExpressionAST *ast)
- {
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy type_id = this->expression(ast->type_id);
- // unsigned rparen_token = ast->rparen_token;
- ExpressionTy expression = this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(ConditionAST *ast)
- {
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- if (declaratorId && declaratorId->name) {
- unsigned sourceLocation = location(declaratorId->name, ast->firstToken());
- Declaration *decl = control()->newDeclaration(sourceLocation, declaratorId->name->name);
- decl->setType(type);
- _scope->addMember(decl);
- }
- return false;
- }
- bool Bind::visit(ConditionalExpressionAST *ast)
- {
- ExpressionTy condition = this->expression(ast->condition);
- // unsigned question_token = ast->question_token;
- ExpressionTy left_expression = this->expression(ast->left_expression);
- // unsigned colon_token = ast->colon_token;
- ExpressionTy right_expression = this->expression(ast->right_expression);
- return false;
- }
- bool Bind::visit(CppCastExpressionAST *ast)
- {
- // unsigned cast_token = ast->cast_token;
- // unsigned less_token = ast->less_token;
- ExpressionTy type_id = this->expression(ast->type_id);
- // unsigned greater_token = ast->greater_token;
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy expression = this->expression(ast->expression);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(DeleteExpressionAST *ast)
- {
- // unsigned scope_token = ast->scope_token;
- // unsigned delete_token = ast->delete_token;
- // unsigned lbracket_token = ast->lbracket_token;
- // unsigned rbracket_token = ast->rbracket_token;
- ExpressionTy expression = this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(ArrayInitializerAST *ast)
- {
- // unsigned lbrace_token = ast->lbrace_token;
- for (ExpressionListAST *it = ast->expression_list; it; it = it->next) {
- ExpressionTy value = this->expression(it->value);
- }
- // unsigned rbrace_token = ast->rbrace_token;
- return false;
- }
- bool Bind::visit(NewExpressionAST *ast)
- {
- // unsigned scope_token = ast->scope_token;
- // unsigned new_token = ast->new_token;
- this->newPlacement(ast->new_placement);
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy type_id = this->expression(ast->type_id);
- // unsigned rparen_token = ast->rparen_token;
- this->newTypeId(ast->new_type_id);
- this->expression(ast->new_initializer);
- return false;
- }
- bool Bind::visit(TypeidExpressionAST *ast)
- {
- // unsigned typeid_token = ast->typeid_token;
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy expression = this->expression(ast->expression);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(TypenameCallExpressionAST *ast)
- {
- // unsigned typename_token = ast->typename_token;
- /*const Name *name =*/ this->name(ast->name);
- this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(TypeConstructorCallAST *ast)
- {
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(SizeofExpressionAST *ast)
- {
- // unsigned sizeof_token = ast->sizeof_token;
- // unsigned dot_dot_dot_token = ast->dot_dot_dot_token;
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy expression = this->expression(ast->expression);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(PointerLiteralAST *ast)
- {
- (void) ast;
- // unsigned literal_token = ast->literal_token;
- return false;
- }
- bool Bind::visit(NumericLiteralAST *ast)
- {
- (void) ast;
- // unsigned literal_token = ast->literal_token;
- return false;
- }
- bool Bind::visit(BoolLiteralAST *ast)
- {
- (void) ast;
- // unsigned literal_token = ast->literal_token;
- return false;
- }
- bool Bind::visit(ThisExpressionAST *ast)
- {
- (void) ast;
- // unsigned this_token = ast->this_token;
- return false;
- }
- bool Bind::visit(NestedExpressionAST *ast)
- {
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy expression = this->expression(ast->expression);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(StringLiteralAST *ast)
- {
- // unsigned literal_token = ast->literal_token;
- ExpressionTy next = this->expression(ast->next);
- return false;
- }
- bool Bind::visit(ThrowExpressionAST *ast)
- {
- // unsigned throw_token = ast->throw_token;
- ExpressionTy expression = this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(TypeIdAST *ast)
- {
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- _expression = type;
- return false;
- }
- bool Bind::visit(UnaryExpressionAST *ast)
- {
- // unsigned unary_op_token = ast->unary_op_token;
- ExpressionTy expression = this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(ObjCMessageExpressionAST *ast)
- {
- // unsigned lbracket_token = ast->lbracket_token;
- /*ExpressionTy receiver_expression =*/ this->expression(ast->receiver_expression);
- /*const Name *selector =*/ this->name(ast->selector);
- for (ObjCMessageArgumentListAST *it = ast->argument_list; it; it = it->next) {
- this->objCMessageArgument(it->value);
- }
- // unsigned rbracket_token = ast->rbracket_token;
- return false;
- }
- bool Bind::visit(ObjCProtocolExpressionAST *ast)
- {
- (void) ast;
- // unsigned protocol_token = ast->protocol_token;
- // unsigned lparen_token = ast->lparen_token;
- // unsigned identifier_token = ast->identifier_token;
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(ObjCEncodeExpressionAST *ast)
- {
- // unsigned encode_token = ast->encode_token;
- FullySpecifiedType type = this->objCTypeName(ast->type_name);
- return false;
- }
- bool Bind::visit(ObjCSelectorExpressionAST *ast)
- {
- // unsigned selector_token = ast->selector_token;
- // unsigned lparen_token = ast->lparen_token;
- /*const Name *selector =*/ this->name(ast->selector);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(LambdaExpressionAST *ast)
- {
- this->lambdaIntroducer(ast->lambda_introducer);
- if (Function *function = this->lambdaDeclarator(ast->lambda_declarator)) {
- _scope->addMember(function);
- Scope *previousScope = switchScope(function);
- this->statement(ast->statement);
- (void) switchScope(previousScope);
- } else {
- this->statement(ast->statement);
- }
- return false;
- }
- bool Bind::visit(BracedInitializerAST *ast)
- {
- // unsigned lbrace_token = ast->lbrace_token;
- for (ExpressionListAST *it = ast->expression_list; it; it = it->next) {
- /*ExpressionTy value =*/ this->expression(it->value);
- }
- // unsigned comma_token = ast->comma_token;
- // unsigned rbrace_token = ast->rbrace_token;
- return false;
- }
- static int methodKeyForInvokableToken(int kind)
- {
- if (kind == T_Q_SIGNAL)
- return Function::SignalMethod;
- else if (kind == T_Q_SLOT)
- return Function::SlotMethod;
- else if (kind == T_Q_INVOKABLE)
- return Function::InvokableMethod;
- return Function::NormalMethod;
- }
- // DeclarationAST
- bool Bind::visit(SimpleDeclarationAST *ast)
- {
- int methodKey = _methodKey;
- if (ast->qt_invokable_token)
- methodKey = methodKeyForInvokableToken(tokenKind(ast->qt_invokable_token));
- // unsigned qt_invokable_token = ast->qt_invokable_token;
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->decl_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- List<Symbol *> **symbolTail = &ast->symbols;
- if (! ast->declarator_list) {
- ElaboratedTypeSpecifierAST *elabTypeSpec = 0;
- for (SpecifierListAST *it = ast->decl_specifier_list; ! elabTypeSpec && it; it = it->next)
- elabTypeSpec = it->value->asElaboratedTypeSpecifier();
- if (elabTypeSpec && tokenKind(elabTypeSpec->classkey_token) != T_TYPENAME) {
- unsigned sourceLocation = elabTypeSpec->firstToken();
- const Name *name = 0;
- if (elabTypeSpec->name) {
- sourceLocation = location(elabTypeSpec->name, sourceLocation);
- name = elabTypeSpec->name->name;
- }
- ensureValidClassName(&name, sourceLocation);
- ForwardClassDeclaration *decl = control()->newForwardClassDeclaration(sourceLocation, name);
- setDeclSpecifiers(decl, type);
- _scope->addMember(decl);
- *symbolTail = new (translationUnit()->memoryPool()) List<Symbol *>(decl);
- symbolTail = &(*symbolTail)->next;
- }
- }
- for (DeclaratorListAST *it = ast->declarator_list; it; it = it->next) {
- DeclaratorIdAST *declaratorId = 0;
- FullySpecifiedType declTy = this->declarator(it->value, type.qualifiedType(), &declaratorId);
- const Name *declName = 0;
- unsigned sourceLocation = location(it->value, ast->firstToken());
- if (declaratorId && declaratorId->name)
- declName = declaratorId->name->name;
- Declaration *decl = control()->newDeclaration(sourceLocation, declName);
- decl->setType(declTy);
- setDeclSpecifiers(decl, type);
- if (Function *fun = decl->type()->asFunctionType()) {
- fun->setEnclosingScope(_scope);
- fun->setSourceLocation(sourceLocation, translationUnit());
- setDeclSpecifiers(fun, type);
- if (declaratorId && declaratorId->name)
- fun->setName(declaratorId->name->name); // update the function name
- }
- else if (declTy.isAuto()) {
- const ExpressionAST *initializer = it->value->initializer;
- if (!initializer && declaratorId)
- translationUnit()->error(location(declaratorId->name, ast->firstToken()), "auto-initialized variable must have an initializer");
- else if (initializer) {
- unsigned startOfExpression = initializer->firstToken();
- unsigned endOfExpression = initializer->lastToken();
- decl->setInitializer(asStringLiteral(startOfExpression, endOfExpression));
- }
- }
- if (_scope->isClass()) {
- decl->setVisibility(_visibility);
- if (Function *funTy = decl->type()->asFunctionType()) {
- funTy->setMethodKey(methodKey);
- bool pureVirtualInit = it->value->equal_token
- && it->value->initializer
- && it->value->initializer->asNumericLiteral();
- if (funTy->isVirtual() && pureVirtualInit)
- funTy->setPureVirtual(true);
- }
- }
- _scope->addMember(decl);
- *symbolTail = new (translationUnit()->memoryPool()) List<Symbol *>(decl);
- symbolTail = &(*symbolTail)->next;
- }
- return false;
- }
- bool Bind::visit(EmptyDeclarationAST *ast)
- {
- (void) ast;
- unsigned semicolon_token = ast->semicolon_token;
- if (_scope && (_scope->isClass() || _scope->isNamespace())) {
- const Token &tk = tokenAt(semicolon_token);
- if (! tk.generated())
- translationUnit()->warning(semicolon_token, "extra `;'");
- }
- return false;
- }
- bool Bind::visit(AccessDeclarationAST *ast)
- {
- const int accessSpecifier = tokenKind(ast->access_specifier_token);
- _visibility = visibilityForAccessSpecifier(accessSpecifier);
- if (ast->slots_token)
- _methodKey = Function::SlotMethod;
- else if (accessSpecifier == T_Q_SIGNALS)
- _methodKey = Function::SignalMethod;
- else
- _methodKey = Function::NormalMethod;
- return false;
- }
- bool Bind::visit(QtObjectTagAST *ast)
- {
- (void) ast;
- // unsigned q_object_token = ast->q_object_token;
- return false;
- }
- bool Bind::visit(QtPrivateSlotAST *ast)
- {
- // unsigned q_private_slot_token = ast->q_private_slot_token;
- // unsigned lparen_token = ast->lparen_token;
- // unsigned dptr_token = ast->dptr_token;
- // unsigned dptr_lparen_token = ast->dptr_lparen_token;
- // unsigned dptr_rparen_token = ast->dptr_rparen_token;
- // unsigned comma_token = ast->comma_token;
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- static void qtPropertyAttribute(TranslationUnit *unit, ExpressionAST *expression,
- int *flags,
- QtPropertyDeclaration::Flag flag,
- QtPropertyDeclaration::Flag function)
- {
- if (!expression)
- return;
- *flags &= ~function & ~flag;
- if (BoolLiteralAST *boollit = expression->asBoolLiteral()) {
- const int kind = unit->tokenAt(boollit->literal_token).kind();
- if (kind == T_TRUE)
- *flags |= flag;
- } else {
- *flags |= function;
- }
- }
- bool Bind::visit(QtPropertyDeclarationAST *ast)
- {
- // unsigned property_specifier_token = ast->property_specifier_token;
- // unsigned lparen_token = ast->lparen_token;
- ExpressionTy type_id = this->expression(ast->type_id);
- const Name *property_name = this->name(ast->property_name);
- unsigned sourceLocation = ast->firstToken();
- if (ast->property_name)
- sourceLocation = ast->property_name->firstToken();
- QtPropertyDeclaration *propertyDeclaration = control()->newQtPropertyDeclaration(sourceLocation, property_name);
- propertyDeclaration->setType(type_id);
- int flags = QtPropertyDeclaration::DesignableFlag
- | QtPropertyDeclaration::ScriptableFlag
- | QtPropertyDeclaration::StoredFlag;
- for (QtPropertyDeclarationItemListAST *it = ast->property_declaration_item_list; it; it = it->next) {
- if (!it->value || !it->value->item_name_token)
- continue;
- this->expression(it->value->expression);
- std::string name = spell(it->value->item_name_token);
- if (name == "CONSTANT") {
- flags |= QtPropertyDeclaration::ConstantFlag;
- } else if (name == "FINAL") {
- flags |= QtPropertyDeclaration::FinalFlag;
- } else if (name == "READ") {
- flags |= QtPropertyDeclaration::ReadFunction;
- } else if (name == "WRITE") {
- flags |= QtPropertyDeclaration::WriteFunction;
- } else if (name == "MEMBER") {
- flags |= QtPropertyDeclaration::MemberVariable;
- } else if (name == "RESET") {
- flags |= QtPropertyDeclaration::ResetFunction;
- } else if (name == "NOTIFY") {
- flags |= QtPropertyDeclaration::NotifyFunction;
- } else if (name == "REVISION") {
- // ### handle REVISION property
- } else if (name == "DESIGNABLE") {
- qtPropertyAttribute(translationUnit(), it->value->expression, &flags,
- QtPropertyDeclaration::DesignableFlag, QtPropertyDeclaration::DesignableFunction);
- } else if (name == "SCRIPTABLE") {
- qtPropertyAttribute(translationUnit(), it->value->expression, &flags,
- QtPropertyDeclaration::ScriptableFlag, QtPropertyDeclaration::ScriptableFunction);
- } else if (name == "STORED") {
- qtPropertyAttribute(translationUnit(), it->value->expression, &flags,
- QtPropertyDeclaration::StoredFlag, QtPropertyDeclaration::StoredFunction);
- } else if (name == "USER") {
- qtPropertyAttribute(translationUnit(), it->value->expression, &flags,
- QtPropertyDeclaration::UserFlag, QtPropertyDeclaration::UserFunction);
- }
- }
- propertyDeclaration->setFlags(flags);
- _scope->addMember(propertyDeclaration);
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(QtEnumDeclarationAST *ast)
- {
- // unsigned enum_specifier_token = ast->enum_specifier_token;
- // unsigned lparen_token = ast->lparen_token;
- for (NameListAST *it = ast->enumerator_list; it; it = it->next) {
- const Name *value = this->name(it->value);
- if (!value)
- continue;
- QtEnum *qtEnum = control()->newQtEnum(it->value->firstToken(), value);
- _scope->addMember(qtEnum);
- }
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(QtFlagsDeclarationAST *ast)
- {
- // unsigned flags_specifier_token = ast->flags_specifier_token;
- // unsigned lparen_token = ast->lparen_token;
- for (NameListAST *it = ast->flag_enums_list; it; it = it->next) {
- /*const Name *value =*/ this->name(it->value);
- }
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(QtInterfacesDeclarationAST *ast)
- {
- // unsigned interfaces_token = ast->interfaces_token;
- // unsigned lparen_token = ast->lparen_token;
- for (QtInterfaceNameListAST *it = ast->interface_name_list; it; it = it->next) {
- this->qtInterfaceName(it->value);
- }
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(AliasDeclarationAST *ast)
- {
- if (!ast->name)
- return false;
- const Name *name = this->name(ast->name);
- FullySpecifiedType ty = expression(ast->typeId);
- ty.setTypedef(true);
- Declaration *decl = control()->newDeclaration(ast->name->firstToken(), name);
- decl->setType(ty);
- decl->setStorage(Symbol::Typedef);
- ast->symbol = decl;
- if (_scope->isClass())
- decl->setVisibility(_visibility);
- _scope->addMember(decl);
- return false;
- }
- bool Bind::visit(AsmDefinitionAST *ast)
- {
- (void) ast;
- // unsigned asm_token = ast->asm_token;
- // unsigned volatile_token = ast->volatile_token;
- // unsigned lparen_token = ast->lparen_token;
- // unsigned rparen_token = ast->rparen_token;
- // unsigned semicolon_token = ast->semicolon_token;
- return false;
- }
- bool Bind::visit(ExceptionDeclarationAST *ast)
- {
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- const Name *argName = 0;
- if (declaratorId && declaratorId->name)
- argName = declaratorId->name->name;
- Argument *arg = control()->newArgument(location(declaratorId, ast->firstToken()), argName);
- arg->setType(type);
- _scope->addMember(arg);
- // unsigned dot_dot_dot_token = ast->dot_dot_dot_token;
- return false;
- }
- bool Bind::visit(FunctionDefinitionAST *ast)
- {
- int methodKey = _methodKey;
- if (ast->qt_invokable_token)
- methodKey = methodKeyForInvokableToken(tokenKind(ast->qt_invokable_token));
- FullySpecifiedType declSpecifiers;
- for (SpecifierListAST *it = ast->decl_specifier_list; it; it = it->next) {
- declSpecifiers = this->specifier(it->value, declSpecifiers);
- }
- DeclaratorIdAST *declaratorId = 0;
- FullySpecifiedType type = this->declarator(ast->declarator, declSpecifiers.qualifiedType(), &declaratorId);
- Function *fun = type->asFunctionType();
- ast->symbol = fun;
- if (fun) {
- setDeclSpecifiers(fun, declSpecifiers);
- fun->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- if (_scope->isClass()) {
- fun->setVisibility(_visibility);
- fun->setMethodKey(methodKey);
- }
- if (declaratorId && declaratorId->name) {
- fun->setSourceLocation(location(declaratorId, ast->firstToken()), translationUnit());
- fun->setName(declaratorId->name->name);
- }
- _scope->addMember(fun);
- } else
- translationUnit()->warning(ast->firstToken(), "expected a function declarator");
- this->ctorInitializer(ast->ctor_initializer, fun);
- if (fun && ! _skipFunctionBodies && ast->function_body) {
- Scope *previousScope = switchScope(fun);
- this->statement(ast->function_body);
- (void) switchScope(previousScope);
- }
- return false;
- }
- bool Bind::visit(LinkageBodyAST *ast)
- {
- // unsigned lbrace_token = ast->lbrace_token;
- for (DeclarationListAST *it = ast->declaration_list; it; it = it->next) {
- this->declaration(it->value);
- }
- // unsigned rbrace_token = ast->rbrace_token;
- return false;
- }
- bool Bind::visit(LinkageSpecificationAST *ast)
- {
- // unsigned extern_token = ast->extern_token;
- // unsigned extern_type_token = ast->extern_type_token;
- this->declaration(ast->declaration);
- return false;
- }
- bool Bind::visit(NamespaceAST *ast)
- {
- // unsigned namespace_token = ast->namespace_token;
- // unsigned identifier_token = ast->identifier_token;
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- unsigned sourceLocation = ast->firstToken();
- const Name *namespaceName = 0;
- if (ast->identifier_token) {
- sourceLocation = ast->identifier_token;
- namespaceName = identifier(ast->identifier_token);
- }
- Namespace *ns = control()->newNamespace(sourceLocation, namespaceName);
- ns->setStartOffset(tokenAt(sourceLocation).utf16charsEnd()); // the scope starts after the namespace or the identifier token.
- ns->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- ns->setInline(ast->inline_token != 0);
- ast->symbol = ns;
- _scope->addMember(ns);
- Scope *previousScope = switchScope(ns);
- this->declaration(ast->linkage_body);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(NamespaceAliasDefinitionAST *ast)
- {
- unsigned sourceLocation = ast->firstToken();
- const Name *name = 0;
- if (ast->namespace_name_token) {
- sourceLocation = ast->namespace_name_token;
- name = identifier(ast->namespace_name_token);
- }
- NamespaceAlias *namespaceAlias = control()->newNamespaceAlias(sourceLocation, name);
- namespaceAlias->setNamespaceName(this->name(ast->name));
- _scope->addMember(namespaceAlias);
- return false;
- }
- bool Bind::visit(ParameterDeclarationAST *ast)
- {
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- DeclaratorIdAST *declaratorId = 0;
- type = this->declarator(ast->declarator, type, &declaratorId);
- // unsigned equal_token = ast->equal_token;
- ExpressionTy expression = this->expression(ast->expression);
- const Name *argName = 0;
- if (declaratorId && declaratorId->name)
- argName = declaratorId->name->name;
- Argument *arg = control()->newArgument(location(declaratorId, ast->firstToken()), argName);
- arg->setType(type);
- if (ast->expression) {
- unsigned startOfExpression = ast->expression->firstToken();
- unsigned endOfExpression = ast->expression->lastToken();
- arg->setInitializer(asStringLiteral(startOfExpression, endOfExpression));
- }
- _scope->addMember(arg);
- ast->symbol = arg;
- return false;
- }
- bool Bind::visit(TemplateDeclarationAST *ast)
- {
- Template *templ = control()->newTemplate(ast->firstToken(), 0);
- templ->setStartOffset(tokenAt(ast->firstToken()).utf16charsBegin());
- templ->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- ast->symbol = templ;
- Scope *previousScope = switchScope(templ);
- for (DeclarationListAST *it = ast->template_parameter_list; it; it = it->next) {
- this->declaration(it->value);
- }
- // unsigned greater_token = ast->greater_token;
- this->declaration(ast->declaration);
- (void) switchScope(previousScope);
- if (Symbol *decl = templ->declaration()) {
- templ->setSourceLocation(decl->sourceLocation(), translationUnit());
- templ->setName(decl->name());
- }
- _scope->addMember(templ);
- return false;
- }
- bool Bind::visit(TypenameTypeParameterAST *ast)
- {
- unsigned sourceLocation = location(ast->name, ast->firstToken());
- // unsigned classkey_token = ast->classkey_token;
- // unsigned dot_dot_dot_token = ast->dot_dot_dot_token;
- const Name *name = this->name(ast->name);
- ExpressionTy type_id = this->expression(ast->type_id);
- TypenameArgument *arg = control()->newTypenameArgument(sourceLocation, name);
- arg->setType(type_id);
- ast->symbol = arg;
- _scope->addMember(arg);
- return false;
- }
- bool Bind::visit(TemplateTypeParameterAST *ast)
- {
- unsigned sourceLocation = location(ast->name, ast->firstToken());
- // unsigned template_token = ast->template_token;
- // unsigned less_token = ast->less_token;
- // ### process the template prototype
- #if 0
- for (DeclarationListAST *it = ast->template_parameter_list; it; it = it->next) {
- this->declaration(it->value);
- }
- #endif
- // unsigned greater_token = ast->greater_token;
- // unsigned class_token = ast->class_token;
- // unsigned dot_dot_dot_token = ast->dot_dot_dot_token;
- const Name *name = this->name(ast->name);
- ExpressionTy type_id = this->expression(ast->type_id);
- // ### introduce TemplateTypeArgument
- TypenameArgument *arg = control()->newTypenameArgument(sourceLocation, name);
- arg->setType(type_id);
- ast->symbol = arg;
- _scope->addMember(arg);
- return false;
- }
- bool Bind::visit(UsingAST *ast)
- {
- unsigned sourceLocation = location(ast->name, ast->firstToken());
- const Name *name = this->name(ast->name);
- UsingDeclaration *symbol = control()->newUsingDeclaration(sourceLocation, name);
- ast->symbol = symbol;
- _scope->addMember(symbol);
- return false;
- }
- bool Bind::visit(UsingDirectiveAST *ast)
- {
- unsigned sourceLocation = location(ast->name, ast->firstToken());
- const Name *name = this->name(ast->name);
- UsingNamespaceDirective *symbol = control()->newUsingNamespaceDirective(sourceLocation, name);
- ast->symbol = symbol;
- _scope->addMember(symbol);
- return false;
- }
- bool Bind::visit(ObjCClassForwardDeclarationAST *ast)
- {
- FullySpecifiedType declSpecifiers;
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- declSpecifiers = this->specifier(it->value, declSpecifiers);
- }
- List<ObjCForwardClassDeclaration *> **symbolTail = &ast->symbols;
- // unsigned class_token = ast->class_token;
- for (NameListAST *it = ast->identifier_list; it; it = it->next) {
- const Name *name = this->name(it->value);
- const unsigned sourceLocation = location(it->value, ast->firstToken());
- ObjCForwardClassDeclaration *fwd = control()->newObjCForwardClassDeclaration(sourceLocation, name);
- setDeclSpecifiers(fwd, declSpecifiers);
- _scope->addMember(fwd);
- *symbolTail = new (translationUnit()->memoryPool()) List<ObjCForwardClassDeclaration *>(fwd);
- symbolTail = &(*symbolTail)->next;
- }
- return false;
- }
- unsigned Bind::calculateScopeStart(ObjCClassDeclarationAST *ast) const
- {
- if (ast->inst_vars_decl)
- if (unsigned pos = ast->inst_vars_decl->lbrace_token)
- return tokenAt(pos).utf16charsEnd();
- if (ast->protocol_refs)
- if (unsigned pos = ast->protocol_refs->lastToken())
- return tokenAt(pos - 1).utf16charsEnd();
- if (ast->superclass)
- if (unsigned pos = ast->superclass->lastToken())
- return tokenAt(pos - 1).utf16charsEnd();
- if (ast->colon_token)
- return tokenAt(ast->colon_token).utf16charsEnd();
- if (ast->rparen_token)
- return tokenAt(ast->rparen_token).utf16charsEnd();
- if (ast->category_name)
- if (unsigned pos = ast->category_name->lastToken())
- return tokenAt(pos - 1).utf16charsEnd();
- if (ast->lparen_token)
- return tokenAt(ast->lparen_token).utf16charsEnd();
- if (ast->class_name)
- if (unsigned pos = ast->class_name->lastToken())
- return tokenAt(pos - 1).utf16charsEnd();
- return tokenAt(ast->firstToken()).utf16charsBegin();
- }
- bool Bind::visit(ObjCClassDeclarationAST *ast)
- {
- FullySpecifiedType declSpecifiers;
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- declSpecifiers = this->specifier(it->value, declSpecifiers);
- }
- const Name *class_name = this->name(ast->class_name);
- const Name *category_name = this->name(ast->category_name);
- const unsigned sourceLocation = location(ast->class_name, ast->firstToken());
- ObjCClass *klass = control()->newObjCClass(sourceLocation, class_name);
- ast->symbol = klass;
- _scope->addMember(klass);
- klass->setStartOffset(calculateScopeStart(ast));
- klass->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- if (ast->interface_token)
- klass->setInterface(true);
- klass->setCategoryName(category_name);
- Scope *previousScope = switchScope(klass);
- if (const Name *superclass = this->name(ast->superclass)) {
- ObjCBaseClass *superKlass = control()->newObjCBaseClass(ast->superclass->firstToken(), superclass);
- klass->setBaseClass(superKlass);
- }
- this->objCProtocolRefs(ast->protocol_refs, klass);
- const int previousObjCVisibility = switchObjCVisibility(Function::Protected);
- this->objCInstanceVariablesDeclaration(ast->inst_vars_decl, klass);
- (void) switchObjCVisibility(Function::Public);
- for (DeclarationListAST *it = ast->member_declaration_list; it; it = it->next) {
- this->declaration(it->value);
- }
- (void) switchObjCVisibility(previousObjCVisibility);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(ObjCProtocolForwardDeclarationAST *ast)
- {
- FullySpecifiedType declSpecifiers;
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- declSpecifiers = this->specifier(it->value, declSpecifiers);
- }
- List<ObjCForwardProtocolDeclaration *> **symbolTail = &ast->symbols;
- // unsigned class_token = ast->class_token;
- for (NameListAST *it = ast->identifier_list; it; it = it->next) {
- const Name *name = this->name(it->value);
- const unsigned sourceLocation = location(it->value, ast->firstToken());
- ObjCForwardProtocolDeclaration *fwd = control()->newObjCForwardProtocolDeclaration(sourceLocation, name);
- setDeclSpecifiers(fwd, declSpecifiers);
- _scope->addMember(fwd);
- *symbolTail = new (translationUnit()->memoryPool()) List<ObjCForwardProtocolDeclaration *>(fwd);
- symbolTail = &(*symbolTail)->next;
- }
- return false;
- }
- unsigned Bind::calculateScopeStart(ObjCProtocolDeclarationAST *ast) const
- {
- if (ast->protocol_refs)
- if (unsigned pos = ast->protocol_refs->lastToken())
- return tokenAt(pos - 1).utf16charsEnd();
- if (ast->name)
- if (unsigned pos = ast->name->lastToken())
- return tokenAt(pos - 1).utf16charsEnd();
- return tokenAt(ast->firstToken()).utf16charsBegin();
- }
- bool Bind::visit(ObjCProtocolDeclarationAST *ast)
- {
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- // unsigned protocol_token = ast->protocol_token;
- const Name *name = this->name(ast->name);
- const unsigned sourceLocation = location(ast->name, ast->firstToken());
- ObjCProtocol *protocol = control()->newObjCProtocol(sourceLocation, name);
- protocol->setStartOffset(calculateScopeStart(ast));
- protocol->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- ast->symbol = protocol;
- _scope->addMember(protocol);
- Scope *previousScope = switchScope(protocol);
- const int previousObjCVisibility = switchObjCVisibility(Function::Public);
- this->objCProtocolRefs(ast->protocol_refs, protocol);
- for (DeclarationListAST *it = ast->member_declaration_list; it; it = it->next) {
- this->declaration(it->value);
- }
- (void) switchObjCVisibility(previousObjCVisibility);
- (void) switchScope(previousScope);
- return false;
- }
- bool Bind::visit(ObjCVisibilityDeclarationAST *ast)
- {
- _objcVisibility = visibilityForObjCAccessSpecifier(tokenKind(ast->visibility_token));
- return false;
- }
- bool Bind::visit(ObjCPropertyDeclarationAST *ast)
- {
- (void) ast;
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- // unsigned property_token = ast->property_token;
- // unsigned lparen_token = ast->lparen_token;
- for (ObjCPropertyAttributeListAST *it = ast->property_attribute_list; it; it = it->next) {
- this->objCPropertyAttribute(it->value);
- }
- // unsigned rparen_token = ast->rparen_token;
- this->declaration(ast->simple_declaration);
- // List<ObjCPropertyDeclaration *> *symbols = ast->symbols;
- return false;
- }
- bool Bind::visit(ObjCMethodDeclarationAST *ast)
- {
- ObjCMethod *method = this->objCMethodPrototype(ast->method_prototype);
- if (! ast->function_body) {
- const Name *name = method->name();
- unsigned sourceLocation = ast->firstToken();
- Declaration *decl = control()->newDeclaration(sourceLocation, name);
- decl->setType(method);
- _scope->addMember(decl);
- } else if (! _skipFunctionBodies && ast->function_body) {
- Scope *previousScope = switchScope(method);
- this->statement(ast->function_body);
- (void) switchScope(previousScope);
- _scope->addMember(method);
- } else if (method) {
- _scope->addMember(method);
- }
- return false;
- }
- bool Bind::visit(ObjCSynthesizedPropertiesDeclarationAST *ast)
- {
- // unsigned synthesized_token = ast->synthesized_token;
- for (ObjCSynthesizedPropertyListAST *it = ast->property_identifier_list; it; it = it->next) {
- this->objCSynthesizedProperty(it->value);
- }
- // unsigned semicolon_token = ast->semicolon_token;
- return false;
- }
- bool Bind::visit(ObjCDynamicPropertiesDeclarationAST *ast)
- {
- // unsigned dynamic_token = ast->dynamic_token;
- for (NameListAST *it = ast->property_identifier_list; it; it = it->next) {
- /*const Name *value =*/ this->name(it->value);
- }
- // unsigned semicolon_token = ast->semicolon_token;
- return false;
- }
- // NameAST
- bool Bind::visit(ObjCSelectorAST *ast) // ### review
- {
- std::vector<const Name *> arguments;
- bool hasArgs = false;
- for (ObjCSelectorArgumentListAST *it = ast->selector_argument_list; it; it = it->next) {
- if (const Name *selector_argument = this->objCSelectorArgument(it->value, &hasArgs))
- arguments.push_back(selector_argument);
- }
- if (! arguments.empty()) {
- _name = control()->selectorNameId(&arguments[0], unsigned(arguments.size()), hasArgs);
- ast->name = _name;
- }
- return false;
- }
- bool Bind::visit(QualifiedNameAST *ast)
- {
- for (NestedNameSpecifierListAST *it = ast->nested_name_specifier_list; it; it = it->next) {
- const Name *class_or_namespace_name = this->nestedNameSpecifier(it->value);
- if (_name || ast->global_scope_token)
- _name = control()->qualifiedNameId(_name, class_or_namespace_name);
- else
- _name = class_or_namespace_name;
- }
- const Name *unqualified_name = this->name(ast->unqualified_name);
- if (_name || ast->global_scope_token)
- _name = control()->qualifiedNameId(_name, unqualified_name);
- else
- _name = unqualified_name;
- ast->name = _name;
- return false;
- }
- bool Bind::visit(OperatorFunctionIdAST *ast)
- {
- const OperatorNameId::Kind op = this->cppOperator(ast->op);
- ast->name = _name = control()->operatorNameId(op);
- return false;
- }
- bool Bind::visit(ConversionFunctionIdAST *ast)
- {
- FullySpecifiedType type;
- for (SpecifierListAST *it = ast->type_specifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- for (PtrOperatorListAST *it = ast->ptr_operator_list; it; it = it->next) {
- type = this->ptrOperator(it->value, type);
- }
- ast->name = _name = control()->conversionNameId(type);
- return false;
- }
- bool Bind::visit(AnonymousNameAST *ast)
- {
- ast->name = _name = control()->anonymousNameId(ast->class_token);
- return false;
- }
- bool Bind::visit(SimpleNameAST *ast)
- {
- const Identifier *id = identifier(ast->identifier_token);
- _name = id;
- ast->name = _name;
- return false;
- }
- bool Bind::visit(DestructorNameAST *ast)
- {
- _name = control()->destructorNameId(name(ast->unqualified_name));
- ast->name = _name;
- return false;
- }
- bool Bind::visit(TemplateIdAST *ast)
- {
- // collect the template parameters
- std::vector<FullySpecifiedType> templateArguments;
- for (ExpressionListAST *it = ast->template_argument_list; it; it = it->next) {
- ExpressionTy value = this->expression(it->value);
- templateArguments.push_back(value);
- }
- const Identifier *id = identifier(ast->identifier_token);
- const int tokenKindBeforeIdentifier(translationUnit()->tokenKind(ast->identifier_token - 1));
- const bool isSpecialization = (tokenKindBeforeIdentifier == T_CLASS ||
- tokenKindBeforeIdentifier == T_STRUCT);
- if (templateArguments.empty())
- _name = control()->templateNameId(id, isSpecialization);
- else
- _name = control()->templateNameId(id, isSpecialization, &templateArguments[0],
- unsigned(templateArguments.size()));
- ast->name = _name;
- return false;
- }
- // SpecifierAST
- bool Bind::visit(SimpleSpecifierAST *ast)
- {
- switch (tokenKind(ast->specifier_token)) {
- case T_IDENTIFIER: {
- const Identifier *id = tokenAt(ast->specifier_token).identifier;
- if (id->match(control()->cpp11Override())) {
- if (_type.isOverride())
- translationUnit()->error(ast->specifier_token, "duplicate `override'");
- _type.setOverride(true);
- }
- else if (id->match(control()->cpp11Final())) {
- if (_type.isFinal())
- translationUnit()->error(ast->specifier_token, "duplicate `final'");
- _type.setFinal(true);
- }
- }
- break;
- case T_CONST:
- if (_type.isConst())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setConst(true);
- break;
- case T_VOLATILE:
- if (_type.isVolatile())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setVolatile(true);
- break;
- case T_FRIEND:
- if (_type.isFriend())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setFriend(true);
- break;
- case T_AUTO:
- if (!translationUnit()->languageFeatures().cxx11Enabled) {
- if (_type.isAuto())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- }
- _type.setAuto(true);
- break;
- case T_REGISTER:
- if (_type.isRegister())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setRegister(true);
- break;
- case T_STATIC:
- if (_type.isStatic())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setStatic(true);
- break;
- case T_EXTERN:
- if (_type.isExtern())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setExtern(true);
- break;
- case T_MUTABLE:
- if (_type.isMutable())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setMutable(true);
- break;
- case T_TYPEDEF:
- if (_type.isTypedef())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setTypedef(true);
- break;
- case T_INLINE:
- if (_type.isInline())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setInline(true);
- break;
- case T_VIRTUAL:
- if (_type.isVirtual())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setVirtual(true);
- break;
- case T_EXPLICIT:
- if (_type.isExplicit())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setExplicit(true);
- break;
- case T_SIGNED:
- if (_type.isSigned())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setSigned(true);
- break;
- case T_UNSIGNED:
- if (_type.isUnsigned())
- translationUnit()->error(ast->specifier_token, "duplicate `%s'", spell(ast->specifier_token));
- _type.setUnsigned(true);
- break;
- case T_CHAR:
- if (_type)
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- _type.setType(control()->integerType(IntegerType::Char));
- break;
- case T_CHAR16_T:
- if (_type)
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- _type.setType(control()->integerType(IntegerType::Char16));
- break;
- case T_CHAR32_T:
- if (_type)
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- _type.setType(control()->integerType(IntegerType::Char32));
- break;
- case T_WCHAR_T:
- if (_type)
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- _type.setType(control()->integerType(IntegerType::WideChar));
- break;
- case T_BOOL:
- if (_type)
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- _type.setType(control()->integerType(IntegerType::Bool));
- break;
- case T_SHORT:
- if (_type) {
- IntegerType *intType = control()->integerType(IntegerType::Int);
- if (_type.type() != intType)
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- }
- _type.setType(control()->integerType(IntegerType::Short));
- break;
- case T_INT:
- if (_type) {
- Type *tp = _type.type();
- IntegerType *shortType = control()->integerType(IntegerType::Short);
- IntegerType *longType = control()->integerType(IntegerType::Long);
- IntegerType *longLongType = control()->integerType(IntegerType::LongLong);
- if (tp == shortType || tp == longType || tp == longLongType)
- break;
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- }
- _type.setType(control()->integerType(IntegerType::Int));
- break;
- case T_LONG:
- if (_type) {
- Type *tp = _type.type();
- IntegerType *intType = control()->integerType(IntegerType::Int);
- IntegerType *longType = control()->integerType(IntegerType::Long);
- FloatType *doubleType = control()->floatType(FloatType::Double);
- if (tp == longType) {
- _type.setType(control()->integerType(IntegerType::LongLong));
- break;
- } else if (tp == doubleType) {
- _type.setType(control()->floatType(FloatType::LongDouble));
- break;
- } else if (tp != intType) {
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- }
- }
- _type.setType(control()->integerType(IntegerType::Long));
- break;
- case T_FLOAT:
- if (_type)
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- _type.setType(control()->floatType(FloatType::Float));
- break;
- case T_DOUBLE:
- if (_type) {
- IntegerType *longType = control()->integerType(IntegerType::Long);
- if (_type.type() == longType) {
- _type.setType(control()->floatType(FloatType::LongDouble));
- break;
- }
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- }
- _type.setType(control()->floatType(FloatType::Double));
- break;
- case T_VOID:
- if (_type)
- translationUnit()->error(ast->specifier_token, "duplicate data type in declaration");
- _type.setType(control()->voidType());
- break;
- default:
- break;
- } // switch
- return false;
- }
- bool Bind::visit(AlignmentSpecifierAST *ast)
- {
- // Prevent visiting the type-id or alignment expression from changing the currently
- // calculated type:
- expression(ast->typeIdExprOrAlignmentExpr);
- return false;
- }
- bool Bind::visit(GnuAttributeSpecifierAST *ast)
- {
- // unsigned attribute_token = ast->attribute_token;
- // unsigned first_lparen_token = ast->first_lparen_token;
- // unsigned second_lparen_token = ast->second_lparen_token;
- for (GnuAttributeListAST *it = ast->attribute_list; it; it = it->next) {
- this->attribute(it->value);
- }
- // unsigned first_rparen_token = ast->first_rparen_token;
- // unsigned second_rparen_token = ast->second_rparen_token;
- return false;
- }
- bool Bind::visit(TypeofSpecifierAST *ast)
- {
- ExpressionTy expression = this->expression(ast->expression);
- _type = expression;
- return false;
- }
- bool Bind::visit(DecltypeSpecifierAST *ast)
- {
- _type = this->expression(ast->expression);
- return false;
- }
- bool Bind::visit(ClassSpecifierAST *ast)
- {
- // unsigned classkey_token = ast->classkey_token;
- unsigned sourceLocation = ast->firstToken();
- unsigned startScopeOffset = tokenAt(sourceLocation).utf16charsEnd(); // at the end of the class key
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- _type = this->specifier(it->value, _type);
- }
- const Name *className = this->name(ast->name);
- if (ast->name && ! ast->name->asAnonymousName()) {
- sourceLocation = location(ast->name, sourceLocation);
- startScopeOffset = tokenAt(sourceLocation).utf16charsEnd(); // at the end of the class name
- if (QualifiedNameAST *q = ast->name->asQualifiedName()) {
- if (q->unqualified_name) {
- sourceLocation = q->unqualified_name->firstToken();
- startScopeOffset = tokenAt(q->unqualified_name->lastToken() - 1).utf16charsEnd(); // at the end of the unqualified name
- }
- }
- ensureValidClassName(&className, sourceLocation);
- }
- Class *klass = control()->newClass(sourceLocation, className);
- klass->setStartOffset(startScopeOffset);
- klass->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- _scope->addMember(klass);
- if (_scope->isClass())
- klass->setVisibility(_visibility);
- // set the class key
- unsigned classKey = tokenKind(ast->classkey_token);
- if (classKey == T_CLASS)
- klass->setClassKey(Class::ClassKey);
- else if (classKey == T_STRUCT)
- klass->setClassKey(Class::StructKey);
- else if (classKey == T_UNION)
- klass->setClassKey(Class::UnionKey);
- _type.setType(klass);
- Scope *previousScope = switchScope(klass);
- const int previousVisibility = switchVisibility(visibilityForClassKey(classKey));
- const int previousMethodKey = switchMethodKey(Function::NormalMethod);
- for (BaseSpecifierListAST *it = ast->base_clause_list; it; it = it->next) {
- this->baseSpecifier(it->value, ast->colon_token, klass);
- }
- // unsigned dot_dot_dot_token = ast->dot_dot_dot_token;
- for (DeclarationListAST *it = ast->member_specifier_list; it; it = it->next) {
- this->declaration(it->value);
- }
- (void) switchMethodKey(previousMethodKey);
- (void) switchVisibility(previousVisibility);
- (void) switchScope(previousScope);
- ast->symbol = klass;
- return false;
- }
- bool Bind::visit(NamedTypeSpecifierAST *ast)
- {
- _type.setType(control()->namedType(this->name(ast->name)));
- return false;
- }
- bool Bind::visit(ElaboratedTypeSpecifierAST *ast)
- {
- // unsigned classkey_token = ast->classkey_token;
- for (SpecifierListAST *it = ast->attribute_list; it; it = it->next) {
- _type = this->specifier(it->value, _type);
- }
- _type.setType(control()->namedType(this->name(ast->name)));
- return false;
- }
- bool Bind::visit(EnumSpecifierAST *ast)
- {
- unsigned sourceLocation = location(ast->name, ast->firstToken());
- const Name *enumName = this->name(ast->name);
- Enum *e = control()->newEnum(sourceLocation, enumName);
- e->setStartOffset(tokenAt(sourceLocation).utf16charsEnd()); // at the end of the enum or identifier token.
- e->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- if (ast->key_token)
- e->setScoped(true);
- ast->symbol = e;
- _scope->addMember(e);
- if (_scope->isClass())
- e->setVisibility(_visibility);
- Scope *previousScope = switchScope(e);
- for (EnumeratorListAST *it = ast->enumerator_list; it; it = it->next) {
- this->enumerator(it->value, e);
- }
- (void) switchScope(previousScope);
- return false;
- }
- // PtrOperatorAST
- bool Bind::visit(PointerToMemberAST *ast)
- {
- const Name *memberName = 0;
- for (NestedNameSpecifierListAST *it = ast->nested_name_specifier_list; it; it = it->next) {
- const Name *class_or_namespace_name = this->nestedNameSpecifier(it->value);
- if (memberName || ast->global_scope_token)
- memberName = control()->qualifiedNameId(memberName, class_or_namespace_name);
- else
- memberName = class_or_namespace_name;
- }
- FullySpecifiedType type(control()->pointerToMemberType(memberName, _type));
- for (SpecifierListAST *it = ast->cv_qualifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- _type = type;
- return false;
- }
- bool Bind::visit(PointerAST *ast)
- {
- if (_type->isReferenceType())
- translationUnit()->error(ast->firstToken(), "cannot declare pointer to a reference");
- FullySpecifiedType type(control()->pointerType(_type));
- for (SpecifierListAST *it = ast->cv_qualifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- _type = type;
- return false;
- }
- bool Bind::visit(ReferenceAST *ast)
- {
- const bool rvalueRef = (tokenKind(ast->reference_token) == T_AMPER_AMPER);
- if (_type->isReferenceType())
- translationUnit()->error(ast->firstToken(), "cannot declare reference to a reference");
- FullySpecifiedType type(control()->referenceType(_type, rvalueRef));
- _type = type;
- return false;
- }
- // PostfixAST
- bool Bind::visit(CallAST *ast)
- {
- /*ExpressionTy base_expression =*/ this->expression(ast->base_expression);
- // unsigned lparen_token = ast->lparen_token;
- for (ExpressionListAST *it = ast->expression_list; it; it = it->next) {
- /*ExpressionTy value =*/ this->expression(it->value);
- }
- // unsigned rparen_token = ast->rparen_token;
- return false;
- }
- bool Bind::visit(ArrayAccessAST *ast)
- {
- /*ExpressionTy base_expression =*/ this->expression(ast->base_expression);
- // unsigned lbracket_token = ast->lbracket_token;
- /*ExpressionTy expression =*/ this->expression(ast->expression);
- // unsigned rbracket_token = ast->rbracket_token;
- return false;
- }
- bool Bind::visit(PostIncrDecrAST *ast)
- {
- ExpressionTy base_expression = this->expression(ast->base_expression);
- // unsigned incr_decr_token = ast->incr_decr_token;
- return false;
- }
- bool Bind::visit(MemberAccessAST *ast)
- {
- ExpressionTy base_expression = this->expression(ast->base_expression);
- // unsigned access_token = ast->access_token;
- // unsigned template_token = ast->template_token;
- /*const Name *member_name =*/ this->name(ast->member_name);
- return false;
- }
- // CoreDeclaratorAST
- bool Bind::visit(DeclaratorIdAST *ast)
- {
- /*const Name *name =*/ this->name(ast->name);
- *_declaratorId = ast;
- return false;
- }
- bool Bind::visit(NestedDeclaratorAST *ast)
- {
- _type = this->declarator(ast->declarator, _type, _declaratorId);
- return false;
- }
- // PostfixDeclaratorAST
- bool Bind::visit(FunctionDeclaratorAST *ast)
- {
- Function *fun = control()->newFunction(0, 0);
- fun->setStartOffset(tokenAt(ast->firstToken()).utf16charsBegin());
- fun->setEndOffset(tokenAt(ast->lastToken() - 1).utf16charsEnd());
- if (ast->trailing_return_type)
- _type = this->trailingReturnType(ast->trailing_return_type, _type);
- fun->setReturnType(_type);
- // unsigned lparen_token = ast->lparen_token;
- this->parameterDeclarationClause(ast->parameter_declaration_clause, ast->lparen_token, fun);
- // unsigned rparen_token = ast->rparen_token;
- FullySpecifiedType type(fun);
- for (SpecifierListAST *it = ast->cv_qualifier_list; it; it = it->next) {
- type = this->specifier(it->value, type);
- }
- // propagate the cv-qualifiers
- fun->setConst(type.isConst());
- fun->setVolatile(type.isVolatile());
- fun->setOverride(type.isOverride());
- fun->setFinal(type.isFinal());
- this->exceptionSpecification(ast->exception_specification, type);
- if (ast->as_cpp_initializer != 0) {
- fun->setAmbiguous(true);
- /*ExpressionTy as_cpp_initializer =*/ this->expression(ast->as_cpp_initializer);
- }
- ast->symbol = fun;
- _type = type;
- return false;
- }
- bool Bind::visit(ArrayDeclaratorAST *ast)
- {
- ExpressionTy expression = this->expression(ast->expression);
- FullySpecifiedType type(control()->arrayType(_type));
- _type = type;
- return false;
- }
- void Bind::ensureValidClassName(const Name **name, unsigned sourceLocation)
- {
- if (!*name)
- return;
- const QualifiedNameId *qName = (*name)->asQualifiedNameId();
- const Name *uqName = qName ? qName->name() : *name;
- if (!uqName->isNameId() && !uqName->isTemplateNameId()) {
- translationUnit()->error(sourceLocation, "expected a class-name");
- *name = uqName->identifier();
- if (qName)
- *name = control()->qualifiedNameId(qName->base(), *name);
- }
- }
- int Bind::visibilityForAccessSpecifier(int tokenKind)
- {
- switch (tokenKind) {
- case T_PUBLIC:
- return Symbol::Public;
- case T_PROTECTED:
- return Symbol::Protected;
- case T_PRIVATE:
- return Symbol::Private;
- case T_Q_SIGNALS:
- return Symbol::Protected;
- default:
- return Symbol::Public;
- }
- }
- int Bind::visibilityForClassKey(int tokenKind)
- {
- switch (tokenKind) {
- case T_CLASS:
- return Symbol::Private;
- case T_STRUCT:
- case T_UNION:
- return Symbol::Public;
- default:
- return Symbol::Public;
- }
- }
- int Bind::visibilityForObjCAccessSpecifier(int tokenKind)
- {
- switch (tokenKind) {
- case T_AT_PUBLIC:
- return Symbol::Public;
- case T_AT_PROTECTED:
- return Symbol::Protected;
- case T_AT_PRIVATE:
- return Symbol::Private;
- case T_AT_PACKAGE:
- return Symbol::Package;
- default:
- return Symbol::Protected;
- }
- }
- bool Bind::isObjCClassMethod(int tokenKind)
- {
- switch (tokenKind) {
- case T_PLUS:
- return true;
- case T_MINUS:
- default:
- return false;
- }
- }
|