123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973 |
- //===--- ParseDeclCXX.cpp - C++ Declaration Parsing -----------------------===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- //
- // This file implements the C++ Declaration portions of the Parser interfaces.
- //
- //===----------------------------------------------------------------------===//
- #include "clang/Basic/OperatorKinds.h"
- #include "clang/Parse/Parser.h"
- #include "clang/Parse/ParseDiagnostic.h"
- #include "clang/Sema/DeclSpec.h"
- #include "clang/Sema/Scope.h"
- #include "clang/Sema/ParsedTemplate.h"
- #include "clang/Sema/PrettyDeclStackTrace.h"
- #include "llvm/ADT/SmallString.h"
- #include "RAIIObjectsForParser.h"
- using namespace clang;
- /// ParseNamespace - We know that the current token is a namespace keyword. This
- /// may either be a top level namespace or a block-level namespace alias. If
- /// there was an inline keyword, it has already been parsed.
- ///
- /// namespace-definition: [C++ 7.3: basic.namespace]
- /// named-namespace-definition
- /// unnamed-namespace-definition
- ///
- /// unnamed-namespace-definition:
- /// 'inline'[opt] 'namespace' attributes[opt] '{' namespace-body '}'
- ///
- /// named-namespace-definition:
- /// original-namespace-definition
- /// extension-namespace-definition
- ///
- /// original-namespace-definition:
- /// 'inline'[opt] 'namespace' identifier attributes[opt]
- /// '{' namespace-body '}'
- ///
- /// extension-namespace-definition:
- /// 'inline'[opt] 'namespace' original-namespace-name
- /// '{' namespace-body '}'
- ///
- /// namespace-alias-definition: [C++ 7.3.2: namespace.alias]
- /// 'namespace' identifier '=' qualified-namespace-specifier ';'
- ///
- Decl *Parser::ParseNamespace(unsigned Context,
- SourceLocation &DeclEnd,
- SourceLocation InlineLoc) {
- assert(Tok.is(tok::kw_namespace) && "Not a namespace!");
- SourceLocation NamespaceLoc = ConsumeToken(); // eat the 'namespace'.
- ObjCDeclContextSwitch ObjCDC(*this);
-
- if (Tok.is(tok::code_completion)) {
- Actions.CodeCompleteNamespaceDecl(getCurScope());
- cutOffParsing();
- return 0;
- }
- SourceLocation IdentLoc;
- IdentifierInfo *Ident = 0;
- std::vector<SourceLocation> ExtraIdentLoc;
- std::vector<IdentifierInfo*> ExtraIdent;
- std::vector<SourceLocation> ExtraNamespaceLoc;
- Token attrTok;
- if (Tok.is(tok::identifier)) {
- Ident = Tok.getIdentifierInfo();
- IdentLoc = ConsumeToken(); // eat the identifier.
- while (Tok.is(tok::coloncolon) && NextToken().is(tok::identifier)) {
- ExtraNamespaceLoc.push_back(ConsumeToken());
- ExtraIdent.push_back(Tok.getIdentifierInfo());
- ExtraIdentLoc.push_back(ConsumeToken());
- }
- }
- // Read label attributes, if present.
- ParsedAttributes attrs(AttrFactory);
- if (Tok.is(tok::kw___attribute)) {
- attrTok = Tok;
- ParseGNUAttributes(attrs);
- }
- if (Tok.is(tok::equal)) {
- if (!attrs.empty())
- Diag(attrTok, diag::err_unexpected_namespace_attributes_alias);
- if (InlineLoc.isValid())
- Diag(InlineLoc, diag::err_inline_namespace_alias)
- << FixItHint::CreateRemoval(InlineLoc);
- return ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
- }
- BalancedDelimiterTracker T(*this, tok::l_brace);
- if (T.consumeOpen()) {
- if (!ExtraIdent.empty()) {
- Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
- << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
- }
- Diag(Tok, Ident ? diag::err_expected_lbrace :
- diag::err_expected_ident_lbrace);
- return 0;
- }
- if (getCurScope()->isClassScope() || getCurScope()->isTemplateParamScope() ||
- getCurScope()->isInObjcMethodScope() || getCurScope()->getBlockParent() ||
- getCurScope()->getFnParent()) {
- if (!ExtraIdent.empty()) {
- Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
- << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
- }
- Diag(T.getOpenLocation(), diag::err_namespace_nonnamespace_scope);
- SkipUntil(tok::r_brace, false);
- return 0;
- }
- if (!ExtraIdent.empty()) {
- TentativeParsingAction TPA(*this);
- SkipUntil(tok::r_brace, /*StopAtSemi*/false, /*DontConsume*/true);
- Token rBraceToken = Tok;
- TPA.Revert();
- if (!rBraceToken.is(tok::r_brace)) {
- Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
- << SourceRange(ExtraNamespaceLoc.front(), ExtraIdentLoc.back());
- } else {
- std::string NamespaceFix;
- for (std::vector<IdentifierInfo*>::iterator I = ExtraIdent.begin(),
- E = ExtraIdent.end(); I != E; ++I) {
- NamespaceFix += " { namespace ";
- NamespaceFix += (*I)->getName();
- }
- std::string RBraces;
- for (unsigned i = 0, e = ExtraIdent.size(); i != e; ++i)
- RBraces += "} ";
- Diag(ExtraNamespaceLoc[0], diag::err_nested_namespaces_with_double_colon)
- << FixItHint::CreateReplacement(SourceRange(ExtraNamespaceLoc.front(),
- ExtraIdentLoc.back()),
- NamespaceFix)
- << FixItHint::CreateInsertion(rBraceToken.getLocation(), RBraces);
- }
- }
- // If we're still good, complain about inline namespaces in non-C++0x now.
- if (InlineLoc.isValid())
- Diag(InlineLoc, getLangOpts().CPlusPlus0x ?
- diag::warn_cxx98_compat_inline_namespace : diag::ext_inline_namespace);
- // Enter a scope for the namespace.
- ParseScope NamespaceScope(this, Scope::DeclScope);
- Decl *NamespcDecl =
- Actions.ActOnStartNamespaceDef(getCurScope(), InlineLoc, NamespaceLoc,
- IdentLoc, Ident, T.getOpenLocation(),
- attrs.getList());
- PrettyDeclStackTraceEntry CrashInfo(Actions, NamespcDecl, NamespaceLoc,
- "parsing namespace");
- // Parse the contents of the namespace. This includes parsing recovery on
- // any improperly nested namespaces.
- ParseInnerNamespace(ExtraIdentLoc, ExtraIdent, ExtraNamespaceLoc, 0,
- InlineLoc, attrs, T);
- // Leave the namespace scope.
- NamespaceScope.Exit();
- DeclEnd = T.getCloseLocation();
- Actions.ActOnFinishNamespaceDef(NamespcDecl, DeclEnd);
- return NamespcDecl;
- }
- /// ParseInnerNamespace - Parse the contents of a namespace.
- void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
- std::vector<IdentifierInfo*>& Ident,
- std::vector<SourceLocation>& NamespaceLoc,
- unsigned int index, SourceLocation& InlineLoc,
- ParsedAttributes& attrs,
- BalancedDelimiterTracker &Tracker) {
- if (index == Ident.size()) {
- while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
- ParsedAttributesWithRange attrs(AttrFactory);
- MaybeParseCXX0XAttributes(attrs);
- MaybeParseMicrosoftAttributes(attrs);
- ParseExternalDeclaration(attrs);
- }
- // The caller is what called check -- we are simply calling
- // the close for it.
- Tracker.consumeClose();
- return;
- }
- // Parse improperly nested namespaces.
- ParseScope NamespaceScope(this, Scope::DeclScope);
- Decl *NamespcDecl =
- Actions.ActOnStartNamespaceDef(getCurScope(), SourceLocation(),
- NamespaceLoc[index], IdentLoc[index],
- Ident[index], Tracker.getOpenLocation(),
- attrs.getList());
- ParseInnerNamespace(IdentLoc, Ident, NamespaceLoc, ++index, InlineLoc,
- attrs, Tracker);
- NamespaceScope.Exit();
- Actions.ActOnFinishNamespaceDef(NamespcDecl, Tracker.getCloseLocation());
- }
- /// ParseNamespaceAlias - Parse the part after the '=' in a namespace
- /// alias definition.
- ///
- Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
- SourceLocation AliasLoc,
- IdentifierInfo *Alias,
- SourceLocation &DeclEnd) {
- assert(Tok.is(tok::equal) && "Not equal token");
- ConsumeToken(); // eat the '='.
- if (Tok.is(tok::code_completion)) {
- Actions.CodeCompleteNamespaceAliasDecl(getCurScope());
- cutOffParsing();
- return 0;
- }
- CXXScopeSpec SS;
- // Parse (optional) nested-name-specifier.
- ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
- if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
- Diag(Tok, diag::err_expected_namespace_name);
- // Skip to end of the definition and eat the ';'.
- SkipUntil(tok::semi);
- return 0;
- }
- // Parse identifier.
- IdentifierInfo *Ident = Tok.getIdentifierInfo();
- SourceLocation IdentLoc = ConsumeToken();
- // Eat the ';'.
- DeclEnd = Tok.getLocation();
- ExpectAndConsume(tok::semi, diag::err_expected_semi_after_namespace_name,
- "", tok::semi);
- return Actions.ActOnNamespaceAliasDef(getCurScope(), NamespaceLoc, AliasLoc, Alias,
- SS, IdentLoc, Ident);
- }
- /// ParseLinkage - We know that the current token is a string_literal
- /// and just before that, that extern was seen.
- ///
- /// linkage-specification: [C++ 7.5p2: dcl.link]
- /// 'extern' string-literal '{' declaration-seq[opt] '}'
- /// 'extern' string-literal declaration
- ///
- Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
- assert(Tok.is(tok::string_literal) && "Not a string literal!");
- SmallString<8> LangBuffer;
- bool Invalid = false;
- StringRef Lang = PP.getSpelling(Tok, LangBuffer, &Invalid);
- if (Invalid)
- return 0;
- // FIXME: This is incorrect: linkage-specifiers are parsed in translation
- // phase 7, so string-literal concatenation is supposed to occur.
- // extern "" "C" "" "+" "+" { } is legal.
- if (Tok.hasUDSuffix())
- Diag(Tok, diag::err_invalid_string_udl);
- SourceLocation Loc = ConsumeStringToken();
- ParseScope LinkageScope(this, Scope::DeclScope);
- Decl *LinkageSpec
- = Actions.ActOnStartLinkageSpecification(getCurScope(),
- DS.getSourceRange().getBegin(),
- Loc, Lang,
- Tok.is(tok::l_brace) ? Tok.getLocation()
- : SourceLocation());
- ParsedAttributesWithRange attrs(AttrFactory);
- MaybeParseCXX0XAttributes(attrs);
- MaybeParseMicrosoftAttributes(attrs);
- if (Tok.isNot(tok::l_brace)) {
- // Reset the source range in DS, as the leading "extern"
- // does not really belong to the inner declaration ...
- DS.SetRangeStart(SourceLocation());
- DS.SetRangeEnd(SourceLocation());
- // ... but anyway remember that such an "extern" was seen.
- DS.setExternInLinkageSpec(true);
- ParseExternalDeclaration(attrs, &DS);
- return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
- SourceLocation());
- }
- DS.abort();
- ProhibitAttributes(attrs);
- BalancedDelimiterTracker T(*this, tok::l_brace);
- T.consumeOpen();
- while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
- ParsedAttributesWithRange attrs(AttrFactory);
- MaybeParseCXX0XAttributes(attrs);
- MaybeParseMicrosoftAttributes(attrs);
- ParseExternalDeclaration(attrs);
- }
- T.consumeClose();
- return Actions.ActOnFinishLinkageSpecification(getCurScope(), LinkageSpec,
- T.getCloseLocation());
- }
- /// ParseUsingDirectiveOrDeclaration - Parse C++ using using-declaration or
- /// using-directive. Assumes that current token is 'using'.
- Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
- const ParsedTemplateInfo &TemplateInfo,
- SourceLocation &DeclEnd,
- ParsedAttributesWithRange &attrs,
- Decl **OwnedType) {
- assert(Tok.is(tok::kw_using) && "Not using token");
- ObjCDeclContextSwitch ObjCDC(*this);
-
- // Eat 'using'.
- SourceLocation UsingLoc = ConsumeToken();
- if (Tok.is(tok::code_completion)) {
- Actions.CodeCompleteUsing(getCurScope());
- cutOffParsing();
- return 0;
- }
- // 'using namespace' means this is a using-directive.
- if (Tok.is(tok::kw_namespace)) {
- // Template parameters are always an error here.
- if (TemplateInfo.Kind) {
- SourceRange R = TemplateInfo.getSourceRange();
- Diag(UsingLoc, diag::err_templated_using_directive)
- << R << FixItHint::CreateRemoval(R);
- }
- return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs);
- }
- // Otherwise, it must be a using-declaration or an alias-declaration.
- // Using declarations can't have attributes.
- ProhibitAttributes(attrs);
- return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd,
- AS_none, OwnedType);
- }
- /// ParseUsingDirective - Parse C++ using-directive, assumes
- /// that current token is 'namespace' and 'using' was already parsed.
- ///
- /// using-directive: [C++ 7.3.p4: namespace.udir]
- /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
- /// namespace-name ;
- /// [GNU] using-directive:
- /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
- /// namespace-name attributes[opt] ;
- ///
- Decl *Parser::ParseUsingDirective(unsigned Context,
- SourceLocation UsingLoc,
- SourceLocation &DeclEnd,
- ParsedAttributes &attrs) {
- assert(Tok.is(tok::kw_namespace) && "Not 'namespace' token");
- // Eat 'namespace'.
- SourceLocation NamespcLoc = ConsumeToken();
- if (Tok.is(tok::code_completion)) {
- Actions.CodeCompleteUsingDirective(getCurScope());
- cutOffParsing();
- return 0;
- }
- CXXScopeSpec SS;
- // Parse (optional) nested-name-specifier.
- ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
- IdentifierInfo *NamespcName = 0;
- SourceLocation IdentLoc = SourceLocation();
- // Parse namespace-name.
- if (SS.isInvalid() || Tok.isNot(tok::identifier)) {
- Diag(Tok, diag::err_expected_namespace_name);
- // If there was invalid namespace name, skip to end of decl, and eat ';'.
- SkipUntil(tok::semi);
- // FIXME: Are there cases, when we would like to call ActOnUsingDirective?
- return 0;
- }
- // Parse identifier.
- NamespcName = Tok.getIdentifierInfo();
- IdentLoc = ConsumeToken();
- // Parse (optional) attributes (most likely GNU strong-using extension).
- bool GNUAttr = false;
- if (Tok.is(tok::kw___attribute)) {
- GNUAttr = true;
- ParseGNUAttributes(attrs);
- }
- // Eat ';'.
- DeclEnd = Tok.getLocation();
- ExpectAndConsume(tok::semi,
- GNUAttr ? diag::err_expected_semi_after_attribute_list
- : diag::err_expected_semi_after_namespace_name,
- "", tok::semi);
- return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS,
- IdentLoc, NamespcName, attrs.getList());
- }
- /// ParseUsingDeclaration - Parse C++ using-declaration or alias-declaration.
- /// Assumes that 'using' was already seen.
- ///
- /// using-declaration: [C++ 7.3.p3: namespace.udecl]
- /// 'using' 'typename'[opt] ::[opt] nested-name-specifier
- /// unqualified-id
- /// 'using' :: unqualified-id
- ///
- /// alias-declaration: C++0x [decl.typedef]p2
- /// 'using' identifier = type-id ;
- ///
- Decl *Parser::ParseUsingDeclaration(unsigned Context,
- const ParsedTemplateInfo &TemplateInfo,
- SourceLocation UsingLoc,
- SourceLocation &DeclEnd,
- AccessSpecifier AS,
- Decl **OwnedType) {
- CXXScopeSpec SS;
- SourceLocation TypenameLoc;
- bool IsTypeName;
- // Ignore optional 'typename'.
- // FIXME: This is wrong; we should parse this as a typename-specifier.
- if (Tok.is(tok::kw_typename)) {
- TypenameLoc = Tok.getLocation();
- ConsumeToken();
- IsTypeName = true;
- }
- else
- IsTypeName = false;
- // Parse nested-name-specifier.
- ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
- // Check nested-name specifier.
- if (SS.isInvalid()) {
- SkipUntil(tok::semi);
- return 0;
- }
- // Parse the unqualified-id. We allow parsing of both constructor and
- // destructor names and allow the action module to diagnose any semantic
- // errors.
- SourceLocation TemplateKWLoc;
- UnqualifiedId Name;
- if (ParseUnqualifiedId(SS,
- /*EnteringContext=*/false,
- /*AllowDestructorName=*/true,
- /*AllowConstructorName=*/true,
- ParsedType(),
- TemplateKWLoc,
- Name)) {
- SkipUntil(tok::semi);
- return 0;
- }
- ParsedAttributes attrs(AttrFactory);
- // Maybe this is an alias-declaration.
- bool IsAliasDecl = Tok.is(tok::equal);
- TypeResult TypeAlias;
- if (IsAliasDecl) {
- // TODO: Attribute support. C++0x attributes may appear before the equals.
- // Where can GNU attributes appear?
- ConsumeToken();
- Diag(Tok.getLocation(), getLangOpts().CPlusPlus0x ?
- diag::warn_cxx98_compat_alias_declaration :
- diag::ext_alias_declaration);
- // Type alias templates cannot be specialized.
- int SpecKind = -1;
- if (TemplateInfo.Kind == ParsedTemplateInfo::Template &&
- Name.getKind() == UnqualifiedId::IK_TemplateId)
- SpecKind = 0;
- if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization)
- SpecKind = 1;
- if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
- SpecKind = 2;
- if (SpecKind != -1) {
- SourceRange Range;
- if (SpecKind == 0)
- Range = SourceRange(Name.TemplateId->LAngleLoc,
- Name.TemplateId->RAngleLoc);
- else
- Range = TemplateInfo.getSourceRange();
- Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
- << SpecKind << Range;
- SkipUntil(tok::semi);
- return 0;
- }
- // Name must be an identifier.
- if (Name.getKind() != UnqualifiedId::IK_Identifier) {
- Diag(Name.StartLocation, diag::err_alias_declaration_not_identifier);
- // No removal fixit: can't recover from this.
- SkipUntil(tok::semi);
- return 0;
- } else if (IsTypeName)
- Diag(TypenameLoc, diag::err_alias_declaration_not_identifier)
- << FixItHint::CreateRemoval(SourceRange(TypenameLoc,
- SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc));
- else if (SS.isNotEmpty())
- Diag(SS.getBeginLoc(), diag::err_alias_declaration_not_identifier)
- << FixItHint::CreateRemoval(SS.getRange());
- TypeAlias = ParseTypeName(0, TemplateInfo.Kind ?
- Declarator::AliasTemplateContext :
- Declarator::AliasDeclContext, AS, OwnedType);
- } else
- // Parse (optional) attributes (most likely GNU strong-using extension).
- MaybeParseGNUAttributes(attrs);
- // Eat ';'.
- DeclEnd = Tok.getLocation();
- ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
- !attrs.empty() ? "attributes list" :
- IsAliasDecl ? "alias declaration" : "using declaration",
- tok::semi);
- // Diagnose an attempt to declare a templated using-declaration.
- // In C++0x, alias-declarations can be templates:
- // template <...> using id = type;
- if (TemplateInfo.Kind && !IsAliasDecl) {
- SourceRange R = TemplateInfo.getSourceRange();
- Diag(UsingLoc, diag::err_templated_using_declaration)
- << R << FixItHint::CreateRemoval(R);
- // Unfortunately, we have to bail out instead of recovering by
- // ignoring the parameters, just in case the nested name specifier
- // depends on the parameters.
- return 0;
- }
- // "typename" keyword is allowed for identifiers only,
- // because it may be a type definition.
- if (IsTypeName && Name.getKind() != UnqualifiedId::IK_Identifier) {
- Diag(Name.getSourceRange().getBegin(), diag::err_typename_identifiers_only)
- << FixItHint::CreateRemoval(SourceRange(TypenameLoc));
- // Proceed parsing, but reset the IsTypeName flag.
- IsTypeName = false;
- }
- if (IsAliasDecl) {
- TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
- MultiTemplateParamsArg TemplateParamsArg(Actions,
- TemplateParams ? TemplateParams->data() : 0,
- TemplateParams ? TemplateParams->size() : 0);
- return Actions.ActOnAliasDeclaration(getCurScope(), AS, TemplateParamsArg,
- UsingLoc, Name, TypeAlias);
- }
- return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS,
- Name, attrs.getList(),
- IsTypeName, TypenameLoc);
- }
- /// ParseStaticAssertDeclaration - Parse C++0x or C11 static_assert-declaration.
- ///
- /// [C++0x] static_assert-declaration:
- /// static_assert ( constant-expression , string-literal ) ;
- ///
- /// [C11] static_assert-declaration:
- /// _Static_assert ( constant-expression , string-literal ) ;
- ///
- Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd){
- assert((Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) &&
- "Not a static_assert declaration");
- if (Tok.is(tok::kw__Static_assert) && !getLangOpts().C11)
- Diag(Tok, diag::ext_c11_static_assert);
- if (Tok.is(tok::kw_static_assert))
- Diag(Tok, diag::warn_cxx98_compat_static_assert);
- SourceLocation StaticAssertLoc = ConsumeToken();
- BalancedDelimiterTracker T(*this, tok::l_paren);
- if (T.consumeOpen()) {
- Diag(Tok, diag::err_expected_lparen);
- return 0;
- }
- ExprResult AssertExpr(ParseConstantExpression());
- if (AssertExpr.isInvalid()) {
- SkipUntil(tok::semi);
- return 0;
- }
- if (ExpectAndConsume(tok::comma, diag::err_expected_comma, "", tok::semi))
- return 0;
- if (!isTokenStringLiteral()) {
- Diag(Tok, diag::err_expected_string_literal);
- SkipUntil(tok::semi);
- return 0;
- }
- ExprResult AssertMessage(ParseStringLiteralExpression());
- if (AssertMessage.isInvalid()) {
- SkipUntil(tok::semi);
- return 0;
- }
- T.consumeClose();
- DeclEnd = Tok.getLocation();
- ExpectAndConsumeSemi(diag::err_expected_semi_after_static_assert);
- return Actions.ActOnStaticAssertDeclaration(StaticAssertLoc,
- AssertExpr.take(),
- AssertMessage.take(),
- T.getCloseLocation());
- }
- /// ParseDecltypeSpecifier - Parse a C++0x decltype specifier.
- ///
- /// 'decltype' ( expression )
- ///
- SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
- assert((Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype))
- && "Not a decltype specifier");
-
- ExprResult Result;
- SourceLocation StartLoc = Tok.getLocation();
- SourceLocation EndLoc;
- if (Tok.is(tok::annot_decltype)) {
- Result = getExprAnnotation(Tok);
- EndLoc = Tok.getAnnotationEndLoc();
- ConsumeToken();
- if (Result.isInvalid()) {
- DS.SetTypeSpecError();
- return EndLoc;
- }
- } else {
- if (Tok.getIdentifierInfo()->isStr("decltype"))
- Diag(Tok, diag::warn_cxx98_compat_decltype);
- ConsumeToken();
- BalancedDelimiterTracker T(*this, tok::l_paren);
- if (T.expectAndConsume(diag::err_expected_lparen_after,
- "decltype", tok::r_paren)) {
- DS.SetTypeSpecError();
- return T.getOpenLocation() == Tok.getLocation() ?
- StartLoc : T.getOpenLocation();
- }
- // Parse the expression
- // C++0x [dcl.type.simple]p4:
- // The operand of the decltype specifier is an unevaluated operand.
- EnterExpressionEvaluationContext Unevaluated(Actions, Sema::Unevaluated,
- 0, /*IsDecltype=*/true);
- Result = ParseExpression();
- if (Result.isInvalid()) {
- SkipUntil(tok::r_paren);
- DS.SetTypeSpecError();
- return StartLoc;
- }
- // Match the ')'
- T.consumeClose();
- if (T.getCloseLocation().isInvalid()) {
- DS.SetTypeSpecError();
- // FIXME: this should return the location of the last token
- // that was consumed (by "consumeClose()")
- return T.getCloseLocation();
- }
- Result = Actions.ActOnDecltypeExpression(Result.take());
- if (Result.isInvalid()) {
- DS.SetTypeSpecError();
- return T.getCloseLocation();
- }
- EndLoc = T.getCloseLocation();
- }
- const char *PrevSpec = 0;
- unsigned DiagID;
- // Check for duplicate type specifiers (e.g. "int decltype(a)").
- if (DS.SetTypeSpecType(DeclSpec::TST_decltype, StartLoc, PrevSpec,
- DiagID, Result.release())) {
- Diag(StartLoc, DiagID) << PrevSpec;
- DS.SetTypeSpecError();
- }
- return EndLoc;
- }
- void Parser::AnnotateExistingDecltypeSpecifier(const DeclSpec& DS,
- SourceLocation StartLoc,
- SourceLocation EndLoc) {
- // make sure we have a token we can turn into an annotation token
- if (PP.isBacktrackEnabled())
- PP.RevertCachedTokens(1);
- else
- PP.EnterToken(Tok);
- Tok.setKind(tok::annot_decltype);
- setExprAnnotation(Tok, DS.getTypeSpecType() == TST_decltype ?
- DS.getRepAsExpr() : ExprResult());
- Tok.setAnnotationEndLoc(EndLoc);
- Tok.setLocation(StartLoc);
- PP.AnnotateCachedTokens(Tok);
- }
- void Parser::ParseUnderlyingTypeSpecifier(DeclSpec &DS) {
- assert(Tok.is(tok::kw___underlying_type) &&
- "Not an underlying type specifier");
- SourceLocation StartLoc = ConsumeToken();
- BalancedDelimiterTracker T(*this, tok::l_paren);
- if (T.expectAndConsume(diag::err_expected_lparen_after,
- "__underlying_type", tok::r_paren)) {
- return;
- }
- TypeResult Result = ParseTypeName();
- if (Result.isInvalid()) {
- SkipUntil(tok::r_paren);
- return;
- }
- // Match the ')'
- T.consumeClose();
- if (T.getCloseLocation().isInvalid())
- return;
- const char *PrevSpec = 0;
- unsigned DiagID;
- if (DS.SetTypeSpecType(DeclSpec::TST_underlyingType, StartLoc, PrevSpec,
- DiagID, Result.release()))
- Diag(StartLoc, DiagID) << PrevSpec;
- }
- /// ParseBaseTypeSpecifier - Parse a C++ base-type-specifier which is either a
- /// class name or decltype-specifier. Note that we only check that the result
- /// names a type; semantic analysis will need to verify that the type names a
- /// class. The result is either a type or null, depending on whether a type
- /// name was found.
- ///
- /// base-type-specifier: [C++ 10.1]
- /// class-or-decltype
- /// class-or-decltype: [C++ 10.1]
- /// nested-name-specifier[opt] class-name
- /// decltype-specifier
- /// class-name: [C++ 9.1]
- /// identifier
- /// simple-template-id
- ///
- Parser::TypeResult Parser::ParseBaseTypeSpecifier(SourceLocation &BaseLoc,
- SourceLocation &EndLocation) {
- // Ignore attempts to use typename
- if (Tok.is(tok::kw_typename)) {
- Diag(Tok, diag::err_expected_class_name_not_template)
- << FixItHint::CreateRemoval(Tok.getLocation());
- ConsumeToken();
- }
- // Parse optional nested-name-specifier
- CXXScopeSpec SS;
- ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
- BaseLoc = Tok.getLocation();
- // Parse decltype-specifier
- // tok == kw_decltype is just error recovery, it can only happen when SS
- // isn't empty
- if (Tok.is(tok::kw_decltype) || Tok.is(tok::annot_decltype)) {
- if (SS.isNotEmpty())
- Diag(SS.getBeginLoc(), diag::err_unexpected_scope_on_base_decltype)
- << FixItHint::CreateRemoval(SS.getRange());
- // Fake up a Declarator to use with ActOnTypeName.
- DeclSpec DS(AttrFactory);
- EndLocation = ParseDecltypeSpecifier(DS);
- Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
- return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
- }
- // Check whether we have a template-id that names a type.
- if (Tok.is(tok::annot_template_id)) {
- TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
- if (TemplateId->Kind == TNK_Type_template ||
- TemplateId->Kind == TNK_Dependent_template_name) {
- AnnotateTemplateIdTokenAsType();
- assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
- ParsedType Type = getTypeAnnotation(Tok);
- EndLocation = Tok.getAnnotationEndLoc();
- ConsumeToken();
- if (Type)
- return Type;
- return true;
- }
- // Fall through to produce an error below.
- }
- if (Tok.isNot(tok::identifier)) {
- Diag(Tok, diag::err_expected_class_name);
- return true;
- }
- IdentifierInfo *Id = Tok.getIdentifierInfo();
- SourceLocation IdLoc = ConsumeToken();
- if (Tok.is(tok::less)) {
- // It looks the user intended to write a template-id here, but the
- // template-name was wrong. Try to fix that.
- TemplateNameKind TNK = TNK_Type_template;
- TemplateTy Template;
- if (!Actions.DiagnoseUnknownTemplateName(*Id, IdLoc, getCurScope(),
- &SS, Template, TNK)) {
- Diag(IdLoc, diag::err_unknown_template_name)
- << Id;
- }
- if (!Template)
- return true;
- // Form the template name
- UnqualifiedId TemplateName;
- TemplateName.setIdentifier(Id, IdLoc);
- // Parse the full template-id, then turn it into a type.
- if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
- TemplateName, true))
- return true;
- if (TNK == TNK_Dependent_template_name)
- AnnotateTemplateIdTokenAsType();
- // If we didn't end up with a typename token, there's nothing more we
- // can do.
- if (Tok.isNot(tok::annot_typename))
- return true;
- // Retrieve the type from the annotation token, consume that token, and
- // return.
- EndLocation = Tok.getAnnotationEndLoc();
- ParsedType Type = getTypeAnnotation(Tok);
- ConsumeToken();
- return Type;
- }
- // We have an identifier; check whether it is actually a type.
- ParsedType Type = Actions.getTypeName(*Id, IdLoc, getCurScope(), &SS, true,
- false, ParsedType(),
- /*IsCtorOrDtorName=*/false,
- /*NonTrivialTypeSourceInfo=*/true);
- if (!Type) {
- Diag(IdLoc, diag::err_expected_class_name);
- return true;
- }
- // Consume the identifier.
- EndLocation = IdLoc;
- // Fake up a Declarator to use with ActOnTypeName.
- DeclSpec DS(AttrFactory);
- DS.SetRangeStart(IdLoc);
- DS.SetRangeEnd(EndLocation);
- DS.getTypeSpecScope() = SS;
- const char *PrevSpec = 0;
- unsigned DiagID;
- DS.SetTypeSpecType(TST_typename, IdLoc, PrevSpec, DiagID, Type);
- Declarator DeclaratorInfo(DS, Declarator::TypeNameContext);
- return Actions.ActOnTypeName(getCurScope(), DeclaratorInfo);
- }
- /// ParseClassSpecifier - Parse a C++ class-specifier [C++ class] or
- /// elaborated-type-specifier [C++ dcl.type.elab]; we can't tell which
- /// until we reach the start of a definition or see a token that
- /// cannot start a definition. If SuppressDeclarations is true, we do know.
- ///
- /// class-specifier: [C++ class]
- /// class-head '{' member-specification[opt] '}'
- /// class-head '{' member-specification[opt] '}' attributes[opt]
- /// class-head:
- /// class-key identifier[opt] base-clause[opt]
- /// class-key nested-name-specifier identifier base-clause[opt]
- /// class-key nested-name-specifier[opt] simple-template-id
- /// base-clause[opt]
- /// [GNU] class-key attributes[opt] identifier[opt] base-clause[opt]
- /// [GNU] class-key attributes[opt] nested-name-specifier
- /// identifier base-clause[opt]
- /// [GNU] class-key attributes[opt] nested-name-specifier[opt]
- /// simple-template-id base-clause[opt]
- /// class-key:
- /// 'class'
- /// 'struct'
- /// 'union'
- ///
- /// elaborated-type-specifier: [C++ dcl.type.elab]
- /// class-key ::[opt] nested-name-specifier[opt] identifier
- /// class-key ::[opt] nested-name-specifier[opt] 'template'[opt]
- /// simple-template-id
- ///
- /// Note that the C++ class-specifier and elaborated-type-specifier,
- /// together, subsume the C99 struct-or-union-specifier:
- ///
- /// struct-or-union-specifier: [C99 6.7.2.1]
- /// struct-or-union identifier[opt] '{' struct-contents '}'
- /// struct-or-union identifier
- /// [GNU] struct-or-union attributes[opt] identifier[opt] '{' struct-contents
- /// '}' attributes[opt]
- /// [GNU] struct-or-union attributes[opt] identifier
- /// struct-or-union:
- /// 'struct'
- /// 'union'
- void Parser::ParseClassSpecifier(tok::TokenKind TagTokKind,
- SourceLocation StartLoc, DeclSpec &DS,
- const ParsedTemplateInfo &TemplateInfo,
- AccessSpecifier AS,
- bool EnteringContext,
- bool SuppressDeclarations){
- DeclSpec::TST TagType;
- if (TagTokKind == tok::kw_struct)
- TagType = DeclSpec::TST_struct;
- else if (TagTokKind == tok::kw_class)
- TagType = DeclSpec::TST_class;
- else {
- assert(TagTokKind == tok::kw_union && "Not a class specifier");
- TagType = DeclSpec::TST_union;
- }
- if (Tok.is(tok::code_completion)) {
- // Code completion for a struct, class, or union name.
- Actions.CodeCompleteTag(getCurScope(), TagType);
- return cutOffParsing();
- }
- // C++03 [temp.explicit] 14.7.2/8:
- // The usual access checking rules do not apply to names used to specify
- // explicit instantiations.
- //
- // As an extension we do not perform access checking on the names used to
- // specify explicit specializations either. This is important to allow
- // specializing traits classes for private types.
- bool SuppressingAccessChecks = false;
- if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation ||
- TemplateInfo.Kind == ParsedTemplateInfo::ExplicitSpecialization) {
- Actions.ActOnStartSuppressingAccessChecks();
- SuppressingAccessChecks = true;
- }
- ParsedAttributes attrs(AttrFactory);
- // If attributes exist after tag, parse them.
- if (Tok.is(tok::kw___attribute))
- ParseGNUAttributes(attrs);
- // If declspecs exist after tag, parse them.
- while (Tok.is(tok::kw___declspec))
- ParseMicrosoftDeclSpec(attrs);
- // If C++0x attributes exist here, parse them.
- // FIXME: Are we consistent with the ordering of parsing of different
- // styles of attributes?
- MaybeParseCXX0XAttributes(attrs);
- if (TagType == DeclSpec::TST_struct &&
- !Tok.is(tok::identifier) &&
- Tok.getIdentifierInfo() &&
- (Tok.is(tok::kw___is_arithmetic) ||
- Tok.is(tok::kw___is_convertible) ||
- Tok.is(tok::kw___is_empty) ||
- Tok.is(tok::kw___is_floating_point) ||
- Tok.is(tok::kw___is_function) ||
- Tok.is(tok::kw___is_fundamental) ||
- Tok.is(tok::kw___is_integral) ||
- Tok.is(tok::kw___is_member_function_pointer) ||
- Tok.is(tok::kw___is_member_pointer) ||
- Tok.is(tok::kw___is_pod) ||
- Tok.is(tok::kw___is_pointer) ||
- Tok.is(tok::kw___is_same) ||
- Tok.is(tok::kw___is_scalar) ||
- Tok.is(tok::kw___is_signed) ||
- Tok.is(tok::kw___is_unsigned) ||
- Tok.is(tok::kw___is_void))) {
- // GNU libstdc++ 4.2 and libc++ use certain intrinsic names as the
- // name of struct templates, but some are keywords in GCC >= 4.3
- // and Clang. Therefore, when we see the token sequence "struct
- // X", make X into a normal identifier rather than a keyword, to
- // allow libstdc++ 4.2 and libc++ to work properly.
- Tok.getIdentifierInfo()->RevertTokenIDToIdentifier();
- Tok.setKind(tok::identifier);
- }
- // Parse the (optional) nested-name-specifier.
- CXXScopeSpec &SS = DS.getTypeSpecScope();
- if (getLangOpts().CPlusPlus) {
- // "FOO : BAR" is not a potential typo for "FOO::BAR".
- ColonProtectionRAIIObject X(*this);
- if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext))
- DS.SetTypeSpecError();
- if (SS.isSet())
- if (Tok.isNot(tok::identifier) && Tok.isNot(tok::annot_template_id))
- Diag(Tok, diag::err_expected_ident);
- }
- TemplateParameterLists *TemplateParams = TemplateInfo.TemplateParams;
- // Parse the (optional) class name or simple-template-id.
- IdentifierInfo *Name = 0;
- SourceLocation NameLoc;
- TemplateIdAnnotation *TemplateId = 0;
- if (Tok.is(tok::identifier)) {
- Name = Tok.getIdentifierInfo();
- NameLoc = ConsumeToken();
- if (Tok.is(tok::less) && getLangOpts().CPlusPlus) {
- // The name was supposed to refer to a template, but didn't.
- // Eat the template argument list and try to continue parsing this as
- // a class (or template thereof).
- TemplateArgList TemplateArgs;
- SourceLocation LAngleLoc, RAngleLoc;
- if (ParseTemplateIdAfterTemplateName(TemplateTy(), NameLoc, SS,
- true, LAngleLoc,
- TemplateArgs, RAngleLoc)) {
- // We couldn't parse the template argument list at all, so don't
- // try to give any location information for the list.
- LAngleLoc = RAngleLoc = SourceLocation();
- }
- Diag(NameLoc, diag::err_explicit_spec_non_template)
- << (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation)
- << (TagType == DeclSpec::TST_class? 0
- : TagType == DeclSpec::TST_struct? 1
- : 2)
- << Name
- << SourceRange(LAngleLoc, RAngleLoc);
- // Strip off the last template parameter list if it was empty, since
- // we've removed its template argument list.
- if (TemplateParams && TemplateInfo.LastParameterListWasEmpty) {
- if (TemplateParams && TemplateParams->size() > 1) {
- TemplateParams->pop_back();
- } else {
- TemplateParams = 0;
- const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
- = ParsedTemplateInfo::NonTemplate;
- }
- } else if (TemplateInfo.Kind
- == ParsedTemplateInfo::ExplicitInstantiation) {
- // Pretend this is just a forward declaration.
- TemplateParams = 0;
- const_cast<ParsedTemplateInfo&>(TemplateInfo).Kind
- = ParsedTemplateInfo::NonTemplate;
- const_cast<ParsedTemplateInfo&>(TemplateInfo).TemplateLoc
- = SourceLocation();
- const_cast<ParsedTemplateInfo&>(TemplateInfo).ExternLoc
- = SourceLocation();
- }
- }
- } else if (Tok.is(tok::annot_template_id)) {
- TemplateId = takeTemplateIdAnnotation(Tok);
- NameLoc = ConsumeToken();
- if (TemplateId->Kind != TNK_Type_template &&
- TemplateId->Kind != TNK_Dependent_template_name) {
- // The template-name in the simple-template-id refers to
- // something other than a class template. Give an appropriate
- // error message and skip to the ';'.
- SourceRange Range(NameLoc);
- if (SS.isNotEmpty())
- Range.setBegin(SS.getBeginLoc());
- Diag(TemplateId->LAngleLoc, diag::err_template_spec_syntax_non_template)
- << Name << static_cast<int>(TemplateId->Kind) << Range;
- DS.SetTypeSpecError();
- SkipUntil(tok::semi, false, true);
- if (SuppressingAccessChecks)
- Actions.ActOnStopSuppressingAccessChecks();
- return;
- }
- }
- // As soon as we're finished parsing the class's template-id, turn access
- // checking back on.
- if (SuppressingAccessChecks)
- Actions.ActOnStopSuppressingAccessChecks();
- // There are four options here. If we have 'struct foo;', then this
- // is either a forward declaration or a friend declaration, which
- // have to be treated differently. If we have 'struct foo {...',
- // 'struct foo :...' or 'struct foo final[opt]' then this is a
- // definition. Otherwise we have something like 'struct foo xyz', a reference.
- // However, in some contexts, things look like declarations but are just
- // references, e.g.
- // new struct s;
- // or
- // &T::operator struct s;
- // For these, SuppressDeclarations is true.
- Sema::TagUseKind TUK;
- if (SuppressDeclarations)
- TUK = Sema::TUK_Reference;
- else if (Tok.is(tok::l_brace) ||
- (getLangOpts().CPlusPlus && Tok.is(tok::colon)) ||
- isCXX0XFinalKeyword()) {
- if (DS.isFriendSpecified()) {
- // C++ [class.friend]p2:
- // A class shall not be defined in a friend declaration.
- Diag(Tok.getLocation(), diag::err_friend_decl_defines_type)
- << SourceRange(DS.getFriendSpecLoc());
- // Skip everything up to the semicolon, so that this looks like a proper
- // friend class (or template thereof) declaration.
- SkipUntil(tok::semi, true, true);
- TUK = Sema::TUK_Friend;
- } else {
- // Okay, this is a class definition.
- TUK = Sema::TUK_Definition;
- }
- } else if (Tok.is(tok::semi))
- TUK = DS.isFriendSpecified() ? Sema::TUK_Friend : Sema::TUK_Declaration;
- else
- TUK = Sema::TUK_Reference;
- if (!Name && !TemplateId && (DS.getTypeSpecType() == DeclSpec::TST_error ||
- TUK != Sema::TUK_Definition)) {
- if (DS.getTypeSpecType() != DeclSpec::TST_error) {
- // We have a declaration or reference to an anonymous class.
- Diag(StartLoc, diag::err_anon_type_definition)
- << DeclSpec::getSpecifierName(TagType);
- }
- SkipUntil(tok::comma, true);
- return;
- }
- // Create the tag portion of the class or class template.
- DeclResult TagOrTempResult = true; // invalid
- TypeResult TypeResult = true; // invalid
- bool Owned = false;
- if (TemplateId) {
- // Explicit specialization, class template partial specialization,
- // or explicit instantiation.
- ASTTemplateArgsPtr TemplateArgsPtr(Actions,
- TemplateId->getTemplateArgs(),
- TemplateId->NumArgs);
- if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
- TUK == Sema::TUK_Declaration) {
- // This is an explicit instantiation of a class template.
- TagOrTempResult
- = Actions.ActOnExplicitInstantiation(getCurScope(),
- TemplateInfo.ExternLoc,
- TemplateInfo.TemplateLoc,
- TagType,
- StartLoc,
- SS,
- TemplateId->Template,
- TemplateId->TemplateNameLoc,
- TemplateId->LAngleLoc,
- TemplateArgsPtr,
- TemplateId->RAngleLoc,
- attrs.getList());
- // Friend template-ids are treated as references unless
- // they have template headers, in which case they're ill-formed
- // (FIXME: "template <class T> friend class A<T>::B<int>;").
- // We diagnose this error in ActOnClassTemplateSpecialization.
- } else if (TUK == Sema::TUK_Reference ||
- (TUK == Sema::TUK_Friend &&
- TemplateInfo.Kind == ParsedTemplateInfo::NonTemplate)) {
- TypeResult = Actions.ActOnTagTemplateIdType(TUK, TagType, StartLoc,
- TemplateId->SS,
- TemplateId->TemplateKWLoc,
- TemplateId->Template,
- TemplateId->TemplateNameLoc,
- TemplateId->LAngleLoc,
- TemplateArgsPtr,
- TemplateId->RAngleLoc);
- } else {
- // This is an explicit specialization or a class template
- // partial specialization.
- TemplateParameterLists FakedParamLists;
- if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation) {
- // This looks like an explicit instantiation, because we have
- // something like
- //
- // template class Foo<X>
- //
- // but it actually has a definition. Most likely, this was
- // meant to be an explicit specialization, but the user forgot
- // the '<>' after 'template'.
- assert(TUK == Sema::TUK_Definition && "Expected a definition here");
- SourceLocation LAngleLoc
- = PP.getLocForEndOfToken(TemplateInfo.TemplateLoc);
- Diag(TemplateId->TemplateNameLoc,
- diag::err_explicit_instantiation_with_definition)
- << SourceRange(TemplateInfo.TemplateLoc)
- << FixItHint::CreateInsertion(LAngleLoc, "<>");
- // Create a fake template parameter list that contains only
- // "template<>", so that we treat this construct as a class
- // template specialization.
- FakedParamLists.push_back(
- Actions.ActOnTemplateParameterList(0, SourceLocation(),
- TemplateInfo.TemplateLoc,
- LAngleLoc,
- 0, 0,
- LAngleLoc));
- TemplateParams = &FakedParamLists;
- }
- // Build the class template specialization.
- TagOrTempResult
- = Actions.ActOnClassTemplateSpecialization(getCurScope(), TagType, TUK,
- StartLoc, DS.getModulePrivateSpecLoc(), SS,
- TemplateId->Template,
- TemplateId->TemplateNameLoc,
- TemplateId->LAngleLoc,
- TemplateArgsPtr,
- TemplateId->RAngleLoc,
- attrs.getList(),
- MultiTemplateParamsArg(Actions,
- TemplateParams? &(*TemplateParams)[0] : 0,
- TemplateParams? TemplateParams->size() : 0));
- }
- } else if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
- TUK == Sema::TUK_Declaration) {
- // Explicit instantiation of a member of a class template
- // specialization, e.g.,
- //
- // template struct Outer<int>::Inner;
- //
- TagOrTempResult
- = Actions.ActOnExplicitInstantiation(getCurScope(),
- TemplateInfo.ExternLoc,
- TemplateInfo.TemplateLoc,
- TagType, StartLoc, SS, Name,
- NameLoc, attrs.getList());
- } else if (TUK == Sema::TUK_Friend &&
- TemplateInfo.Kind != ParsedTemplateInfo::NonTemplate) {
- TagOrTempResult =
- Actions.ActOnTemplatedFriendTag(getCurScope(), DS.getFriendSpecLoc(),
- TagType, StartLoc, SS,
- Name, NameLoc, attrs.getList(),
- MultiTemplateParamsArg(Actions,
- TemplateParams? &(*TemplateParams)[0] : 0,
- TemplateParams? TemplateParams->size() : 0));
- } else {
- if (TemplateInfo.Kind == ParsedTemplateInfo::ExplicitInstantiation &&
- TUK == Sema::TUK_Definition) {
- // FIXME: Diagnose this particular error.
- }
- bool IsDependent = false;
- // Don't pass down template parameter lists if this is just a tag
- // reference. For example, we don't need the template parameters here:
- // template <class T> class A *makeA(T t);
- MultiTemplateParamsArg TParams;
- if (TUK != Sema::TUK_Reference && TemplateParams)
- TParams =
- MultiTemplateParamsArg(&(*TemplateParams)[0], TemplateParams->size());
- // Declaration or definition of a class type
- TagOrTempResult = Actions.ActOnTag(getCurScope(), TagType, TUK, StartLoc,
- SS, Name, NameLoc, attrs.getList(), AS,
- DS.getModulePrivateSpecLoc(),
- TParams, Owned, IsDependent,
- SourceLocation(), false,
- clang::TypeResult());
- // If ActOnTag said the type was dependent, try again with the
- // less common call.
- if (IsDependent) {
- assert(TUK == Sema::TUK_Reference || TUK == Sema::TUK_Friend);
- TypeResult = Actions.ActOnDependentTag(getCurScope(), TagType, TUK,
- SS, Name, StartLoc, NameLoc);
- }
- }
- // If there is a body, parse it and inform the actions module.
- if (TUK == Sema::TUK_Definition) {
- assert(Tok.is(tok::l_brace) ||
- (getLangOpts().CPlusPlus && Tok.is(tok::colon)) ||
- isCXX0XFinalKeyword());
- if (getLangOpts().CPlusPlus)
- ParseCXXMemberSpecification(StartLoc, TagType, TagOrTempResult.get());
- else
- ParseStructUnionBody(StartLoc, TagType, TagOrTempResult.get());
- }
- const char *PrevSpec = 0;
- unsigned DiagID;
- bool Result;
- if (!TypeResult.isInvalid()) {
- Result = DS.SetTypeSpecType(DeclSpec::TST_typename, StartLoc,
- NameLoc.isValid() ? NameLoc : StartLoc,
- PrevSpec, DiagID, TypeResult.get());
- } else if (!TagOrTempResult.isInvalid()) {
- Result = DS.SetTypeSpecType(TagType, StartLoc,
- NameLoc.isValid() ? NameLoc : StartLoc,
- PrevSpec, DiagID, TagOrTempResult.get(), Owned);
- } else {
- DS.SetTypeSpecError();
- return;
- }
- if (Result)
- Diag(StartLoc, DiagID) << PrevSpec;
- // At this point, we've successfully parsed a class-specifier in 'definition'
- // form (e.g. "struct foo { int x; }". While we could just return here, we're
- // going to look at what comes after it to improve error recovery. If an
- // impossible token occurs next, we assume that the programmer forgot a ; at
- // the end of the declaration and recover that way.
- //
- // This switch enumerates the valid "follow" set for definition.
- if (TUK == Sema::TUK_Definition) {
- bool ExpectedSemi = true;
- switch (Tok.getKind()) {
- default: break;
- case tok::semi: // struct foo {...} ;
- case tok::star: // struct foo {...} * P;
- case tok::amp: // struct foo {...} & R = ...
- case tok::identifier: // struct foo {...} V ;
- case tok::r_paren: //(struct foo {...} ) {4}
- case tok::annot_cxxscope: // struct foo {...} a:: b;
- case tok::annot_typename: // struct foo {...} a ::b;
- case tok::annot_template_id: // struct foo {...} a<int> ::b;
- case tok::l_paren: // struct foo {...} ( x);
- case tok::comma: // __builtin_offsetof(struct foo{...} ,
- ExpectedSemi = false;
- break;
- // Type qualifiers
- case tok::kw_const: // struct foo {...} const x;
- case tok::kw_volatile: // struct foo {...} volatile x;
- case tok::kw_restrict: // struct foo {...} restrict x;
- case tok::kw_inline: // struct foo {...} inline foo() {};
- // Storage-class specifiers
- case tok::kw_static: // struct foo {...} static x;
- case tok::kw_extern: // struct foo {...} extern x;
- case tok::kw_typedef: // struct foo {...} typedef x;
- case tok::kw_register: // struct foo {...} register x;
- case tok::kw_auto: // struct foo {...} auto x;
- case tok::kw_mutable: // struct foo {...} mutable x;
- case tok::kw_constexpr: // struct foo {...} constexpr x;
- // As shown above, type qualifiers and storage class specifiers absolutely
- // can occur after class specifiers according to the grammar. However,
- // almost no one actually writes code like this. If we see one of these,
- // it is much more likely that someone missed a semi colon and the
- // type/storage class specifier we're seeing is part of the *next*
- // intended declaration, as in:
- //
- // struct foo { ... }
- // typedef int X;
- //
- // We'd really like to emit a missing semicolon error instead of emitting
- // an error on the 'int' saying that you can't have two type specifiers in
- // the same declaration of X. Because of this, we look ahead past this
- // token to see if it's a type specifier. If so, we know the code is
- // otherwise invalid, so we can produce the expected semi error.
- if (!isKnownToBeTypeSpecifier(NextToken()))
- ExpectedSemi = false;
- break;
- case tok::r_brace: // struct bar { struct foo {...} }
- // Missing ';' at end of struct is accepted as an extension in C mode.
- if (!getLangOpts().CPlusPlus)
- ExpectedSemi = false;
- break;
- }
- // C++ [temp]p3 In a template-declaration which defines a class, no
- // declarator is permitted.
- if (TemplateInfo.Kind)
- ExpectedSemi = true;
- if (ExpectedSemi) {
- ExpectAndConsume(tok::semi, diag::err_expected_semi_after_tagdecl,
- TagType == DeclSpec::TST_class ? "class"
- : TagType == DeclSpec::TST_struct? "struct" : "union");
- // Push this token back into the preprocessor and change our current token
- // to ';' so that the rest of the code recovers as though there were an
- // ';' after the definition.
- PP.EnterToken(Tok);
- Tok.setKind(tok::semi);
- }
- }
- }
- /// ParseBaseClause - Parse the base-clause of a C++ class [C++ class.derived].
- ///
- /// base-clause : [C++ class.derived]
- /// ':' base-specifier-list
- /// base-specifier-list:
- /// base-specifier '...'[opt]
- /// base-specifier-list ',' base-specifier '...'[opt]
- void Parser::ParseBaseClause(Decl *ClassDecl) {
- assert(Tok.is(tok::colon) && "Not a base clause");
- ConsumeToken();
- // Build up an array of parsed base specifiers.
- SmallVector<CXXBaseSpecifier *, 8> BaseInfo;
- while (true) {
- // Parse a base-specifier.
- BaseResult Result = ParseBaseSpecifier(ClassDecl);
- if (Result.isInvalid()) {
- // Skip the rest of this base specifier, up until the comma or
- // opening brace.
- SkipUntil(tok::comma, tok::l_brace, true, true);
- } else {
- // Add this to our array of base specifiers.
- BaseInfo.push_back(Result.get());
- }
- // If the next token is a comma, consume it and keep reading
- // base-specifiers.
- if (Tok.isNot(tok::comma)) break;
- // Consume the comma.
- ConsumeToken();
- }
- // Attach the base specifiers
- Actions.ActOnBaseSpecifiers(ClassDecl, BaseInfo.data(), BaseInfo.size());
- }
- /// ParseBaseSpecifier - Parse a C++ base-specifier. A base-specifier is
- /// one entry in the base class list of a class specifier, for example:
- /// class foo : public bar, virtual private baz {
- /// 'public bar' and 'virtual private baz' are each base-specifiers.
- ///
- /// base-specifier: [C++ class.derived]
- /// ::[opt] nested-name-specifier[opt] class-name
- /// 'virtual' access-specifier[opt] ::[opt] nested-name-specifier[opt]
- /// base-type-specifier
- /// access-specifier 'virtual'[opt] ::[opt] nested-name-specifier[opt]
- /// base-type-specifier
- Parser::BaseResult Parser::ParseBaseSpecifier(Decl *ClassDecl) {
- bool IsVirtual = false;
- SourceLocation StartLoc = Tok.getLocation();
- // Parse the 'virtual' keyword.
- if (Tok.is(tok::kw_virtual)) {
- ConsumeToken();
- IsVirtual = true;
- }
- // Parse an (optional) access specifier.
- AccessSpecifier Access = getAccessSpecifierIfPresent();
- if (Access != AS_none)
- ConsumeToken();
- // Parse the 'virtual' keyword (again!), in case it came after the
- // access specifier.
- if (Tok.is(tok::kw_virtual)) {
- SourceLocation VirtualLoc = ConsumeToken();
- if (IsVirtual) {
- // Complain about duplicate 'virtual'
- Diag(VirtualLoc, diag::err_dup_virtual)
- << FixItHint::CreateRemoval(VirtualLoc);
- }
- IsVirtual = true;
- }
- // Parse the class-name.
- SourceLocation EndLocation;
- SourceLocation BaseLoc;
- TypeResult BaseType = ParseBaseTypeSpecifier(BaseLoc, EndLocation);
- if (BaseType.isInvalid())
- return true;
- // Parse the optional ellipsis (for a pack expansion). The ellipsis is
- // actually part of the base-specifier-list grammar productions, but we
- // parse it here for convenience.
- SourceLocation EllipsisLoc;
- if (Tok.is(tok::ellipsis))
- EllipsisLoc = ConsumeToken();
-
- // Find the complete source range for the base-specifier.
- SourceRange Range(StartLoc, EndLocation);
- // Notify semantic analysis that we have parsed a complete
- // base-specifier.
- return Actions.ActOnBaseSpecifier(ClassDecl, Range, IsVirtual, Access,
- BaseType.get(), BaseLoc, EllipsisLoc);
- }
- /// getAccessSpecifierIfPresent - Determine whether the next token is
- /// a C++ access-specifier.
- ///
- /// access-specifier: [C++ class.derived]
- /// 'private'
- /// 'protected'
- /// 'public'
- AccessSpecifier Parser::getAccessSpecifierIfPresent() const {
- switch (Tok.getKind()) {
- default: return AS_none;
- case tok::kw_private: return AS_private;
- case tok::kw_protected: return AS_protected;
- case tok::kw_public: return AS_public;
- }
- }
- void Parser::HandleMemberFunctionDefaultArgs(Declarator& DeclaratorInfo,
- Decl *ThisDecl) {
- // We just declared a member function. If this member function
- // has any default arguments, we'll need to parse them later.
- LateParsedMethodDeclaration *LateMethod = 0;
- DeclaratorChunk::FunctionTypeInfo &FTI
- = DeclaratorInfo.getFunctionTypeInfo();
- for (unsigned ParamIdx = 0; ParamIdx < FTI.NumArgs; ++ParamIdx) {
- if (LateMethod || FTI.ArgInfo[ParamIdx].DefaultArgTokens) {
- if (!LateMethod) {
- // Push this method onto the stack of late-parsed method
- // declarations.
- LateMethod = new LateParsedMethodDeclaration(this, ThisDecl);
- getCurrentClass().LateParsedDeclarations.push_back(LateMethod);
- LateMethod->TemplateScope = getCurScope()->isTemplateParamScope();
- // Add all of the parameters prior to this one (they don't
- // have default arguments).
- LateMethod->DefaultArgs.reserve(FTI.NumArgs);
- for (unsigned I = 0; I < ParamIdx; ++I)
- LateMethod->DefaultArgs.push_back(
- LateParsedDefaultArgument(FTI.ArgInfo[I].Param));
- }
- // Add this parameter to the list of parameters (it or may
- // not have a default argument).
- LateMethod->DefaultArgs.push_back(
- LateParsedDefaultArgument(FTI.ArgInfo[ParamIdx].Param,
- FTI.ArgInfo[ParamIdx].DefaultArgTokens));
- }
- }
- }
- /// isCXX0XVirtSpecifier - Determine whether the given token is a C++0x
- /// virt-specifier.
- ///
- /// virt-specifier:
- /// override
- /// final
- VirtSpecifiers::Specifier Parser::isCXX0XVirtSpecifier(const Token &Tok) const {
- if (!getLangOpts().CPlusPlus)
- return VirtSpecifiers::VS_None;
- if (Tok.is(tok::identifier)) {
- IdentifierInfo *II = Tok.getIdentifierInfo();
- // Initialize the contextual keywords.
- if (!Ident_final) {
- Ident_final = &PP.getIdentifierTable().get("final");
- Ident_override = &PP.getIdentifierTable().get("override");
- }
- if (II == Ident_override)
- return VirtSpecifiers::VS_Override;
- if (II == Ident_final)
- return VirtSpecifiers::VS_Final;
- }
- return VirtSpecifiers::VS_None;
- }
- /// ParseOptionalCXX0XVirtSpecifierSeq - Parse a virt-specifier-seq.
- ///
- /// virt-specifier-seq:
- /// virt-specifier
- /// virt-specifier-seq virt-specifier
- void Parser::ParseOptionalCXX0XVirtSpecifierSeq(VirtSpecifiers &VS) {
- while (true) {
- VirtSpecifiers::Specifier Specifier = isCXX0XVirtSpecifier();
- if (Specifier == VirtSpecifiers::VS_None)
- return;
- // C++ [class.mem]p8:
- // A virt-specifier-seq shall contain at most one of each virt-specifier.
- const char *PrevSpec = 0;
- if (VS.SetSpecifier(Specifier, Tok.getLocation(), PrevSpec))
- Diag(Tok.getLocation(), diag::err_duplicate_virt_specifier)
- << PrevSpec
- << FixItHint::CreateRemoval(Tok.getLocation());
- Diag(Tok.getLocation(), getLangOpts().CPlusPlus0x ?
- diag::warn_cxx98_compat_override_control_keyword :
- diag::ext_override_control_keyword)
- << VirtSpecifiers::getSpecifierName(Specifier);
- ConsumeToken();
- }
- }
- /// isCXX0XFinalKeyword - Determine whether the next token is a C++0x
- /// contextual 'final' keyword.
- bool Parser::isCXX0XFinalKeyword() const {
- if (!getLangOpts().CPlusPlus)
- return false;
- if (!Tok.is(tok::identifier))
- return false;
- // Initialize the contextual keywords.
- if (!Ident_final) {
- Ident_final = &PP.getIdentifierTable().get("final");
- Ident_override = &PP.getIdentifierTable().get("override");
- }
-
- return Tok.getIdentifierInfo() == Ident_final;
- }
- /// ParseCXXClassMemberDeclaration - Parse a C++ class member declaration.
- ///
- /// member-declaration:
- /// decl-specifier-seq[opt] member-declarator-list[opt] ';'
- /// function-definition ';'[opt]
- /// ::[opt] nested-name-specifier template[opt] unqualified-id ';'[TODO]
- /// using-declaration [TODO]
- /// [C++0x] static_assert-declaration
- /// template-declaration
- /// [GNU] '__extension__' member-declaration
- ///
- /// member-declarator-list:
- /// member-declarator
- /// member-declarator-list ',' member-declarator
- ///
- /// member-declarator:
- /// declarator virt-specifier-seq[opt] pure-specifier[opt]
- /// declarator constant-initializer[opt]
- /// [C++11] declarator brace-or-equal-initializer[opt]
- /// identifier[opt] ':' constant-expression
- ///
- /// virt-specifier-seq:
- /// virt-specifier
- /// virt-specifier-seq virt-specifier
- ///
- /// virt-specifier:
- /// override
- /// final
- ///
- /// pure-specifier:
- /// '= 0'
- ///
- /// constant-initializer:
- /// '=' constant-expression
- ///
- void Parser::ParseCXXClassMemberDeclaration(AccessSpecifier AS,
- AttributeList *AccessAttrs,
- const ParsedTemplateInfo &TemplateInfo,
- ParsingDeclRAIIObject *TemplateDiags) {
- if (Tok.is(tok::at)) {
- if (getLangOpts().ObjC1 && NextToken().isObjCAtKeyword(tok::objc_defs))
- Diag(Tok, diag::err_at_defs_cxx);
- else
- Diag(Tok, diag::err_at_in_class);
-
- ConsumeToken();
- SkipUntil(tok::r_brace);
- return;
- }
-
- // Access declarations.
- if (!TemplateInfo.Kind &&
- (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
- !TryAnnotateCXXScopeToken() &&
- Tok.is(tok::annot_cxxscope)) {
- bool isAccessDecl = false;
- if (NextToken().is(tok::identifier))
- isAccessDecl = GetLookAheadToken(2).is(tok::semi);
- else
- isAccessDecl = NextToken().is(tok::kw_operator);
- if (isAccessDecl) {
- // Collect the scope specifier token we annotated earlier.
- CXXScopeSpec SS;
- ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
- /*EnteringContext=*/false);
- // Try to parse an unqualified-id.
- SourceLocation TemplateKWLoc;
- UnqualifiedId Name;
- if (ParseUnqualifiedId(SS, false, true, true, ParsedType(),
- TemplateKWLoc, Name)) {
- SkipUntil(tok::semi);
- return;
- }
- // TODO: recover from mistakenly-qualified operator declarations.
- if (ExpectAndConsume(tok::semi,
- diag::err_expected_semi_after,
- "access declaration",
- tok::semi))
- return;
- Actions.ActOnUsingDeclaration(getCurScope(), AS,
- false, SourceLocation(),
- SS, Name,
- /* AttrList */ 0,
- /* IsTypeName */ false,
- SourceLocation());
- return;
- }
- }
- // static_assert-declaration
- if (Tok.is(tok::kw_static_assert) || Tok.is(tok::kw__Static_assert)) {
- // FIXME: Check for templates
- SourceLocation DeclEnd;
- ParseStaticAssertDeclaration(DeclEnd);
- return;
- }
- if (Tok.is(tok::kw_template)) {
- assert(!TemplateInfo.TemplateParams &&
- "Nested template improperly parsed?");
- SourceLocation DeclEnd;
- ParseDeclarationStartingWithTemplate(Declarator::MemberContext, DeclEnd,
- AS, AccessAttrs);
- return;
- }
- // Handle: member-declaration ::= '__extension__' member-declaration
- if (Tok.is(tok::kw___extension__)) {
- // __extension__ silences extension warnings in the subexpression.
- ExtensionRAIIObject O(Diags); // Use RAII to do this.
- ConsumeToken();
- return ParseCXXClassMemberDeclaration(AS, AccessAttrs,
- TemplateInfo, TemplateDiags);
- }
- // Don't parse FOO:BAR as if it were a typo for FOO::BAR, in this context it
- // is a bitfield.
- ColonProtectionRAIIObject X(*this);
- ParsedAttributesWithRange attrs(AttrFactory);
- // Optional C++0x attribute-specifier
- MaybeParseCXX0XAttributes(attrs);
- MaybeParseMicrosoftAttributes(attrs);
- if (Tok.is(tok::kw_using)) {
- ProhibitAttributes(attrs);
- // Eat 'using'.
- SourceLocation UsingLoc = ConsumeToken();
- if (Tok.is(tok::kw_namespace)) {
- Diag(UsingLoc, diag::err_using_namespace_in_class);
- SkipUntil(tok::semi, true, true);
- } else {
- SourceLocation DeclEnd;
- // Otherwise, it must be a using-declaration or an alias-declaration.
- ParseUsingDeclaration(Declarator::MemberContext, TemplateInfo,
- UsingLoc, DeclEnd, AS);
- }
- return;
- }
- // Hold late-parsed attributes so we can attach a Decl to them later.
- LateParsedAttrList CommonLateParsedAttrs;
- // decl-specifier-seq:
- // Parse the common declaration-specifiers piece.
- ParsingDeclSpec DS(*this, TemplateDiags);
- DS.takeAttributesFrom(attrs);
- ParseDeclarationSpecifiers(DS, TemplateInfo, AS, DSC_class,
- &CommonLateParsedAttrs);
- MultiTemplateParamsArg TemplateParams(Actions,
- TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->data() : 0,
- TemplateInfo.TemplateParams? TemplateInfo.TemplateParams->size() : 0);
- if (Tok.is(tok::semi)) {
- ConsumeToken();
- Decl *TheDecl =
- Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS, TemplateParams);
- DS.complete(TheDecl);
- return;
- }
- ParsingDeclarator DeclaratorInfo(*this, DS, Declarator::MemberContext);
- VirtSpecifiers VS;
- // Hold late-parsed attributes so we can attach a Decl to them later.
- LateParsedAttrList LateParsedAttrs;
- SourceLocation EqualLoc;
- bool HasInitializer = false;
- ExprResult Init;
- if (Tok.isNot(tok::colon)) {
- // Don't parse FOO:BAR as if it were a typo for FOO::BAR.
- ColonProtectionRAIIObject X(*this);
- // Parse the first declarator.
- ParseDeclarator(DeclaratorInfo);
- // Error parsing the declarator?
- if (!DeclaratorInfo.hasName()) {
- // If so, skip until the semi-colon or a }.
- SkipUntil(tok::r_brace, true, true);
- if (Tok.is(tok::semi))
- ConsumeToken();
- return;
- }
- ParseOptionalCXX0XVirtSpecifierSeq(VS);
- // If attributes exist after the declarator, but before an '{', parse them.
- MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
- // MSVC permits pure specifier on inline functions declared at class scope.
- // Hence check for =0 before checking for function definition.
- if (getLangOpts().MicrosoftExt && Tok.is(tok::equal) &&
- DeclaratorInfo.isFunctionDeclarator() &&
- NextToken().is(tok::numeric_constant)) {
- EqualLoc = ConsumeToken();
- Init = ParseInitializer();
- if (Init.isInvalid())
- SkipUntil(tok::comma, true, true);
- else
- HasInitializer = true;
- }
- FunctionDefinitionKind DefinitionKind = FDK_Declaration;
- // function-definition:
- //
- // In C++11, a non-function declarator followed by an open brace is a
- // braced-init-list for an in-class member initialization, not an
- // erroneous function definition.
- if (Tok.is(tok::l_brace) && !getLangOpts().CPlusPlus0x) {
- DefinitionKind = FDK_Definition;
- } else if (DeclaratorInfo.isFunctionDeclarator()) {
- if (Tok.is(tok::l_brace) || Tok.is(tok::colon) || Tok.is(tok::kw_try)) {
- DefinitionKind = FDK_Definition;
- } else if (Tok.is(tok::equal)) {
- const Token &KW = NextToken();
- if (KW.is(tok::kw_default))
- DefinitionKind = FDK_Defaulted;
- else if (KW.is(tok::kw_delete))
- DefinitionKind = FDK_Deleted;
- }
- }
- if (DefinitionKind) {
- if (!DeclaratorInfo.isFunctionDeclarator()) {
- Diag(DeclaratorInfo.getIdentifierLoc(), diag::err_func_def_no_params);
- ConsumeBrace();
- SkipUntil(tok::r_brace, /*StopAtSemi*/false);
-
- // Consume the optional ';'
- if (Tok.is(tok::semi))
- ConsumeToken();
- return;
- }
- if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
- Diag(DeclaratorInfo.getIdentifierLoc(),
- diag::err_function_declared_typedef);
- // This recovery skips the entire function body. It would be nice
- // to simply call ParseCXXInlineMethodDef() below, however Sema
- // assumes the declarator represents a function, not a typedef.
- ConsumeBrace();
- SkipUntil(tok::r_brace, /*StopAtSemi*/false);
- // Consume the optional ';'
- if (Tok.is(tok::semi))
- ConsumeToken();
- return;
- }
- Decl *FunDecl =
- ParseCXXInlineMethodDef(AS, AccessAttrs, DeclaratorInfo, TemplateInfo,
- VS, DefinitionKind, Init);
- for (unsigned i = 0, ni = CommonLateParsedAttrs.size(); i < ni; ++i) {
- CommonLateParsedAttrs[i]->addDecl(FunDecl);
- }
- for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
- LateParsedAttrs[i]->addDecl(FunDecl);
- }
- LateParsedAttrs.clear();
- // Consume the ';' - it's optional unless we have a delete or default
- if (Tok.is(tok::semi)) {
- ConsumeToken();
- }
- return;
- }
- }
- // member-declarator-list:
- // member-declarator
- // member-declarator-list ',' member-declarator
- SmallVector<Decl *, 8> DeclsInGroup;
- ExprResult BitfieldSize;
- bool ExpectSemi = true;
- while (1) {
- // member-declarator:
- // declarator pure-specifier[opt]
- // declarator brace-or-equal-initializer[opt]
- // identifier[opt] ':' constant-expression
- if (Tok.is(tok::colon)) {
- ConsumeToken();
- BitfieldSize = ParseConstantExpression();
- if (BitfieldSize.isInvalid())
- SkipUntil(tok::comma, true, true);
- }
- // If a simple-asm-expr is present, parse it.
- if (Tok.is(tok::kw_asm)) {
- SourceLocation Loc;
- ExprResult AsmLabel(ParseSimpleAsm(&Loc));
- if (AsmLabel.isInvalid())
- SkipUntil(tok::comma, true, true);
-
- DeclaratorInfo.setAsmLabel(AsmLabel.release());
- DeclaratorInfo.SetRangeEnd(Loc);
- }
- // If attributes exist after the declarator, parse them.
- MaybeParseGNUAttributes(DeclaratorInfo, &LateParsedAttrs);
- // FIXME: When g++ adds support for this, we'll need to check whether it
- // goes before or after the GNU attributes and __asm__.
- ParseOptionalCXX0XVirtSpecifierSeq(VS);
- bool HasDeferredInitializer = false;
- if ((Tok.is(tok::equal) || Tok.is(tok::l_brace)) && !HasInitializer) {
- if (BitfieldSize.get()) {
- Diag(Tok, diag::err_bitfield_member_init);
- SkipUntil(tok::comma, true, true);
- } else {
- HasInitializer = true;
- HasDeferredInitializer = !DeclaratorInfo.isDeclarationOfFunction() &&
- DeclaratorInfo.getDeclSpec().getStorageClassSpec()
- != DeclSpec::SCS_static &&
- DeclaratorInfo.getDeclSpec().getStorageClassSpec()
- != DeclSpec::SCS_typedef;
- }
- }
- // NOTE: If Sema is the Action module and declarator is an instance field,
- // this call will *not* return the created decl; It will return null.
- // See Sema::ActOnCXXMemberDeclarator for details.
- Decl *ThisDecl = 0;
- if (DS.isFriendSpecified()) {
- // TODO: handle initializers, bitfields, 'delete'
- ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo,
- move(TemplateParams));
- } else {
- ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS,
- DeclaratorInfo,
- move(TemplateParams),
- BitfieldSize.release(),
- VS, HasDeferredInitializer);
- if (AccessAttrs)
- Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs,
- false, true);
- }
-
- // Set the Decl for any late parsed attributes
- for (unsigned i = 0, ni = CommonLateParsedAttrs.size(); i < ni; ++i) {
- CommonLateParsedAttrs[i]->addDecl(ThisDecl);
- }
- for (unsigned i = 0, ni = LateParsedAttrs.size(); i < ni; ++i) {
- LateParsedAttrs[i]->addDecl(ThisDecl);
- }
- LateParsedAttrs.clear();
- // Handle the initializer.
- if (HasDeferredInitializer) {
- // The initializer was deferred; parse it and cache the tokens.
- Diag(Tok, getLangOpts().CPlusPlus0x ?
- diag::warn_cxx98_compat_nonstatic_member_init :
- diag::ext_nonstatic_member_init);
- if (DeclaratorInfo.isArrayOfUnknownBound()) {
- // C++0x [dcl.array]p3: An array bound may also be omitted when the
- // declarator is followed by an initializer.
- //
- // A brace-or-equal-initializer for a member-declarator is not an
- // initializer in the grammar, so this is ill-formed.
- Diag(Tok, diag::err_incomplete_array_member_init);
- SkipUntil(tok::comma, true, true);
- if (ThisDecl)
- // Avoid later warnings about a class member of incomplete type.
- ThisDecl->setInvalidDecl();
- } else
- ParseCXXNonStaticMemberInitializer(ThisDecl);
- } else if (HasInitializer) {
- // Normal initializer.
- if (!Init.isUsable())
- Init = ParseCXXMemberInitializer(ThisDecl,
- DeclaratorInfo.isDeclarationOfFunction(), EqualLoc);
-
- if (Init.isInvalid())
- SkipUntil(tok::comma, true, true);
- else if (ThisDecl)
- Actions.AddInitializerToDecl(ThisDecl, Init.get(), EqualLoc.isInvalid(),
- DS.getTypeSpecType() == DeclSpec::TST_auto);
- } else if (ThisDecl && DS.getStorageClassSpec() == DeclSpec::SCS_static) {
- // No initializer.
- Actions.ActOnUninitializedDecl(ThisDecl,
- DS.getTypeSpecType() == DeclSpec::TST_auto);
- }
-
- if (ThisDecl) {
- Actions.FinalizeDeclaration(ThisDecl);
- DeclsInGroup.push_back(ThisDecl);
- }
-
- if (DeclaratorInfo.isFunctionDeclarator() &&
- DeclaratorInfo.getDeclSpec().getStorageClassSpec()
- != DeclSpec::SCS_typedef) {
- HandleMemberFunctionDefaultArgs(DeclaratorInfo, ThisDecl);
- }
- DeclaratorInfo.complete(ThisDecl);
- // If we don't have a comma, it is either the end of the list (a ';')
- // or an error, bail out.
- if (Tok.isNot(tok::comma))
- break;
- // Consume the comma.
- SourceLocation CommaLoc = ConsumeToken();
- if (Tok.isAtStartOfLine() &&
- !MightBeDeclarator(Declarator::MemberContext)) {
- // This comma was followed by a line-break and something which can't be
- // the start of a declarator. The comma was probably a typo for a
- // semicolon.
- Diag(CommaLoc, diag::err_expected_semi_declaration)
- << FixItHint::CreateReplacement(CommaLoc, ";");
- ExpectSemi = false;
- break;
- }
- // Parse the next declarator.
- DeclaratorInfo.clear();
- VS.clear();
- BitfieldSize = true;
- Init = true;
- HasInitializer = false;
- DeclaratorInfo.setCommaLoc(CommaLoc);
- // Attributes are only allowed on the second declarator.
- MaybeParseGNUAttributes(DeclaratorInfo);
- if (Tok.isNot(tok::colon))
- ParseDeclarator(DeclaratorInfo);
- }
- if (ExpectSemi &&
- ExpectAndConsume(tok::semi, diag::err_expected_semi_decl_list)) {
- // Skip to end of block or statement.
- SkipUntil(tok::r_brace, true, true);
- // If we stopped at a ';', eat it.
- if (Tok.is(tok::semi)) ConsumeToken();
- return;
- }
- Actions.FinalizeDeclaratorGroup(getCurScope(), DS, DeclsInGroup.data(),
- DeclsInGroup.size());
- }
- /// ParseCXXMemberInitializer - Parse the brace-or-equal-initializer or
- /// pure-specifier. Also detect and reject any attempted defaulted/deleted
- /// function definition. The location of the '=', if any, will be placed in
- /// EqualLoc.
- ///
- /// pure-specifier:
- /// '= 0'
- ///
- /// brace-or-equal-initializer:
- /// '=' initializer-expression
- /// braced-init-list
- ///
- /// initializer-clause:
- /// assignment-expression
- /// braced-init-list
- ///
- /// defaulted/deleted function-definition:
- /// '=' 'default'
- /// '=' 'delete'
- ///
- /// Prior to C++0x, the assignment-expression in an initializer-clause must
- /// be a constant-expression.
- ExprResult Parser::ParseCXXMemberInitializer(Decl *D, bool IsFunction,
- SourceLocation &EqualLoc) {
- assert((Tok.is(tok::equal) || Tok.is(tok::l_brace))
- && "Data member initializer not starting with '=' or '{'");
- EnterExpressionEvaluationContext Context(Actions,
- Sema::PotentiallyEvaluated,
- D);
- if (Tok.is(tok::equal)) {
- EqualLoc = ConsumeToken();
- if (Tok.is(tok::kw_delete)) {
- // In principle, an initializer of '= delete p;' is legal, but it will
- // never type-check. It's better to diagnose it as an ill-formed expression
- // than as an ill-formed deleted non-function member.
- // An initializer of '= delete p, foo' will never be parsed, because
- // a top-level comma always ends the initializer expression.
- const Token &Next = NextToken();
- if (IsFunction || Next.is(tok::semi) || Next.is(tok::comma) ||
- Next.is(tok::eof)) {
- if (IsFunction)
- Diag(ConsumeToken(), diag::err_default_delete_in_multiple_declaration)
- << 1 /* delete */;
- else
- Diag(ConsumeToken(), diag::err_deleted_non_function);
- return ExprResult();
- }
- } else if (Tok.is(tok::kw_default)) {
- if (IsFunction)
- Diag(Tok, diag::err_default_delete_in_multiple_declaration)
- << 0 /* default */;
- else
- Diag(ConsumeToken(), diag::err_default_special_members);
- return ExprResult();
- }
- }
- return ParseInitializer();
- }
- /// ParseCXXMemberSpecification - Parse the class definition.
- ///
- /// member-specification:
- /// member-declaration member-specification[opt]
- /// access-specifier ':' member-specification[opt]
- ///
- void Parser::ParseCXXMemberSpecification(SourceLocation RecordLoc,
- unsigned TagType, Decl *TagDecl) {
- assert((TagType == DeclSpec::TST_struct ||
- TagType == DeclSpec::TST_union ||
- TagType == DeclSpec::TST_class) && "Invalid TagType!");
- PrettyDeclStackTraceEntry CrashInfo(Actions, TagDecl, RecordLoc,
- "parsing struct/union/class body");
- // Determine whether this is a non-nested class. Note that local
- // classes are *not* considered to be nested classes.
- bool NonNestedClass = true;
- if (!ClassStack.empty()) {
- for (const Scope *S = getCurScope(); S; S = S->getParent()) {
- if (S->isClassScope()) {
- // We're inside a class scope, so this is a nested class.
- NonNestedClass = false;
- break;
- }
- if ((S->getFlags() & Scope::FnScope)) {
- // If we're in a function or function template declared in the
- // body of a class, then this is a local class rather than a
- // nested class.
- const Scope *Parent = S->getParent();
- if (Parent->isTemplateParamScope())
- Parent = Parent->getParent();
- if (Parent->isClassScope())
- break;
- }
- }
- }
- // Enter a scope for the class.
- ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope);
- // Note that we are parsing a new (potentially-nested) class definition.
- ParsingClassDefinition ParsingDef(*this, TagDecl, NonNestedClass);
- if (TagDecl)
- Actions.ActOnTagStartDefinition(getCurScope(), TagDecl);
- SourceLocation FinalLoc;
- // Parse the optional 'final' keyword.
- if (getLangOpts().CPlusPlus && Tok.is(tok::identifier)) {
- assert(isCXX0XFinalKeyword() && "not a class definition");
- FinalLoc = ConsumeToken();
- Diag(FinalLoc, getLangOpts().CPlusPlus0x ?
- diag::warn_cxx98_compat_override_control_keyword :
- diag::ext_override_control_keyword) << "final";
- }
- if (Tok.is(tok::colon)) {
- ParseBaseClause(TagDecl);
- if (!Tok.is(tok::l_brace)) {
- Diag(Tok, diag::err_expected_lbrace_after_base_specifiers);
- if (TagDecl)
- Actions.ActOnTagDefinitionError(getCurScope(), TagDecl);
- return;
- }
- }
- assert(Tok.is(tok::l_brace));
- BalancedDelimiterTracker T(*this, tok::l_brace);
- T.consumeOpen();
- if (TagDecl)
- Actions.ActOnStartCXXMemberDeclarations(getCurScope(), TagDecl, FinalLoc,
- T.getOpenLocation());
- // C++ 11p3: Members of a class defined with the keyword class are private
- // by default. Members of a class defined with the keywords struct or union
- // are public by default.
- AccessSpecifier CurAS;
- if (TagType == DeclSpec::TST_class)
- CurAS = AS_private;
- else
- CurAS = AS_public;
- ParsedAttributes AccessAttrs(AttrFactory);
- if (TagDecl) {
- // While we still have something to read, read the member-declarations.
- while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
- // Each iteration of this loop reads one member-declaration.
- if (getLangOpts().MicrosoftExt && (Tok.is(tok::kw___if_exists) ||
- Tok.is(tok::kw___if_not_exists))) {
- ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
- continue;
- }
- // Check for extraneous top-level semicolon.
- if (Tok.is(tok::semi)) {
- Diag(Tok, diag::ext_extra_struct_semi)
- << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
- << FixItHint::CreateRemoval(Tok.getLocation());
- ConsumeToken();
- continue;
- }
- if (Tok.is(tok::annot_pragma_vis)) {
- HandlePragmaVisibility();
- continue;
- }
- if (Tok.is(tok::annot_pragma_pack)) {
- HandlePragmaPack();
- continue;
- }
- AccessSpecifier AS = getAccessSpecifierIfPresent();
- if (AS != AS_none) {
- // Current token is a C++ access specifier.
- CurAS = AS;
- SourceLocation ASLoc = Tok.getLocation();
- unsigned TokLength = Tok.getLength();
- ConsumeToken();
- AccessAttrs.clear();
- MaybeParseGNUAttributes(AccessAttrs);
- SourceLocation EndLoc;
- if (Tok.is(tok::colon)) {
- EndLoc = Tok.getLocation();
- ConsumeToken();
- } else if (Tok.is(tok::semi)) {
- EndLoc = Tok.getLocation();
- ConsumeToken();
- Diag(EndLoc, diag::err_expected_colon)
- << FixItHint::CreateReplacement(EndLoc, ":");
- } else {
- EndLoc = ASLoc.getLocWithOffset(TokLength);
- Diag(EndLoc, diag::err_expected_colon)
- << FixItHint::CreateInsertion(EndLoc, ":");
- }
- if (Actions.ActOnAccessSpecifier(AS, ASLoc, EndLoc,
- AccessAttrs.getList())) {
- // found another attribute than only annotations
- AccessAttrs.clear();
- }
- continue;
- }
- // FIXME: Make sure we don't have a template here.
- // Parse all the comma separated declarators.
- ParseCXXClassMemberDeclaration(CurAS, AccessAttrs.getList());
- }
- T.consumeClose();
- } else {
- SkipUntil(tok::r_brace, false, false);
- }
- // If attributes exist after class contents, parse them.
- ParsedAttributes attrs(AttrFactory);
- MaybeParseGNUAttributes(attrs);
- if (TagDecl)
- Actions.ActOnFinishCXXMemberSpecification(getCurScope(), RecordLoc, TagDecl,
- T.getOpenLocation(),
- T.getCloseLocation(),
- attrs.getList());
- // C++0x [class.mem]p2: Within the class member-specification, the class is
- // regarded as complete within function bodies, default arguments, exception-
- // specifications, and brace-or-equal-initializers for non-static data
- // members (including such things in nested classes).
- //
- // FIXME: Only function bodies and brace-or-equal-initializers are currently
- // handled. Fix the others!
- if (TagDecl && NonNestedClass) {
- // We are not inside a nested class. This class and its nested classes
- // are complete and we can parse the delayed portions of method
- // declarations and the lexed inline method definitions, along with any
- // delayed attributes.
- SourceLocation SavedPrevTokLocation = PrevTokLocation;
- ParseLexedAttributes(getCurrentClass());
- ParseLexedMethodDeclarations(getCurrentClass());
- ParseLexedMemberInitializers(getCurrentClass());
- ParseLexedMethodDefs(getCurrentClass());
- PrevTokLocation = SavedPrevTokLocation;
- }
- if (TagDecl)
- Actions.ActOnTagFinishDefinition(getCurScope(), TagDecl,
- T.getCloseLocation());
- // Leave the class scope.
- ParsingDef.Pop();
- ClassScope.Exit();
- }
- /// ParseConstructorInitializer - Parse a C++ constructor initializer,
- /// which explicitly initializes the members or base classes of a
- /// class (C++ [class.base.init]). For example, the three initializers
- /// after the ':' in the Derived constructor below:
- ///
- /// @code
- /// class Base { };
- /// class Derived : Base {
- /// int x;
- /// float f;
- /// public:
- /// Derived(float f) : Base(), x(17), f(f) { }
- /// };
- /// @endcode
- ///
- /// [C++] ctor-initializer:
- /// ':' mem-initializer-list
- ///
- /// [C++] mem-initializer-list:
- /// mem-initializer ...[opt]
- /// mem-initializer ...[opt] , mem-initializer-list
- void Parser::ParseConstructorInitializer(Decl *ConstructorDecl) {
- assert(Tok.is(tok::colon) && "Constructor initializer always starts with ':'");
- // Poison the SEH identifiers so they are flagged as illegal in constructor initializers
- PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
- SourceLocation ColonLoc = ConsumeToken();
- SmallVector<CXXCtorInitializer*, 4> MemInitializers;
- bool AnyErrors = false;
- do {
- if (Tok.is(tok::code_completion)) {
- Actions.CodeCompleteConstructorInitializer(ConstructorDecl,
- MemInitializers.data(),
- MemInitializers.size());
- return cutOffParsing();
- } else {
- MemInitResult MemInit = ParseMemInitializer(ConstructorDecl);
- if (!MemInit.isInvalid())
- MemInitializers.push_back(MemInit.get());
- else
- AnyErrors = true;
- }
-
- if (Tok.is(tok::comma))
- ConsumeToken();
- else if (Tok.is(tok::l_brace))
- break;
- // If the next token looks like a base or member initializer, assume that
- // we're just missing a comma.
- else if (Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) {
- SourceLocation Loc = PP.getLocForEndOfToken(PrevTokLocation);
- Diag(Loc, diag::err_ctor_init_missing_comma)
- << FixItHint::CreateInsertion(Loc, ", ");
- } else {
- // Skip over garbage, until we get to '{'. Don't eat the '{'.
- Diag(Tok.getLocation(), diag::err_expected_lbrace_or_comma);
- SkipUntil(tok::l_brace, true, true);
- break;
- }
- } while (true);
- Actions.ActOnMemInitializers(ConstructorDecl, ColonLoc,
- MemInitializers.data(), MemInitializers.size(),
- AnyErrors);
- }
- /// ParseMemInitializer - Parse a C++ member initializer, which is
- /// part of a constructor initializer that explicitly initializes one
- /// member or base class (C++ [class.base.init]). See
- /// ParseConstructorInitializer for an example.
- ///
- /// [C++] mem-initializer:
- /// mem-initializer-id '(' expression-list[opt] ')'
- /// [C++0x] mem-initializer-id braced-init-list
- ///
- /// [C++] mem-initializer-id:
- /// '::'[opt] nested-name-specifier[opt] class-name
- /// identifier
- Parser::MemInitResult Parser::ParseMemInitializer(Decl *ConstructorDecl) {
- // parse '::'[opt] nested-name-specifier[opt]
- CXXScopeSpec SS;
- ParseOptionalCXXScopeSpecifier(SS, ParsedType(), /*EnteringContext=*/false);
- ParsedType TemplateTypeTy;
- if (Tok.is(tok::annot_template_id)) {
- TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
- if (TemplateId->Kind == TNK_Type_template ||
- TemplateId->Kind == TNK_Dependent_template_name) {
- AnnotateTemplateIdTokenAsType();
- assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
- TemplateTypeTy = getTypeAnnotation(Tok);
- }
- }
- // Uses of decltype will already have been converted to annot_decltype by
- // ParseOptionalCXXScopeSpecifier at this point.
- if (!TemplateTypeTy && Tok.isNot(tok::identifier)
- && Tok.isNot(tok::annot_decltype)) {
- Diag(Tok, diag::err_expected_member_or_base_name);
- return true;
- }
- IdentifierInfo *II = 0;
- DeclSpec DS(AttrFactory);
- SourceLocation IdLoc = Tok.getLocation();
- if (Tok.is(tok::annot_decltype)) {
- // Get the decltype expression, if there is one.
- ParseDecltypeSpecifier(DS);
- } else {
- if (Tok.is(tok::identifier))
- // Get the identifier. This may be a member name or a class name,
- // but we'll let the semantic analysis determine which it is.
- II = Tok.getIdentifierInfo();
- ConsumeToken();
- }
- // Parse the '('.
- if (getLangOpts().CPlusPlus0x && Tok.is(tok::l_brace)) {
- Diag(Tok, diag::warn_cxx98_compat_generalized_initializer_lists);
- ExprResult InitList = ParseBraceInitializer();
- if (InitList.isInvalid())
- return true;
- SourceLocation EllipsisLoc;
- if (Tok.is(tok::ellipsis))
- EllipsisLoc = ConsumeToken();
- return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
- TemplateTypeTy, DS, IdLoc,
- InitList.take(), EllipsisLoc);
- } else if(Tok.is(tok::l_paren)) {
- BalancedDelimiterTracker T(*this, tok::l_paren);
- T.consumeOpen();
- // Parse the optional expression-list.
- ExprVector ArgExprs(Actions);
- CommaLocsTy CommaLocs;
- if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) {
- SkipUntil(tok::r_paren);
- return true;
- }
- T.consumeClose();
- SourceLocation EllipsisLoc;
- if (Tok.is(tok::ellipsis))
- EllipsisLoc = ConsumeToken();
- return Actions.ActOnMemInitializer(ConstructorDecl, getCurScope(), SS, II,
- TemplateTypeTy, DS, IdLoc,
- T.getOpenLocation(), ArgExprs.take(),
- ArgExprs.size(), T.getCloseLocation(),
- EllipsisLoc);
- }
- Diag(Tok, getLangOpts().CPlusPlus0x ? diag::err_expected_lparen_or_lbrace
- : diag::err_expected_lparen);
- return true;
- }
- /// \brief Parse a C++ exception-specification if present (C++0x [except.spec]).
- ///
- /// exception-specification:
- /// dynamic-exception-specification
- /// noexcept-specification
- ///
- /// noexcept-specification:
- /// 'noexcept'
- /// 'noexcept' '(' constant-expression ')'
- ExceptionSpecificationType
- Parser::MaybeParseExceptionSpecification(SourceRange &SpecificationRange,
- SmallVectorImpl<ParsedType> &DynamicExceptions,
- SmallVectorImpl<SourceRange> &DynamicExceptionRanges,
- ExprResult &NoexceptExpr) {
- ExceptionSpecificationType Result = EST_None;
- // See if there's a dynamic specification.
- if (Tok.is(tok::kw_throw)) {
- Result = ParseDynamicExceptionSpecification(SpecificationRange,
- DynamicExceptions,
- DynamicExceptionRanges);
- assert(DynamicExceptions.size() == DynamicExceptionRanges.size() &&
- "Produced different number of exception types and ranges.");
- }
- // If there's no noexcept specification, we're done.
- if (Tok.isNot(tok::kw_noexcept))
- return Result;
- Diag(Tok, diag::warn_cxx98_compat_noexcept_decl);
- // If we already had a dynamic specification, parse the noexcept for,
- // recovery, but emit a diagnostic and don't store the results.
- SourceRange NoexceptRange;
- ExceptionSpecificationType NoexceptType = EST_None;
- SourceLocation KeywordLoc = ConsumeToken();
- if (Tok.is(tok::l_paren)) {
- // There is an argument.
- BalancedDelimiterTracker T(*this, tok::l_paren);
- T.consumeOpen();
- NoexceptType = EST_ComputedNoexcept;
- NoexceptExpr = ParseConstantExpression();
- // The argument must be contextually convertible to bool. We use
- // ActOnBooleanCondition for this purpose.
- if (!NoexceptExpr.isInvalid())
- NoexceptExpr = Actions.ActOnBooleanCondition(getCurScope(), KeywordLoc,
- NoexceptExpr.get());
- T.consumeClose();
- NoexceptRange = SourceRange(KeywordLoc, T.getCloseLocation());
- } else {
- // There is no argument.
- NoexceptType = EST_BasicNoexcept;
- NoexceptRange = SourceRange(KeywordLoc, KeywordLoc);
- }
- if (Result == EST_None) {
- SpecificationRange = NoexceptRange;
- Result = NoexceptType;
- // If there's a dynamic specification after a noexcept specification,
- // parse that and ignore the results.
- if (Tok.is(tok::kw_throw)) {
- Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
- ParseDynamicExceptionSpecification(NoexceptRange, DynamicExceptions,
- DynamicExceptionRanges);
- }
- } else {
- Diag(Tok.getLocation(), diag::err_dynamic_and_noexcept_specification);
- }
- return Result;
- }
- /// ParseDynamicExceptionSpecification - Parse a C++
- /// dynamic-exception-specification (C++ [except.spec]).
- ///
- /// dynamic-exception-specification:
- /// 'throw' '(' type-id-list [opt] ')'
- /// [MS] 'throw' '(' '...' ')'
- ///
- /// type-id-list:
- /// type-id ... [opt]
- /// type-id-list ',' type-id ... [opt]
- ///
- ExceptionSpecificationType Parser::ParseDynamicExceptionSpecification(
- SourceRange &SpecificationRange,
- SmallVectorImpl<ParsedType> &Exceptions,
- SmallVectorImpl<SourceRange> &Ranges) {
- assert(Tok.is(tok::kw_throw) && "expected throw");
- SpecificationRange.setBegin(ConsumeToken());
- BalancedDelimiterTracker T(*this, tok::l_paren);
- if (T.consumeOpen()) {
- Diag(Tok, diag::err_expected_lparen_after) << "throw";
- SpecificationRange.setEnd(SpecificationRange.getBegin());
- return EST_DynamicNone;
- }
- // Parse throw(...), a Microsoft extension that means "this function
- // can throw anything".
- if (Tok.is(tok::ellipsis)) {
- SourceLocation EllipsisLoc = ConsumeToken();
- if (!getLangOpts().MicrosoftExt)
- Diag(EllipsisLoc, diag::ext_ellipsis_exception_spec);
- T.consumeClose();
- SpecificationRange.setEnd(T.getCloseLocation());
- return EST_MSAny;
- }
- // Parse the sequence of type-ids.
- SourceRange Range;
- while (Tok.isNot(tok::r_paren)) {
- TypeResult Res(ParseTypeName(&Range));
- if (Tok.is(tok::ellipsis)) {
- // C++0x [temp.variadic]p5:
- // - In a dynamic-exception-specification (15.4); the pattern is a
- // type-id.
- SourceLocation Ellipsis = ConsumeToken();
- Range.setEnd(Ellipsis);
- if (!Res.isInvalid())
- Res = Actions.ActOnPackExpansion(Res.get(), Ellipsis);
- }
- if (!Res.isInvalid()) {
- Exceptions.push_back(Res.get());
- Ranges.push_back(Range);
- }
-
- if (Tok.is(tok::comma))
- ConsumeToken();
- else
- break;
- }
- T.consumeClose();
- SpecificationRange.setEnd(T.getCloseLocation());
- return Exceptions.empty() ? EST_DynamicNone : EST_Dynamic;
- }
- /// ParseTrailingReturnType - Parse a trailing return type on a new-style
- /// function declaration.
- TypeResult Parser::ParseTrailingReturnType(SourceRange &Range) {
- assert(Tok.is(tok::arrow) && "expected arrow");
- ConsumeToken();
- // FIXME: Need to suppress declarations when parsing this typename.
- // Otherwise in this function definition:
- //
- // auto f() -> struct X {}
- //
- // struct X is parsed as class definition because of the trailing
- // brace.
- return ParseTypeName(&Range);
- }
- /// \brief We have just started parsing the definition of a new class,
- /// so push that class onto our stack of classes that is currently
- /// being parsed.
- Sema::ParsingClassState
- Parser::PushParsingClass(Decl *ClassDecl, bool NonNestedClass) {
- assert((NonNestedClass || !ClassStack.empty()) &&
- "Nested class without outer class");
- ClassStack.push(new ParsingClass(ClassDecl, NonNestedClass));
- return Actions.PushParsingClass();
- }
- /// \brief Deallocate the given parsed class and all of its nested
- /// classes.
- void Parser::DeallocateParsedClasses(Parser::ParsingClass *Class) {
- for (unsigned I = 0, N = Class->LateParsedDeclarations.size(); I != N; ++I)
- delete Class->LateParsedDeclarations[I];
- delete Class;
- }
- /// \brief Pop the top class of the stack of classes that are
- /// currently being parsed.
- ///
- /// This routine should be called when we have finished parsing the
- /// definition of a class, but have not yet popped the Scope
- /// associated with the class's definition.
- ///
- /// \returns true if the class we've popped is a top-level class,
- /// false otherwise.
- void Parser::PopParsingClass(Sema::ParsingClassState state) {
- assert(!ClassStack.empty() && "Mismatched push/pop for class parsing");
- Actions.PopParsingClass(state);
- ParsingClass *Victim = ClassStack.top();
- ClassStack.pop();
- if (Victim->TopLevelClass) {
- // Deallocate all of the nested classes of this class,
- // recursively: we don't need to keep any of this information.
- DeallocateParsedClasses(Victim);
- return;
- }
- assert(!ClassStack.empty() && "Missing top-level class?");
- if (Victim->LateParsedDeclarations.empty()) {
- // The victim is a nested class, but we will not need to perform
- // any processing after the definition of this class since it has
- // no members whose handling was delayed. Therefore, we can just
- // remove this nested class.
- DeallocateParsedClasses(Victim);
- return;
- }
- // This nested class has some members that will need to be processed
- // after the top-level class is completely defined. Therefore, add
- // it to the list of nested classes within its parent.
- assert(getCurScope()->isClassScope() && "Nested class outside of class scope?");
- ClassStack.top()->LateParsedDeclarations.push_back(new LateParsedClass(this, Victim));
- Victim->TemplateScope = getCurScope()->getParent()->isTemplateParamScope();
- }
- /// ParseCXX0XAttributeSpecifier - Parse a C++0x attribute-specifier. Currently
- /// only parses standard attributes.
- ///
- /// [C++0x] attribute-specifier:
- /// '[' '[' attribute-list ']' ']'
- /// alignment-specifier
- ///
- /// [C++0x] attribute-list:
- /// attribute[opt]
- /// attribute-list ',' attribute[opt]
- ///
- /// [C++0x] attribute:
- /// attribute-token attribute-argument-clause[opt]
- ///
- /// [C++0x] attribute-token:
- /// identifier
- /// attribute-scoped-token
- ///
- /// [C++0x] attribute-scoped-token:
- /// attribute-namespace '::' identifier
- ///
- /// [C++0x] attribute-namespace:
- /// identifier
- ///
- /// [C++0x] attribute-argument-clause:
- /// '(' balanced-token-seq ')'
- ///
- /// [C++0x] balanced-token-seq:
- /// balanced-token
- /// balanced-token-seq balanced-token
- ///
- /// [C++0x] balanced-token:
- /// '(' balanced-token-seq ')'
- /// '[' balanced-token-seq ']'
- /// '{' balanced-token-seq '}'
- /// any token but '(', ')', '[', ']', '{', or '}'
- void Parser::ParseCXX0XAttributeSpecifier(ParsedAttributes &attrs,
- SourceLocation *endLoc) {
- if (Tok.is(tok::kw_alignas)) {
- Diag(Tok.getLocation(), diag::warn_cxx98_compat_alignas);
- ParseAlignmentSpecifier(attrs, endLoc);
- return;
- }
- assert(Tok.is(tok::l_square) && NextToken().is(tok::l_square)
- && "Not a C++0x attribute list");
- Diag(Tok.getLocation(), diag::warn_cxx98_compat_attribute);
- ConsumeBracket();
- ConsumeBracket();
- if (Tok.is(tok::comma)) {
- Diag(Tok.getLocation(), diag::err_expected_ident);
- ConsumeToken();
- }
- while (Tok.is(tok::identifier) || Tok.is(tok::comma)) {
- // attribute not present
- if (Tok.is(tok::comma)) {
- ConsumeToken();
- continue;
- }
- IdentifierInfo *ScopeName = 0, *AttrName = Tok.getIdentifierInfo();
- SourceLocation ScopeLoc, AttrLoc = ConsumeToken();
- // scoped attribute
- if (Tok.is(tok::coloncolon)) {
- ConsumeToken();
- if (!Tok.is(tok::identifier)) {
- Diag(Tok.getLocation(), diag::err_expected_ident);
- SkipUntil(tok::r_square, tok::comma, true, true);
- continue;
- }
- ScopeName = AttrName;
- ScopeLoc = AttrLoc;
- AttrName = Tok.getIdentifierInfo();
- AttrLoc = ConsumeToken();
- }
- bool AttrParsed = false;
- // No scoped names are supported; ideally we could put all non-standard
- // attributes into namespaces.
- if (!ScopeName) {
- switch(AttributeList::getKind(AttrName))
- {
- // No arguments
- case AttributeList::AT_carries_dependency:
- case AttributeList::AT_noreturn: {
- if (Tok.is(tok::l_paren)) {
- Diag(Tok.getLocation(), diag::err_cxx0x_attribute_forbids_arguments)
- << AttrName->getName();
- break;
- }
- attrs.addNew(AttrName, AttrLoc, 0, AttrLoc, 0,
- SourceLocation(), 0, 0, false, true);
- AttrParsed = true;
- break;
- }
- // Silence warnings
- default: break;
- }
- }
- // Skip the entire parameter clause, if any
- if (!AttrParsed && Tok.is(tok::l_paren)) {
- ConsumeParen();
- // SkipUntil maintains the balancedness of tokens.
- SkipUntil(tok::r_paren, false);
- }
- }
- if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
- SkipUntil(tok::r_square, false);
- if (endLoc)
- *endLoc = Tok.getLocation();
- if (ExpectAndConsume(tok::r_square, diag::err_expected_rsquare))
- SkipUntil(tok::r_square, false);
- }
- /// ParseCXX0XAttributes - Parse a C++0x attribute-specifier-seq.
- ///
- /// attribute-specifier-seq:
- /// attribute-specifier-seq[opt] attribute-specifier
- void Parser::ParseCXX0XAttributes(ParsedAttributesWithRange &attrs,
- SourceLocation *endLoc) {
- SourceLocation StartLoc = Tok.getLocation(), Loc;
- if (!endLoc)
- endLoc = &Loc;
- do {
- ParseCXX0XAttributeSpecifier(attrs, endLoc);
- } while (isCXX0XAttributeSpecifier());
- attrs.Range = SourceRange(StartLoc, *endLoc);
- }
- /// ParseMicrosoftAttributes - Parse a Microsoft attribute [Attr]
- ///
- /// [MS] ms-attribute:
- /// '[' token-seq ']'
- ///
- /// [MS] ms-attribute-seq:
- /// ms-attribute[opt]
- /// ms-attribute ms-attribute-seq
- void Parser::ParseMicrosoftAttributes(ParsedAttributes &attrs,
- SourceLocation *endLoc) {
- assert(Tok.is(tok::l_square) && "Not a Microsoft attribute list");
- while (Tok.is(tok::l_square)) {
- ConsumeBracket();
- SkipUntil(tok::r_square, true, true);
- if (endLoc) *endLoc = Tok.getLocation();
- ExpectAndConsume(tok::r_square, diag::err_expected_rsquare);
- }
- }
- void Parser::ParseMicrosoftIfExistsClassDeclaration(DeclSpec::TST TagType,
- AccessSpecifier& CurAS) {
- IfExistsCondition Result;
- if (ParseMicrosoftIfExistsCondition(Result))
- return;
-
- BalancedDelimiterTracker Braces(*this, tok::l_brace);
- if (Braces.consumeOpen()) {
- Diag(Tok, diag::err_expected_lbrace);
- return;
- }
- switch (Result.Behavior) {
- case IEB_Parse:
- // Parse the declarations below.
- break;
-
- case IEB_Dependent:
- Diag(Result.KeywordLoc, diag::warn_microsoft_dependent_exists)
- << Result.IsIfExists;
- // Fall through to skip.
-
- case IEB_Skip:
- Braces.skipToEnd();
- return;
- }
- while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
- // __if_exists, __if_not_exists can nest.
- if ((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists))) {
- ParseMicrosoftIfExistsClassDeclaration((DeclSpec::TST)TagType, CurAS);
- continue;
- }
- // Check for extraneous top-level semicolon.
- if (Tok.is(tok::semi)) {
- Diag(Tok, diag::ext_extra_struct_semi)
- << DeclSpec::getSpecifierName((DeclSpec::TST)TagType)
- << FixItHint::CreateRemoval(Tok.getLocation());
- ConsumeToken();
- continue;
- }
- AccessSpecifier AS = getAccessSpecifierIfPresent();
- if (AS != AS_none) {
- // Current token is a C++ access specifier.
- CurAS = AS;
- SourceLocation ASLoc = Tok.getLocation();
- ConsumeToken();
- if (Tok.is(tok::colon))
- Actions.ActOnAccessSpecifier(AS, ASLoc, Tok.getLocation());
- else
- Diag(Tok, diag::err_expected_colon);
- ConsumeToken();
- continue;
- }
- // Parse all the comma separated declarators.
- ParseCXXClassMemberDeclaration(CurAS, 0);
- }
-
- Braces.consumeClose();
- }
|