1 //===--- Parser.cpp - C Language Family Parser ----------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements the Parser interfaces. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/Parse/Parser.h" 15 #include "clang/AST/ASTConsumer.h" 16 #include "clang/AST/ASTContext.h" 17 #include "clang/AST/DeclTemplate.h" 18 #include "clang/Parse/ParseDiagnostic.h" 19 #include "clang/Parse/RAIIObjectsForParser.h" 20 #include "clang/Sema/DeclSpec.h" 21 #include "clang/Sema/ParsedTemplate.h" 22 #include "clang/Sema/Scope.h" 23 using namespace clang; 24 25 26 namespace { 27 /// \brief A comment handler that passes comments found by the preprocessor 28 /// to the parser action. 29 class ActionCommentHandler : public CommentHandler { 30 Sema &S; 31 32 public: 33 explicit ActionCommentHandler(Sema &S) : S(S) { } 34 35 bool HandleComment(Preprocessor &PP, SourceRange Comment) override { 36 S.ActOnComment(Comment); 37 return false; 38 } 39 }; 40 } // end anonymous namespace 41 42 IdentifierInfo *Parser::getSEHExceptKeyword() { 43 // __except is accepted as a (contextual) keyword 44 if (!Ident__except && (getLangOpts().MicrosoftExt || getLangOpts().Borland)) 45 Ident__except = PP.getIdentifierInfo("__except"); 46 47 return Ident__except; 48 } 49 50 Parser::Parser(Preprocessor &pp, Sema &actions, bool skipFunctionBodies) 51 : PP(pp), Actions(actions), Diags(PP.getDiagnostics()), 52 GreaterThanIsOperator(true), ColonIsSacred(false), 53 InMessageExpression(false), TemplateParameterDepth(0), 54 ParsingInObjCContainer(false) { 55 SkipFunctionBodies = pp.isCodeCompletionEnabled() || skipFunctionBodies; 56 Tok.startToken(); 57 Tok.setKind(tok::eof); 58 Actions.CurScope = nullptr; 59 NumCachedScopes = 0; 60 CurParsedObjCImpl = nullptr; 61 62 // Add #pragma handlers. These are removed and destroyed in the 63 // destructor. 64 initializePragmaHandlers(); 65 66 CommentSemaHandler.reset(new ActionCommentHandler(actions)); 67 PP.addCommentHandler(CommentSemaHandler.get()); 68 69 PP.setCodeCompletionHandler(*this); 70 } 71 72 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) { 73 return Diags.Report(Loc, DiagID); 74 } 75 76 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) { 77 return Diag(Tok.getLocation(), DiagID); 78 } 79 80 /// \brief Emits a diagnostic suggesting parentheses surrounding a 81 /// given range. 82 /// 83 /// \param Loc The location where we'll emit the diagnostic. 84 /// \param DK The kind of diagnostic to emit. 85 /// \param ParenRange Source range enclosing code that should be parenthesized. 86 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK, 87 SourceRange ParenRange) { 88 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd()); 89 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) { 90 // We can't display the parentheses, so just dig the 91 // warning/error and return. 92 Diag(Loc, DK); 93 return; 94 } 95 96 Diag(Loc, DK) 97 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(") 98 << FixItHint::CreateInsertion(EndLoc, ")"); 99 } 100 101 static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok) { 102 switch (ExpectedTok) { 103 case tok::semi: 104 return Tok.is(tok::colon) || Tok.is(tok::comma); // : or , for ; 105 default: return false; 106 } 107 } 108 109 bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID, 110 StringRef Msg) { 111 if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) { 112 ConsumeAnyToken(); 113 return false; 114 } 115 116 // Detect common single-character typos and resume. 117 if (IsCommonTypo(ExpectedTok, Tok)) { 118 SourceLocation Loc = Tok.getLocation(); 119 { 120 DiagnosticBuilder DB = Diag(Loc, DiagID); 121 DB << FixItHint::CreateReplacement( 122 SourceRange(Loc), tok::getPunctuatorSpelling(ExpectedTok)); 123 if (DiagID == diag::err_expected) 124 DB << ExpectedTok; 125 else if (DiagID == diag::err_expected_after) 126 DB << Msg << ExpectedTok; 127 else 128 DB << Msg; 129 } 130 131 // Pretend there wasn't a problem. 132 ConsumeAnyToken(); 133 return false; 134 } 135 136 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation); 137 const char *Spelling = nullptr; 138 if (EndLoc.isValid()) 139 Spelling = tok::getPunctuatorSpelling(ExpectedTok); 140 141 DiagnosticBuilder DB = 142 Spelling 143 ? Diag(EndLoc, DiagID) << FixItHint::CreateInsertion(EndLoc, Spelling) 144 : Diag(Tok, DiagID); 145 if (DiagID == diag::err_expected) 146 DB << ExpectedTok; 147 else if (DiagID == diag::err_expected_after) 148 DB << Msg << ExpectedTok; 149 else 150 DB << Msg; 151 152 return true; 153 } 154 155 bool Parser::ExpectAndConsumeSemi(unsigned DiagID) { 156 if (TryConsumeToken(tok::semi)) 157 return false; 158 159 if (Tok.is(tok::code_completion)) { 160 handleUnexpectedCodeCompletionToken(); 161 return false; 162 } 163 164 if ((Tok.is(tok::r_paren) || Tok.is(tok::r_square)) && 165 NextToken().is(tok::semi)) { 166 Diag(Tok, diag::err_extraneous_token_before_semi) 167 << PP.getSpelling(Tok) 168 << FixItHint::CreateRemoval(Tok.getLocation()); 169 ConsumeAnyToken(); // The ')' or ']'. 170 ConsumeToken(); // The ';'. 171 return false; 172 } 173 174 return ExpectAndConsume(tok::semi, DiagID); 175 } 176 177 void Parser::ConsumeExtraSemi(ExtraSemiKind Kind, unsigned TST) { 178 if (!Tok.is(tok::semi)) return; 179 180 bool HadMultipleSemis = false; 181 SourceLocation StartLoc = Tok.getLocation(); 182 SourceLocation EndLoc = Tok.getLocation(); 183 ConsumeToken(); 184 185 while ((Tok.is(tok::semi) && !Tok.isAtStartOfLine())) { 186 HadMultipleSemis = true; 187 EndLoc = Tok.getLocation(); 188 ConsumeToken(); 189 } 190 191 // C++11 allows extra semicolons at namespace scope, but not in any of the 192 // other contexts. 193 if (Kind == OutsideFunction && getLangOpts().CPlusPlus) { 194 if (getLangOpts().CPlusPlus11) 195 Diag(StartLoc, diag::warn_cxx98_compat_top_level_semi) 196 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); 197 else 198 Diag(StartLoc, diag::ext_extra_semi_cxx11) 199 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); 200 return; 201 } 202 203 if (Kind != AfterMemberFunctionDefinition || HadMultipleSemis) 204 Diag(StartLoc, diag::ext_extra_semi) 205 << Kind << DeclSpec::getSpecifierName((DeclSpec::TST)TST, 206 Actions.getASTContext().getPrintingPolicy()) 207 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); 208 else 209 // A single semicolon is valid after a member function definition. 210 Diag(StartLoc, diag::warn_extra_semi_after_mem_fn_def) 211 << FixItHint::CreateRemoval(SourceRange(StartLoc, EndLoc)); 212 } 213 214 bool Parser::expectIdentifier() { 215 if (Tok.is(tok::identifier)) 216 return false; 217 if (const auto *II = Tok.getIdentifierInfo()) { 218 if (II->isCPlusPlusKeyword(getLangOpts())) { 219 Diag(Tok, diag::err_expected_token_instead_of_objcxx_keyword) 220 << tok::identifier << Tok.getIdentifierInfo(); 221 // Objective-C++: Recover by treating this keyword as a valid identifier. 222 return false; 223 } 224 } 225 Diag(Tok, diag::err_expected) << tok::identifier; 226 return true; 227 } 228 229 //===----------------------------------------------------------------------===// 230 // Error recovery. 231 //===----------------------------------------------------------------------===// 232 233 static bool HasFlagsSet(Parser::SkipUntilFlags L, Parser::SkipUntilFlags R) { 234 return (static_cast<unsigned>(L) & static_cast<unsigned>(R)) != 0; 235 } 236 237 /// SkipUntil - Read tokens until we get to the specified token, then consume 238 /// it (unless no flag StopBeforeMatch). Because we cannot guarantee that the 239 /// token will ever occur, this skips to the next token, or to some likely 240 /// good stopping point. If StopAtSemi is true, skipping will stop at a ';' 241 /// character. 242 /// 243 /// If SkipUntil finds the specified token, it returns true, otherwise it 244 /// returns false. 245 bool Parser::SkipUntil(ArrayRef<tok::TokenKind> Toks, SkipUntilFlags Flags) { 246 // We always want this function to skip at least one token if the first token 247 // isn't T and if not at EOF. 248 bool isFirstTokenSkipped = true; 249 while (1) { 250 // If we found one of the tokens, stop and return true. 251 for (unsigned i = 0, NumToks = Toks.size(); i != NumToks; ++i) { 252 if (Tok.is(Toks[i])) { 253 if (HasFlagsSet(Flags, StopBeforeMatch)) { 254 // Noop, don't consume the token. 255 } else { 256 ConsumeAnyToken(); 257 } 258 return true; 259 } 260 } 261 262 // Important special case: The caller has given up and just wants us to 263 // skip the rest of the file. Do this without recursing, since we can 264 // get here precisely because the caller detected too much recursion. 265 if (Toks.size() == 1 && Toks[0] == tok::eof && 266 !HasFlagsSet(Flags, StopAtSemi) && 267 !HasFlagsSet(Flags, StopAtCodeCompletion)) { 268 while (Tok.isNot(tok::eof)) 269 ConsumeAnyToken(); 270 return true; 271 } 272 273 switch (Tok.getKind()) { 274 case tok::eof: 275 // Ran out of tokens. 276 return false; 277 278 case tok::annot_pragma_openmp: 279 case tok::annot_pragma_openmp_end: 280 // Stop before an OpenMP pragma boundary. 281 case tok::annot_module_begin: 282 case tok::annot_module_end: 283 case tok::annot_module_include: 284 // Stop before we change submodules. They generally indicate a "good" 285 // place to pick up parsing again (except in the special case where 286 // we're trying to skip to EOF). 287 return false; 288 289 case tok::code_completion: 290 if (!HasFlagsSet(Flags, StopAtCodeCompletion)) 291 handleUnexpectedCodeCompletionToken(); 292 return false; 293 294 case tok::l_paren: 295 // Recursively skip properly-nested parens. 296 ConsumeParen(); 297 if (HasFlagsSet(Flags, StopAtCodeCompletion)) 298 SkipUntil(tok::r_paren, StopAtCodeCompletion); 299 else 300 SkipUntil(tok::r_paren); 301 break; 302 case tok::l_square: 303 // Recursively skip properly-nested square brackets. 304 ConsumeBracket(); 305 if (HasFlagsSet(Flags, StopAtCodeCompletion)) 306 SkipUntil(tok::r_square, StopAtCodeCompletion); 307 else 308 SkipUntil(tok::r_square); 309 break; 310 case tok::l_brace: 311 // Recursively skip properly-nested braces. 312 ConsumeBrace(); 313 if (HasFlagsSet(Flags, StopAtCodeCompletion)) 314 SkipUntil(tok::r_brace, StopAtCodeCompletion); 315 else 316 SkipUntil(tok::r_brace); 317 break; 318 319 // Okay, we found a ']' or '}' or ')', which we think should be balanced. 320 // Since the user wasn't looking for this token (if they were, it would 321 // already be handled), this isn't balanced. If there is a LHS token at a 322 // higher level, we will assume that this matches the unbalanced token 323 // and return it. Otherwise, this is a spurious RHS token, which we skip. 324 case tok::r_paren: 325 if (ParenCount && !isFirstTokenSkipped) 326 return false; // Matches something. 327 ConsumeParen(); 328 break; 329 case tok::r_square: 330 if (BracketCount && !isFirstTokenSkipped) 331 return false; // Matches something. 332 ConsumeBracket(); 333 break; 334 case tok::r_brace: 335 if (BraceCount && !isFirstTokenSkipped) 336 return false; // Matches something. 337 ConsumeBrace(); 338 break; 339 340 case tok::semi: 341 if (HasFlagsSet(Flags, StopAtSemi)) 342 return false; 343 // FALL THROUGH. 344 default: 345 // Skip this token. 346 ConsumeAnyToken(); 347 break; 348 } 349 isFirstTokenSkipped = false; 350 } 351 } 352 353 //===----------------------------------------------------------------------===// 354 // Scope manipulation 355 //===----------------------------------------------------------------------===// 356 357 /// EnterScope - Start a new scope. 358 void Parser::EnterScope(unsigned ScopeFlags) { 359 if (NumCachedScopes) { 360 Scope *N = ScopeCache[--NumCachedScopes]; 361 N->Init(getCurScope(), ScopeFlags); 362 Actions.CurScope = N; 363 } else { 364 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags); 365 } 366 } 367 368 /// ExitScope - Pop a scope off the scope stack. 369 void Parser::ExitScope() { 370 assert(getCurScope() && "Scope imbalance!"); 371 372 // Inform the actions module that this scope is going away if there are any 373 // decls in it. 374 Actions.ActOnPopScope(Tok.getLocation(), getCurScope()); 375 376 Scope *OldScope = getCurScope(); 377 Actions.CurScope = OldScope->getParent(); 378 379 if (NumCachedScopes == ScopeCacheSize) 380 delete OldScope; 381 else 382 ScopeCache[NumCachedScopes++] = OldScope; 383 } 384 385 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false, 386 /// this object does nothing. 387 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags, 388 bool ManageFlags) 389 : CurScope(ManageFlags ? Self->getCurScope() : nullptr) { 390 if (CurScope) { 391 OldFlags = CurScope->getFlags(); 392 CurScope->setFlags(ScopeFlags); 393 } 394 } 395 396 /// Restore the flags for the current scope to what they were before this 397 /// object overrode them. 398 Parser::ParseScopeFlags::~ParseScopeFlags() { 399 if (CurScope) 400 CurScope->setFlags(OldFlags); 401 } 402 403 404 //===----------------------------------------------------------------------===// 405 // C99 6.9: External Definitions. 406 //===----------------------------------------------------------------------===// 407 408 Parser::~Parser() { 409 // If we still have scopes active, delete the scope tree. 410 delete getCurScope(); 411 Actions.CurScope = nullptr; 412 413 // Free the scope cache. 414 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i) 415 delete ScopeCache[i]; 416 417 resetPragmaHandlers(); 418 419 PP.removeCommentHandler(CommentSemaHandler.get()); 420 421 PP.clearCodeCompletionHandler(); 422 423 if (getLangOpts().DelayedTemplateParsing && 424 !PP.isIncrementalProcessingEnabled() && !TemplateIds.empty()) { 425 // If an ASTConsumer parsed delay-parsed templates in their 426 // HandleTranslationUnit() method, TemplateIds created there were not 427 // guarded by a DestroyTemplateIdAnnotationsRAIIObj object in 428 // ParseTopLevelDecl(). Destroy them here. 429 DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds); 430 } 431 432 assert(TemplateIds.empty() && "Still alive TemplateIdAnnotations around?"); 433 } 434 435 /// Initialize - Warm up the parser. 436 /// 437 void Parser::Initialize() { 438 // Create the translation unit scope. Install it as the current scope. 439 assert(getCurScope() == nullptr && "A scope is already active?"); 440 EnterScope(Scope::DeclScope); 441 Actions.ActOnTranslationUnitScope(getCurScope()); 442 443 // Initialization for Objective-C context sensitive keywords recognition. 444 // Referenced in Parser::ParseObjCTypeQualifierList. 445 if (getLangOpts().ObjC1) { 446 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in"); 447 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out"); 448 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout"); 449 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway"); 450 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy"); 451 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref"); 452 ObjCTypeQuals[objc_nonnull] = &PP.getIdentifierTable().get("nonnull"); 453 ObjCTypeQuals[objc_nullable] = &PP.getIdentifierTable().get("nullable"); 454 ObjCTypeQuals[objc_null_unspecified] 455 = &PP.getIdentifierTable().get("null_unspecified"); 456 } 457 458 Ident_instancetype = nullptr; 459 Ident_final = nullptr; 460 Ident_sealed = nullptr; 461 Ident_override = nullptr; 462 Ident_GNU_final = nullptr; 463 464 Ident_super = &PP.getIdentifierTable().get("super"); 465 466 Ident_vector = nullptr; 467 Ident_bool = nullptr; 468 Ident_pixel = nullptr; 469 if (getLangOpts().AltiVec || getLangOpts().ZVector) { 470 Ident_vector = &PP.getIdentifierTable().get("vector"); 471 Ident_bool = &PP.getIdentifierTable().get("bool"); 472 } 473 if (getLangOpts().AltiVec) 474 Ident_pixel = &PP.getIdentifierTable().get("pixel"); 475 476 Ident_introduced = nullptr; 477 Ident_deprecated = nullptr; 478 Ident_obsoleted = nullptr; 479 Ident_unavailable = nullptr; 480 Ident_strict = nullptr; 481 Ident_replacement = nullptr; 482 483 Ident_language = Ident_defined_in = Ident_generated_declaration = nullptr; 484 485 Ident__except = nullptr; 486 487 Ident__exception_code = Ident__exception_info = nullptr; 488 Ident__abnormal_termination = Ident___exception_code = nullptr; 489 Ident___exception_info = Ident___abnormal_termination = nullptr; 490 Ident_GetExceptionCode = Ident_GetExceptionInfo = nullptr; 491 Ident_AbnormalTermination = nullptr; 492 493 if(getLangOpts().Borland) { 494 Ident__exception_info = PP.getIdentifierInfo("_exception_info"); 495 Ident___exception_info = PP.getIdentifierInfo("__exception_info"); 496 Ident_GetExceptionInfo = PP.getIdentifierInfo("GetExceptionInformation"); 497 Ident__exception_code = PP.getIdentifierInfo("_exception_code"); 498 Ident___exception_code = PP.getIdentifierInfo("__exception_code"); 499 Ident_GetExceptionCode = PP.getIdentifierInfo("GetExceptionCode"); 500 Ident__abnormal_termination = PP.getIdentifierInfo("_abnormal_termination"); 501 Ident___abnormal_termination = PP.getIdentifierInfo("__abnormal_termination"); 502 Ident_AbnormalTermination = PP.getIdentifierInfo("AbnormalTermination"); 503 504 PP.SetPoisonReason(Ident__exception_code,diag::err_seh___except_block); 505 PP.SetPoisonReason(Ident___exception_code,diag::err_seh___except_block); 506 PP.SetPoisonReason(Ident_GetExceptionCode,diag::err_seh___except_block); 507 PP.SetPoisonReason(Ident__exception_info,diag::err_seh___except_filter); 508 PP.SetPoisonReason(Ident___exception_info,diag::err_seh___except_filter); 509 PP.SetPoisonReason(Ident_GetExceptionInfo,diag::err_seh___except_filter); 510 PP.SetPoisonReason(Ident__abnormal_termination,diag::err_seh___finally_block); 511 PP.SetPoisonReason(Ident___abnormal_termination,diag::err_seh___finally_block); 512 PP.SetPoisonReason(Ident_AbnormalTermination,diag::err_seh___finally_block); 513 } 514 515 Actions.Initialize(); 516 517 // Prime the lexer look-ahead. 518 ConsumeToken(); 519 } 520 521 void Parser::LateTemplateParserCleanupCallback(void *P) { 522 // While this RAII helper doesn't bracket any actual work, the destructor will 523 // clean up annotations that were created during ActOnEndOfTranslationUnit 524 // when incremental processing is enabled. 525 DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(((Parser *)P)->TemplateIds); 526 } 527 528 bool Parser::ParseFirstTopLevelDecl(DeclGroupPtrTy &Result) { 529 Actions.ActOnStartOfTranslationUnit(); 530 531 // C11 6.9p1 says translation units must have at least one top-level 532 // declaration. C++ doesn't have this restriction. We also don't want to 533 // complain if we have a precompiled header, although technically if the PCH 534 // is empty we should still emit the (pedantic) diagnostic. 535 bool NoTopLevelDecls = ParseTopLevelDecl(Result); 536 if (NoTopLevelDecls && !Actions.getASTContext().getExternalSource() && 537 !getLangOpts().CPlusPlus) 538 Diag(diag::ext_empty_translation_unit); 539 540 return NoTopLevelDecls; 541 } 542 543 /// ParseTopLevelDecl - Parse one top-level declaration, return whatever the 544 /// action tells us to. This returns true if the EOF was encountered. 545 bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) { 546 DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds); 547 548 // Skip over the EOF token, flagging end of previous input for incremental 549 // processing 550 if (PP.isIncrementalProcessingEnabled() && Tok.is(tok::eof)) 551 ConsumeToken(); 552 553 Result = nullptr; 554 switch (Tok.getKind()) { 555 case tok::annot_pragma_unused: 556 HandlePragmaUnused(); 557 return false; 558 559 case tok::kw_import: 560 Result = ParseModuleImport(SourceLocation()); 561 return false; 562 563 case tok::kw_export: 564 if (NextToken().isNot(tok::kw_module)) 565 break; 566 LLVM_FALLTHROUGH; 567 case tok::kw_module: 568 Result = ParseModuleDecl(); 569 return false; 570 571 case tok::annot_module_include: 572 Actions.ActOnModuleInclude(Tok.getLocation(), 573 reinterpret_cast<Module *>( 574 Tok.getAnnotationValue())); 575 ConsumeAnnotationToken(); 576 return false; 577 578 case tok::annot_module_begin: 579 Actions.ActOnModuleBegin(Tok.getLocation(), reinterpret_cast<Module *>( 580 Tok.getAnnotationValue())); 581 ConsumeAnnotationToken(); 582 return false; 583 584 case tok::annot_module_end: 585 Actions.ActOnModuleEnd(Tok.getLocation(), reinterpret_cast<Module *>( 586 Tok.getAnnotationValue())); 587 ConsumeAnnotationToken(); 588 return false; 589 590 case tok::annot_pragma_attribute: 591 HandlePragmaAttribute(); 592 return false; 593 594 case tok::eof: 595 // Late template parsing can begin. 596 if (getLangOpts().DelayedTemplateParsing) 597 Actions.SetLateTemplateParser(LateTemplateParserCallback, 598 PP.isIncrementalProcessingEnabled() ? 599 LateTemplateParserCleanupCallback : nullptr, 600 this); 601 if (!PP.isIncrementalProcessingEnabled()) 602 Actions.ActOnEndOfTranslationUnit(); 603 //else don't tell Sema that we ended parsing: more input might come. 604 return true; 605 606 default: 607 break; 608 } 609 610 ParsedAttributesWithRange attrs(AttrFactory); 611 MaybeParseCXX11Attributes(attrs); 612 613 Result = ParseExternalDeclaration(attrs); 614 return false; 615 } 616 617 /// ParseExternalDeclaration: 618 /// 619 /// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl] 620 /// function-definition 621 /// declaration 622 /// [GNU] asm-definition 623 /// [GNU] __extension__ external-declaration 624 /// [OBJC] objc-class-definition 625 /// [OBJC] objc-class-declaration 626 /// [OBJC] objc-alias-declaration 627 /// [OBJC] objc-protocol-definition 628 /// [OBJC] objc-method-definition 629 /// [OBJC] @end 630 /// [C++] linkage-specification 631 /// [GNU] asm-definition: 632 /// simple-asm-expr ';' 633 /// [C++11] empty-declaration 634 /// [C++11] attribute-declaration 635 /// 636 /// [C++11] empty-declaration: 637 /// ';' 638 /// 639 /// [C++0x/GNU] 'extern' 'template' declaration 640 Parser::DeclGroupPtrTy 641 Parser::ParseExternalDeclaration(ParsedAttributesWithRange &attrs, 642 ParsingDeclSpec *DS) { 643 DestroyTemplateIdAnnotationsRAIIObj CleanupRAII(TemplateIds); 644 ParenBraceBracketBalancer BalancerRAIIObj(*this); 645 646 if (PP.isCodeCompletionReached()) { 647 cutOffParsing(); 648 return nullptr; 649 } 650 651 Decl *SingleDecl = nullptr; 652 switch (Tok.getKind()) { 653 case tok::annot_pragma_vis: 654 HandlePragmaVisibility(); 655 return nullptr; 656 case tok::annot_pragma_pack: 657 HandlePragmaPack(); 658 return nullptr; 659 case tok::annot_pragma_msstruct: 660 HandlePragmaMSStruct(); 661 return nullptr; 662 case tok::annot_pragma_align: 663 HandlePragmaAlign(); 664 return nullptr; 665 case tok::annot_pragma_weak: 666 HandlePragmaWeak(); 667 return nullptr; 668 case tok::annot_pragma_weakalias: 669 HandlePragmaWeakAlias(); 670 return nullptr; 671 case tok::annot_pragma_redefine_extname: 672 HandlePragmaRedefineExtname(); 673 return nullptr; 674 case tok::annot_pragma_fp_contract: 675 HandlePragmaFPContract(); 676 return nullptr; 677 case tok::annot_pragma_fp: 678 HandlePragmaFP(); 679 break; 680 case tok::annot_pragma_opencl_extension: 681 HandlePragmaOpenCLExtension(); 682 return nullptr; 683 case tok::annot_pragma_openmp: { 684 AccessSpecifier AS = AS_none; 685 return ParseOpenMPDeclarativeDirectiveWithExtDecl(AS, attrs); 686 } 687 case tok::annot_pragma_ms_pointers_to_members: 688 HandlePragmaMSPointersToMembers(); 689 return nullptr; 690 case tok::annot_pragma_ms_vtordisp: 691 HandlePragmaMSVtorDisp(); 692 return nullptr; 693 case tok::annot_pragma_ms_pragma: 694 HandlePragmaMSPragma(); 695 return nullptr; 696 case tok::annot_pragma_dump: 697 HandlePragmaDump(); 698 return nullptr; 699 case tok::semi: 700 // Either a C++11 empty-declaration or attribute-declaration. 701 SingleDecl = Actions.ActOnEmptyDeclaration(getCurScope(), 702 attrs.getList(), 703 Tok.getLocation()); 704 ConsumeExtraSemi(OutsideFunction); 705 break; 706 case tok::r_brace: 707 Diag(Tok, diag::err_extraneous_closing_brace); 708 ConsumeBrace(); 709 return nullptr; 710 case tok::eof: 711 Diag(Tok, diag::err_expected_external_declaration); 712 return nullptr; 713 case tok::kw___extension__: { 714 // __extension__ silences extension warnings in the subexpression. 715 ExtensionRAIIObject O(Diags); // Use RAII to do this. 716 ConsumeToken(); 717 return ParseExternalDeclaration(attrs); 718 } 719 case tok::kw_asm: { 720 ProhibitAttributes(attrs); 721 722 SourceLocation StartLoc = Tok.getLocation(); 723 SourceLocation EndLoc; 724 725 ExprResult Result(ParseSimpleAsm(&EndLoc)); 726 727 // Check if GNU-style InlineAsm is disabled. 728 // Empty asm string is allowed because it will not introduce 729 // any assembly code. 730 if (!(getLangOpts().GNUAsm || Result.isInvalid())) { 731 const auto *SL = cast<StringLiteral>(Result.get()); 732 if (!SL->getString().trim().empty()) 733 Diag(StartLoc, diag::err_gnu_inline_asm_disabled); 734 } 735 736 ExpectAndConsume(tok::semi, diag::err_expected_after, 737 "top-level asm block"); 738 739 if (Result.isInvalid()) 740 return nullptr; 741 SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc); 742 break; 743 } 744 case tok::at: 745 return ParseObjCAtDirectives(); 746 case tok::minus: 747 case tok::plus: 748 if (!getLangOpts().ObjC1) { 749 Diag(Tok, diag::err_expected_external_declaration); 750 ConsumeToken(); 751 return nullptr; 752 } 753 SingleDecl = ParseObjCMethodDefinition(); 754 break; 755 case tok::code_completion: 756 Actions.CodeCompleteOrdinaryName(getCurScope(), 757 CurParsedObjCImpl? Sema::PCC_ObjCImplementation 758 : Sema::PCC_Namespace); 759 cutOffParsing(); 760 return nullptr; 761 case tok::kw_export: 762 if (getLangOpts().ModulesTS) { 763 SingleDecl = ParseExportDeclaration(); 764 break; 765 } 766 // This must be 'export template'. Parse it so we can diagnose our lack 767 // of support. 768 LLVM_FALLTHROUGH; 769 case tok::kw_using: 770 case tok::kw_namespace: 771 case tok::kw_typedef: 772 case tok::kw_template: 773 case tok::kw_static_assert: 774 case tok::kw__Static_assert: 775 // A function definition cannot start with any of these keywords. 776 { 777 SourceLocation DeclEnd; 778 return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs); 779 } 780 781 case tok::kw_static: 782 // Parse (then ignore) 'static' prior to a template instantiation. This is 783 // a GCC extension that we intentionally do not support. 784 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_template)) { 785 Diag(ConsumeToken(), diag::warn_static_inline_explicit_inst_ignored) 786 << 0; 787 SourceLocation DeclEnd; 788 return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs); 789 } 790 goto dont_know; 791 792 case tok::kw_inline: 793 if (getLangOpts().CPlusPlus) { 794 tok::TokenKind NextKind = NextToken().getKind(); 795 796 // Inline namespaces. Allowed as an extension even in C++03. 797 if (NextKind == tok::kw_namespace) { 798 SourceLocation DeclEnd; 799 return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs); 800 } 801 802 // Parse (then ignore) 'inline' prior to a template instantiation. This is 803 // a GCC extension that we intentionally do not support. 804 if (NextKind == tok::kw_template) { 805 Diag(ConsumeToken(), diag::warn_static_inline_explicit_inst_ignored) 806 << 1; 807 SourceLocation DeclEnd; 808 return ParseDeclaration(Declarator::FileContext, DeclEnd, attrs); 809 } 810 } 811 goto dont_know; 812 813 case tok::kw_extern: 814 if (getLangOpts().CPlusPlus && NextToken().is(tok::kw_template)) { 815 // Extern templates 816 SourceLocation ExternLoc = ConsumeToken(); 817 SourceLocation TemplateLoc = ConsumeToken(); 818 Diag(ExternLoc, getLangOpts().CPlusPlus11 ? 819 diag::warn_cxx98_compat_extern_template : 820 diag::ext_extern_template) << SourceRange(ExternLoc, TemplateLoc); 821 SourceLocation DeclEnd; 822 return Actions.ConvertDeclToDeclGroup( 823 ParseExplicitInstantiation(Declarator::FileContext, 824 ExternLoc, TemplateLoc, DeclEnd)); 825 } 826 goto dont_know; 827 828 case tok::kw___if_exists: 829 case tok::kw___if_not_exists: 830 ParseMicrosoftIfExistsExternalDeclaration(); 831 return nullptr; 832 833 case tok::kw_module: 834 Diag(Tok, diag::err_unexpected_module_decl); 835 SkipUntil(tok::semi); 836 return nullptr; 837 838 default: 839 dont_know: 840 if (Tok.isEditorPlaceholder()) { 841 ConsumeToken(); 842 return nullptr; 843 } 844 // We can't tell whether this is a function-definition or declaration yet. 845 return ParseDeclarationOrFunctionDefinition(attrs, DS); 846 } 847 848 // This routine returns a DeclGroup, if the thing we parsed only contains a 849 // single decl, convert it now. 850 return Actions.ConvertDeclToDeclGroup(SingleDecl); 851 } 852 853 /// \brief Determine whether the current token, if it occurs after a 854 /// declarator, continues a declaration or declaration list. 855 bool Parser::isDeclarationAfterDeclarator() { 856 // Check for '= delete' or '= default' 857 if (getLangOpts().CPlusPlus && Tok.is(tok::equal)) { 858 const Token &KW = NextToken(); 859 if (KW.is(tok::kw_default) || KW.is(tok::kw_delete)) 860 return false; 861 } 862 863 return Tok.is(tok::equal) || // int X()= -> not a function def 864 Tok.is(tok::comma) || // int X(), -> not a function def 865 Tok.is(tok::semi) || // int X(); -> not a function def 866 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def 867 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def 868 (getLangOpts().CPlusPlus && 869 Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++] 870 } 871 872 /// \brief Determine whether the current token, if it occurs after a 873 /// declarator, indicates the start of a function definition. 874 bool Parser::isStartOfFunctionDefinition(const ParsingDeclarator &Declarator) { 875 assert(Declarator.isFunctionDeclarator() && "Isn't a function declarator"); 876 if (Tok.is(tok::l_brace)) // int X() {} 877 return true; 878 879 // Handle K&R C argument lists: int X(f) int f; {} 880 if (!getLangOpts().CPlusPlus && 881 Declarator.getFunctionTypeInfo().isKNRPrototype()) 882 return isDeclarationSpecifier(); 883 884 if (getLangOpts().CPlusPlus && Tok.is(tok::equal)) { 885 const Token &KW = NextToken(); 886 return KW.is(tok::kw_default) || KW.is(tok::kw_delete); 887 } 888 889 return Tok.is(tok::colon) || // X() : Base() {} (used for ctors) 890 Tok.is(tok::kw_try); // X() try { ... } 891 } 892 893 /// Parse either a function-definition or a declaration. We can't tell which 894 /// we have until we read up to the compound-statement in function-definition. 895 /// TemplateParams, if non-NULL, provides the template parameters when we're 896 /// parsing a C++ template-declaration. 897 /// 898 /// function-definition: [C99 6.9.1] 899 /// decl-specs declarator declaration-list[opt] compound-statement 900 /// [C90] function-definition: [C99 6.7.1] - implicit int result 901 /// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement 902 /// 903 /// declaration: [C99 6.7] 904 /// declaration-specifiers init-declarator-list[opt] ';' 905 /// [!C99] init-declarator-list ';' [TODO: warn in c99 mode] 906 /// [OMP] threadprivate-directive [TODO] 907 /// 908 Parser::DeclGroupPtrTy 909 Parser::ParseDeclOrFunctionDefInternal(ParsedAttributesWithRange &attrs, 910 ParsingDeclSpec &DS, 911 AccessSpecifier AS) { 912 MaybeParseMicrosoftAttributes(DS.getAttributes()); 913 // Parse the common declaration-specifiers piece. 914 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level); 915 916 // If we had a free-standing type definition with a missing semicolon, we 917 // may get this far before the problem becomes obvious. 918 if (DS.hasTagDefinition() && 919 DiagnoseMissingSemiAfterTagDefinition(DS, AS, DSC_top_level)) 920 return nullptr; 921 922 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };" 923 // declaration-specifiers init-declarator-list[opt] ';' 924 if (Tok.is(tok::semi)) { 925 ProhibitAttributes(attrs); 926 ConsumeToken(); 927 RecordDecl *AnonRecord = nullptr; 928 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, 929 DS, AnonRecord); 930 DS.complete(TheDecl); 931 if (getLangOpts().OpenCL) 932 Actions.setCurrentOpenCLExtensionForDecl(TheDecl); 933 if (AnonRecord) { 934 Decl* decls[] = {AnonRecord, TheDecl}; 935 return Actions.BuildDeclaratorGroup(decls); 936 } 937 return Actions.ConvertDeclToDeclGroup(TheDecl); 938 } 939 940 DS.takeAttributesFrom(attrs); 941 942 // ObjC2 allows prefix attributes on class interfaces and protocols. 943 // FIXME: This still needs better diagnostics. We should only accept 944 // attributes here, no types, etc. 945 if (getLangOpts().ObjC2 && Tok.is(tok::at)) { 946 SourceLocation AtLoc = ConsumeToken(); // the "@" 947 if (!Tok.isObjCAtKeyword(tok::objc_interface) && 948 !Tok.isObjCAtKeyword(tok::objc_protocol)) { 949 Diag(Tok, diag::err_objc_unexpected_attr); 950 SkipUntil(tok::semi); // FIXME: better skip? 951 return nullptr; 952 } 953 954 DS.abort(); 955 956 const char *PrevSpec = nullptr; 957 unsigned DiagID; 958 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID, 959 Actions.getASTContext().getPrintingPolicy())) 960 Diag(AtLoc, DiagID) << PrevSpec; 961 962 if (Tok.isObjCAtKeyword(tok::objc_protocol)) 963 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes()); 964 965 return Actions.ConvertDeclToDeclGroup( 966 ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes())); 967 } 968 969 // If the declspec consisted only of 'extern' and we have a string 970 // literal following it, this must be a C++ linkage specifier like 971 // 'extern "C"'. 972 if (getLangOpts().CPlusPlus && isTokenStringLiteral() && 973 DS.getStorageClassSpec() == DeclSpec::SCS_extern && 974 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) { 975 Decl *TheDecl = ParseLinkage(DS, Declarator::FileContext); 976 return Actions.ConvertDeclToDeclGroup(TheDecl); 977 } 978 979 return ParseDeclGroup(DS, Declarator::FileContext); 980 } 981 982 Parser::DeclGroupPtrTy 983 Parser::ParseDeclarationOrFunctionDefinition(ParsedAttributesWithRange &attrs, 984 ParsingDeclSpec *DS, 985 AccessSpecifier AS) { 986 if (DS) { 987 return ParseDeclOrFunctionDefInternal(attrs, *DS, AS); 988 } else { 989 ParsingDeclSpec PDS(*this); 990 // Must temporarily exit the objective-c container scope for 991 // parsing c constructs and re-enter objc container scope 992 // afterwards. 993 ObjCDeclContextSwitch ObjCDC(*this); 994 995 return ParseDeclOrFunctionDefInternal(attrs, PDS, AS); 996 } 997 } 998 999 /// ParseFunctionDefinition - We parsed and verified that the specified 1000 /// Declarator is well formed. If this is a K&R-style function, read the 1001 /// parameters declaration-list, then start the compound-statement. 1002 /// 1003 /// function-definition: [C99 6.9.1] 1004 /// decl-specs declarator declaration-list[opt] compound-statement 1005 /// [C90] function-definition: [C99 6.7.1] - implicit int result 1006 /// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement 1007 /// [C++] function-definition: [C++ 8.4] 1008 /// decl-specifier-seq[opt] declarator ctor-initializer[opt] 1009 /// function-body 1010 /// [C++] function-definition: [C++ 8.4] 1011 /// decl-specifier-seq[opt] declarator function-try-block 1012 /// 1013 Decl *Parser::ParseFunctionDefinition(ParsingDeclarator &D, 1014 const ParsedTemplateInfo &TemplateInfo, 1015 LateParsedAttrList *LateParsedAttrs) { 1016 // Poison SEH identifiers so they are flagged as illegal in function bodies. 1017 PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true); 1018 const DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 1019 1020 // If this is C90 and the declspecs were completely missing, fudge in an 1021 // implicit int. We do this here because this is the only place where 1022 // declaration-specifiers are completely optional in the grammar. 1023 if (getLangOpts().ImplicitInt && D.getDeclSpec().isEmpty()) { 1024 const char *PrevSpec; 1025 unsigned DiagID; 1026 const PrintingPolicy &Policy = Actions.getASTContext().getPrintingPolicy(); 1027 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int, 1028 D.getIdentifierLoc(), 1029 PrevSpec, DiagID, 1030 Policy); 1031 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin()); 1032 } 1033 1034 // If this declaration was formed with a K&R-style identifier list for the 1035 // arguments, parse declarations for all of the args next. 1036 // int foo(a,b) int a; float b; {} 1037 if (FTI.isKNRPrototype()) 1038 ParseKNRParamDeclarations(D); 1039 1040 // We should have either an opening brace or, in a C++ constructor, 1041 // we may have a colon. 1042 if (Tok.isNot(tok::l_brace) && 1043 (!getLangOpts().CPlusPlus || 1044 (Tok.isNot(tok::colon) && Tok.isNot(tok::kw_try) && 1045 Tok.isNot(tok::equal)))) { 1046 Diag(Tok, diag::err_expected_fn_body); 1047 1048 // Skip over garbage, until we get to '{'. Don't eat the '{'. 1049 SkipUntil(tok::l_brace, StopAtSemi | StopBeforeMatch); 1050 1051 // If we didn't find the '{', bail out. 1052 if (Tok.isNot(tok::l_brace)) 1053 return nullptr; 1054 } 1055 1056 // Check to make sure that any normal attributes are allowed to be on 1057 // a definition. Late parsed attributes are checked at the end. 1058 if (Tok.isNot(tok::equal)) { 1059 AttributeList *DtorAttrs = D.getAttributes(); 1060 while (DtorAttrs) { 1061 if (DtorAttrs->isKnownToGCC() && 1062 !DtorAttrs->isCXX11Attribute()) { 1063 Diag(DtorAttrs->getLoc(), diag::warn_attribute_on_function_definition) 1064 << DtorAttrs->getName(); 1065 } 1066 DtorAttrs = DtorAttrs->getNext(); 1067 } 1068 } 1069 1070 // In delayed template parsing mode, for function template we consume the 1071 // tokens and store them for late parsing at the end of the translation unit. 1072 if (getLangOpts().DelayedTemplateParsing && Tok.isNot(tok::equal) && 1073 TemplateInfo.Kind == ParsedTemplateInfo::Template && 1074 Actions.canDelayFunctionBody(D)) { 1075 MultiTemplateParamsArg TemplateParameterLists(*TemplateInfo.TemplateParams); 1076 1077 ParseScope BodyScope(this, Scope::FnScope | Scope::DeclScope | 1078 Scope::CompoundStmtScope); 1079 Scope *ParentScope = getCurScope()->getParent(); 1080 1081 D.setFunctionDefinitionKind(FDK_Definition); 1082 Decl *DP = Actions.HandleDeclarator(ParentScope, D, 1083 TemplateParameterLists); 1084 D.complete(DP); 1085 D.getMutableDeclSpec().abort(); 1086 1087 if (SkipFunctionBodies && (!DP || Actions.canSkipFunctionBody(DP)) && 1088 trySkippingFunctionBody()) { 1089 BodyScope.Exit(); 1090 return Actions.ActOnSkippedFunctionBody(DP); 1091 } 1092 1093 CachedTokens Toks; 1094 LexTemplateFunctionForLateParsing(Toks); 1095 1096 if (DP) { 1097 FunctionDecl *FnD = DP->getAsFunction(); 1098 Actions.CheckForFunctionRedefinition(FnD); 1099 Actions.MarkAsLateParsedTemplate(FnD, DP, Toks); 1100 } 1101 return DP; 1102 } 1103 else if (CurParsedObjCImpl && 1104 !TemplateInfo.TemplateParams && 1105 (Tok.is(tok::l_brace) || Tok.is(tok::kw_try) || 1106 Tok.is(tok::colon)) && 1107 Actions.CurContext->isTranslationUnit()) { 1108 ParseScope BodyScope(this, Scope::FnScope | Scope::DeclScope | 1109 Scope::CompoundStmtScope); 1110 Scope *ParentScope = getCurScope()->getParent(); 1111 1112 D.setFunctionDefinitionKind(FDK_Definition); 1113 Decl *FuncDecl = Actions.HandleDeclarator(ParentScope, D, 1114 MultiTemplateParamsArg()); 1115 D.complete(FuncDecl); 1116 D.getMutableDeclSpec().abort(); 1117 if (FuncDecl) { 1118 // Consume the tokens and store them for later parsing. 1119 StashAwayMethodOrFunctionBodyTokens(FuncDecl); 1120 CurParsedObjCImpl->HasCFunction = true; 1121 return FuncDecl; 1122 } 1123 // FIXME: Should we really fall through here? 1124 } 1125 1126 // Enter a scope for the function body. 1127 ParseScope BodyScope(this, Scope::FnScope | Scope::DeclScope | 1128 Scope::CompoundStmtScope); 1129 1130 // Tell the actions module that we have entered a function definition with the 1131 // specified Declarator for the function. 1132 Sema::SkipBodyInfo SkipBody; 1133 Decl *Res = Actions.ActOnStartOfFunctionDef(getCurScope(), D, 1134 TemplateInfo.TemplateParams 1135 ? *TemplateInfo.TemplateParams 1136 : MultiTemplateParamsArg(), 1137 &SkipBody); 1138 1139 if (SkipBody.ShouldSkip) { 1140 SkipFunctionBody(); 1141 return Res; 1142 } 1143 1144 // Break out of the ParsingDeclarator context before we parse the body. 1145 D.complete(Res); 1146 1147 // Break out of the ParsingDeclSpec context, too. This const_cast is 1148 // safe because we're always the sole owner. 1149 D.getMutableDeclSpec().abort(); 1150 1151 if (TryConsumeToken(tok::equal)) { 1152 assert(getLangOpts().CPlusPlus && "Only C++ function definitions have '='"); 1153 1154 bool Delete = false; 1155 SourceLocation KWLoc; 1156 if (TryConsumeToken(tok::kw_delete, KWLoc)) { 1157 Diag(KWLoc, getLangOpts().CPlusPlus11 1158 ? diag::warn_cxx98_compat_defaulted_deleted_function 1159 : diag::ext_defaulted_deleted_function) 1160 << 1 /* deleted */; 1161 Actions.SetDeclDeleted(Res, KWLoc); 1162 Delete = true; 1163 } else if (TryConsumeToken(tok::kw_default, KWLoc)) { 1164 Diag(KWLoc, getLangOpts().CPlusPlus11 1165 ? diag::warn_cxx98_compat_defaulted_deleted_function 1166 : diag::ext_defaulted_deleted_function) 1167 << 0 /* defaulted */; 1168 Actions.SetDeclDefaulted(Res, KWLoc); 1169 } else { 1170 llvm_unreachable("function definition after = not 'delete' or 'default'"); 1171 } 1172 1173 if (Tok.is(tok::comma)) { 1174 Diag(KWLoc, diag::err_default_delete_in_multiple_declaration) 1175 << Delete; 1176 SkipUntil(tok::semi); 1177 } else if (ExpectAndConsume(tok::semi, diag::err_expected_after, 1178 Delete ? "delete" : "default")) { 1179 SkipUntil(tok::semi); 1180 } 1181 1182 Stmt *GeneratedBody = Res ? Res->getBody() : nullptr; 1183 Actions.ActOnFinishFunctionBody(Res, GeneratedBody, false); 1184 return Res; 1185 } 1186 1187 if (SkipFunctionBodies && (!Res || Actions.canSkipFunctionBody(Res)) && 1188 trySkippingFunctionBody()) { 1189 BodyScope.Exit(); 1190 Actions.ActOnSkippedFunctionBody(Res); 1191 return Actions.ActOnFinishFunctionBody(Res, nullptr, false); 1192 } 1193 1194 if (Tok.is(tok::kw_try)) 1195 return ParseFunctionTryBlock(Res, BodyScope); 1196 1197 // If we have a colon, then we're probably parsing a C++ 1198 // ctor-initializer. 1199 if (Tok.is(tok::colon)) { 1200 ParseConstructorInitializer(Res); 1201 1202 // Recover from error. 1203 if (!Tok.is(tok::l_brace)) { 1204 BodyScope.Exit(); 1205 Actions.ActOnFinishFunctionBody(Res, nullptr); 1206 return Res; 1207 } 1208 } else 1209 Actions.ActOnDefaultCtorInitializers(Res); 1210 1211 // Late attributes are parsed in the same scope as the function body. 1212 if (LateParsedAttrs) 1213 ParseLexedAttributeList(*LateParsedAttrs, Res, false, true); 1214 1215 return ParseFunctionStatementBody(Res, BodyScope); 1216 } 1217 1218 void Parser::SkipFunctionBody() { 1219 if (Tok.is(tok::equal)) { 1220 SkipUntil(tok::semi); 1221 return; 1222 } 1223 1224 bool IsFunctionTryBlock = Tok.is(tok::kw_try); 1225 if (IsFunctionTryBlock) 1226 ConsumeToken(); 1227 1228 CachedTokens Skipped; 1229 if (ConsumeAndStoreFunctionPrologue(Skipped)) 1230 SkipMalformedDecl(); 1231 else { 1232 SkipUntil(tok::r_brace); 1233 while (IsFunctionTryBlock && Tok.is(tok::kw_catch)) { 1234 SkipUntil(tok::l_brace); 1235 SkipUntil(tok::r_brace); 1236 } 1237 } 1238 } 1239 1240 /// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides 1241 /// types for a function with a K&R-style identifier list for arguments. 1242 void Parser::ParseKNRParamDeclarations(Declarator &D) { 1243 // We know that the top-level of this declarator is a function. 1244 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 1245 1246 // Enter function-declaration scope, limiting any declarators to the 1247 // function prototype scope, including parameter declarators. 1248 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope | 1249 Scope::FunctionDeclarationScope | Scope::DeclScope); 1250 1251 // Read all the argument declarations. 1252 while (isDeclarationSpecifier()) { 1253 SourceLocation DSStart = Tok.getLocation(); 1254 1255 // Parse the common declaration-specifiers piece. 1256 DeclSpec DS(AttrFactory); 1257 ParseDeclarationSpecifiers(DS); 1258 1259 // C99 6.9.1p6: 'each declaration in the declaration list shall have at 1260 // least one declarator'. 1261 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with 1262 // the declarations though. It's trivial to ignore them, really hard to do 1263 // anything else with them. 1264 if (TryConsumeToken(tok::semi)) { 1265 Diag(DSStart, diag::err_declaration_does_not_declare_param); 1266 continue; 1267 } 1268 1269 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other 1270 // than register. 1271 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified && 1272 DS.getStorageClassSpec() != DeclSpec::SCS_register) { 1273 Diag(DS.getStorageClassSpecLoc(), 1274 diag::err_invalid_storage_class_in_func_decl); 1275 DS.ClearStorageClassSpecs(); 1276 } 1277 if (DS.getThreadStorageClassSpec() != DeclSpec::TSCS_unspecified) { 1278 Diag(DS.getThreadStorageClassSpecLoc(), 1279 diag::err_invalid_storage_class_in_func_decl); 1280 DS.ClearStorageClassSpecs(); 1281 } 1282 1283 // Parse the first declarator attached to this declspec. 1284 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext); 1285 ParseDeclarator(ParmDeclarator); 1286 1287 // Handle the full declarator list. 1288 while (1) { 1289 // If attributes are present, parse them. 1290 MaybeParseGNUAttributes(ParmDeclarator); 1291 1292 // Ask the actions module to compute the type for this declarator. 1293 Decl *Param = 1294 Actions.ActOnParamDeclarator(getCurScope(), ParmDeclarator); 1295 1296 if (Param && 1297 // A missing identifier has already been diagnosed. 1298 ParmDeclarator.getIdentifier()) { 1299 1300 // Scan the argument list looking for the correct param to apply this 1301 // type. 1302 for (unsigned i = 0; ; ++i) { 1303 // C99 6.9.1p6: those declarators shall declare only identifiers from 1304 // the identifier list. 1305 if (i == FTI.NumParams) { 1306 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param) 1307 << ParmDeclarator.getIdentifier(); 1308 break; 1309 } 1310 1311 if (FTI.Params[i].Ident == ParmDeclarator.getIdentifier()) { 1312 // Reject redefinitions of parameters. 1313 if (FTI.Params[i].Param) { 1314 Diag(ParmDeclarator.getIdentifierLoc(), 1315 diag::err_param_redefinition) 1316 << ParmDeclarator.getIdentifier(); 1317 } else { 1318 FTI.Params[i].Param = Param; 1319 } 1320 break; 1321 } 1322 } 1323 } 1324 1325 // If we don't have a comma, it is either the end of the list (a ';') or 1326 // an error, bail out. 1327 if (Tok.isNot(tok::comma)) 1328 break; 1329 1330 ParmDeclarator.clear(); 1331 1332 // Consume the comma. 1333 ParmDeclarator.setCommaLoc(ConsumeToken()); 1334 1335 // Parse the next declarator. 1336 ParseDeclarator(ParmDeclarator); 1337 } 1338 1339 // Consume ';' and continue parsing. 1340 if (!ExpectAndConsumeSemi(diag::err_expected_semi_declaration)) 1341 continue; 1342 1343 // Otherwise recover by skipping to next semi or mandatory function body. 1344 if (SkipUntil(tok::l_brace, StopAtSemi | StopBeforeMatch)) 1345 break; 1346 TryConsumeToken(tok::semi); 1347 } 1348 1349 // The actions module must verify that all arguments were declared. 1350 Actions.ActOnFinishKNRParamDeclarations(getCurScope(), D, Tok.getLocation()); 1351 } 1352 1353 1354 /// ParseAsmStringLiteral - This is just a normal string-literal, but is not 1355 /// allowed to be a wide string, and is not subject to character translation. 1356 /// 1357 /// [GNU] asm-string-literal: 1358 /// string-literal 1359 /// 1360 ExprResult Parser::ParseAsmStringLiteral() { 1361 if (!isTokenStringLiteral()) { 1362 Diag(Tok, diag::err_expected_string_literal) 1363 << /*Source='in...'*/0 << "'asm'"; 1364 return ExprError(); 1365 } 1366 1367 ExprResult AsmString(ParseStringLiteralExpression()); 1368 if (!AsmString.isInvalid()) { 1369 const auto *SL = cast<StringLiteral>(AsmString.get()); 1370 if (!SL->isAscii()) { 1371 Diag(Tok, diag::err_asm_operand_wide_string_literal) 1372 << SL->isWide() 1373 << SL->getSourceRange(); 1374 return ExprError(); 1375 } 1376 } 1377 return AsmString; 1378 } 1379 1380 /// ParseSimpleAsm 1381 /// 1382 /// [GNU] simple-asm-expr: 1383 /// 'asm' '(' asm-string-literal ')' 1384 /// 1385 ExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) { 1386 assert(Tok.is(tok::kw_asm) && "Not an asm!"); 1387 SourceLocation Loc = ConsumeToken(); 1388 1389 if (Tok.is(tok::kw_volatile)) { 1390 // Remove from the end of 'asm' to the end of 'volatile'. 1391 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc), 1392 PP.getLocForEndOfToken(Tok.getLocation())); 1393 1394 Diag(Tok, diag::warn_file_asm_volatile) 1395 << FixItHint::CreateRemoval(RemovalRange); 1396 ConsumeToken(); 1397 } 1398 1399 BalancedDelimiterTracker T(*this, tok::l_paren); 1400 if (T.consumeOpen()) { 1401 Diag(Tok, diag::err_expected_lparen_after) << "asm"; 1402 return ExprError(); 1403 } 1404 1405 ExprResult Result(ParseAsmStringLiteral()); 1406 1407 if (!Result.isInvalid()) { 1408 // Close the paren and get the location of the end bracket 1409 T.consumeClose(); 1410 if (EndLoc) 1411 *EndLoc = T.getCloseLocation(); 1412 } else if (SkipUntil(tok::r_paren, StopAtSemi | StopBeforeMatch)) { 1413 if (EndLoc) 1414 *EndLoc = Tok.getLocation(); 1415 ConsumeParen(); 1416 } 1417 1418 return Result; 1419 } 1420 1421 /// \brief Get the TemplateIdAnnotation from the token and put it in the 1422 /// cleanup pool so that it gets destroyed when parsing the current top level 1423 /// declaration is finished. 1424 TemplateIdAnnotation *Parser::takeTemplateIdAnnotation(const Token &tok) { 1425 assert(tok.is(tok::annot_template_id) && "Expected template-id token"); 1426 TemplateIdAnnotation * 1427 Id = static_cast<TemplateIdAnnotation *>(tok.getAnnotationValue()); 1428 return Id; 1429 } 1430 1431 void Parser::AnnotateScopeToken(CXXScopeSpec &SS, bool IsNewAnnotation) { 1432 // Push the current token back into the token stream (or revert it if it is 1433 // cached) and use an annotation scope token for current token. 1434 if (PP.isBacktrackEnabled()) 1435 PP.RevertCachedTokens(1); 1436 else 1437 PP.EnterToken(Tok); 1438 Tok.setKind(tok::annot_cxxscope); 1439 Tok.setAnnotationValue(Actions.SaveNestedNameSpecifierAnnotation(SS)); 1440 Tok.setAnnotationRange(SS.getRange()); 1441 1442 // In case the tokens were cached, have Preprocessor replace them 1443 // with the annotation token. We don't need to do this if we've 1444 // just reverted back to a prior state. 1445 if (IsNewAnnotation) 1446 PP.AnnotateCachedTokens(Tok); 1447 } 1448 1449 /// \brief Attempt to classify the name at the current token position. This may 1450 /// form a type, scope or primary expression annotation, or replace the token 1451 /// with a typo-corrected keyword. This is only appropriate when the current 1452 /// name must refer to an entity which has already been declared. 1453 /// 1454 /// \param IsAddressOfOperand Must be \c true if the name is preceded by an '&' 1455 /// and might possibly have a dependent nested name specifier. 1456 /// \param CCC Indicates how to perform typo-correction for this name. If NULL, 1457 /// no typo correction will be performed. 1458 Parser::AnnotatedNameKind 1459 Parser::TryAnnotateName(bool IsAddressOfOperand, 1460 std::unique_ptr<CorrectionCandidateCallback> CCC) { 1461 assert(Tok.is(tok::identifier) || Tok.is(tok::annot_cxxscope)); 1462 1463 const bool EnteringContext = false; 1464 const bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope); 1465 1466 CXXScopeSpec SS; 1467 if (getLangOpts().CPlusPlus && 1468 ParseOptionalCXXScopeSpecifier(SS, nullptr, EnteringContext)) 1469 return ANK_Error; 1470 1471 if (Tok.isNot(tok::identifier) || SS.isInvalid()) { 1472 if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(SS, !WasScopeAnnotation)) 1473 return ANK_Error; 1474 return ANK_Unresolved; 1475 } 1476 1477 IdentifierInfo *Name = Tok.getIdentifierInfo(); 1478 SourceLocation NameLoc = Tok.getLocation(); 1479 1480 // FIXME: Move the tentative declaration logic into ClassifyName so we can 1481 // typo-correct to tentatively-declared identifiers. 1482 if (isTentativelyDeclared(Name)) { 1483 // Identifier has been tentatively declared, and thus cannot be resolved as 1484 // an expression. Fall back to annotating it as a type. 1485 if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(SS, !WasScopeAnnotation)) 1486 return ANK_Error; 1487 return Tok.is(tok::annot_typename) ? ANK_Success : ANK_TentativeDecl; 1488 } 1489 1490 Token Next = NextToken(); 1491 1492 // Look up and classify the identifier. We don't perform any typo-correction 1493 // after a scope specifier, because in general we can't recover from typos 1494 // there (eg, after correcting 'A::tempalte B<X>::C' [sic], we would need to 1495 // jump back into scope specifier parsing). 1496 Sema::NameClassification Classification = Actions.ClassifyName( 1497 getCurScope(), SS, Name, NameLoc, Next, IsAddressOfOperand, 1498 SS.isEmpty() ? std::move(CCC) : nullptr); 1499 1500 switch (Classification.getKind()) { 1501 case Sema::NC_Error: 1502 return ANK_Error; 1503 1504 case Sema::NC_Keyword: 1505 // The identifier was typo-corrected to a keyword. 1506 Tok.setIdentifierInfo(Name); 1507 Tok.setKind(Name->getTokenID()); 1508 PP.TypoCorrectToken(Tok); 1509 if (SS.isNotEmpty()) 1510 AnnotateScopeToken(SS, !WasScopeAnnotation); 1511 // We've "annotated" this as a keyword. 1512 return ANK_Success; 1513 1514 case Sema::NC_Unknown: 1515 // It's not something we know about. Leave it unannotated. 1516 break; 1517 1518 case Sema::NC_Type: { 1519 SourceLocation BeginLoc = NameLoc; 1520 if (SS.isNotEmpty()) 1521 BeginLoc = SS.getBeginLoc(); 1522 1523 /// An Objective-C object type followed by '<' is a specialization of 1524 /// a parameterized class type or a protocol-qualified type. 1525 ParsedType Ty = Classification.getType(); 1526 if (getLangOpts().ObjC1 && NextToken().is(tok::less) && 1527 (Ty.get()->isObjCObjectType() || 1528 Ty.get()->isObjCObjectPointerType())) { 1529 // Consume the name. 1530 SourceLocation IdentifierLoc = ConsumeToken(); 1531 SourceLocation NewEndLoc; 1532 TypeResult NewType 1533 = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty, 1534 /*consumeLastToken=*/false, 1535 NewEndLoc); 1536 if (NewType.isUsable()) 1537 Ty = NewType.get(); 1538 else if (Tok.is(tok::eof)) // Nothing to do here, bail out... 1539 return ANK_Error; 1540 } 1541 1542 Tok.setKind(tok::annot_typename); 1543 setTypeAnnotation(Tok, Ty); 1544 Tok.setAnnotationEndLoc(Tok.getLocation()); 1545 Tok.setLocation(BeginLoc); 1546 PP.AnnotateCachedTokens(Tok); 1547 return ANK_Success; 1548 } 1549 1550 case Sema::NC_Expression: 1551 Tok.setKind(tok::annot_primary_expr); 1552 setExprAnnotation(Tok, Classification.getExpression()); 1553 Tok.setAnnotationEndLoc(NameLoc); 1554 if (SS.isNotEmpty()) 1555 Tok.setLocation(SS.getBeginLoc()); 1556 PP.AnnotateCachedTokens(Tok); 1557 return ANK_Success; 1558 1559 case Sema::NC_TypeTemplate: 1560 if (Next.isNot(tok::less)) { 1561 // This may be a type template being used as a template template argument. 1562 if (SS.isNotEmpty()) 1563 AnnotateScopeToken(SS, !WasScopeAnnotation); 1564 return ANK_TemplateName; 1565 } 1566 // Fall through. 1567 case Sema::NC_VarTemplate: 1568 case Sema::NC_FunctionTemplate: { 1569 // We have a type, variable or function template followed by '<'. 1570 ConsumeToken(); 1571 UnqualifiedId Id; 1572 Id.setIdentifier(Name, NameLoc); 1573 if (AnnotateTemplateIdToken( 1574 TemplateTy::make(Classification.getTemplateName()), 1575 Classification.getTemplateNameKind(), SS, SourceLocation(), Id)) 1576 return ANK_Error; 1577 return ANK_Success; 1578 } 1579 1580 case Sema::NC_NestedNameSpecifier: 1581 llvm_unreachable("already parsed nested name specifier"); 1582 } 1583 1584 // Unable to classify the name, but maybe we can annotate a scope specifier. 1585 if (SS.isNotEmpty()) 1586 AnnotateScopeToken(SS, !WasScopeAnnotation); 1587 return ANK_Unresolved; 1588 } 1589 1590 bool Parser::TryKeywordIdentFallback(bool DisableKeyword) { 1591 assert(Tok.isNot(tok::identifier)); 1592 Diag(Tok, diag::ext_keyword_as_ident) 1593 << PP.getSpelling(Tok) 1594 << DisableKeyword; 1595 if (DisableKeyword) 1596 Tok.getIdentifierInfo()->revertTokenIDToIdentifier(); 1597 Tok.setKind(tok::identifier); 1598 return true; 1599 } 1600 1601 /// TryAnnotateTypeOrScopeToken - If the current token position is on a 1602 /// typename (possibly qualified in C++) or a C++ scope specifier not followed 1603 /// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens 1604 /// with a single annotation token representing the typename or C++ scope 1605 /// respectively. 1606 /// This simplifies handling of C++ scope specifiers and allows efficient 1607 /// backtracking without the need to re-parse and resolve nested-names and 1608 /// typenames. 1609 /// It will mainly be called when we expect to treat identifiers as typenames 1610 /// (if they are typenames). For example, in C we do not expect identifiers 1611 /// inside expressions to be treated as typenames so it will not be called 1612 /// for expressions in C. 1613 /// The benefit for C/ObjC is that a typename will be annotated and 1614 /// Actions.getTypeName will not be needed to be called again (e.g. getTypeName 1615 /// will not be called twice, once to check whether we have a declaration 1616 /// specifier, and another one to get the actual type inside 1617 /// ParseDeclarationSpecifiers). 1618 /// 1619 /// This returns true if an error occurred. 1620 /// 1621 /// Note that this routine emits an error if you call it with ::new or ::delete 1622 /// as the current tokens, so only call it in contexts where these are invalid. 1623 bool Parser::TryAnnotateTypeOrScopeToken() { 1624 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) || 1625 Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope) || 1626 Tok.is(tok::kw_decltype) || Tok.is(tok::annot_template_id) || 1627 Tok.is(tok::kw___super)) && 1628 "Cannot be a type or scope token!"); 1629 1630 if (Tok.is(tok::kw_typename)) { 1631 // MSVC lets you do stuff like: 1632 // typename typedef T_::D D; 1633 // 1634 // We will consume the typedef token here and put it back after we have 1635 // parsed the first identifier, transforming it into something more like: 1636 // typename T_::D typedef D; 1637 if (getLangOpts().MSVCCompat && NextToken().is(tok::kw_typedef)) { 1638 Token TypedefToken; 1639 PP.Lex(TypedefToken); 1640 bool Result = TryAnnotateTypeOrScopeToken(); 1641 PP.EnterToken(Tok); 1642 Tok = TypedefToken; 1643 if (!Result) 1644 Diag(Tok.getLocation(), diag::warn_expected_qualified_after_typename); 1645 return Result; 1646 } 1647 1648 // Parse a C++ typename-specifier, e.g., "typename T::type". 1649 // 1650 // typename-specifier: 1651 // 'typename' '::' [opt] nested-name-specifier identifier 1652 // 'typename' '::' [opt] nested-name-specifier template [opt] 1653 // simple-template-id 1654 SourceLocation TypenameLoc = ConsumeToken(); 1655 CXXScopeSpec SS; 1656 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/nullptr, 1657 /*EnteringContext=*/false, nullptr, 1658 /*IsTypename*/ true)) 1659 return true; 1660 if (!SS.isSet()) { 1661 if (Tok.is(tok::identifier) || Tok.is(tok::annot_template_id) || 1662 Tok.is(tok::annot_decltype)) { 1663 // Attempt to recover by skipping the invalid 'typename' 1664 if (Tok.is(tok::annot_decltype) || 1665 (!TryAnnotateTypeOrScopeToken() && Tok.isAnnotation())) { 1666 unsigned DiagID = diag::err_expected_qualified_after_typename; 1667 // MS compatibility: MSVC permits using known types with typename. 1668 // e.g. "typedef typename T* pointer_type" 1669 if (getLangOpts().MicrosoftExt) 1670 DiagID = diag::warn_expected_qualified_after_typename; 1671 Diag(Tok.getLocation(), DiagID); 1672 return false; 1673 } 1674 } 1675 if (Tok.isEditorPlaceholder()) 1676 return true; 1677 1678 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename); 1679 return true; 1680 } 1681 1682 TypeResult Ty; 1683 if (Tok.is(tok::identifier)) { 1684 // FIXME: check whether the next token is '<', first! 1685 Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS, 1686 *Tok.getIdentifierInfo(), 1687 Tok.getLocation()); 1688 } else if (Tok.is(tok::annot_template_id)) { 1689 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok); 1690 if (TemplateId->Kind != TNK_Type_template && 1691 TemplateId->Kind != TNK_Dependent_template_name) { 1692 Diag(Tok, diag::err_typename_refers_to_non_type_template) 1693 << Tok.getAnnotationRange(); 1694 return true; 1695 } 1696 1697 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), 1698 TemplateId->NumArgs); 1699 1700 Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS, 1701 TemplateId->TemplateKWLoc, 1702 TemplateId->Template, 1703 TemplateId->Name, 1704 TemplateId->TemplateNameLoc, 1705 TemplateId->LAngleLoc, 1706 TemplateArgsPtr, 1707 TemplateId->RAngleLoc); 1708 } else { 1709 Diag(Tok, diag::err_expected_type_name_after_typename) 1710 << SS.getRange(); 1711 return true; 1712 } 1713 1714 SourceLocation EndLoc = Tok.getLastLoc(); 1715 Tok.setKind(tok::annot_typename); 1716 setTypeAnnotation(Tok, Ty.isInvalid() ? nullptr : Ty.get()); 1717 Tok.setAnnotationEndLoc(EndLoc); 1718 Tok.setLocation(TypenameLoc); 1719 PP.AnnotateCachedTokens(Tok); 1720 return false; 1721 } 1722 1723 // Remembers whether the token was originally a scope annotation. 1724 bool WasScopeAnnotation = Tok.is(tok::annot_cxxscope); 1725 1726 CXXScopeSpec SS; 1727 if (getLangOpts().CPlusPlus) 1728 if (ParseOptionalCXXScopeSpecifier(SS, nullptr, /*EnteringContext*/false)) 1729 return true; 1730 1731 return TryAnnotateTypeOrScopeTokenAfterScopeSpec(SS, !WasScopeAnnotation); 1732 } 1733 1734 /// \brief Try to annotate a type or scope token, having already parsed an 1735 /// optional scope specifier. \p IsNewScope should be \c true unless the scope 1736 /// specifier was extracted from an existing tok::annot_cxxscope annotation. 1737 bool Parser::TryAnnotateTypeOrScopeTokenAfterScopeSpec(CXXScopeSpec &SS, 1738 bool IsNewScope) { 1739 if (Tok.is(tok::identifier)) { 1740 // Determine whether the identifier is a type name. 1741 if (ParsedType Ty = Actions.getTypeName( 1742 *Tok.getIdentifierInfo(), Tok.getLocation(), getCurScope(), &SS, 1743 false, NextToken().is(tok::period), nullptr, 1744 /*IsCtorOrDtorName=*/false, 1745 /*NonTrivialTypeSourceInfo*/ true, 1746 /*IsClassTemplateDeductionContext*/GreaterThanIsOperator)) { 1747 SourceLocation BeginLoc = Tok.getLocation(); 1748 if (SS.isNotEmpty()) // it was a C++ qualified type name. 1749 BeginLoc = SS.getBeginLoc(); 1750 1751 /// An Objective-C object type followed by '<' is a specialization of 1752 /// a parameterized class type or a protocol-qualified type. 1753 if (getLangOpts().ObjC1 && NextToken().is(tok::less) && 1754 (Ty.get()->isObjCObjectType() || 1755 Ty.get()->isObjCObjectPointerType())) { 1756 // Consume the name. 1757 SourceLocation IdentifierLoc = ConsumeToken(); 1758 SourceLocation NewEndLoc; 1759 TypeResult NewType 1760 = parseObjCTypeArgsAndProtocolQualifiers(IdentifierLoc, Ty, 1761 /*consumeLastToken=*/false, 1762 NewEndLoc); 1763 if (NewType.isUsable()) 1764 Ty = NewType.get(); 1765 else if (Tok.is(tok::eof)) // Nothing to do here, bail out... 1766 return false; 1767 } 1768 1769 // This is a typename. Replace the current token in-place with an 1770 // annotation type token. 1771 Tok.setKind(tok::annot_typename); 1772 setTypeAnnotation(Tok, Ty); 1773 Tok.setAnnotationEndLoc(Tok.getLocation()); 1774 Tok.setLocation(BeginLoc); 1775 1776 // In case the tokens were cached, have Preprocessor replace 1777 // them with the annotation token. 1778 PP.AnnotateCachedTokens(Tok); 1779 return false; 1780 } 1781 1782 if (!getLangOpts().CPlusPlus) { 1783 // If we're in C, we can't have :: tokens at all (the lexer won't return 1784 // them). If the identifier is not a type, then it can't be scope either, 1785 // just early exit. 1786 return false; 1787 } 1788 1789 // If this is a template-id, annotate with a template-id or type token. 1790 if (NextToken().is(tok::less)) { 1791 TemplateTy Template; 1792 UnqualifiedId TemplateName; 1793 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation()); 1794 bool MemberOfUnknownSpecialization; 1795 if (TemplateNameKind TNK = Actions.isTemplateName( 1796 getCurScope(), SS, 1797 /*hasTemplateKeyword=*/false, TemplateName, 1798 /*ObjectType=*/nullptr, /*EnteringContext*/false, Template, 1799 MemberOfUnknownSpecialization)) { 1800 // Consume the identifier. 1801 ConsumeToken(); 1802 if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(), 1803 TemplateName)) { 1804 // If an unrecoverable error occurred, we need to return true here, 1805 // because the token stream is in a damaged state. We may not return 1806 // a valid identifier. 1807 return true; 1808 } 1809 } 1810 } 1811 1812 // The current token, which is either an identifier or a 1813 // template-id, is not part of the annotation. Fall through to 1814 // push that token back into the stream and complete the C++ scope 1815 // specifier annotation. 1816 } 1817 1818 if (Tok.is(tok::annot_template_id)) { 1819 TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok); 1820 if (TemplateId->Kind == TNK_Type_template) { 1821 // A template-id that refers to a type was parsed into a 1822 // template-id annotation in a context where we weren't allowed 1823 // to produce a type annotation token. Update the template-id 1824 // annotation token to a type annotation token now. 1825 AnnotateTemplateIdTokenAsType(); 1826 return false; 1827 } 1828 } 1829 1830 if (SS.isEmpty()) 1831 return false; 1832 1833 // A C++ scope specifier that isn't followed by a typename. 1834 AnnotateScopeToken(SS, IsNewScope); 1835 return false; 1836 } 1837 1838 /// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only 1839 /// annotates C++ scope specifiers and template-ids. This returns 1840 /// true if there was an error that could not be recovered from. 1841 /// 1842 /// Note that this routine emits an error if you call it with ::new or ::delete 1843 /// as the current tokens, so only call it in contexts where these are invalid. 1844 bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) { 1845 assert(getLangOpts().CPlusPlus && 1846 "Call sites of this function should be guarded by checking for C++"); 1847 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) || 1848 (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) || 1849 Tok.is(tok::kw_decltype) || Tok.is(tok::kw___super)) && 1850 "Cannot be a type or scope token!"); 1851 1852 CXXScopeSpec SS; 1853 if (ParseOptionalCXXScopeSpecifier(SS, nullptr, EnteringContext)) 1854 return true; 1855 if (SS.isEmpty()) 1856 return false; 1857 1858 AnnotateScopeToken(SS, true); 1859 return false; 1860 } 1861 1862 bool Parser::isTokenEqualOrEqualTypo() { 1863 tok::TokenKind Kind = Tok.getKind(); 1864 switch (Kind) { 1865 default: 1866 return false; 1867 case tok::ampequal: // &= 1868 case tok::starequal: // *= 1869 case tok::plusequal: // += 1870 case tok::minusequal: // -= 1871 case tok::exclaimequal: // != 1872 case tok::slashequal: // /= 1873 case tok::percentequal: // %= 1874 case tok::lessequal: // <= 1875 case tok::lesslessequal: // <<= 1876 case tok::greaterequal: // >= 1877 case tok::greatergreaterequal: // >>= 1878 case tok::caretequal: // ^= 1879 case tok::pipeequal: // |= 1880 case tok::equalequal: // == 1881 Diag(Tok, diag::err_invalid_token_after_declarator_suggest_equal) 1882 << Kind 1883 << FixItHint::CreateReplacement(SourceRange(Tok.getLocation()), "="); 1884 LLVM_FALLTHROUGH; 1885 case tok::equal: 1886 return true; 1887 } 1888 } 1889 1890 SourceLocation Parser::handleUnexpectedCodeCompletionToken() { 1891 assert(Tok.is(tok::code_completion)); 1892 PrevTokLocation = Tok.getLocation(); 1893 1894 for (Scope *S = getCurScope(); S; S = S->getParent()) { 1895 if (S->getFlags() & Scope::FnScope) { 1896 Actions.CodeCompleteOrdinaryName(getCurScope(), 1897 Sema::PCC_RecoveryInFunction); 1898 cutOffParsing(); 1899 return PrevTokLocation; 1900 } 1901 1902 if (S->getFlags() & Scope::ClassScope) { 1903 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Class); 1904 cutOffParsing(); 1905 return PrevTokLocation; 1906 } 1907 } 1908 1909 Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Namespace); 1910 cutOffParsing(); 1911 return PrevTokLocation; 1912 } 1913 1914 // Code-completion pass-through functions 1915 1916 void Parser::CodeCompleteDirective(bool InConditional) { 1917 Actions.CodeCompletePreprocessorDirective(InConditional); 1918 } 1919 1920 void Parser::CodeCompleteInConditionalExclusion() { 1921 Actions.CodeCompleteInPreprocessorConditionalExclusion(getCurScope()); 1922 } 1923 1924 void Parser::CodeCompleteMacroName(bool IsDefinition) { 1925 Actions.CodeCompletePreprocessorMacroName(IsDefinition); 1926 } 1927 1928 void Parser::CodeCompletePreprocessorExpression() { 1929 Actions.CodeCompletePreprocessorExpression(); 1930 } 1931 1932 void Parser::CodeCompleteMacroArgument(IdentifierInfo *Macro, 1933 MacroInfo *MacroInfo, 1934 unsigned ArgumentIndex) { 1935 Actions.CodeCompletePreprocessorMacroArgument(getCurScope(), Macro, MacroInfo, 1936 ArgumentIndex); 1937 } 1938 1939 void Parser::CodeCompleteNaturalLanguage() { 1940 Actions.CodeCompleteNaturalLanguage(); 1941 } 1942 1943 bool Parser::ParseMicrosoftIfExistsCondition(IfExistsCondition& Result) { 1944 assert((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists)) && 1945 "Expected '__if_exists' or '__if_not_exists'"); 1946 Result.IsIfExists = Tok.is(tok::kw___if_exists); 1947 Result.KeywordLoc = ConsumeToken(); 1948 1949 BalancedDelimiterTracker T(*this, tok::l_paren); 1950 if (T.consumeOpen()) { 1951 Diag(Tok, diag::err_expected_lparen_after) 1952 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); 1953 return true; 1954 } 1955 1956 // Parse nested-name-specifier. 1957 if (getLangOpts().CPlusPlus) 1958 ParseOptionalCXXScopeSpecifier(Result.SS, nullptr, 1959 /*EnteringContext=*/false); 1960 1961 // Check nested-name specifier. 1962 if (Result.SS.isInvalid()) { 1963 T.skipToEnd(); 1964 return true; 1965 } 1966 1967 // Parse the unqualified-id. 1968 SourceLocation TemplateKWLoc; // FIXME: parsed, but unused. 1969 if (ParseUnqualifiedId( 1970 Result.SS, /*EnteringContext*/false, /*AllowDestructorName*/true, 1971 /*AllowConstructorName*/true, /*AllowDeductionGuide*/false, nullptr, 1972 TemplateKWLoc, Result.Name)) { 1973 T.skipToEnd(); 1974 return true; 1975 } 1976 1977 if (T.consumeClose()) 1978 return true; 1979 1980 // Check if the symbol exists. 1981 switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc, 1982 Result.IsIfExists, Result.SS, 1983 Result.Name)) { 1984 case Sema::IER_Exists: 1985 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; 1986 break; 1987 1988 case Sema::IER_DoesNotExist: 1989 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; 1990 break; 1991 1992 case Sema::IER_Dependent: 1993 Result.Behavior = IEB_Dependent; 1994 break; 1995 1996 case Sema::IER_Error: 1997 return true; 1998 } 1999 2000 return false; 2001 } 2002 2003 void Parser::ParseMicrosoftIfExistsExternalDeclaration() { 2004 IfExistsCondition Result; 2005 if (ParseMicrosoftIfExistsCondition(Result)) 2006 return; 2007 2008 BalancedDelimiterTracker Braces(*this, tok::l_brace); 2009 if (Braces.consumeOpen()) { 2010 Diag(Tok, diag::err_expected) << tok::l_brace; 2011 return; 2012 } 2013 2014 switch (Result.Behavior) { 2015 case IEB_Parse: 2016 // Parse declarations below. 2017 break; 2018 2019 case IEB_Dependent: 2020 llvm_unreachable("Cannot have a dependent external declaration"); 2021 2022 case IEB_Skip: 2023 Braces.skipToEnd(); 2024 return; 2025 } 2026 2027 // Parse the declarations. 2028 // FIXME: Support module import within __if_exists? 2029 while (Tok.isNot(tok::r_brace) && !isEofOrEom()) { 2030 ParsedAttributesWithRange attrs(AttrFactory); 2031 MaybeParseCXX11Attributes(attrs); 2032 DeclGroupPtrTy Result = ParseExternalDeclaration(attrs); 2033 if (Result && !getCurScope()->getParent()) 2034 Actions.getASTConsumer().HandleTopLevelDecl(Result.get()); 2035 } 2036 Braces.consumeClose(); 2037 } 2038 2039 /// Parse a C++ Modules TS module declaration, which appears at the beginning 2040 /// of a module interface, module partition, or module implementation file. 2041 /// 2042 /// module-declaration: [Modules TS + P0273R0 + P0629R0] 2043 /// 'export'[opt] 'module' 'partition'[opt] 2044 /// module-name attribute-specifier-seq[opt] ';' 2045 /// 2046 /// Note that 'partition' is a context-sensitive keyword. 2047 Parser::DeclGroupPtrTy Parser::ParseModuleDecl() { 2048 SourceLocation StartLoc = Tok.getLocation(); 2049 2050 Sema::ModuleDeclKind MDK = TryConsumeToken(tok::kw_export) 2051 ? Sema::ModuleDeclKind::Module 2052 : Sema::ModuleDeclKind::Implementation; 2053 2054 assert(Tok.is(tok::kw_module) && "not a module declaration"); 2055 SourceLocation ModuleLoc = ConsumeToken(); 2056 2057 if (Tok.is(tok::identifier) && NextToken().is(tok::identifier) && 2058 Tok.getIdentifierInfo()->isStr("partition")) { 2059 // If 'partition' is present, this must be a module interface unit. 2060 if (MDK != Sema::ModuleDeclKind::Module) 2061 Diag(Tok.getLocation(), diag::err_module_implementation_partition) 2062 << FixItHint::CreateInsertion(ModuleLoc, "export "); 2063 MDK = Sema::ModuleDeclKind::Partition; 2064 ConsumeToken(); 2065 } 2066 2067 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path; 2068 if (ParseModuleName(ModuleLoc, Path, /*IsImport*/false)) 2069 return nullptr; 2070 2071 // We don't support any module attributes yet; just parse them and diagnose. 2072 ParsedAttributesWithRange Attrs(AttrFactory); 2073 MaybeParseCXX11Attributes(Attrs); 2074 ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_module_attr); 2075 2076 ExpectAndConsumeSemi(diag::err_module_expected_semi); 2077 2078 return Actions.ActOnModuleDecl(StartLoc, ModuleLoc, MDK, Path); 2079 } 2080 2081 /// Parse a module import declaration. This is essentially the same for 2082 /// Objective-C and the C++ Modules TS, except for the leading '@' (in ObjC) 2083 /// and the trailing optional attributes (in C++). 2084 /// 2085 /// [ObjC] @import declaration: 2086 /// '@' 'import' module-name ';' 2087 /// [ModTS] module-import-declaration: 2088 /// 'import' module-name attribute-specifier-seq[opt] ';' 2089 Parser::DeclGroupPtrTy Parser::ParseModuleImport(SourceLocation AtLoc) { 2090 assert((AtLoc.isInvalid() ? Tok.is(tok::kw_import) 2091 : Tok.isObjCAtKeyword(tok::objc_import)) && 2092 "Improper start to module import"); 2093 SourceLocation ImportLoc = ConsumeToken(); 2094 SourceLocation StartLoc = AtLoc.isInvalid() ? ImportLoc : AtLoc; 2095 2096 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path; 2097 if (ParseModuleName(ImportLoc, Path, /*IsImport*/true)) 2098 return nullptr; 2099 2100 ParsedAttributesWithRange Attrs(AttrFactory); 2101 MaybeParseCXX11Attributes(Attrs); 2102 // We don't support any module import attributes yet. 2103 ProhibitCXX11Attributes(Attrs, diag::err_attribute_not_import_attr); 2104 2105 if (PP.hadModuleLoaderFatalFailure()) { 2106 // With a fatal failure in the module loader, we abort parsing. 2107 cutOffParsing(); 2108 return nullptr; 2109 } 2110 2111 DeclResult Import = Actions.ActOnModuleImport(StartLoc, ImportLoc, Path); 2112 ExpectAndConsumeSemi(diag::err_module_expected_semi); 2113 if (Import.isInvalid()) 2114 return nullptr; 2115 2116 return Actions.ConvertDeclToDeclGroup(Import.get()); 2117 } 2118 2119 /// Parse a C++ Modules TS / Objective-C module name (both forms use the same 2120 /// grammar). 2121 /// 2122 /// module-name: 2123 /// module-name-qualifier[opt] identifier 2124 /// module-name-qualifier: 2125 /// module-name-qualifier[opt] identifier '.' 2126 bool Parser::ParseModuleName( 2127 SourceLocation UseLoc, 2128 SmallVectorImpl<std::pair<IdentifierInfo *, SourceLocation>> &Path, 2129 bool IsImport) { 2130 // Parse the module path. 2131 while (true) { 2132 if (!Tok.is(tok::identifier)) { 2133 if (Tok.is(tok::code_completion)) { 2134 Actions.CodeCompleteModuleImport(UseLoc, Path); 2135 cutOffParsing(); 2136 return true; 2137 } 2138 2139 Diag(Tok, diag::err_module_expected_ident) << IsImport; 2140 SkipUntil(tok::semi); 2141 return true; 2142 } 2143 2144 // Record this part of the module path. 2145 Path.push_back(std::make_pair(Tok.getIdentifierInfo(), Tok.getLocation())); 2146 ConsumeToken(); 2147 2148 if (Tok.isNot(tok::period)) 2149 return false; 2150 2151 ConsumeToken(); 2152 } 2153 } 2154 2155 /// \brief Try recover parser when module annotation appears where it must not 2156 /// be found. 2157 /// \returns false if the recover was successful and parsing may be continued, or 2158 /// true if parser must bail out to top level and handle the token there. 2159 bool Parser::parseMisplacedModuleImport() { 2160 while (true) { 2161 switch (Tok.getKind()) { 2162 case tok::annot_module_end: 2163 // If we recovered from a misplaced module begin, we expect to hit a 2164 // misplaced module end too. Stay in the current context when this 2165 // happens. 2166 if (MisplacedModuleBeginCount) { 2167 --MisplacedModuleBeginCount; 2168 Actions.ActOnModuleEnd(Tok.getLocation(), 2169 reinterpret_cast<Module *>( 2170 Tok.getAnnotationValue())); 2171 ConsumeAnnotationToken(); 2172 continue; 2173 } 2174 // Inform caller that recovery failed, the error must be handled at upper 2175 // level. This will generate the desired "missing '}' at end of module" 2176 // diagnostics on the way out. 2177 return true; 2178 case tok::annot_module_begin: 2179 // Recover by entering the module (Sema will diagnose). 2180 Actions.ActOnModuleBegin(Tok.getLocation(), 2181 reinterpret_cast<Module *>( 2182 Tok.getAnnotationValue())); 2183 ConsumeAnnotationToken(); 2184 ++MisplacedModuleBeginCount; 2185 continue; 2186 case tok::annot_module_include: 2187 // Module import found where it should not be, for instance, inside a 2188 // namespace. Recover by importing the module. 2189 Actions.ActOnModuleInclude(Tok.getLocation(), 2190 reinterpret_cast<Module *>( 2191 Tok.getAnnotationValue())); 2192 ConsumeAnnotationToken(); 2193 // If there is another module import, process it. 2194 continue; 2195 default: 2196 return false; 2197 } 2198 } 2199 return false; 2200 } 2201 2202 bool BalancedDelimiterTracker::diagnoseOverflow() { 2203 P.Diag(P.Tok, diag::err_bracket_depth_exceeded) 2204 << P.getLangOpts().BracketDepth; 2205 P.Diag(P.Tok, diag::note_bracket_depth); 2206 P.cutOffParsing(); 2207 return true; 2208 } 2209 2210 bool BalancedDelimiterTracker::expectAndConsume(unsigned DiagID, 2211 const char *Msg, 2212 tok::TokenKind SkipToTok) { 2213 LOpen = P.Tok.getLocation(); 2214 if (P.ExpectAndConsume(Kind, DiagID, Msg)) { 2215 if (SkipToTok != tok::unknown) 2216 P.SkipUntil(SkipToTok, Parser::StopAtSemi); 2217 return true; 2218 } 2219 2220 if (getDepth() < MaxDepth) 2221 return false; 2222 2223 return diagnoseOverflow(); 2224 } 2225 2226 bool BalancedDelimiterTracker::diagnoseMissingClose() { 2227 assert(!P.Tok.is(Close) && "Should have consumed closing delimiter"); 2228 2229 if (P.Tok.is(tok::annot_module_end)) 2230 P.Diag(P.Tok, diag::err_missing_before_module_end) << Close; 2231 else 2232 P.Diag(P.Tok, diag::err_expected) << Close; 2233 P.Diag(LOpen, diag::note_matching) << Kind; 2234 2235 // If we're not already at some kind of closing bracket, skip to our closing 2236 // token. 2237 if (P.Tok.isNot(tok::r_paren) && P.Tok.isNot(tok::r_brace) && 2238 P.Tok.isNot(tok::r_square) && 2239 P.SkipUntil(Close, FinalToken, 2240 Parser::StopAtSemi | Parser::StopBeforeMatch) && 2241 P.Tok.is(Close)) 2242 LClose = P.ConsumeAnyToken(); 2243 return true; 2244 } 2245 2246 void BalancedDelimiterTracker::skipToEnd() { 2247 P.SkipUntil(Close, Parser::StopBeforeMatch); 2248 consumeClose(); 2249 } 2250