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/Sema/DeclSpec.h"
17 #include "clang/Sema/Scope.h"
18 #include "clang/Sema/ParsedTemplate.h"
19 #include "llvm/Support/raw_ostream.h"
20 #include "RAIIObjectsForParser.h"
21 #include "ParsePragma.h"
22 #include "clang/AST/DeclTemplate.h"
23 #include "clang/AST/ASTConsumer.h"
24 using namespace clang;
25 
26 IdentifierInfo *Parser::getSEHExceptKeyword() {
27   // __except is accepted as a (contextual) keyword
28   if (!Ident__except && (getLang().MicrosoftExt || getLang().Borland))
29     Ident__except = PP.getIdentifierInfo("__except");
30 
31   return Ident__except;
32 }
33 
34 Parser::Parser(Preprocessor &pp, Sema &actions)
35   : PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
36     GreaterThanIsOperator(true), ColonIsSacred(false),
37     InMessageExpression(false), TemplateParameterDepth(0) {
38   Tok.setKind(tok::eof);
39   Actions.CurScope = 0;
40   NumCachedScopes = 0;
41   ParenCount = BracketCount = BraceCount = 0;
42   CurParsedObjCImpl = 0;
43 
44   // Add #pragma handlers. These are removed and destroyed in the
45   // destructor.
46   AlignHandler.reset(new PragmaAlignHandler(actions));
47   PP.AddPragmaHandler(AlignHandler.get());
48 
49   GCCVisibilityHandler.reset(new PragmaGCCVisibilityHandler(actions));
50   PP.AddPragmaHandler("GCC", GCCVisibilityHandler.get());
51 
52   OptionsHandler.reset(new PragmaOptionsHandler(actions));
53   PP.AddPragmaHandler(OptionsHandler.get());
54 
55   PackHandler.reset(new PragmaPackHandler(actions));
56   PP.AddPragmaHandler(PackHandler.get());
57 
58   MSStructHandler.reset(new PragmaMSStructHandler(actions));
59   PP.AddPragmaHandler(MSStructHandler.get());
60 
61   UnusedHandler.reset(new PragmaUnusedHandler(actions, *this));
62   PP.AddPragmaHandler(UnusedHandler.get());
63 
64   WeakHandler.reset(new PragmaWeakHandler(actions));
65   PP.AddPragmaHandler(WeakHandler.get());
66 
67   RedefineExtnameHandler.reset(new PragmaRedefineExtnameHandler(actions));
68   PP.AddPragmaHandler(RedefineExtnameHandler.get());
69 
70   FPContractHandler.reset(new PragmaFPContractHandler(actions, *this));
71   PP.AddPragmaHandler("STDC", FPContractHandler.get());
72 
73   if (getLang().OpenCL) {
74     OpenCLExtensionHandler.reset(
75                   new PragmaOpenCLExtensionHandler(actions, *this));
76     PP.AddPragmaHandler("OPENCL", OpenCLExtensionHandler.get());
77 
78     PP.AddPragmaHandler("OPENCL", FPContractHandler.get());
79   }
80 
81   PP.setCodeCompletionHandler(*this);
82 }
83 
84 /// If a crash happens while the parser is active, print out a line indicating
85 /// what the current token is.
86 void PrettyStackTraceParserEntry::print(raw_ostream &OS) const {
87   const Token &Tok = P.getCurToken();
88   if (Tok.is(tok::eof)) {
89     OS << "<eof> parser at end of file\n";
90     return;
91   }
92 
93   if (Tok.getLocation().isInvalid()) {
94     OS << "<unknown> parser at unknown location\n";
95     return;
96   }
97 
98   const Preprocessor &PP = P.getPreprocessor();
99   Tok.getLocation().print(OS, PP.getSourceManager());
100   if (Tok.isAnnotation())
101     OS << ": at annotation token \n";
102   else
103     OS << ": current parser token '" << PP.getSpelling(Tok) << "'\n";
104 }
105 
106 
107 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
108   return Diags.Report(Loc, DiagID);
109 }
110 
111 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
112   return Diag(Tok.getLocation(), DiagID);
113 }
114 
115 /// \brief Emits a diagnostic suggesting parentheses surrounding a
116 /// given range.
117 ///
118 /// \param Loc The location where we'll emit the diagnostic.
119 /// \param Loc The kind of diagnostic to emit.
120 /// \param ParenRange Source range enclosing code that should be parenthesized.
121 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
122                                 SourceRange ParenRange) {
123   SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
124   if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
125     // We can't display the parentheses, so just dig the
126     // warning/error and return.
127     Diag(Loc, DK);
128     return;
129   }
130 
131   Diag(Loc, DK)
132     << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
133     << FixItHint::CreateInsertion(EndLoc, ")");
134 }
135 
136 static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok) {
137   switch (ExpectedTok) {
138   case tok::semi: return Tok.is(tok::colon); // : for ;
139   default: return false;
140   }
141 }
142 
143 /// ExpectAndConsume - The parser expects that 'ExpectedTok' is next in the
144 /// input.  If so, it is consumed and false is returned.
145 ///
146 /// If the input is malformed, this emits the specified diagnostic.  Next, if
147 /// SkipToTok is specified, it calls SkipUntil(SkipToTok).  Finally, true is
148 /// returned.
149 bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
150                               const char *Msg, tok::TokenKind SkipToTok) {
151   if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) {
152     ConsumeAnyToken();
153     return false;
154   }
155 
156   // Detect common single-character typos and resume.
157   if (IsCommonTypo(ExpectedTok, Tok)) {
158     SourceLocation Loc = Tok.getLocation();
159     Diag(Loc, DiagID)
160       << Msg
161       << FixItHint::CreateReplacement(SourceRange(Loc),
162                                       getTokenSimpleSpelling(ExpectedTok));
163     ConsumeAnyToken();
164 
165     // Pretend there wasn't a problem.
166     return false;
167   }
168 
169   const char *Spelling = 0;
170   SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
171   if (EndLoc.isValid() &&
172       (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
173     // Show what code to insert to fix this problem.
174     Diag(EndLoc, DiagID)
175       << Msg
176       << FixItHint::CreateInsertion(EndLoc, Spelling);
177   } else
178     Diag(Tok, DiagID) << Msg;
179 
180   if (SkipToTok != tok::unknown)
181     SkipUntil(SkipToTok);
182   return true;
183 }
184 
185 bool Parser::ExpectAndConsumeSemi(unsigned DiagID) {
186   if (Tok.is(tok::semi) || Tok.is(tok::code_completion)) {
187     ConsumeAnyToken();
188     return false;
189   }
190 
191   if ((Tok.is(tok::r_paren) || Tok.is(tok::r_square)) &&
192       NextToken().is(tok::semi)) {
193     Diag(Tok, diag::err_extraneous_token_before_semi)
194       << PP.getSpelling(Tok)
195       << FixItHint::CreateRemoval(Tok.getLocation());
196     ConsumeAnyToken(); // The ')' or ']'.
197     ConsumeToken(); // The ';'.
198     return false;
199   }
200 
201   return ExpectAndConsume(tok::semi, DiagID);
202 }
203 
204 //===----------------------------------------------------------------------===//
205 // Error recovery.
206 //===----------------------------------------------------------------------===//
207 
208 /// SkipUntil - Read tokens until we get to the specified token, then consume
209 /// it (unless DontConsume is true).  Because we cannot guarantee that the
210 /// token will ever occur, this skips to the next token, or to some likely
211 /// good stopping point.  If StopAtSemi is true, skipping will stop at a ';'
212 /// character.
213 ///
214 /// If SkipUntil finds the specified token, it returns true, otherwise it
215 /// returns false.
216 bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,
217                        bool StopAtSemi, bool DontConsume,
218                        bool StopAtCodeCompletion) {
219   // We always want this function to skip at least one token if the first token
220   // isn't T and if not at EOF.
221   bool isFirstTokenSkipped = true;
222   while (1) {
223     // If we found one of the tokens, stop and return true.
224     for (unsigned i = 0; i != NumToks; ++i) {
225       if (Tok.is(Toks[i])) {
226         if (DontConsume) {
227           // Noop, don't consume the token.
228         } else {
229           ConsumeAnyToken();
230         }
231         return true;
232       }
233     }
234 
235     switch (Tok.getKind()) {
236     case tok::eof:
237       // Ran out of tokens.
238       return false;
239 
240     case tok::code_completion:
241       if (!StopAtCodeCompletion)
242         ConsumeToken();
243       return false;
244 
245     case tok::l_paren:
246       // Recursively skip properly-nested parens.
247       ConsumeParen();
248       SkipUntil(tok::r_paren, false, false, StopAtCodeCompletion);
249       break;
250     case tok::l_square:
251       // Recursively skip properly-nested square brackets.
252       ConsumeBracket();
253       SkipUntil(tok::r_square, false, false, StopAtCodeCompletion);
254       break;
255     case tok::l_brace:
256       // Recursively skip properly-nested braces.
257       ConsumeBrace();
258       SkipUntil(tok::r_brace, false, false, StopAtCodeCompletion);
259       break;
260 
261     // Okay, we found a ']' or '}' or ')', which we think should be balanced.
262     // Since the user wasn't looking for this token (if they were, it would
263     // already be handled), this isn't balanced.  If there is a LHS token at a
264     // higher level, we will assume that this matches the unbalanced token
265     // and return it.  Otherwise, this is a spurious RHS token, which we skip.
266     case tok::r_paren:
267       if (ParenCount && !isFirstTokenSkipped)
268         return false;  // Matches something.
269       ConsumeParen();
270       break;
271     case tok::r_square:
272       if (BracketCount && !isFirstTokenSkipped)
273         return false;  // Matches something.
274       ConsumeBracket();
275       break;
276     case tok::r_brace:
277       if (BraceCount && !isFirstTokenSkipped)
278         return false;  // Matches something.
279       ConsumeBrace();
280       break;
281 
282     case tok::string_literal:
283     case tok::wide_string_literal:
284     case tok::utf8_string_literal:
285     case tok::utf16_string_literal:
286     case tok::utf32_string_literal:
287       ConsumeStringToken();
288       break;
289 
290     case tok::semi:
291       if (StopAtSemi)
292         return false;
293       // FALL THROUGH.
294     default:
295       // Skip this token.
296       ConsumeToken();
297       break;
298     }
299     isFirstTokenSkipped = false;
300   }
301 }
302 
303 //===----------------------------------------------------------------------===//
304 // Scope manipulation
305 //===----------------------------------------------------------------------===//
306 
307 /// EnterScope - Start a new scope.
308 void Parser::EnterScope(unsigned ScopeFlags) {
309   if (NumCachedScopes) {
310     Scope *N = ScopeCache[--NumCachedScopes];
311     N->Init(getCurScope(), ScopeFlags);
312     Actions.CurScope = N;
313   } else {
314     Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
315   }
316 }
317 
318 /// ExitScope - Pop a scope off the scope stack.
319 void Parser::ExitScope() {
320   assert(getCurScope() && "Scope imbalance!");
321 
322   // Inform the actions module that this scope is going away if there are any
323   // decls in it.
324   if (!getCurScope()->decl_empty())
325     Actions.ActOnPopScope(Tok.getLocation(), getCurScope());
326 
327   Scope *OldScope = getCurScope();
328   Actions.CurScope = OldScope->getParent();
329 
330   if (NumCachedScopes == ScopeCacheSize)
331     delete OldScope;
332   else
333     ScopeCache[NumCachedScopes++] = OldScope;
334 }
335 
336 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false,
337 /// this object does nothing.
338 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags,
339                                  bool ManageFlags)
340   : CurScope(ManageFlags ? Self->getCurScope() : 0) {
341   if (CurScope) {
342     OldFlags = CurScope->getFlags();
343     CurScope->setFlags(ScopeFlags);
344   }
345 }
346 
347 /// Restore the flags for the current scope to what they were before this
348 /// object overrode them.
349 Parser::ParseScopeFlags::~ParseScopeFlags() {
350   if (CurScope)
351     CurScope->setFlags(OldFlags);
352 }
353 
354 
355 //===----------------------------------------------------------------------===//
356 // C99 6.9: External Definitions.
357 //===----------------------------------------------------------------------===//
358 
359 Parser::~Parser() {
360   // If we still have scopes active, delete the scope tree.
361   delete getCurScope();
362   Actions.CurScope = 0;
363 
364   // Free the scope cache.
365   for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
366     delete ScopeCache[i];
367 
368   // Free LateParsedTemplatedFunction nodes.
369   for (LateParsedTemplateMapT::iterator it = LateParsedTemplateMap.begin();
370       it != LateParsedTemplateMap.end(); ++it)
371     delete it->second;
372 
373   // Remove the pragma handlers we installed.
374   PP.RemovePragmaHandler(AlignHandler.get());
375   AlignHandler.reset();
376   PP.RemovePragmaHandler("GCC", GCCVisibilityHandler.get());
377   GCCVisibilityHandler.reset();
378   PP.RemovePragmaHandler(OptionsHandler.get());
379   OptionsHandler.reset();
380   PP.RemovePragmaHandler(PackHandler.get());
381   PackHandler.reset();
382   PP.RemovePragmaHandler(MSStructHandler.get());
383   MSStructHandler.reset();
384   PP.RemovePragmaHandler(UnusedHandler.get());
385   UnusedHandler.reset();
386   PP.RemovePragmaHandler(WeakHandler.get());
387   WeakHandler.reset();
388   PP.RemovePragmaHandler(RedefineExtnameHandler.get());
389   RedefineExtnameHandler.reset();
390 
391   if (getLang().OpenCL) {
392     PP.RemovePragmaHandler("OPENCL", OpenCLExtensionHandler.get());
393     OpenCLExtensionHandler.reset();
394     PP.RemovePragmaHandler("OPENCL", FPContractHandler.get());
395   }
396 
397   PP.RemovePragmaHandler("STDC", FPContractHandler.get());
398   FPContractHandler.reset();
399   PP.clearCodeCompletionHandler();
400 }
401 
402 /// Initialize - Warm up the parser.
403 ///
404 void Parser::Initialize() {
405   // Create the translation unit scope.  Install it as the current scope.
406   assert(getCurScope() == 0 && "A scope is already active?");
407   EnterScope(Scope::DeclScope);
408   Actions.ActOnTranslationUnitScope(getCurScope());
409 
410   // Prime the lexer look-ahead.
411   ConsumeToken();
412 
413   if (Tok.is(tok::eof) &&
414       !getLang().CPlusPlus)  // Empty source file is an extension in C
415     Diag(Tok, diag::ext_empty_source_file);
416 
417   // Initialization for Objective-C context sensitive keywords recognition.
418   // Referenced in Parser::ParseObjCTypeQualifierList.
419   if (getLang().ObjC1) {
420     ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
421     ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
422     ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
423     ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
424     ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
425     ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
426   }
427 
428   Ident_instancetype = 0;
429   Ident_final = 0;
430   Ident_override = 0;
431 
432   Ident_super = &PP.getIdentifierTable().get("super");
433 
434   if (getLang().AltiVec) {
435     Ident_vector = &PP.getIdentifierTable().get("vector");
436     Ident_pixel = &PP.getIdentifierTable().get("pixel");
437   }
438 
439   Ident_introduced = 0;
440   Ident_deprecated = 0;
441   Ident_obsoleted = 0;
442   Ident_unavailable = 0;
443 
444   Ident__except = 0;
445 
446   Ident__exception_code = Ident__exception_info = Ident__abnormal_termination = 0;
447   Ident___exception_code = Ident___exception_info = Ident___abnormal_termination = 0;
448   Ident_GetExceptionCode = Ident_GetExceptionInfo = Ident_AbnormalTermination = 0;
449 
450   if(getLang().Borland) {
451     Ident__exception_info        = PP.getIdentifierInfo("_exception_info");
452     Ident___exception_info       = PP.getIdentifierInfo("__exception_info");
453     Ident_GetExceptionInfo       = PP.getIdentifierInfo("GetExceptionInformation");
454     Ident__exception_code        = PP.getIdentifierInfo("_exception_code");
455     Ident___exception_code       = PP.getIdentifierInfo("__exception_code");
456     Ident_GetExceptionCode       = PP.getIdentifierInfo("GetExceptionCode");
457     Ident__abnormal_termination  = PP.getIdentifierInfo("_abnormal_termination");
458     Ident___abnormal_termination = PP.getIdentifierInfo("__abnormal_termination");
459     Ident_AbnormalTermination    = PP.getIdentifierInfo("AbnormalTermination");
460 
461     PP.SetPoisonReason(Ident__exception_code,diag::err_seh___except_block);
462     PP.SetPoisonReason(Ident___exception_code,diag::err_seh___except_block);
463     PP.SetPoisonReason(Ident_GetExceptionCode,diag::err_seh___except_block);
464     PP.SetPoisonReason(Ident__exception_info,diag::err_seh___except_filter);
465     PP.SetPoisonReason(Ident___exception_info,diag::err_seh___except_filter);
466     PP.SetPoisonReason(Ident_GetExceptionInfo,diag::err_seh___except_filter);
467     PP.SetPoisonReason(Ident__abnormal_termination,diag::err_seh___finally_block);
468     PP.SetPoisonReason(Ident___abnormal_termination,diag::err_seh___finally_block);
469     PP.SetPoisonReason(Ident_AbnormalTermination,diag::err_seh___finally_block);
470   }
471 }
472 
473 /// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
474 /// action tells us to.  This returns true if the EOF was encountered.
475 bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
476   DelayedCleanupPoint CleanupRAII(TopLevelDeclCleanupPool);
477 
478   while (Tok.is(tok::annot_pragma_unused))
479     HandlePragmaUnused();
480 
481   Result = DeclGroupPtrTy();
482   if (Tok.is(tok::eof)) {
483     // Late template parsing can begin.
484     if (getLang().DelayedTemplateParsing)
485       Actions.SetLateTemplateParser(LateTemplateParserCallback, this);
486 
487     Actions.ActOnEndOfTranslationUnit();
488     return true;
489   }
490 
491   ParsedAttributesWithRange attrs(AttrFactory);
492   MaybeParseCXX0XAttributes(attrs);
493   MaybeParseMicrosoftAttributes(attrs);
494 
495   Result = ParseExternalDeclaration(attrs);
496   return false;
497 }
498 
499 /// ParseTranslationUnit:
500 ///       translation-unit: [C99 6.9]
501 ///         external-declaration
502 ///         translation-unit external-declaration
503 void Parser::ParseTranslationUnit() {
504   Initialize();
505 
506   DeclGroupPtrTy Res;
507   while (!ParseTopLevelDecl(Res))
508     /*parse them all*/;
509 
510   ExitScope();
511   assert(getCurScope() == 0 && "Scope imbalance!");
512 }
513 
514 /// ParseExternalDeclaration:
515 ///
516 ///       external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
517 ///         function-definition
518 ///         declaration
519 /// [C++0x] empty-declaration
520 /// [GNU]   asm-definition
521 /// [GNU]   __extension__ external-declaration
522 /// [OBJC]  objc-class-definition
523 /// [OBJC]  objc-class-declaration
524 /// [OBJC]  objc-alias-declaration
525 /// [OBJC]  objc-protocol-definition
526 /// [OBJC]  objc-method-definition
527 /// [OBJC]  @end
528 /// [C++]   linkage-specification
529 /// [GNU] asm-definition:
530 ///         simple-asm-expr ';'
531 ///
532 /// [C++0x] empty-declaration:
533 ///           ';'
534 ///
535 /// [C++0x/GNU] 'extern' 'template' declaration
536 Parser::DeclGroupPtrTy
537 Parser::ParseExternalDeclaration(ParsedAttributesWithRange &attrs,
538                                  ParsingDeclSpec *DS) {
539   DelayedCleanupPoint CleanupRAII(TopLevelDeclCleanupPool);
540   ParenBraceBracketBalancer BalancerRAIIObj(*this);
541 
542   if (PP.isCodeCompletionReached()) {
543     cutOffParsing();
544     return DeclGroupPtrTy();
545   }
546 
547   Decl *SingleDecl = 0;
548   switch (Tok.getKind()) {
549   case tok::annot_pragma_vis:
550     HandlePragmaVisibility();
551     return DeclGroupPtrTy();
552   case tok::semi:
553     Diag(Tok, getLang().CPlusPlus0x ?
554          diag::warn_cxx98_compat_top_level_semi : diag::ext_top_level_semi)
555       << FixItHint::CreateRemoval(Tok.getLocation());
556 
557     ConsumeToken();
558     // TODO: Invoke action for top-level semicolon.
559     return DeclGroupPtrTy();
560   case tok::r_brace:
561     Diag(Tok, diag::err_extraneous_closing_brace);
562     ConsumeBrace();
563     return DeclGroupPtrTy();
564   case tok::eof:
565     Diag(Tok, diag::err_expected_external_declaration);
566     return DeclGroupPtrTy();
567   case tok::kw___extension__: {
568     // __extension__ silences extension warnings in the subexpression.
569     ExtensionRAIIObject O(Diags);  // Use RAII to do this.
570     ConsumeToken();
571     return ParseExternalDeclaration(attrs);
572   }
573   case tok::kw_asm: {
574     ProhibitAttributes(attrs);
575 
576     SourceLocation StartLoc = Tok.getLocation();
577     SourceLocation EndLoc;
578     ExprResult Result(ParseSimpleAsm(&EndLoc));
579 
580     ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
581                      "top-level asm block");
582 
583     if (Result.isInvalid())
584       return DeclGroupPtrTy();
585     SingleDecl = Actions.ActOnFileScopeAsmDecl(Result.get(), StartLoc, EndLoc);
586     break;
587   }
588   case tok::at:
589     return ParseObjCAtDirectives();
590   case tok::minus:
591   case tok::plus:
592     if (!getLang().ObjC1) {
593       Diag(Tok, diag::err_expected_external_declaration);
594       ConsumeToken();
595       return DeclGroupPtrTy();
596     }
597     SingleDecl = ParseObjCMethodDefinition();
598     break;
599   case tok::code_completion:
600       Actions.CodeCompleteOrdinaryName(getCurScope(),
601                              CurParsedObjCImpl? Sema::PCC_ObjCImplementation
602                                               : Sema::PCC_Namespace);
603     cutOffParsing();
604     return DeclGroupPtrTy();
605   case tok::kw_using:
606   case tok::kw_namespace:
607   case tok::kw_typedef:
608   case tok::kw_template:
609   case tok::kw_export:    // As in 'export template'
610   case tok::kw_static_assert:
611   case tok::kw__Static_assert:
612     // A function definition cannot start with a these keywords.
613     {
614       SourceLocation DeclEnd;
615       StmtVector Stmts(Actions);
616       return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
617     }
618 
619   case tok::kw_static:
620     // Parse (then ignore) 'static' prior to a template instantiation. This is
621     // a GCC extension that we intentionally do not support.
622     if (getLang().CPlusPlus && NextToken().is(tok::kw_template)) {
623       Diag(ConsumeToken(), diag::warn_static_inline_explicit_inst_ignored)
624         << 0;
625       SourceLocation DeclEnd;
626       StmtVector Stmts(Actions);
627       return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
628     }
629     goto dont_know;
630 
631   case tok::kw_inline:
632     if (getLang().CPlusPlus) {
633       tok::TokenKind NextKind = NextToken().getKind();
634 
635       // Inline namespaces. Allowed as an extension even in C++03.
636       if (NextKind == tok::kw_namespace) {
637         SourceLocation DeclEnd;
638         StmtVector Stmts(Actions);
639         return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
640       }
641 
642       // Parse (then ignore) 'inline' prior to a template instantiation. This is
643       // a GCC extension that we intentionally do not support.
644       if (NextKind == tok::kw_template) {
645         Diag(ConsumeToken(), diag::warn_static_inline_explicit_inst_ignored)
646           << 1;
647         SourceLocation DeclEnd;
648         StmtVector Stmts(Actions);
649         return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
650       }
651     }
652     goto dont_know;
653 
654   case tok::kw_extern:
655     if (getLang().CPlusPlus && NextToken().is(tok::kw_template)) {
656       // Extern templates
657       SourceLocation ExternLoc = ConsumeToken();
658       SourceLocation TemplateLoc = ConsumeToken();
659       Diag(ExternLoc, getLang().CPlusPlus0x ?
660              diag::warn_cxx98_compat_extern_template :
661              diag::ext_extern_template) << SourceRange(ExternLoc, TemplateLoc);
662       SourceLocation DeclEnd;
663       return Actions.ConvertDeclToDeclGroup(
664                   ParseExplicitInstantiation(Declarator::FileContext,
665                                              ExternLoc, TemplateLoc, DeclEnd));
666     }
667     // FIXME: Detect C++ linkage specifications here?
668     goto dont_know;
669 
670   case tok::kw___if_exists:
671   case tok::kw___if_not_exists:
672     ParseMicrosoftIfExistsExternalDeclaration();
673     return DeclGroupPtrTy();
674 
675   default:
676   dont_know:
677     // We can't tell whether this is a function-definition or declaration yet.
678     if (DS) {
679       DS->takeAttributesFrom(attrs);
680       return ParseDeclarationOrFunctionDefinition(*DS);
681     } else {
682       return ParseDeclarationOrFunctionDefinition(attrs);
683     }
684   }
685 
686   // This routine returns a DeclGroup, if the thing we parsed only contains a
687   // single decl, convert it now.
688   return Actions.ConvertDeclToDeclGroup(SingleDecl);
689 }
690 
691 /// \brief Determine whether the current token, if it occurs after a
692 /// declarator, continues a declaration or declaration list.
693 bool Parser::isDeclarationAfterDeclarator() {
694   // Check for '= delete' or '= default'
695   if (getLang().CPlusPlus && Tok.is(tok::equal)) {
696     const Token &KW = NextToken();
697     if (KW.is(tok::kw_default) || KW.is(tok::kw_delete))
698       return false;
699   }
700 
701   return Tok.is(tok::equal) ||      // int X()=  -> not a function def
702     Tok.is(tok::comma) ||           // int X(),  -> not a function def
703     Tok.is(tok::semi)  ||           // int X();  -> not a function def
704     Tok.is(tok::kw_asm) ||          // int X() __asm__ -> not a function def
705     Tok.is(tok::kw___attribute) ||  // int X() __attr__ -> not a function def
706     (getLang().CPlusPlus &&
707      Tok.is(tok::l_paren));         // int X(0) -> not a function def [C++]
708 }
709 
710 /// \brief Determine whether the current token, if it occurs after a
711 /// declarator, indicates the start of a function definition.
712 bool Parser::isStartOfFunctionDefinition(const ParsingDeclarator &Declarator) {
713   assert(Declarator.isFunctionDeclarator() && "Isn't a function declarator");
714   if (Tok.is(tok::l_brace))   // int X() {}
715     return true;
716 
717   // Handle K&R C argument lists: int X(f) int f; {}
718   if (!getLang().CPlusPlus &&
719       Declarator.getFunctionTypeInfo().isKNRPrototype())
720     return isDeclarationSpecifier();
721 
722   if (getLang().CPlusPlus && Tok.is(tok::equal)) {
723     const Token &KW = NextToken();
724     return KW.is(tok::kw_default) || KW.is(tok::kw_delete);
725   }
726 
727   return Tok.is(tok::colon) ||         // X() : Base() {} (used for ctors)
728          Tok.is(tok::kw_try);          // X() try { ... }
729 }
730 
731 /// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
732 /// a declaration.  We can't tell which we have until we read up to the
733 /// compound-statement in function-definition. TemplateParams, if
734 /// non-NULL, provides the template parameters when we're parsing a
735 /// C++ template-declaration.
736 ///
737 ///       function-definition: [C99 6.9.1]
738 ///         decl-specs      declarator declaration-list[opt] compound-statement
739 /// [C90] function-definition: [C99 6.7.1] - implicit int result
740 /// [C90]   decl-specs[opt] declarator declaration-list[opt] compound-statement
741 ///
742 ///       declaration: [C99 6.7]
743 ///         declaration-specifiers init-declarator-list[opt] ';'
744 /// [!C99]  init-declarator-list ';'                   [TODO: warn in c99 mode]
745 /// [OMP]   threadprivate-directive                              [TODO]
746 ///
747 Parser::DeclGroupPtrTy
748 Parser::ParseDeclarationOrFunctionDefinition(ParsingDeclSpec &DS,
749                                              AccessSpecifier AS) {
750   // Parse the common declaration-specifiers piece.
751   ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
752 
753   // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
754   // declaration-specifiers init-declarator-list[opt] ';'
755   if (Tok.is(tok::semi)) {
756     ConsumeToken();
757     Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
758     DS.complete(TheDecl);
759     return Actions.ConvertDeclToDeclGroup(TheDecl);
760   }
761 
762   // ObjC2 allows prefix attributes on class interfaces and protocols.
763   // FIXME: This still needs better diagnostics. We should only accept
764   // attributes here, no types, etc.
765   if (getLang().ObjC2 && Tok.is(tok::at)) {
766     SourceLocation AtLoc = ConsumeToken(); // the "@"
767     if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
768         !Tok.isObjCAtKeyword(tok::objc_protocol)) {
769       Diag(Tok, diag::err_objc_unexpected_attr);
770       SkipUntil(tok::semi); // FIXME: better skip?
771       return DeclGroupPtrTy();
772     }
773 
774     DS.abort();
775 
776     const char *PrevSpec = 0;
777     unsigned DiagID;
778     if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
779       Diag(AtLoc, DiagID) << PrevSpec;
780 
781     if (Tok.isObjCAtKeyword(tok::objc_protocol))
782       return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
783 
784     return Actions.ConvertDeclToDeclGroup(
785             ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()));
786   }
787 
788   // If the declspec consisted only of 'extern' and we have a string
789   // literal following it, this must be a C++ linkage specifier like
790   // 'extern "C"'.
791   if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
792       DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
793       DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
794     Decl *TheDecl = ParseLinkage(DS, Declarator::FileContext);
795     return Actions.ConvertDeclToDeclGroup(TheDecl);
796   }
797 
798   return ParseDeclGroup(DS, Declarator::FileContext, true);
799 }
800 
801 Parser::DeclGroupPtrTy
802 Parser::ParseDeclarationOrFunctionDefinition(ParsedAttributes &attrs,
803                                              AccessSpecifier AS) {
804   ParsingDeclSpec DS(*this);
805   DS.takeAttributesFrom(attrs);
806   // Must temporarily exit the objective-c container scope for
807   // parsing c constructs and re-enter objc container scope
808   // afterwards.
809   ObjCDeclContextSwitch ObjCDC(*this);
810 
811   return ParseDeclarationOrFunctionDefinition(DS, AS);
812 }
813 
814 /// ParseFunctionDefinition - We parsed and verified that the specified
815 /// Declarator is well formed.  If this is a K&R-style function, read the
816 /// parameters declaration-list, then start the compound-statement.
817 ///
818 ///       function-definition: [C99 6.9.1]
819 ///         decl-specs      declarator declaration-list[opt] compound-statement
820 /// [C90] function-definition: [C99 6.7.1] - implicit int result
821 /// [C90]   decl-specs[opt] declarator declaration-list[opt] compound-statement
822 /// [C++] function-definition: [C++ 8.4]
823 ///         decl-specifier-seq[opt] declarator ctor-initializer[opt]
824 ///         function-body
825 /// [C++] function-definition: [C++ 8.4]
826 ///         decl-specifier-seq[opt] declarator function-try-block
827 ///
828 Decl *Parser::ParseFunctionDefinition(ParsingDeclarator &D,
829                                       const ParsedTemplateInfo &TemplateInfo,
830                                       LateParsedAttrList *LateParsedAttrs) {
831   // Poison the SEH identifiers so they are flagged as illegal in function bodies
832   PoisonSEHIdentifiersRAIIObject PoisonSEHIdentifiers(*this, true);
833   const DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
834 
835   // If this is C90 and the declspecs were completely missing, fudge in an
836   // implicit int.  We do this here because this is the only place where
837   // declaration-specifiers are completely optional in the grammar.
838   if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) {
839     const char *PrevSpec;
840     unsigned DiagID;
841     D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
842                                            D.getIdentifierLoc(),
843                                            PrevSpec, DiagID);
844     D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
845   }
846 
847   // If this declaration was formed with a K&R-style identifier list for the
848   // arguments, parse declarations for all of the args next.
849   // int foo(a,b) int a; float b; {}
850   if (FTI.isKNRPrototype())
851     ParseKNRParamDeclarations(D);
852 
853   // We should have either an opening brace or, in a C++ constructor,
854   // we may have a colon.
855   if (Tok.isNot(tok::l_brace) &&
856       (!getLang().CPlusPlus ||
857        (Tok.isNot(tok::colon) && Tok.isNot(tok::kw_try) &&
858         Tok.isNot(tok::equal)))) {
859     Diag(Tok, diag::err_expected_fn_body);
860 
861     // Skip over garbage, until we get to '{'.  Don't eat the '{'.
862     SkipUntil(tok::l_brace, true, true);
863 
864     // If we didn't find the '{', bail out.
865     if (Tok.isNot(tok::l_brace))
866       return 0;
867   }
868 
869   // Check to make sure that any normal attributes are allowed to be on
870   // a definition.  Late parsed attributes are checked at the end.
871   if (Tok.isNot(tok::equal)) {
872     AttributeList *DtorAttrs = D.getAttributes();
873     while (DtorAttrs) {
874       if (!IsThreadSafetyAttribute(DtorAttrs->getName()->getName())) {
875         Diag(DtorAttrs->getLoc(), diag::warn_attribute_on_function_definition)
876           << DtorAttrs->getName()->getName();
877       }
878       DtorAttrs = DtorAttrs->getNext();
879     }
880   }
881 
882   // In delayed template parsing mode, for function template we consume the
883   // tokens and store them for late parsing at the end of the translation unit.
884   if (getLang().DelayedTemplateParsing &&
885       TemplateInfo.Kind == ParsedTemplateInfo::Template) {
886     MultiTemplateParamsArg TemplateParameterLists(Actions,
887                                          TemplateInfo.TemplateParams->data(),
888                                          TemplateInfo.TemplateParams->size());
889 
890     ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
891     Scope *ParentScope = getCurScope()->getParent();
892 
893     D.setFunctionDefinitionKind(FDK_Definition);
894     Decl *DP = Actions.HandleDeclarator(ParentScope, D,
895                                         move(TemplateParameterLists));
896     D.complete(DP);
897     D.getMutableDeclSpec().abort();
898 
899     if (DP) {
900       LateParsedTemplatedFunction *LPT = new LateParsedTemplatedFunction(DP);
901 
902       FunctionDecl *FnD = 0;
903       if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(DP))
904         FnD = FunTmpl->getTemplatedDecl();
905       else
906         FnD = cast<FunctionDecl>(DP);
907       Actions.CheckForFunctionRedefinition(FnD);
908 
909       LateParsedTemplateMap[FnD] = LPT;
910       Actions.MarkAsLateParsedTemplate(FnD);
911       LexTemplateFunctionForLateParsing(LPT->Toks);
912     } else {
913       CachedTokens Toks;
914       LexTemplateFunctionForLateParsing(Toks);
915     }
916     return DP;
917   }
918 
919   // Enter a scope for the function body.
920   ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
921 
922   // Tell the actions module that we have entered a function definition with the
923   // specified Declarator for the function.
924   Decl *Res = TemplateInfo.TemplateParams?
925       Actions.ActOnStartOfFunctionTemplateDef(getCurScope(),
926                               MultiTemplateParamsArg(Actions,
927                                           TemplateInfo.TemplateParams->data(),
928                                          TemplateInfo.TemplateParams->size()),
929                                               D)
930     : Actions.ActOnStartOfFunctionDef(getCurScope(), D);
931 
932   // Break out of the ParsingDeclarator context before we parse the body.
933   D.complete(Res);
934 
935   // Break out of the ParsingDeclSpec context, too.  This const_cast is
936   // safe because we're always the sole owner.
937   D.getMutableDeclSpec().abort();
938 
939   if (Tok.is(tok::equal)) {
940     assert(getLang().CPlusPlus && "Only C++ function definitions have '='");
941     ConsumeToken();
942 
943     Actions.ActOnFinishFunctionBody(Res, 0, false);
944 
945     bool Delete = false;
946     SourceLocation KWLoc;
947     if (Tok.is(tok::kw_delete)) {
948       Diag(Tok, getLang().CPlusPlus0x ?
949            diag::warn_cxx98_compat_deleted_function :
950            diag::ext_deleted_function);
951 
952       KWLoc = ConsumeToken();
953       Actions.SetDeclDeleted(Res, KWLoc);
954       Delete = true;
955     } else if (Tok.is(tok::kw_default)) {
956       Diag(Tok, getLang().CPlusPlus0x ?
957            diag::warn_cxx98_compat_defaulted_function :
958            diag::ext_defaulted_function);
959 
960       KWLoc = ConsumeToken();
961       Actions.SetDeclDefaulted(Res, KWLoc);
962     } else {
963       llvm_unreachable("function definition after = not 'delete' or 'default'");
964     }
965 
966     if (Tok.is(tok::comma)) {
967       Diag(KWLoc, diag::err_default_delete_in_multiple_declaration)
968         << Delete;
969       SkipUntil(tok::semi);
970     } else {
971       ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
972                        Delete ? "delete" : "default", tok::semi);
973     }
974 
975     return Res;
976   }
977 
978   if (Tok.is(tok::kw_try))
979     return ParseFunctionTryBlock(Res, BodyScope);
980 
981   // If we have a colon, then we're probably parsing a C++
982   // ctor-initializer.
983   if (Tok.is(tok::colon)) {
984     ParseConstructorInitializer(Res);
985 
986     // Recover from error.
987     if (!Tok.is(tok::l_brace)) {
988       BodyScope.Exit();
989       Actions.ActOnFinishFunctionBody(Res, 0);
990       return Res;
991     }
992   } else
993     Actions.ActOnDefaultCtorInitializers(Res);
994 
995   // Late attributes are parsed in the same scope as the function body.
996   if (LateParsedAttrs)
997     ParseLexedAttributeList(*LateParsedAttrs, Res, false, true);
998 
999   return ParseFunctionStatementBody(Res, BodyScope);
1000 }
1001 
1002 /// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
1003 /// types for a function with a K&R-style identifier list for arguments.
1004 void Parser::ParseKNRParamDeclarations(Declarator &D) {
1005   // We know that the top-level of this declarator is a function.
1006   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
1007 
1008   // Enter function-declaration scope, limiting any declarators to the
1009   // function prototype scope, including parameter declarators.
1010   ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope);
1011 
1012   // Read all the argument declarations.
1013   while (isDeclarationSpecifier()) {
1014     SourceLocation DSStart = Tok.getLocation();
1015 
1016     // Parse the common declaration-specifiers piece.
1017     DeclSpec DS(AttrFactory);
1018     ParseDeclarationSpecifiers(DS);
1019 
1020     // C99 6.9.1p6: 'each declaration in the declaration list shall have at
1021     // least one declarator'.
1022     // NOTE: GCC just makes this an ext-warn.  It's not clear what it does with
1023     // the declarations though.  It's trivial to ignore them, really hard to do
1024     // anything else with them.
1025     if (Tok.is(tok::semi)) {
1026       Diag(DSStart, diag::err_declaration_does_not_declare_param);
1027       ConsumeToken();
1028       continue;
1029     }
1030 
1031     // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
1032     // than register.
1033     if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
1034         DS.getStorageClassSpec() != DeclSpec::SCS_register) {
1035       Diag(DS.getStorageClassSpecLoc(),
1036            diag::err_invalid_storage_class_in_func_decl);
1037       DS.ClearStorageClassSpecs();
1038     }
1039     if (DS.isThreadSpecified()) {
1040       Diag(DS.getThreadSpecLoc(),
1041            diag::err_invalid_storage_class_in_func_decl);
1042       DS.ClearStorageClassSpecs();
1043     }
1044 
1045     // Parse the first declarator attached to this declspec.
1046     Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
1047     ParseDeclarator(ParmDeclarator);
1048 
1049     // Handle the full declarator list.
1050     while (1) {
1051       // If attributes are present, parse them.
1052       MaybeParseGNUAttributes(ParmDeclarator);
1053 
1054       // Ask the actions module to compute the type for this declarator.
1055       Decl *Param =
1056         Actions.ActOnParamDeclarator(getCurScope(), ParmDeclarator);
1057 
1058       if (Param &&
1059           // A missing identifier has already been diagnosed.
1060           ParmDeclarator.getIdentifier()) {
1061 
1062         // Scan the argument list looking for the correct param to apply this
1063         // type.
1064         for (unsigned i = 0; ; ++i) {
1065           // C99 6.9.1p6: those declarators shall declare only identifiers from
1066           // the identifier list.
1067           if (i == FTI.NumArgs) {
1068             Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
1069               << ParmDeclarator.getIdentifier();
1070             break;
1071           }
1072 
1073           if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
1074             // Reject redefinitions of parameters.
1075             if (FTI.ArgInfo[i].Param) {
1076               Diag(ParmDeclarator.getIdentifierLoc(),
1077                    diag::err_param_redefinition)
1078                  << ParmDeclarator.getIdentifier();
1079             } else {
1080               FTI.ArgInfo[i].Param = Param;
1081             }
1082             break;
1083           }
1084         }
1085       }
1086 
1087       // If we don't have a comma, it is either the end of the list (a ';') or
1088       // an error, bail out.
1089       if (Tok.isNot(tok::comma))
1090         break;
1091 
1092       ParmDeclarator.clear();
1093 
1094       // Consume the comma.
1095       ParmDeclarator.setCommaLoc(ConsumeToken());
1096 
1097       // Parse the next declarator.
1098       ParseDeclarator(ParmDeclarator);
1099     }
1100 
1101     if (Tok.is(tok::semi)) {
1102       ConsumeToken();
1103     } else {
1104       Diag(Tok, diag::err_parse_error);
1105       // Skip to end of block or statement
1106       SkipUntil(tok::semi, true);
1107       if (Tok.is(tok::semi))
1108         ConsumeToken();
1109     }
1110   }
1111 
1112   // The actions module must verify that all arguments were declared.
1113   Actions.ActOnFinishKNRParamDeclarations(getCurScope(), D, Tok.getLocation());
1114 }
1115 
1116 
1117 /// ParseAsmStringLiteral - This is just a normal string-literal, but is not
1118 /// allowed to be a wide string, and is not subject to character translation.
1119 ///
1120 /// [GNU] asm-string-literal:
1121 ///         string-literal
1122 ///
1123 Parser::ExprResult Parser::ParseAsmStringLiteral() {
1124   switch (Tok.getKind()) {
1125     case tok::string_literal:
1126       break;
1127     case tok::wide_string_literal: {
1128       SourceLocation L = Tok.getLocation();
1129       Diag(Tok, diag::err_asm_operand_wide_string_literal)
1130         << SourceRange(L, L);
1131       return ExprError();
1132     }
1133     default:
1134       Diag(Tok, diag::err_expected_string_literal);
1135       return ExprError();
1136   }
1137 
1138   ExprResult Res(ParseStringLiteralExpression());
1139   if (Res.isInvalid()) return move(Res);
1140 
1141   return move(Res);
1142 }
1143 
1144 /// ParseSimpleAsm
1145 ///
1146 /// [GNU] simple-asm-expr:
1147 ///         'asm' '(' asm-string-literal ')'
1148 ///
1149 Parser::ExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
1150   assert(Tok.is(tok::kw_asm) && "Not an asm!");
1151   SourceLocation Loc = ConsumeToken();
1152 
1153   if (Tok.is(tok::kw_volatile)) {
1154     // Remove from the end of 'asm' to the end of 'volatile'.
1155     SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
1156                              PP.getLocForEndOfToken(Tok.getLocation()));
1157 
1158     Diag(Tok, diag::warn_file_asm_volatile)
1159       << FixItHint::CreateRemoval(RemovalRange);
1160     ConsumeToken();
1161   }
1162 
1163   BalancedDelimiterTracker T(*this, tok::l_paren);
1164   if (T.consumeOpen()) {
1165     Diag(Tok, diag::err_expected_lparen_after) << "asm";
1166     return ExprError();
1167   }
1168 
1169   ExprResult Result(ParseAsmStringLiteral());
1170 
1171   if (Result.isInvalid()) {
1172     SkipUntil(tok::r_paren, true, true);
1173     if (EndLoc)
1174       *EndLoc = Tok.getLocation();
1175     ConsumeAnyToken();
1176   } else {
1177     // Close the paren and get the location of the end bracket
1178     T.consumeClose();
1179     if (EndLoc)
1180       *EndLoc = T.getCloseLocation();
1181   }
1182 
1183   return move(Result);
1184 }
1185 
1186 /// \brief Get the TemplateIdAnnotation from the token and put it in the
1187 /// cleanup pool so that it gets destroyed when parsing the current top level
1188 /// declaration is finished.
1189 TemplateIdAnnotation *Parser::takeTemplateIdAnnotation(const Token &tok) {
1190   assert(tok.is(tok::annot_template_id) && "Expected template-id token");
1191   TemplateIdAnnotation *
1192       Id = static_cast<TemplateIdAnnotation *>(tok.getAnnotationValue());
1193   TopLevelDeclCleanupPool.delayMemberFunc< TemplateIdAnnotation,
1194                                           &TemplateIdAnnotation::Destroy>(Id);
1195   return Id;
1196 }
1197 
1198 /// TryAnnotateTypeOrScopeToken - If the current token position is on a
1199 /// typename (possibly qualified in C++) or a C++ scope specifier not followed
1200 /// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
1201 /// with a single annotation token representing the typename or C++ scope
1202 /// respectively.
1203 /// This simplifies handling of C++ scope specifiers and allows efficient
1204 /// backtracking without the need to re-parse and resolve nested-names and
1205 /// typenames.
1206 /// It will mainly be called when we expect to treat identifiers as typenames
1207 /// (if they are typenames). For example, in C we do not expect identifiers
1208 /// inside expressions to be treated as typenames so it will not be called
1209 /// for expressions in C.
1210 /// The benefit for C/ObjC is that a typename will be annotated and
1211 /// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
1212 /// will not be called twice, once to check whether we have a declaration
1213 /// specifier, and another one to get the actual type inside
1214 /// ParseDeclarationSpecifiers).
1215 ///
1216 /// This returns true if an error occurred.
1217 ///
1218 /// Note that this routine emits an error if you call it with ::new or ::delete
1219 /// as the current tokens, so only call it in contexts where these are invalid.
1220 bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext, bool NeedType) {
1221   assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)
1222           || Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope)
1223           || Tok.is(tok::kw_decltype)) && "Cannot be a type or scope token!");
1224 
1225   if (Tok.is(tok::kw_typename)) {
1226     // Parse a C++ typename-specifier, e.g., "typename T::type".
1227     //
1228     //   typename-specifier:
1229     //     'typename' '::' [opt] nested-name-specifier identifier
1230     //     'typename' '::' [opt] nested-name-specifier template [opt]
1231     //            simple-template-id
1232     SourceLocation TypenameLoc = ConsumeToken();
1233     CXXScopeSpec SS;
1234     if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/ParsedType(),
1235                                        /*EnteringContext=*/false,
1236                                        0, /*IsTypename*/true))
1237       return true;
1238     if (!SS.isSet()) {
1239       if (getLang().MicrosoftExt)
1240         Diag(Tok.getLocation(), diag::warn_expected_qualified_after_typename);
1241       else
1242         Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
1243       return true;
1244     }
1245 
1246     TypeResult Ty;
1247     if (Tok.is(tok::identifier)) {
1248       // FIXME: check whether the next token is '<', first!
1249       Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
1250                                      *Tok.getIdentifierInfo(),
1251                                      Tok.getLocation());
1252     } else if (Tok.is(tok::annot_template_id)) {
1253       TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1254       if (TemplateId->Kind == TNK_Function_template) {
1255         Diag(Tok, diag::err_typename_refers_to_non_type_template)
1256           << Tok.getAnnotationRange();
1257         return true;
1258       }
1259 
1260       ASTTemplateArgsPtr TemplateArgsPtr(Actions,
1261                                          TemplateId->getTemplateArgs(),
1262                                          TemplateId->NumArgs);
1263 
1264       Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
1265                                      TemplateId->TemplateKWLoc,
1266                                      TemplateId->Template,
1267                                      TemplateId->TemplateNameLoc,
1268                                      TemplateId->LAngleLoc,
1269                                      TemplateArgsPtr,
1270                                      TemplateId->RAngleLoc);
1271     } else {
1272       Diag(Tok, diag::err_expected_type_name_after_typename)
1273         << SS.getRange();
1274       return true;
1275     }
1276 
1277     SourceLocation EndLoc = Tok.getLastLoc();
1278     Tok.setKind(tok::annot_typename);
1279     setTypeAnnotation(Tok, Ty.isInvalid() ? ParsedType() : Ty.get());
1280     Tok.setAnnotationEndLoc(EndLoc);
1281     Tok.setLocation(TypenameLoc);
1282     PP.AnnotateCachedTokens(Tok);
1283     return false;
1284   }
1285 
1286   // Remembers whether the token was originally a scope annotation.
1287   bool wasScopeAnnotation = Tok.is(tok::annot_cxxscope);
1288 
1289   CXXScopeSpec SS;
1290   if (getLang().CPlusPlus)
1291     if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext))
1292       return true;
1293 
1294   if (Tok.is(tok::identifier)) {
1295     IdentifierInfo *CorrectedII = 0;
1296     // Determine whether the identifier is a type name.
1297     if (ParsedType Ty = Actions.getTypeName(*Tok.getIdentifierInfo(),
1298                                             Tok.getLocation(), getCurScope(),
1299                                             &SS, false,
1300                                             NextToken().is(tok::period),
1301                                             ParsedType(),
1302                                             /*IsCtorOrDtorName=*/false,
1303                                             /*NonTrivialTypeSourceInfo*/true,
1304                                             NeedType ? &CorrectedII : NULL)) {
1305       // A FixIt was applied as a result of typo correction
1306       if (CorrectedII)
1307         Tok.setIdentifierInfo(CorrectedII);
1308       // This is a typename. Replace the current token in-place with an
1309       // annotation type token.
1310       Tok.setKind(tok::annot_typename);
1311       setTypeAnnotation(Tok, Ty);
1312       Tok.setAnnotationEndLoc(Tok.getLocation());
1313       if (SS.isNotEmpty()) // it was a C++ qualified type name.
1314         Tok.setLocation(SS.getBeginLoc());
1315 
1316       // In case the tokens were cached, have Preprocessor replace
1317       // them with the annotation token.
1318       PP.AnnotateCachedTokens(Tok);
1319       return false;
1320     }
1321 
1322     if (!getLang().CPlusPlus) {
1323       // If we're in C, we can't have :: tokens at all (the lexer won't return
1324       // them).  If the identifier is not a type, then it can't be scope either,
1325       // just early exit.
1326       return false;
1327     }
1328 
1329     // If this is a template-id, annotate with a template-id or type token.
1330     if (NextToken().is(tok::less)) {
1331       TemplateTy Template;
1332       UnqualifiedId TemplateName;
1333       TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
1334       bool MemberOfUnknownSpecialization;
1335       if (TemplateNameKind TNK
1336           = Actions.isTemplateName(getCurScope(), SS,
1337                                    /*hasTemplateKeyword=*/false, TemplateName,
1338                                    /*ObjectType=*/ ParsedType(),
1339                                    EnteringContext,
1340                                    Template, MemberOfUnknownSpecialization)) {
1341         // Consume the identifier.
1342         ConsumeToken();
1343         if (AnnotateTemplateIdToken(Template, TNK, SS, SourceLocation(),
1344                                     TemplateName)) {
1345           // If an unrecoverable error occurred, we need to return true here,
1346           // because the token stream is in a damaged state.  We may not return
1347           // a valid identifier.
1348           return true;
1349         }
1350       }
1351     }
1352 
1353     // The current token, which is either an identifier or a
1354     // template-id, is not part of the annotation. Fall through to
1355     // push that token back into the stream and complete the C++ scope
1356     // specifier annotation.
1357   }
1358 
1359   if (Tok.is(tok::annot_template_id)) {
1360     TemplateIdAnnotation *TemplateId = takeTemplateIdAnnotation(Tok);
1361     if (TemplateId->Kind == TNK_Type_template) {
1362       // A template-id that refers to a type was parsed into a
1363       // template-id annotation in a context where we weren't allowed
1364       // to produce a type annotation token. Update the template-id
1365       // annotation token to a type annotation token now.
1366       AnnotateTemplateIdTokenAsType();
1367       return false;
1368     }
1369   }
1370 
1371   if (SS.isEmpty())
1372     return false;
1373 
1374   // A C++ scope specifier that isn't followed by a typename.
1375   // Push the current token back into the token stream (or revert it if it is
1376   // cached) and use an annotation scope token for current token.
1377   if (PP.isBacktrackEnabled())
1378     PP.RevertCachedTokens(1);
1379   else
1380     PP.EnterToken(Tok);
1381   Tok.setKind(tok::annot_cxxscope);
1382   Tok.setAnnotationValue(Actions.SaveNestedNameSpecifierAnnotation(SS));
1383   Tok.setAnnotationRange(SS.getRange());
1384 
1385   // In case the tokens were cached, have Preprocessor replace them
1386   // with the annotation token.  We don't need to do this if we've
1387   // just reverted back to the state we were in before being called.
1388   if (!wasScopeAnnotation)
1389     PP.AnnotateCachedTokens(Tok);
1390   return false;
1391 }
1392 
1393 /// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
1394 /// annotates C++ scope specifiers and template-ids.  This returns
1395 /// true if the token was annotated or there was an error that could not be
1396 /// recovered from.
1397 ///
1398 /// Note that this routine emits an error if you call it with ::new or ::delete
1399 /// as the current tokens, so only call it in contexts where these are invalid.
1400 bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
1401   assert(getLang().CPlusPlus &&
1402          "Call sites of this function should be guarded by checking for C++");
1403   assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon) ||
1404           (Tok.is(tok::annot_template_id) && NextToken().is(tok::coloncolon)) ||
1405          Tok.is(tok::kw_decltype)) && "Cannot be a type or scope token!");
1406 
1407   CXXScopeSpec SS;
1408   if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext))
1409     return true;
1410   if (SS.isEmpty())
1411     return false;
1412 
1413   // Push the current token back into the token stream (or revert it if it is
1414   // cached) and use an annotation scope token for current token.
1415   if (PP.isBacktrackEnabled())
1416     PP.RevertCachedTokens(1);
1417   else
1418     PP.EnterToken(Tok);
1419   Tok.setKind(tok::annot_cxxscope);
1420   Tok.setAnnotationValue(Actions.SaveNestedNameSpecifierAnnotation(SS));
1421   Tok.setAnnotationRange(SS.getRange());
1422 
1423   // In case the tokens were cached, have Preprocessor replace them with the
1424   // annotation token.
1425   PP.AnnotateCachedTokens(Tok);
1426   return false;
1427 }
1428 
1429 bool Parser::isTokenEqualOrEqualTypo() {
1430   tok::TokenKind Kind = Tok.getKind();
1431   switch (Kind) {
1432   default:
1433     return false;
1434   case tok::ampequal:            // &=
1435   case tok::starequal:           // *=
1436   case tok::plusequal:           // +=
1437   case tok::minusequal:          // -=
1438   case tok::exclaimequal:        // !=
1439   case tok::slashequal:          // /=
1440   case tok::percentequal:        // %=
1441   case tok::lessequal:           // <=
1442   case tok::lesslessequal:       // <<=
1443   case tok::greaterequal:        // >=
1444   case tok::greatergreaterequal: // >>=
1445   case tok::caretequal:          // ^=
1446   case tok::pipeequal:           // |=
1447   case tok::equalequal:          // ==
1448     Diag(Tok, diag::err_invalid_token_after_declarator_suggest_equal)
1449       << getTokenSimpleSpelling(Kind)
1450       << FixItHint::CreateReplacement(SourceRange(Tok.getLocation()), "=");
1451   case tok::equal:
1452     return true;
1453   }
1454 }
1455 
1456 SourceLocation Parser::handleUnexpectedCodeCompletionToken() {
1457   assert(Tok.is(tok::code_completion));
1458   PrevTokLocation = Tok.getLocation();
1459 
1460   for (Scope *S = getCurScope(); S; S = S->getParent()) {
1461     if (S->getFlags() & Scope::FnScope) {
1462       Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_RecoveryInFunction);
1463       cutOffParsing();
1464       return PrevTokLocation;
1465     }
1466 
1467     if (S->getFlags() & Scope::ClassScope) {
1468       Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Class);
1469       cutOffParsing();
1470       return PrevTokLocation;
1471     }
1472   }
1473 
1474   Actions.CodeCompleteOrdinaryName(getCurScope(), Sema::PCC_Namespace);
1475   cutOffParsing();
1476   return PrevTokLocation;
1477 }
1478 
1479 // Anchor the Parser::FieldCallback vtable to this translation unit.
1480 // We use a spurious method instead of the destructor because
1481 // destroying FieldCallbacks can actually be slightly
1482 // performance-sensitive.
1483 void Parser::FieldCallback::_anchor() {
1484 }
1485 
1486 // Code-completion pass-through functions
1487 
1488 void Parser::CodeCompleteDirective(bool InConditional) {
1489   Actions.CodeCompletePreprocessorDirective(InConditional);
1490 }
1491 
1492 void Parser::CodeCompleteInConditionalExclusion() {
1493   Actions.CodeCompleteInPreprocessorConditionalExclusion(getCurScope());
1494 }
1495 
1496 void Parser::CodeCompleteMacroName(bool IsDefinition) {
1497   Actions.CodeCompletePreprocessorMacroName(IsDefinition);
1498 }
1499 
1500 void Parser::CodeCompletePreprocessorExpression() {
1501   Actions.CodeCompletePreprocessorExpression();
1502 }
1503 
1504 void Parser::CodeCompleteMacroArgument(IdentifierInfo *Macro,
1505                                        MacroInfo *MacroInfo,
1506                                        unsigned ArgumentIndex) {
1507   Actions.CodeCompletePreprocessorMacroArgument(getCurScope(), Macro, MacroInfo,
1508                                                 ArgumentIndex);
1509 }
1510 
1511 void Parser::CodeCompleteNaturalLanguage() {
1512   Actions.CodeCompleteNaturalLanguage();
1513 }
1514 
1515 bool Parser::ParseMicrosoftIfExistsCondition(IfExistsCondition& Result) {
1516   assert((Tok.is(tok::kw___if_exists) || Tok.is(tok::kw___if_not_exists)) &&
1517          "Expected '__if_exists' or '__if_not_exists'");
1518   Result.IsIfExists = Tok.is(tok::kw___if_exists);
1519   Result.KeywordLoc = ConsumeToken();
1520 
1521   BalancedDelimiterTracker T(*this, tok::l_paren);
1522   if (T.consumeOpen()) {
1523     Diag(Tok, diag::err_expected_lparen_after)
1524       << (Result.IsIfExists? "__if_exists" : "__if_not_exists");
1525     return true;
1526   }
1527 
1528   // Parse nested-name-specifier.
1529   ParseOptionalCXXScopeSpecifier(Result.SS, ParsedType(),
1530                                  /*EnteringContext=*/false);
1531 
1532   // Check nested-name specifier.
1533   if (Result.SS.isInvalid()) {
1534     T.skipToEnd();
1535     return true;
1536   }
1537 
1538   // Parse the unqualified-id.
1539   SourceLocation TemplateKWLoc; // FIXME: parsed, but unused.
1540   if (ParseUnqualifiedId(Result.SS, false, true, true, ParsedType(),
1541                          TemplateKWLoc, Result.Name)) {
1542     T.skipToEnd();
1543     return true;
1544   }
1545 
1546   if (T.consumeClose())
1547     return true;
1548 
1549   // Check if the symbol exists.
1550   switch (Actions.CheckMicrosoftIfExistsSymbol(getCurScope(), Result.KeywordLoc,
1551                                                Result.IsIfExists, Result.SS,
1552                                                Result.Name)) {
1553   case Sema::IER_Exists:
1554     Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip;
1555     break;
1556 
1557   case Sema::IER_DoesNotExist:
1558     Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip;
1559     break;
1560 
1561   case Sema::IER_Dependent:
1562     Result.Behavior = IEB_Dependent;
1563     break;
1564 
1565   case Sema::IER_Error:
1566     return true;
1567   }
1568 
1569   return false;
1570 }
1571 
1572 void Parser::ParseMicrosoftIfExistsExternalDeclaration() {
1573   IfExistsCondition Result;
1574   if (ParseMicrosoftIfExistsCondition(Result))
1575     return;
1576 
1577   BalancedDelimiterTracker Braces(*this, tok::l_brace);
1578   if (Braces.consumeOpen()) {
1579     Diag(Tok, diag::err_expected_lbrace);
1580     return;
1581   }
1582 
1583   switch (Result.Behavior) {
1584   case IEB_Parse:
1585     // Parse declarations below.
1586     break;
1587 
1588   case IEB_Dependent:
1589     llvm_unreachable("Cannot have a dependent external declaration");
1590 
1591   case IEB_Skip:
1592     Braces.skipToEnd();
1593     return;
1594   }
1595 
1596   // Parse the declarations.
1597   while (Tok.isNot(tok::r_brace) && Tok.isNot(tok::eof)) {
1598     ParsedAttributesWithRange attrs(AttrFactory);
1599     MaybeParseCXX0XAttributes(attrs);
1600     MaybeParseMicrosoftAttributes(attrs);
1601     DeclGroupPtrTy Result = ParseExternalDeclaration(attrs);
1602     if (Result && !getCurScope()->getParent())
1603       Actions.getASTConsumer().HandleTopLevelDecl(Result.get());
1604   }
1605   Braces.consumeClose();
1606 }
1607 
1608 Parser::DeclGroupPtrTy Parser::ParseModuleImport(SourceLocation AtLoc) {
1609   assert(Tok.isObjCAtKeyword(tok::objc_import) &&
1610          "Improper start to module import");
1611   SourceLocation ImportLoc = ConsumeToken();
1612 
1613   llvm::SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
1614 
1615   // Parse the module path.
1616   do {
1617     if (!Tok.is(tok::identifier)) {
1618       if (Tok.is(tok::code_completion)) {
1619         Actions.CodeCompleteModuleImport(ImportLoc, Path);
1620         ConsumeCodeCompletionToken();
1621         SkipUntil(tok::semi);
1622         return DeclGroupPtrTy();
1623       }
1624 
1625       Diag(Tok, diag::err_module_expected_ident);
1626       SkipUntil(tok::semi);
1627       return DeclGroupPtrTy();
1628     }
1629 
1630     // Record this part of the module path.
1631     Path.push_back(std::make_pair(Tok.getIdentifierInfo(), Tok.getLocation()));
1632     ConsumeToken();
1633 
1634     if (Tok.is(tok::period)) {
1635       ConsumeToken();
1636       continue;
1637     }
1638 
1639     break;
1640   } while (true);
1641 
1642   DeclResult Import = Actions.ActOnModuleImport(AtLoc, ImportLoc, Path);
1643   ExpectAndConsumeSemi(diag::err_module_expected_semi);
1644   if (Import.isInvalid())
1645     return DeclGroupPtrTy();
1646 
1647   return Actions.ConvertDeclToDeclGroup(Import.get());
1648 }
1649 
1650 bool Parser::BalancedDelimiterTracker::consumeOpen() {
1651   // Try to consume the token we are holding
1652   if (P.Tok.is(Kind)) {
1653     P.QuantityTracker.push(Kind);
1654     Cleanup = true;
1655     if (P.QuantityTracker.getDepth(Kind) < MaxDepth) {
1656       LOpen = P.ConsumeAnyToken();
1657       return false;
1658     } else {
1659       P.Diag(P.Tok, diag::err_parser_impl_limit_overflow);
1660       P.SkipUntil(tok::eof);
1661     }
1662   }
1663   return true;
1664 }
1665 
1666 bool Parser::BalancedDelimiterTracker::expectAndConsume(unsigned DiagID,
1667                                             const char *Msg,
1668                                             tok::TokenKind SkipToToc ) {
1669   LOpen = P.Tok.getLocation();
1670   if (!P.ExpectAndConsume(Kind, DiagID, Msg, SkipToToc)) {
1671     P.QuantityTracker.push(Kind);
1672     Cleanup = true;
1673     if (P.QuantityTracker.getDepth(Kind) < MaxDepth) {
1674       return false;
1675     } else {
1676       P.Diag(P.Tok, diag::err_parser_impl_limit_overflow);
1677       P.SkipUntil(tok::eof);
1678     }
1679   }
1680   return true;
1681 }
1682 
1683 bool Parser::BalancedDelimiterTracker::consumeClose() {
1684   if (P.Tok.is(Close)) {
1685     LClose = P.ConsumeAnyToken();
1686     if (Cleanup)
1687       P.QuantityTracker.pop(Kind);
1688 
1689     Cleanup = false;
1690     return false;
1691   } else {
1692     const char *LHSName = "unknown";
1693     diag::kind DID = diag::err_parse_error;
1694     switch (Close) {
1695     default: break;
1696     case tok::r_paren : LHSName = "("; DID = diag::err_expected_rparen; break;
1697     case tok::r_brace : LHSName = "{"; DID = diag::err_expected_rbrace; break;
1698     case tok::r_square: LHSName = "["; DID = diag::err_expected_rsquare; break;
1699     case tok::greater:  LHSName = "<"; DID = diag::err_expected_greater; break;
1700     case tok::greatergreatergreater:
1701                         LHSName = "<<<"; DID = diag::err_expected_ggg; break;
1702     }
1703     P.Diag(P.Tok, DID);
1704     P.Diag(LOpen, diag::note_matching) << LHSName;
1705     if (P.SkipUntil(Close))
1706       LClose = P.Tok.getLocation();
1707   }
1708   return true;
1709 }
1710 
1711 void Parser::BalancedDelimiterTracker::skipToEnd() {
1712   P.SkipUntil(Close, false);
1713   Cleanup = false;
1714 }
1715