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/Parse/ParseDiagnostic.h" 16 #include "clang/Parse/DeclSpec.h" 17 #include "clang/Parse/Scope.h" 18 #include "llvm/Support/raw_ostream.h" 19 #include "ExtensionRAIIObject.h" 20 #include "ParsePragma.h" 21 using namespace clang; 22 23 Parser::Parser(Preprocessor &pp, Action &actions) 24 : CrashInfo(*this), PP(pp), Actions(actions), Diags(PP.getDiagnostics()), 25 GreaterThanIsOperator(true) { 26 Tok.setKind(tok::eof); 27 CurScope = 0; 28 NumCachedScopes = 0; 29 ParenCount = BracketCount = BraceCount = 0; 30 ObjCImpDecl = DeclPtrTy(); 31 32 // Add #pragma handlers. These are removed and destroyed in the 33 // destructor. 34 PackHandler.reset(new 35 PragmaPackHandler(&PP.getIdentifierTable().get("pack"), actions)); 36 PP.AddPragmaHandler(0, PackHandler.get()); 37 38 UnusedHandler.reset(new 39 PragmaUnusedHandler(&PP.getIdentifierTable().get("unused"), actions, 40 *this)); 41 PP.AddPragmaHandler(0, UnusedHandler.get()); 42 43 WeakHandler.reset(new 44 PragmaWeakHandler(&PP.getIdentifierTable().get("weak"), actions)); 45 PP.AddPragmaHandler(0, WeakHandler.get()); 46 } 47 48 /// If a crash happens while the parser is active, print out a line indicating 49 /// what the current token is. 50 void PrettyStackTraceParserEntry::print(llvm::raw_ostream &OS) const { 51 const Token &Tok = P.getCurToken(); 52 if (Tok.is(tok::eof)) { 53 OS << "<eof> parser at end of file\n"; 54 return; 55 } 56 57 if (Tok.getLocation().isInvalid()) { 58 OS << "<unknown> parser at unknown location\n"; 59 return; 60 } 61 62 const Preprocessor &PP = P.getPreprocessor(); 63 Tok.getLocation().print(OS, PP.getSourceManager()); 64 OS << ": current parser token '" << PP.getSpelling(Tok) << "'\n"; 65 } 66 67 68 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) { 69 return Diags.Report(FullSourceLoc(Loc, PP.getSourceManager()), DiagID); 70 } 71 72 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) { 73 return Diag(Tok.getLocation(), DiagID); 74 } 75 76 /// \brief Emits a diagnostic suggesting parentheses surrounding a 77 /// given range. 78 /// 79 /// \param Loc The location where we'll emit the diagnostic. 80 /// \param Loc The kind of diagnostic to emit. 81 /// \param ParenRange Source range enclosing code that should be parenthesized. 82 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK, 83 SourceRange ParenRange) { 84 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd()); 85 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) { 86 // We can't display the parentheses, so just dig the 87 // warning/error and return. 88 Diag(Loc, DK); 89 return; 90 } 91 92 Diag(Loc, DK) 93 << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(") 94 << CodeModificationHint::CreateInsertion(EndLoc, ")"); 95 } 96 97 /// MatchRHSPunctuation - For punctuation with a LHS and RHS (e.g. '['/']'), 98 /// this helper function matches and consumes the specified RHS token if 99 /// present. If not present, it emits the specified diagnostic indicating 100 /// that the parser failed to match the RHS of the token at LHSLoc. LHSName 101 /// should be the name of the unmatched LHS token. 102 SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok, 103 SourceLocation LHSLoc) { 104 105 if (Tok.is(RHSTok)) 106 return ConsumeAnyToken(); 107 108 SourceLocation R = Tok.getLocation(); 109 const char *LHSName = "unknown"; 110 diag::kind DID = diag::err_parse_error; 111 switch (RHSTok) { 112 default: break; 113 case tok::r_paren : LHSName = "("; DID = diag::err_expected_rparen; break; 114 case tok::r_brace : LHSName = "{"; DID = diag::err_expected_rbrace; break; 115 case tok::r_square: LHSName = "["; DID = diag::err_expected_rsquare; break; 116 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break; 117 } 118 Diag(Tok, DID); 119 Diag(LHSLoc, diag::note_matching) << LHSName; 120 SkipUntil(RHSTok); 121 return R; 122 } 123 124 /// ExpectAndConsume - The parser expects that 'ExpectedTok' is next in the 125 /// input. If so, it is consumed and false is returned. 126 /// 127 /// If the input is malformed, this emits the specified diagnostic. Next, if 128 /// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is 129 /// returned. 130 bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID, 131 const char *Msg, tok::TokenKind SkipToTok) { 132 if (Tok.is(ExpectedTok)) { 133 ConsumeAnyToken(); 134 return false; 135 } 136 137 const char *Spelling = 0; 138 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation); 139 if (EndLoc.isValid() && 140 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) { 141 // Show what code to insert to fix this problem. 142 Diag(EndLoc, DiagID) 143 << Msg 144 << CodeModificationHint::CreateInsertion(EndLoc, Spelling); 145 } else 146 Diag(Tok, DiagID) << Msg; 147 148 if (SkipToTok != tok::unknown) 149 SkipUntil(SkipToTok); 150 return true; 151 } 152 153 //===----------------------------------------------------------------------===// 154 // Error recovery. 155 //===----------------------------------------------------------------------===// 156 157 /// SkipUntil - Read tokens until we get to the specified token, then consume 158 /// it (unless DontConsume is true). Because we cannot guarantee that the 159 /// token will ever occur, this skips to the next token, or to some likely 160 /// good stopping point. If StopAtSemi is true, skipping will stop at a ';' 161 /// character. 162 /// 163 /// If SkipUntil finds the specified token, it returns true, otherwise it 164 /// returns false. 165 bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks, 166 bool StopAtSemi, bool DontConsume) { 167 // We always want this function to skip at least one token if the first token 168 // isn't T and if not at EOF. 169 bool isFirstTokenSkipped = true; 170 while (1) { 171 // If we found one of the tokens, stop and return true. 172 for (unsigned i = 0; i != NumToks; ++i) { 173 if (Tok.is(Toks[i])) { 174 if (DontConsume) { 175 // Noop, don't consume the token. 176 } else { 177 ConsumeAnyToken(); 178 } 179 return true; 180 } 181 } 182 183 switch (Tok.getKind()) { 184 case tok::eof: 185 // Ran out of tokens. 186 return false; 187 188 case tok::l_paren: 189 // Recursively skip properly-nested parens. 190 ConsumeParen(); 191 SkipUntil(tok::r_paren, false); 192 break; 193 case tok::l_square: 194 // Recursively skip properly-nested square brackets. 195 ConsumeBracket(); 196 SkipUntil(tok::r_square, false); 197 break; 198 case tok::l_brace: 199 // Recursively skip properly-nested braces. 200 ConsumeBrace(); 201 SkipUntil(tok::r_brace, false); 202 break; 203 204 // Okay, we found a ']' or '}' or ')', which we think should be balanced. 205 // Since the user wasn't looking for this token (if they were, it would 206 // already be handled), this isn't balanced. If there is a LHS token at a 207 // higher level, we will assume that this matches the unbalanced token 208 // and return it. Otherwise, this is a spurious RHS token, which we skip. 209 case tok::r_paren: 210 if (ParenCount && !isFirstTokenSkipped) 211 return false; // Matches something. 212 ConsumeParen(); 213 break; 214 case tok::r_square: 215 if (BracketCount && !isFirstTokenSkipped) 216 return false; // Matches something. 217 ConsumeBracket(); 218 break; 219 case tok::r_brace: 220 if (BraceCount && !isFirstTokenSkipped) 221 return false; // Matches something. 222 ConsumeBrace(); 223 break; 224 225 case tok::string_literal: 226 case tok::wide_string_literal: 227 ConsumeStringToken(); 228 break; 229 case tok::semi: 230 if (StopAtSemi) 231 return false; 232 // FALL THROUGH. 233 default: 234 // Skip this token. 235 ConsumeToken(); 236 break; 237 } 238 isFirstTokenSkipped = false; 239 } 240 } 241 242 //===----------------------------------------------------------------------===// 243 // Scope manipulation 244 //===----------------------------------------------------------------------===// 245 246 /// EnterScope - Start a new scope. 247 void Parser::EnterScope(unsigned ScopeFlags) { 248 if (NumCachedScopes) { 249 Scope *N = ScopeCache[--NumCachedScopes]; 250 N->Init(CurScope, ScopeFlags); 251 CurScope = N; 252 } else { 253 CurScope = new Scope(CurScope, ScopeFlags); 254 } 255 } 256 257 /// ExitScope - Pop a scope off the scope stack. 258 void Parser::ExitScope() { 259 assert(CurScope && "Scope imbalance!"); 260 261 // Inform the actions module that this scope is going away if there are any 262 // decls in it. 263 if (!CurScope->decl_empty()) 264 Actions.ActOnPopScope(Tok.getLocation(), CurScope); 265 266 Scope *OldScope = CurScope; 267 CurScope = OldScope->getParent(); 268 269 if (NumCachedScopes == ScopeCacheSize) 270 delete OldScope; 271 else 272 ScopeCache[NumCachedScopes++] = OldScope; 273 } 274 275 276 277 278 //===----------------------------------------------------------------------===// 279 // C99 6.9: External Definitions. 280 //===----------------------------------------------------------------------===// 281 282 Parser::~Parser() { 283 // If we still have scopes active, delete the scope tree. 284 delete CurScope; 285 286 // Free the scope cache. 287 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i) 288 delete ScopeCache[i]; 289 290 // Remove the pragma handlers we installed. 291 PP.RemovePragmaHandler(0, PackHandler.get()); 292 PackHandler.reset(); 293 PP.RemovePragmaHandler(0, UnusedHandler.get()); 294 UnusedHandler.reset(); 295 PP.RemovePragmaHandler(0, WeakHandler.get()); 296 WeakHandler.reset(); 297 } 298 299 /// Initialize - Warm up the parser. 300 /// 301 void Parser::Initialize() { 302 // Prime the lexer look-ahead. 303 ConsumeToken(); 304 305 // Create the translation unit scope. Install it as the current scope. 306 assert(CurScope == 0 && "A scope is already active?"); 307 EnterScope(Scope::DeclScope); 308 Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope); 309 310 if (Tok.is(tok::eof) && 311 !getLang().CPlusPlus) // Empty source file is an extension in C 312 Diag(Tok, diag::ext_empty_source_file); 313 314 // Initialization for Objective-C context sensitive keywords recognition. 315 // Referenced in Parser::ParseObjCTypeQualifierList. 316 if (getLang().ObjC1) { 317 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in"); 318 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out"); 319 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout"); 320 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway"); 321 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy"); 322 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref"); 323 } 324 325 Ident_super = &PP.getIdentifierTable().get("super"); 326 } 327 328 /// ParseTopLevelDecl - Parse one top-level declaration, return whatever the 329 /// action tells us to. This returns true if the EOF was encountered. 330 bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) { 331 Result = DeclGroupPtrTy(); 332 if (Tok.is(tok::eof)) { 333 Actions.ActOnEndOfTranslationUnit(); 334 return true; 335 } 336 337 Result = ParseExternalDeclaration(); 338 return false; 339 } 340 341 /// ParseTranslationUnit: 342 /// translation-unit: [C99 6.9] 343 /// external-declaration 344 /// translation-unit external-declaration 345 void Parser::ParseTranslationUnit() { 346 Initialize(); 347 348 DeclGroupPtrTy Res; 349 while (!ParseTopLevelDecl(Res)) 350 /*parse them all*/; 351 352 ExitScope(); 353 assert(CurScope == 0 && "Scope imbalance!"); 354 } 355 356 /// ParseExternalDeclaration: 357 /// 358 /// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl] 359 /// function-definition 360 /// declaration 361 /// [EXT] ';' 362 /// [GNU] asm-definition 363 /// [GNU] __extension__ external-declaration 364 /// [OBJC] objc-class-definition 365 /// [OBJC] objc-class-declaration 366 /// [OBJC] objc-alias-declaration 367 /// [OBJC] objc-protocol-definition 368 /// [OBJC] objc-method-definition 369 /// [OBJC] @end 370 /// [C++] linkage-specification 371 /// [GNU] asm-definition: 372 /// simple-asm-expr ';' 373 /// 374 Parser::DeclGroupPtrTy Parser::ParseExternalDeclaration() { 375 DeclPtrTy SingleDecl; 376 switch (Tok.getKind()) { 377 case tok::semi: 378 Diag(Tok, diag::ext_top_level_semi) 379 << CodeModificationHint::CreateRemoval(SourceRange(Tok.getLocation())); 380 ConsumeToken(); 381 // TODO: Invoke action for top-level semicolon. 382 return DeclGroupPtrTy(); 383 case tok::r_brace: 384 Diag(Tok, diag::err_expected_external_declaration); 385 ConsumeBrace(); 386 return DeclGroupPtrTy(); 387 case tok::eof: 388 Diag(Tok, diag::err_expected_external_declaration); 389 return DeclGroupPtrTy(); 390 case tok::kw___extension__: { 391 // __extension__ silences extension warnings in the subexpression. 392 ExtensionRAIIObject O(Diags); // Use RAII to do this. 393 ConsumeToken(); 394 return ParseExternalDeclaration(); 395 } 396 case tok::kw_asm: { 397 OwningExprResult Result(ParseSimpleAsm()); 398 399 ExpectAndConsume(tok::semi, diag::err_expected_semi_after, 400 "top-level asm block"); 401 402 if (Result.isInvalid()) 403 return DeclGroupPtrTy(); 404 SingleDecl = Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), move(Result)); 405 break; 406 } 407 case tok::at: 408 // @ is not a legal token unless objc is enabled, no need to check for ObjC. 409 /// FIXME: ParseObjCAtDirectives should return a DeclGroup for things like 410 /// @class foo, bar; 411 SingleDecl = ParseObjCAtDirectives(); 412 break; 413 case tok::minus: 414 case tok::plus: 415 if (!getLang().ObjC1) { 416 Diag(Tok, diag::err_expected_external_declaration); 417 ConsumeToken(); 418 return DeclGroupPtrTy(); 419 } 420 SingleDecl = ParseObjCMethodDefinition(); 421 break; 422 case tok::kw_using: 423 case tok::kw_namespace: 424 case tok::kw_typedef: 425 case tok::kw_template: 426 case tok::kw_export: // As in 'export template' 427 case tok::kw_static_assert: 428 // A function definition cannot start with a these keywords. 429 { 430 SourceLocation DeclEnd; 431 return ParseDeclaration(Declarator::FileContext, DeclEnd); 432 } 433 default: 434 // We can't tell whether this is a function-definition or declaration yet. 435 return ParseDeclarationOrFunctionDefinition(); 436 } 437 438 // This routine returns a DeclGroup, if the thing we parsed only contains a 439 // single decl, convert it now. 440 return Actions.ConvertDeclToDeclGroup(SingleDecl); 441 } 442 443 /// \brief Determine whether the current token, if it occurs after a 444 /// declarator, continues a declaration or declaration list. 445 bool Parser::isDeclarationAfterDeclarator() { 446 return Tok.is(tok::equal) || // int X()= -> not a function def 447 Tok.is(tok::comma) || // int X(), -> not a function def 448 Tok.is(tok::semi) || // int X(); -> not a function def 449 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def 450 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def 451 (getLang().CPlusPlus && 452 Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++] 453 } 454 455 /// \brief Determine whether the current token, if it occurs after a 456 /// declarator, indicates the start of a function definition. 457 bool Parser::isStartOfFunctionDefinition() { 458 return Tok.is(tok::l_brace) || // int X() {} 459 (!getLang().CPlusPlus && 460 isDeclarationSpecifier()) || // int X(f) int f; {} 461 (getLang().CPlusPlus && 462 (Tok.is(tok::colon) || // X() : Base() {} (used for ctors) 463 Tok.is(tok::kw_try))); // X() try { ... } 464 } 465 466 /// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or 467 /// a declaration. We can't tell which we have until we read up to the 468 /// compound-statement in function-definition. TemplateParams, if 469 /// non-NULL, provides the template parameters when we're parsing a 470 /// C++ template-declaration. 471 /// 472 /// function-definition: [C99 6.9.1] 473 /// decl-specs declarator declaration-list[opt] compound-statement 474 /// [C90] function-definition: [C99 6.7.1] - implicit int result 475 /// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement 476 /// 477 /// declaration: [C99 6.7] 478 /// declaration-specifiers init-declarator-list[opt] ';' 479 /// [!C99] init-declarator-list ';' [TODO: warn in c99 mode] 480 /// [OMP] threadprivate-directive [TODO] 481 /// 482 Parser::DeclGroupPtrTy 483 Parser::ParseDeclarationOrFunctionDefinition(AccessSpecifier AS) { 484 // Parse the common declaration-specifiers piece. 485 DeclSpec DS; 486 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS); 487 488 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };" 489 // declaration-specifiers init-declarator-list[opt] ';' 490 if (Tok.is(tok::semi)) { 491 ConsumeToken(); 492 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS); 493 return Actions.ConvertDeclToDeclGroup(TheDecl); 494 } 495 496 // ObjC2 allows prefix attributes on class interfaces and protocols. 497 // FIXME: This still needs better diagnostics. We should only accept 498 // attributes here, no types, etc. 499 if (getLang().ObjC2 && Tok.is(tok::at)) { 500 SourceLocation AtLoc = ConsumeToken(); // the "@" 501 if (!Tok.isObjCAtKeyword(tok::objc_interface) && 502 !Tok.isObjCAtKeyword(tok::objc_protocol)) { 503 Diag(Tok, diag::err_objc_unexpected_attr); 504 SkipUntil(tok::semi); // FIXME: better skip? 505 return DeclGroupPtrTy(); 506 } 507 const char *PrevSpec = 0; 508 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec)) 509 Diag(AtLoc, diag::err_invalid_decl_spec_combination) << PrevSpec; 510 511 DeclPtrTy TheDecl; 512 if (Tok.isObjCAtKeyword(tok::objc_protocol)) 513 TheDecl = ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes()); 514 else 515 TheDecl = ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()); 516 return Actions.ConvertDeclToDeclGroup(TheDecl); 517 } 518 519 // If the declspec consisted only of 'extern' and we have a string 520 // literal following it, this must be a C++ linkage specifier like 521 // 'extern "C"'. 522 if (Tok.is(tok::string_literal) && getLang().CPlusPlus && 523 DS.getStorageClassSpec() == DeclSpec::SCS_extern && 524 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) { 525 DeclPtrTy TheDecl = ParseLinkage(Declarator::FileContext); 526 return Actions.ConvertDeclToDeclGroup(TheDecl); 527 } 528 529 // Parse the first declarator. 530 Declarator DeclaratorInfo(DS, Declarator::FileContext); 531 ParseDeclarator(DeclaratorInfo); 532 // Error parsing the declarator? 533 if (!DeclaratorInfo.hasName()) { 534 // If so, skip until the semi-colon or a }. 535 SkipUntil(tok::r_brace, true, true); 536 if (Tok.is(tok::semi)) 537 ConsumeToken(); 538 return DeclGroupPtrTy(); 539 } 540 541 // If we have a declaration or declarator list, handle it. 542 if (isDeclarationAfterDeclarator()) { 543 // Parse the init-declarator-list for a normal declaration. 544 DeclGroupPtrTy DG = 545 ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo); 546 // Eat the semi colon after the declaration. 547 ExpectAndConsume(tok::semi, diag::err_expected_semi_declation); 548 return DG; 549 } 550 551 if (DeclaratorInfo.isFunctionDeclarator() && 552 isStartOfFunctionDefinition()) { 553 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) { 554 Diag(Tok, diag::err_function_declared_typedef); 555 556 if (Tok.is(tok::l_brace)) { 557 // This recovery skips the entire function body. It would be nice 558 // to simply call ParseFunctionDefinition() below, however Sema 559 // assumes the declarator represents a function, not a typedef. 560 ConsumeBrace(); 561 SkipUntil(tok::r_brace, true); 562 } else { 563 SkipUntil(tok::semi); 564 } 565 return DeclGroupPtrTy(); 566 } 567 DeclPtrTy TheDecl = ParseFunctionDefinition(DeclaratorInfo); 568 return Actions.ConvertDeclToDeclGroup(TheDecl); 569 } 570 571 if (DeclaratorInfo.isFunctionDeclarator()) 572 Diag(Tok, diag::err_expected_fn_body); 573 else 574 Diag(Tok, diag::err_invalid_token_after_toplevel_declarator); 575 SkipUntil(tok::semi); 576 return DeclGroupPtrTy(); 577 } 578 579 /// ParseFunctionDefinition - We parsed and verified that the specified 580 /// Declarator is well formed. If this is a K&R-style function, read the 581 /// parameters declaration-list, then start the compound-statement. 582 /// 583 /// function-definition: [C99 6.9.1] 584 /// decl-specs declarator declaration-list[opt] compound-statement 585 /// [C90] function-definition: [C99 6.7.1] - implicit int result 586 /// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement 587 /// [C++] function-definition: [C++ 8.4] 588 /// decl-specifier-seq[opt] declarator ctor-initializer[opt] 589 /// function-body 590 /// [C++] function-definition: [C++ 8.4] 591 /// decl-specifier-seq[opt] declarator function-try-block 592 /// 593 Parser::DeclPtrTy Parser::ParseFunctionDefinition(Declarator &D, 594 const ParsedTemplateInfo &TemplateInfo) { 595 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0); 596 assert(FnTypeInfo.Kind == DeclaratorChunk::Function && 597 "This isn't a function declarator!"); 598 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun; 599 600 // If this is C90 and the declspecs were completely missing, fudge in an 601 // implicit int. We do this here because this is the only place where 602 // declaration-specifiers are completely optional in the grammar. 603 if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) { 604 const char *PrevSpec; 605 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int, 606 D.getIdentifierLoc(), 607 PrevSpec); 608 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin()); 609 } 610 611 // If this declaration was formed with a K&R-style identifier list for the 612 // arguments, parse declarations for all of the args next. 613 // int foo(a,b) int a; float b; {} 614 if (!FTI.hasPrototype && FTI.NumArgs != 0) 615 ParseKNRParamDeclarations(D); 616 617 // We should have either an opening brace or, in a C++ constructor, 618 // we may have a colon. 619 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon) && 620 Tok.isNot(tok::kw_try)) { 621 Diag(Tok, diag::err_expected_fn_body); 622 623 // Skip over garbage, until we get to '{'. Don't eat the '{'. 624 SkipUntil(tok::l_brace, true, true); 625 626 // If we didn't find the '{', bail out. 627 if (Tok.isNot(tok::l_brace)) 628 return DeclPtrTy(); 629 } 630 631 // Enter a scope for the function body. 632 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope); 633 634 // Tell the actions module that we have entered a function definition with the 635 // specified Declarator for the function. 636 DeclPtrTy Res = TemplateInfo.TemplateParams? 637 Actions.ActOnStartOfFunctionTemplateDef(CurScope, 638 Action::MultiTemplateParamsArg(Actions, 639 TemplateInfo.TemplateParams->data(), 640 TemplateInfo.TemplateParams->size()), 641 D) 642 : Actions.ActOnStartOfFunctionDef(CurScope, D); 643 644 if (Tok.is(tok::kw_try)) 645 return ParseFunctionTryBlock(Res); 646 647 // If we have a colon, then we're probably parsing a C++ 648 // ctor-initializer. 649 if (Tok.is(tok::colon)) 650 ParseConstructorInitializer(Res); 651 652 return ParseFunctionStatementBody(Res); 653 } 654 655 /// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides 656 /// types for a function with a K&R-style identifier list for arguments. 657 void Parser::ParseKNRParamDeclarations(Declarator &D) { 658 // We know that the top-level of this declarator is a function. 659 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun; 660 661 // Enter function-declaration scope, limiting any declarators to the 662 // function prototype scope, including parameter declarators. 663 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope); 664 665 // Read all the argument declarations. 666 while (isDeclarationSpecifier()) { 667 SourceLocation DSStart = Tok.getLocation(); 668 669 // Parse the common declaration-specifiers piece. 670 DeclSpec DS; 671 ParseDeclarationSpecifiers(DS); 672 673 // C99 6.9.1p6: 'each declaration in the declaration list shall have at 674 // least one declarator'. 675 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with 676 // the declarations though. It's trivial to ignore them, really hard to do 677 // anything else with them. 678 if (Tok.is(tok::semi)) { 679 Diag(DSStart, diag::err_declaration_does_not_declare_param); 680 ConsumeToken(); 681 continue; 682 } 683 684 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other 685 // than register. 686 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified && 687 DS.getStorageClassSpec() != DeclSpec::SCS_register) { 688 Diag(DS.getStorageClassSpecLoc(), 689 diag::err_invalid_storage_class_in_func_decl); 690 DS.ClearStorageClassSpecs(); 691 } 692 if (DS.isThreadSpecified()) { 693 Diag(DS.getThreadSpecLoc(), 694 diag::err_invalid_storage_class_in_func_decl); 695 DS.ClearStorageClassSpecs(); 696 } 697 698 // Parse the first declarator attached to this declspec. 699 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext); 700 ParseDeclarator(ParmDeclarator); 701 702 // Handle the full declarator list. 703 while (1) { 704 Action::AttrTy *AttrList; 705 // If attributes are present, parse them. 706 if (Tok.is(tok::kw___attribute)) 707 // FIXME: attach attributes too. 708 AttrList = ParseAttributes(); 709 710 // Ask the actions module to compute the type for this declarator. 711 Action::DeclPtrTy Param = 712 Actions.ActOnParamDeclarator(CurScope, ParmDeclarator); 713 714 if (Param && 715 // A missing identifier has already been diagnosed. 716 ParmDeclarator.getIdentifier()) { 717 718 // Scan the argument list looking for the correct param to apply this 719 // type. 720 for (unsigned i = 0; ; ++i) { 721 // C99 6.9.1p6: those declarators shall declare only identifiers from 722 // the identifier list. 723 if (i == FTI.NumArgs) { 724 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param) 725 << ParmDeclarator.getIdentifier(); 726 break; 727 } 728 729 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) { 730 // Reject redefinitions of parameters. 731 if (FTI.ArgInfo[i].Param) { 732 Diag(ParmDeclarator.getIdentifierLoc(), 733 diag::err_param_redefinition) 734 << ParmDeclarator.getIdentifier(); 735 } else { 736 FTI.ArgInfo[i].Param = Param; 737 } 738 break; 739 } 740 } 741 } 742 743 // If we don't have a comma, it is either the end of the list (a ';') or 744 // an error, bail out. 745 if (Tok.isNot(tok::comma)) 746 break; 747 748 // Consume the comma. 749 ConsumeToken(); 750 751 // Parse the next declarator. 752 ParmDeclarator.clear(); 753 ParseDeclarator(ParmDeclarator); 754 } 755 756 if (Tok.is(tok::semi)) { 757 ConsumeToken(); 758 } else { 759 Diag(Tok, diag::err_parse_error); 760 // Skip to end of block or statement 761 SkipUntil(tok::semi, true); 762 if (Tok.is(tok::semi)) 763 ConsumeToken(); 764 } 765 } 766 767 // The actions module must verify that all arguments were declared. 768 Actions.ActOnFinishKNRParamDeclarations(CurScope, D, Tok.getLocation()); 769 } 770 771 772 /// ParseAsmStringLiteral - This is just a normal string-literal, but is not 773 /// allowed to be a wide string, and is not subject to character translation. 774 /// 775 /// [GNU] asm-string-literal: 776 /// string-literal 777 /// 778 Parser::OwningExprResult Parser::ParseAsmStringLiteral() { 779 if (!isTokenStringLiteral()) { 780 Diag(Tok, diag::err_expected_string_literal); 781 return ExprError(); 782 } 783 784 OwningExprResult Res(ParseStringLiteralExpression()); 785 if (Res.isInvalid()) return move(Res); 786 787 // TODO: Diagnose: wide string literal in 'asm' 788 789 return move(Res); 790 } 791 792 /// ParseSimpleAsm 793 /// 794 /// [GNU] simple-asm-expr: 795 /// 'asm' '(' asm-string-literal ')' 796 /// 797 Parser::OwningExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) { 798 assert(Tok.is(tok::kw_asm) && "Not an asm!"); 799 SourceLocation Loc = ConsumeToken(); 800 801 if (Tok.isNot(tok::l_paren)) { 802 Diag(Tok, diag::err_expected_lparen_after) << "asm"; 803 return ExprError(); 804 } 805 806 Loc = ConsumeParen(); 807 808 OwningExprResult Result(ParseAsmStringLiteral()); 809 810 if (Result.isInvalid()) { 811 SkipUntil(tok::r_paren, true, true); 812 if (EndLoc) 813 *EndLoc = Tok.getLocation(); 814 ConsumeAnyToken(); 815 } else { 816 Loc = MatchRHSPunctuation(tok::r_paren, Loc); 817 if (EndLoc) 818 *EndLoc = Loc; 819 } 820 821 return move(Result); 822 } 823 824 /// TryAnnotateTypeOrScopeToken - If the current token position is on a 825 /// typename (possibly qualified in C++) or a C++ scope specifier not followed 826 /// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens 827 /// with a single annotation token representing the typename or C++ scope 828 /// respectively. 829 /// This simplifies handling of C++ scope specifiers and allows efficient 830 /// backtracking without the need to re-parse and resolve nested-names and 831 /// typenames. 832 /// It will mainly be called when we expect to treat identifiers as typenames 833 /// (if they are typenames). For example, in C we do not expect identifiers 834 /// inside expressions to be treated as typenames so it will not be called 835 /// for expressions in C. 836 /// The benefit for C/ObjC is that a typename will be annotated and 837 /// Actions.getTypeName will not be needed to be called again (e.g. getTypeName 838 /// will not be called twice, once to check whether we have a declaration 839 /// specifier, and another one to get the actual type inside 840 /// ParseDeclarationSpecifiers). 841 /// 842 /// This returns true if the token was annotated or an unrecoverable error 843 /// occurs. 844 /// 845 /// Note that this routine emits an error if you call it with ::new or ::delete 846 /// as the current tokens, so only call it in contexts where these are invalid. 847 bool Parser::TryAnnotateTypeOrScopeToken() { 848 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) 849 || Tok.is(tok::kw_typename)) && 850 "Cannot be a type or scope token!"); 851 852 if (Tok.is(tok::kw_typename)) { 853 // Parse a C++ typename-specifier, e.g., "typename T::type". 854 // 855 // typename-specifier: 856 // 'typename' '::' [opt] nested-name-specifier identifier 857 // 'typename' '::' [opt] nested-name-specifier template [opt] 858 // simple-template-id 859 SourceLocation TypenameLoc = ConsumeToken(); 860 CXXScopeSpec SS; 861 bool HadNestedNameSpecifier = ParseOptionalCXXScopeSpecifier(SS); 862 if (!HadNestedNameSpecifier) { 863 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename); 864 return false; 865 } 866 867 TypeResult Ty; 868 if (Tok.is(tok::identifier)) { 869 // FIXME: check whether the next token is '<', first! 870 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, *Tok.getIdentifierInfo(), 871 Tok.getLocation()); 872 } else if (Tok.is(tok::annot_template_id)) { 873 TemplateIdAnnotation *TemplateId 874 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue()); 875 if (TemplateId->Kind == TNK_Function_template) { 876 Diag(Tok, diag::err_typename_refers_to_non_type_template) 877 << Tok.getAnnotationRange(); 878 return false; 879 } 880 881 AnnotateTemplateIdTokenAsType(0); 882 assert(Tok.is(tok::annot_typename) && 883 "AnnotateTemplateIdTokenAsType isn't working properly"); 884 if (Tok.getAnnotationValue()) 885 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, SourceLocation(), 886 Tok.getAnnotationValue()); 887 else 888 Ty = true; 889 } else { 890 Diag(Tok, diag::err_expected_type_name_after_typename) 891 << SS.getRange(); 892 return false; 893 } 894 895 Tok.setKind(tok::annot_typename); 896 Tok.setAnnotationValue(Ty.isInvalid()? 0 : Ty.get()); 897 Tok.setAnnotationEndLoc(Tok.getLocation()); 898 Tok.setLocation(TypenameLoc); 899 PP.AnnotateCachedTokens(Tok); 900 return true; 901 } 902 903 CXXScopeSpec SS; 904 if (getLang().CPlusPlus) 905 ParseOptionalCXXScopeSpecifier(SS); 906 907 if (Tok.is(tok::identifier)) { 908 // Determine whether the identifier is a type name. 909 if (TypeTy *Ty = Actions.getTypeName(*Tok.getIdentifierInfo(), 910 Tok.getLocation(), CurScope, &SS)) { 911 // This is a typename. Replace the current token in-place with an 912 // annotation type token. 913 Tok.setKind(tok::annot_typename); 914 Tok.setAnnotationValue(Ty); 915 Tok.setAnnotationEndLoc(Tok.getLocation()); 916 if (SS.isNotEmpty()) // it was a C++ qualified type name. 917 Tok.setLocation(SS.getBeginLoc()); 918 919 // In case the tokens were cached, have Preprocessor replace 920 // them with the annotation token. 921 PP.AnnotateCachedTokens(Tok); 922 return true; 923 } 924 925 if (!getLang().CPlusPlus) { 926 // If we're in C, we can't have :: tokens at all (the lexer won't return 927 // them). If the identifier is not a type, then it can't be scope either, 928 // just early exit. 929 return false; 930 } 931 932 // If this is a template-id, annotate with a template-id or type token. 933 if (NextToken().is(tok::less)) { 934 TemplateTy Template; 935 if (TemplateNameKind TNK 936 = Actions.isTemplateName(*Tok.getIdentifierInfo(), 937 CurScope, Template, &SS)) 938 if (AnnotateTemplateIdToken(Template, TNK, &SS)) { 939 // If an unrecoverable error occurred, we need to return true here, 940 // because the token stream is in a damaged state. We may not return 941 // a valid identifier. 942 return Tok.isNot(tok::identifier); 943 } 944 } 945 946 // The current token, which is either an identifier or a 947 // template-id, is not part of the annotation. Fall through to 948 // push that token back into the stream and complete the C++ scope 949 // specifier annotation. 950 } 951 952 if (Tok.is(tok::annot_template_id)) { 953 TemplateIdAnnotation *TemplateId 954 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue()); 955 if (TemplateId->Kind == TNK_Type_template) { 956 // A template-id that refers to a type was parsed into a 957 // template-id annotation in a context where we weren't allowed 958 // to produce a type annotation token. Update the template-id 959 // annotation token to a type annotation token now. 960 AnnotateTemplateIdTokenAsType(&SS); 961 return true; 962 } 963 } 964 965 if (SS.isEmpty()) 966 return Tok.isNot(tok::identifier) && Tok.isNot(tok::coloncolon); 967 968 // A C++ scope specifier that isn't followed by a typename. 969 // Push the current token back into the token stream (or revert it if it is 970 // cached) and use an annotation scope token for current token. 971 if (PP.isBacktrackEnabled()) 972 PP.RevertCachedTokens(1); 973 else 974 PP.EnterToken(Tok); 975 Tok.setKind(tok::annot_cxxscope); 976 Tok.setAnnotationValue(SS.getScopeRep()); 977 Tok.setAnnotationRange(SS.getRange()); 978 979 // In case the tokens were cached, have Preprocessor replace them with the 980 // annotation token. 981 PP.AnnotateCachedTokens(Tok); 982 return true; 983 } 984 985 /// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only 986 /// annotates C++ scope specifiers and template-ids. This returns 987 /// true if the token was annotated or there was an error that could not be 988 /// recovered from. 989 /// 990 /// Note that this routine emits an error if you call it with ::new or ::delete 991 /// as the current tokens, so only call it in contexts where these are invalid. 992 bool Parser::TryAnnotateCXXScopeToken() { 993 assert(getLang().CPlusPlus && 994 "Call sites of this function should be guarded by checking for C++"); 995 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) && 996 "Cannot be a type or scope token!"); 997 998 CXXScopeSpec SS; 999 if (!ParseOptionalCXXScopeSpecifier(SS)) 1000 return Tok.is(tok::annot_template_id); 1001 1002 // Push the current token back into the token stream (or revert it if it is 1003 // cached) and use an annotation scope token for current token. 1004 if (PP.isBacktrackEnabled()) 1005 PP.RevertCachedTokens(1); 1006 else 1007 PP.EnterToken(Tok); 1008 Tok.setKind(tok::annot_cxxscope); 1009 Tok.setAnnotationValue(SS.getScopeRep()); 1010 Tok.setAnnotationRange(SS.getRange()); 1011 1012 // In case the tokens were cached, have Preprocessor replace them with the 1013 // annotation token. 1014 PP.AnnotateCachedTokens(Tok); 1015 return true; 1016 } 1017