blob: 8fd1e48994485c692468376532bce826893cffe9 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Parser.cpp - C Language Family Parser ----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000016#include "clang/Sema/DeclSpec.h"
17#include "clang/Sema/Scope.h"
18#include "clang/Sema/ParsedTemplate.h"
Chris Lattner0102c302009-03-05 07:24:28 +000019#include "llvm/Support/raw_ostream.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000020#include "RAIIObjectsForParser.h"
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +000021#include "ParsePragma.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
24Parser::Parser(Preprocessor &pp, Action &actions)
Mike Stump1eb44332009-09-09 15:08:12 +000025 : CrashInfo(*this), PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
Chris Lattner08d92ec2009-12-10 00:32:41 +000026 GreaterThanIsOperator(true), ColonIsSacred(false),
27 TemplateParameterDepth(0) {
Reid Spencer5f016e22007-07-11 17:01:13 +000028 Tok.setKind(tok::eof);
Douglas Gregor23c94db2010-07-02 17:43:08 +000029 Actions.CurScope = 0;
Chris Lattner9e344c62007-07-15 00:04:39 +000030 NumCachedScopes = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000031 ParenCount = BracketCount = BraceCount = 0;
John McCalld226f652010-08-21 09:40:31 +000032 ObjCImpDecl = 0;
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +000033
34 // Add #pragma handlers. These are removed and destroyed in the
35 // destructor.
Daniel Dunbarcbb98ed2010-07-31 19:17:07 +000036 AlignHandler.reset(new PragmaAlignHandler(actions));
37 PP.AddPragmaHandler(AlignHandler.get());
38
Eli Friedmanaa8b0d12010-08-05 06:57:20 +000039 GCCVisibilityHandler.reset(new PragmaGCCVisibilityHandler(actions));
40 PP.AddPragmaHandler("GCC", GCCVisibilityHandler.get());
41
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000042 OptionsHandler.reset(new PragmaOptionsHandler(actions));
43 PP.AddPragmaHandler(OptionsHandler.get());
Daniel Dunbar861800c2010-05-26 23:29:06 +000044
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000045 PackHandler.reset(new PragmaPackHandler(actions));
46 PP.AddPragmaHandler(PackHandler.get());
Mike Stump1eb44332009-09-09 15:08:12 +000047
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000048 UnusedHandler.reset(new PragmaUnusedHandler(actions, *this));
49 PP.AddPragmaHandler(UnusedHandler.get());
Eli Friedman99914792009-06-05 00:49:58 +000050
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000051 WeakHandler.reset(new PragmaWeakHandler(actions));
52 PP.AddPragmaHandler(WeakHandler.get());
Reid Spencer5f016e22007-07-11 17:01:13 +000053}
54
Chris Lattner0102c302009-03-05 07:24:28 +000055/// If a crash happens while the parser is active, print out a line indicating
56/// what the current token is.
57void PrettyStackTraceParserEntry::print(llvm::raw_ostream &OS) const {
58 const Token &Tok = P.getCurToken();
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000059 if (Tok.is(tok::eof)) {
Chris Lattner0102c302009-03-05 07:24:28 +000060 OS << "<eof> parser at end of file\n";
61 return;
62 }
Mike Stump1eb44332009-09-09 15:08:12 +000063
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000064 if (Tok.getLocation().isInvalid()) {
65 OS << "<unknown> parser at unknown location\n";
66 return;
67 }
Mike Stump1eb44332009-09-09 15:08:12 +000068
Chris Lattner0102c302009-03-05 07:24:28 +000069 const Preprocessor &PP = P.getPreprocessor();
70 Tok.getLocation().print(OS, PP.getSourceManager());
Daniel Dunbar9fa31dd2009-10-17 06:13:04 +000071 if (Tok.isAnnotation())
72 OS << ": at annotation token \n";
73 else
74 OS << ": current parser token '" << PP.getSpelling(Tok) << "'\n";
Douglas Gregorf780abc2008-12-30 03:27:21 +000075}
Reid Spencer5f016e22007-07-11 17:01:13 +000076
Chris Lattner0102c302009-03-05 07:24:28 +000077
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000078DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
Chris Lattner0102c302009-03-05 07:24:28 +000079 return Diags.Report(FullSourceLoc(Loc, PP.getSourceManager()), DiagID);
Chris Lattner1ab3b962008-11-18 07:48:38 +000080}
81
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000082DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
Chris Lattner1ab3b962008-11-18 07:48:38 +000083 return Diag(Tok.getLocation(), DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +000084}
85
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000086/// \brief Emits a diagnostic suggesting parentheses surrounding a
87/// given range.
88///
89/// \param Loc The location where we'll emit the diagnostic.
90/// \param Loc The kind of diagnostic to emit.
91/// \param ParenRange Source range enclosing code that should be parenthesized.
92void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
93 SourceRange ParenRange) {
Douglas Gregorb2fb6de2009-02-27 17:53:17 +000094 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
95 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000096 // We can't display the parentheses, so just dig the
97 // warning/error and return.
98 Diag(Loc, DK);
99 return;
100 }
Mike Stump1eb44332009-09-09 15:08:12 +0000101
102 Diag(Loc, DK)
Douglas Gregor849b2432010-03-31 17:46:05 +0000103 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
104 << FixItHint::CreateInsertion(EndLoc, ")");
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000105}
106
Reid Spencer5f016e22007-07-11 17:01:13 +0000107/// MatchRHSPunctuation - For punctuation with a LHS and RHS (e.g. '['/']'),
108/// this helper function matches and consumes the specified RHS token if
109/// present. If not present, it emits the specified diagnostic indicating
110/// that the parser failed to match the RHS of the token at LHSLoc. LHSName
111/// should be the name of the unmatched LHS token.
112SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok,
113 SourceLocation LHSLoc) {
Mike Stumpa6f01772008-06-19 19:28:49 +0000114
Chris Lattner00073222007-10-09 17:23:58 +0000115 if (Tok.is(RHSTok))
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 return ConsumeAnyToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000117
Reid Spencer5f016e22007-07-11 17:01:13 +0000118 SourceLocation R = Tok.getLocation();
119 const char *LHSName = "unknown";
120 diag::kind DID = diag::err_parse_error;
121 switch (RHSTok) {
122 default: break;
123 case tok::r_paren : LHSName = "("; DID = diag::err_expected_rparen; break;
124 case tok::r_brace : LHSName = "{"; DID = diag::err_expected_rbrace; break;
125 case tok::r_square: LHSName = "["; DID = diag::err_expected_rsquare; break;
126 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break;
127 }
128 Diag(Tok, DID);
Chris Lattner28eb7e92008-11-23 23:17:07 +0000129 Diag(LHSLoc, diag::note_matching) << LHSName;
Chris Lattner9fc18732010-07-12 01:48:28 +0000130 SkipUntil(RHSTok);
Reid Spencer5f016e22007-07-11 17:01:13 +0000131 return R;
132}
133
134/// ExpectAndConsume - The parser expects that 'ExpectedTok' is next in the
135/// input. If so, it is consumed and false is returned.
136///
137/// If the input is malformed, this emits the specified diagnostic. Next, if
138/// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
139/// returned.
140bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
141 const char *Msg, tok::TokenKind SkipToTok) {
Douglas Gregordc845342010-05-25 05:58:43 +0000142 if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000143 ConsumeAnyToken();
144 return false;
145 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000146
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000147 const char *Spelling = 0;
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000148 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
Mike Stump1eb44332009-09-09 15:08:12 +0000149 if (EndLoc.isValid() &&
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000150 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000151 // Show what code to insert to fix this problem.
Mike Stump1eb44332009-09-09 15:08:12 +0000152 Diag(EndLoc, DiagID)
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000153 << Msg
Douglas Gregor849b2432010-03-31 17:46:05 +0000154 << FixItHint::CreateInsertion(EndLoc, Spelling);
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000155 } else
156 Diag(Tok, DiagID) << Msg;
157
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 if (SkipToTok != tok::unknown)
159 SkipUntil(SkipToTok);
160 return true;
161}
162
163//===----------------------------------------------------------------------===//
164// Error recovery.
165//===----------------------------------------------------------------------===//
166
167/// SkipUntil - Read tokens until we get to the specified token, then consume
Chris Lattner012cf462007-07-24 17:03:04 +0000168/// it (unless DontConsume is true). Because we cannot guarantee that the
Reid Spencer5f016e22007-07-11 17:01:13 +0000169/// token will ever occur, this skips to the next token, or to some likely
170/// good stopping point. If StopAtSemi is true, skipping will stop at a ';'
171/// character.
Mike Stumpa6f01772008-06-19 19:28:49 +0000172///
Reid Spencer5f016e22007-07-11 17:01:13 +0000173/// If SkipUntil finds the specified token, it returns true, otherwise it
Mike Stumpa6f01772008-06-19 19:28:49 +0000174/// returns false.
Reid Spencer5f016e22007-07-11 17:01:13 +0000175bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,
176 bool StopAtSemi, bool DontConsume) {
177 // We always want this function to skip at least one token if the first token
178 // isn't T and if not at EOF.
179 bool isFirstTokenSkipped = true;
180 while (1) {
181 // If we found one of the tokens, stop and return true.
182 for (unsigned i = 0; i != NumToks; ++i) {
Chris Lattner00073222007-10-09 17:23:58 +0000183 if (Tok.is(Toks[i])) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 if (DontConsume) {
185 // Noop, don't consume the token.
186 } else {
187 ConsumeAnyToken();
188 }
189 return true;
190 }
191 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000192
Reid Spencer5f016e22007-07-11 17:01:13 +0000193 switch (Tok.getKind()) {
194 case tok::eof:
195 // Ran out of tokens.
196 return false;
Douglas Gregordc845342010-05-25 05:58:43 +0000197
198 case tok::code_completion:
199 ConsumeToken();
200 return false;
201
Reid Spencer5f016e22007-07-11 17:01:13 +0000202 case tok::l_paren:
203 // Recursively skip properly-nested parens.
204 ConsumeParen();
205 SkipUntil(tok::r_paren, false);
206 break;
207 case tok::l_square:
208 // Recursively skip properly-nested square brackets.
209 ConsumeBracket();
210 SkipUntil(tok::r_square, false);
211 break;
212 case tok::l_brace:
213 // Recursively skip properly-nested braces.
214 ConsumeBrace();
215 SkipUntil(tok::r_brace, false);
216 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000217
Reid Spencer5f016e22007-07-11 17:01:13 +0000218 // Okay, we found a ']' or '}' or ')', which we think should be balanced.
219 // Since the user wasn't looking for this token (if they were, it would
220 // already be handled), this isn't balanced. If there is a LHS token at a
221 // higher level, we will assume that this matches the unbalanced token
222 // and return it. Otherwise, this is a spurious RHS token, which we skip.
223 case tok::r_paren:
224 if (ParenCount && !isFirstTokenSkipped)
225 return false; // Matches something.
226 ConsumeParen();
227 break;
228 case tok::r_square:
229 if (BracketCount && !isFirstTokenSkipped)
230 return false; // Matches something.
231 ConsumeBracket();
232 break;
233 case tok::r_brace:
234 if (BraceCount && !isFirstTokenSkipped)
235 return false; // Matches something.
236 ConsumeBrace();
237 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000238
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 case tok::string_literal:
240 case tok::wide_string_literal:
241 ConsumeStringToken();
242 break;
243 case tok::semi:
244 if (StopAtSemi)
245 return false;
246 // FALL THROUGH.
247 default:
248 // Skip this token.
249 ConsumeToken();
250 break;
251 }
252 isFirstTokenSkipped = false;
Mike Stumpa6f01772008-06-19 19:28:49 +0000253 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000254}
255
256//===----------------------------------------------------------------------===//
257// Scope manipulation
258//===----------------------------------------------------------------------===//
259
Reid Spencer5f016e22007-07-11 17:01:13 +0000260/// EnterScope - Start a new scope.
261void Parser::EnterScope(unsigned ScopeFlags) {
Chris Lattner9e344c62007-07-15 00:04:39 +0000262 if (NumCachedScopes) {
263 Scope *N = ScopeCache[--NumCachedScopes];
Douglas Gregor23c94db2010-07-02 17:43:08 +0000264 N->Init(getCurScope(), ScopeFlags);
265 Actions.CurScope = N;
Reid Spencer5f016e22007-07-11 17:01:13 +0000266 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000267 Actions.CurScope = new Scope(getCurScope(), ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000268 }
Douglas Gregor23c94db2010-07-02 17:43:08 +0000269 getCurScope()->setNumErrorsAtStart(Diags.getNumErrors());
Reid Spencer5f016e22007-07-11 17:01:13 +0000270}
271
272/// ExitScope - Pop a scope off the scope stack.
273void Parser::ExitScope() {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000274 assert(getCurScope() && "Scope imbalance!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000275
Chris Lattner90ae68a2007-10-09 20:37:18 +0000276 // Inform the actions module that this scope is going away if there are any
277 // decls in it.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000278 if (!getCurScope()->decl_empty())
279 Actions.ActOnPopScope(Tok.getLocation(), getCurScope());
Mike Stumpa6f01772008-06-19 19:28:49 +0000280
Douglas Gregor23c94db2010-07-02 17:43:08 +0000281 Scope *OldScope = getCurScope();
282 Actions.CurScope = OldScope->getParent();
Mike Stumpa6f01772008-06-19 19:28:49 +0000283
Chris Lattner9e344c62007-07-15 00:04:39 +0000284 if (NumCachedScopes == ScopeCacheSize)
285 delete OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000286 else
Chris Lattner9e344c62007-07-15 00:04:39 +0000287 ScopeCache[NumCachedScopes++] = OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000288}
289
290
291
292
293//===----------------------------------------------------------------------===//
294// C99 6.9: External Definitions.
295//===----------------------------------------------------------------------===//
296
297Parser::~Parser() {
298 // If we still have scopes active, delete the scope tree.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000299 delete getCurScope();
300 Actions.CurScope = 0;
301
Reid Spencer5f016e22007-07-11 17:01:13 +0000302 // Free the scope cache.
Chris Lattner9e344c62007-07-15 00:04:39 +0000303 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
304 delete ScopeCache[i];
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +0000305
306 // Remove the pragma handlers we installed.
Daniel Dunbarcbb98ed2010-07-31 19:17:07 +0000307 PP.RemovePragmaHandler(AlignHandler.get());
308 AlignHandler.reset();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000309 PP.RemovePragmaHandler("GCC", GCCVisibilityHandler.get());
310 GCCVisibilityHandler.reset();
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000311 PP.RemovePragmaHandler(OptionsHandler.get());
Daniel Dunbar861800c2010-05-26 23:29:06 +0000312 OptionsHandler.reset();
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000313 PP.RemovePragmaHandler(PackHandler.get());
Ted Kremenek4726d032009-03-23 22:28:25 +0000314 PackHandler.reset();
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000315 PP.RemovePragmaHandler(UnusedHandler.get());
Ted Kremenek4726d032009-03-23 22:28:25 +0000316 UnusedHandler.reset();
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000317 PP.RemovePragmaHandler(WeakHandler.get());
Eli Friedman99914792009-06-05 00:49:58 +0000318 WeakHandler.reset();
Reid Spencer5f016e22007-07-11 17:01:13 +0000319}
320
321/// Initialize - Warm up the parser.
322///
323void Parser::Initialize() {
324 // Prime the lexer look-ahead.
325 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000326
Chris Lattner31e05722007-08-26 06:24:45 +0000327 // Create the translation unit scope. Install it as the current scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000328 assert(getCurScope() == 0 && "A scope is already active?");
Chris Lattner31e05722007-08-26 06:24:45 +0000329 EnterScope(Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000330 Actions.ActOnTranslationUnitScope(Tok.getLocation(), getCurScope());
Mike Stumpa6f01772008-06-19 19:28:49 +0000331
Chris Lattner00073222007-10-09 17:23:58 +0000332 if (Tok.is(tok::eof) &&
Chris Lattnerf7261752007-08-25 05:47:03 +0000333 !getLang().CPlusPlus) // Empty source file is an extension in C
Reid Spencer5f016e22007-07-11 17:01:13 +0000334 Diag(Tok, diag::ext_empty_source_file);
Mike Stumpa6f01772008-06-19 19:28:49 +0000335
Chris Lattner34870da2007-08-29 22:54:08 +0000336 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000337 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner34870da2007-08-29 22:54:08 +0000338 if (getLang().ObjC1) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000339 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
340 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
341 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
342 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
343 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
344 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
Chris Lattner34870da2007-08-29 22:54:08 +0000345 }
Daniel Dunbar662e8b52008-08-14 22:04:54 +0000346
347 Ident_super = &PP.getIdentifierTable().get("super");
John Thompson82287d12010-02-05 00:12:22 +0000348
349 if (getLang().AltiVec) {
350 Ident_vector = &PP.getIdentifierTable().get("vector");
351 Ident_pixel = &PP.getIdentifierTable().get("pixel");
352 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000353}
354
355/// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
356/// action tells us to. This returns true if the EOF was encountered.
Chris Lattner682bf922009-03-29 16:50:03 +0000357bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
358 Result = DeclGroupPtrTy();
Chris Lattner9299f3f2008-08-23 03:19:52 +0000359 if (Tok.is(tok::eof)) {
360 Actions.ActOnEndOfTranslationUnit();
361 return true;
362 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000363
Sean Huntbbd37c62009-11-21 08:43:09 +0000364 CXX0XAttributeList Attr;
365 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
366 Attr = ParseCXX0XAttributes();
367 Result = ParseExternalDeclaration(Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000368 return false;
369}
370
Reid Spencer5f016e22007-07-11 17:01:13 +0000371/// ParseTranslationUnit:
372/// translation-unit: [C99 6.9]
Mike Stumpa6f01772008-06-19 19:28:49 +0000373/// external-declaration
374/// translation-unit external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000375void Parser::ParseTranslationUnit() {
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000376 Initialize();
Mike Stumpa6f01772008-06-19 19:28:49 +0000377
Chris Lattner682bf922009-03-29 16:50:03 +0000378 DeclGroupPtrTy Res;
Steve Naroff89307ff2007-11-29 23:05:20 +0000379 while (!ParseTopLevelDecl(Res))
Reid Spencer5f016e22007-07-11 17:01:13 +0000380 /*parse them all*/;
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Chris Lattner06f54852008-08-23 02:00:52 +0000382 ExitScope();
Douglas Gregor23c94db2010-07-02 17:43:08 +0000383 assert(getCurScope() == 0 && "Scope imbalance!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000384}
385
386/// ParseExternalDeclaration:
Chris Lattner90b93d62008-12-08 21:59:01 +0000387///
Douglas Gregorc19923d2008-11-21 16:10:08 +0000388/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattnerc3018152007-08-10 20:57:02 +0000389/// function-definition
390/// declaration
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000391/// [C++0x] empty-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000392/// [GNU] asm-definition
Chris Lattnerc3018152007-08-10 20:57:02 +0000393/// [GNU] __extension__ external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000394/// [OBJC] objc-class-definition
395/// [OBJC] objc-class-declaration
396/// [OBJC] objc-alias-declaration
397/// [OBJC] objc-protocol-definition
398/// [OBJC] objc-method-definition
399/// [OBJC] @end
Douglas Gregorc19923d2008-11-21 16:10:08 +0000400/// [C++] linkage-specification
Reid Spencer5f016e22007-07-11 17:01:13 +0000401/// [GNU] asm-definition:
402/// simple-asm-expr ';'
403///
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000404/// [C++0x] empty-declaration:
405/// ';'
406///
Douglas Gregor45f96552009-09-04 06:33:52 +0000407/// [C++0x/GNU] 'extern' 'template' declaration
Douglas Gregor09a63c92010-08-24 14:14:45 +0000408Parser::DeclGroupPtrTy Parser::ParseExternalDeclaration(CXX0XAttributeList Attr,
409 ParsingDeclSpec *DS) {
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +0000410 ParenBraceBracketBalancer BalancerRAIIObj(*this);
411
John McCalld226f652010-08-21 09:40:31 +0000412 Decl *SingleDecl = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000413 switch (Tok.getKind()) {
414 case tok::semi:
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000415 if (!getLang().CPlusPlus0x)
416 Diag(Tok, diag::ext_top_level_semi)
Douglas Gregor849b2432010-03-31 17:46:05 +0000417 << FixItHint::CreateRemoval(Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000418
Reid Spencer5f016e22007-07-11 17:01:13 +0000419 ConsumeToken();
420 // TODO: Invoke action for top-level semicolon.
Chris Lattner682bf922009-03-29 16:50:03 +0000421 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000422 case tok::r_brace:
423 Diag(Tok, diag::err_expected_external_declaration);
424 ConsumeBrace();
Chris Lattner682bf922009-03-29 16:50:03 +0000425 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000426 case tok::eof:
427 Diag(Tok, diag::err_expected_external_declaration);
Chris Lattner682bf922009-03-29 16:50:03 +0000428 return DeclGroupPtrTy();
Chris Lattnerc3018152007-08-10 20:57:02 +0000429 case tok::kw___extension__: {
Chris Lattnerc46d1a12008-10-20 06:45:43 +0000430 // __extension__ silences extension warnings in the subexpression.
431 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner39146d62008-10-20 06:51:33 +0000432 ConsumeToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000433 return ParseExternalDeclaration(Attr);
Chris Lattnerc3018152007-08-10 20:57:02 +0000434 }
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000435 case tok::kw_asm: {
Sean Huntbbd37c62009-11-21 08:43:09 +0000436 if (Attr.HasAttr)
437 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
438 << Attr.Range;
439
John McCall60d7b3a2010-08-24 06:29:42 +0000440 ExprResult Result(ParseSimpleAsm());
Mike Stumpa6f01772008-06-19 19:28:49 +0000441
Anders Carlsson3f9424f2008-02-08 00:23:11 +0000442 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
443 "top-level asm block");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000444
Chris Lattner682bf922009-03-29 16:50:03 +0000445 if (Result.isInvalid())
446 return DeclGroupPtrTy();
John McCall9ae2f072010-08-23 23:25:46 +0000447 SingleDecl = Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), Result.get());
Chris Lattner682bf922009-03-29 16:50:03 +0000448 break;
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000449 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000450 case tok::at:
Chris Lattner682bf922009-03-29 16:50:03 +0000451 // @ is not a legal token unless objc is enabled, no need to check for ObjC.
452 /// FIXME: ParseObjCAtDirectives should return a DeclGroup for things like
453 /// @class foo, bar;
454 SingleDecl = ParseObjCAtDirectives();
455 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000456 case tok::minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000457 case tok::plus:
Chris Lattner682bf922009-03-29 16:50:03 +0000458 if (!getLang().ObjC1) {
459 Diag(Tok, diag::err_expected_external_declaration);
460 ConsumeToken();
461 return DeclGroupPtrTy();
462 }
463 SingleDecl = ParseObjCMethodDefinition();
464 break;
Douglas Gregor791215b2009-09-21 20:51:25 +0000465 case tok::code_completion:
Douglas Gregor23c94db2010-07-02 17:43:08 +0000466 Actions.CodeCompleteOrdinaryName(getCurScope(),
Douglas Gregore6b1bb62010-08-11 21:23:17 +0000467 ObjCImpDecl? Action::PCC_ObjCImplementation
468 : Action::PCC_Namespace);
Douglas Gregordc845342010-05-25 05:58:43 +0000469 ConsumeCodeCompletionToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000470 return ParseExternalDeclaration(Attr);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000471 case tok::kw_using:
Chris Lattner8f08cb72007-08-25 06:57:03 +0000472 case tok::kw_namespace:
Reid Spencer5f016e22007-07-11 17:01:13 +0000473 case tok::kw_typedef:
Douglas Gregoradcac882008-12-01 23:54:00 +0000474 case tok::kw_template:
475 case tok::kw_export: // As in 'export template'
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000476 case tok::kw_static_assert:
Chris Lattnerbae35112007-08-25 18:15:16 +0000477 // A function definition cannot start with a these keywords.
Chris Lattner97144fc2009-04-02 04:16:50 +0000478 {
479 SourceLocation DeclEnd;
Sean Huntbbd37c62009-11-21 08:43:09 +0000480 return ParseDeclaration(Declarator::FileContext, DeclEnd, Attr);
Chris Lattner97144fc2009-04-02 04:16:50 +0000481 }
Douglas Gregor45f96552009-09-04 06:33:52 +0000482 case tok::kw_extern:
483 if (getLang().CPlusPlus && NextToken().is(tok::kw_template)) {
484 // Extern templates
485 SourceLocation ExternLoc = ConsumeToken();
486 SourceLocation TemplateLoc = ConsumeToken();
487 SourceLocation DeclEnd;
488 return Actions.ConvertDeclToDeclGroup(
489 ParseExplicitInstantiation(ExternLoc, TemplateLoc, DeclEnd));
490 }
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Douglas Gregor45f96552009-09-04 06:33:52 +0000492 // FIXME: Detect C++ linkage specifications here?
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Douglas Gregor45f96552009-09-04 06:33:52 +0000494 // Fall through to handle other declarations or function definitions.
Mike Stump1eb44332009-09-09 15:08:12 +0000495
Reid Spencer5f016e22007-07-11 17:01:13 +0000496 default:
497 // We can't tell whether this is a function-definition or declaration yet.
Douglas Gregor09a63c92010-08-24 14:14:45 +0000498 if (DS)
499 return ParseDeclarationOrFunctionDefinition(*DS, Attr.AttrList);
500 else
501 return ParseDeclarationOrFunctionDefinition(Attr.AttrList);
Reid Spencer5f016e22007-07-11 17:01:13 +0000502 }
Mike Stump1eb44332009-09-09 15:08:12 +0000503
Chris Lattner682bf922009-03-29 16:50:03 +0000504 // This routine returns a DeclGroup, if the thing we parsed only contains a
505 // single decl, convert it now.
506 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000507}
508
Douglas Gregor1426e532009-05-12 21:31:51 +0000509/// \brief Determine whether the current token, if it occurs after a
510/// declarator, continues a declaration or declaration list.
Chris Lattnerc82daef2010-07-11 22:24:20 +0000511bool Parser::isDeclarationAfterDeclarator() const {
Douglas Gregor1426e532009-05-12 21:31:51 +0000512 return Tok.is(tok::equal) || // int X()= -> not a function def
513 Tok.is(tok::comma) || // int X(), -> not a function def
514 Tok.is(tok::semi) || // int X(); -> not a function def
515 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def
516 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def
517 (getLang().CPlusPlus &&
518 Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++]
519}
520
521/// \brief Determine whether the current token, if it occurs after a
522/// declarator, indicates the start of a function definition.
Chris Lattner004659a2010-07-11 22:42:07 +0000523bool Parser::isStartOfFunctionDefinition(const ParsingDeclarator &Declarator) {
524 assert(Declarator.getTypeObject(0).Kind == DeclaratorChunk::Function &&
525 "Isn't a function declarator");
Chris Lattner5d1c6192009-12-06 18:34:27 +0000526 if (Tok.is(tok::l_brace)) // int X() {}
527 return true;
528
Chris Lattner004659a2010-07-11 22:42:07 +0000529 // Handle K&R C argument lists: int X(f) int f; {}
530 if (!getLang().CPlusPlus &&
531 Declarator.getTypeObject(0).Fun.isKNRPrototype())
532 return isDeclarationSpecifier();
533
Chris Lattner5d1c6192009-12-06 18:34:27 +0000534 return Tok.is(tok::colon) || // X() : Base() {} (used for ctors)
535 Tok.is(tok::kw_try); // X() try { ... }
Douglas Gregor1426e532009-05-12 21:31:51 +0000536}
537
Reid Spencer5f016e22007-07-11 17:01:13 +0000538/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
539/// a declaration. We can't tell which we have until we read up to the
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000540/// compound-statement in function-definition. TemplateParams, if
541/// non-NULL, provides the template parameters when we're parsing a
Mike Stump1eb44332009-09-09 15:08:12 +0000542/// C++ template-declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +0000543///
544/// function-definition: [C99 6.9.1]
Chris Lattnera798ebc2008-04-05 05:52:15 +0000545/// decl-specs declarator declaration-list[opt] compound-statement
546/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000547/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattnera798ebc2008-04-05 05:52:15 +0000548///
Reid Spencer5f016e22007-07-11 17:01:13 +0000549/// declaration: [C99 6.7]
Chris Lattner697e15f2007-08-22 06:06:56 +0000550/// declaration-specifiers init-declarator-list[opt] ';'
551/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Reid Spencer5f016e22007-07-11 17:01:13 +0000552/// [OMP] threadprivate-directive [TODO]
553///
Chris Lattner682bf922009-03-29 16:50:03 +0000554Parser::DeclGroupPtrTy
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000555Parser::ParseDeclarationOrFunctionDefinition(ParsingDeclSpec &DS,
556 AttributeList *Attr,
Sean Huntbbd37c62009-11-21 08:43:09 +0000557 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000558 // Parse the common declaration-specifiers piece.
Sean Huntbbd37c62009-11-21 08:43:09 +0000559 if (Attr)
560 DS.AddAttributes(Attr);
561
Douglas Gregor0efc2c12010-01-13 17:31:36 +0000562 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
Mike Stumpa6f01772008-06-19 19:28:49 +0000563
Reid Spencer5f016e22007-07-11 17:01:13 +0000564 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
565 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner00073222007-10-09 17:23:58 +0000566 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000567 ConsumeToken();
John McCalld226f652010-08-21 09:40:31 +0000568 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
John McCall54abf7d2009-11-04 02:18:39 +0000569 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +0000570 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000571 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000572
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000573 // ObjC2 allows prefix attributes on class interfaces and protocols.
574 // FIXME: This still needs better diagnostics. We should only accept
575 // attributes here, no types, etc.
Chris Lattner00073222007-10-09 17:23:58 +0000576 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000577 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +0000578 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000579 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
580 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattnercb53b362007-12-27 19:57:00 +0000581 SkipUntil(tok::semi); // FIXME: better skip?
Chris Lattner682bf922009-03-29 16:50:03 +0000582 return DeclGroupPtrTy();
Chris Lattnercb53b362007-12-27 19:57:00 +0000583 }
John McCalld8ac0572009-11-03 19:26:08 +0000584
John McCall54abf7d2009-11-04 02:18:39 +0000585 DS.abort();
586
Fariborz Jahanian0de2ae22008-01-02 19:17:38 +0000587 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000588 unsigned DiagID;
589 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
590 Diag(AtLoc, DiagID) << PrevSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000591
John McCalld226f652010-08-21 09:40:31 +0000592 Decl *TheDecl = 0;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000593 if (Tok.isObjCAtKeyword(tok::objc_protocol))
Chris Lattner682bf922009-03-29 16:50:03 +0000594 TheDecl = ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
595 else
596 TheDecl = ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
597 return Actions.ConvertDeclToDeclGroup(TheDecl);
Steve Naroffdac269b2007-08-20 21:31:48 +0000598 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000599
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000600 // If the declspec consisted only of 'extern' and we have a string
601 // literal following it, this must be a C++ linkage specifier like
602 // 'extern "C"'.
Chris Lattner3c6f6a72008-01-12 07:08:43 +0000603 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000604 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
Chris Lattner682bf922009-03-29 16:50:03 +0000605 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
John McCalld226f652010-08-21 09:40:31 +0000606 Decl *TheDecl = ParseLinkage(DS, Declarator::FileContext);
Chris Lattner682bf922009-03-29 16:50:03 +0000607 return Actions.ConvertDeclToDeclGroup(TheDecl);
608 }
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000609
John McCalld8ac0572009-11-03 19:26:08 +0000610 return ParseDeclGroup(DS, Declarator::FileContext, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000611}
612
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000613Parser::DeclGroupPtrTy
614Parser::ParseDeclarationOrFunctionDefinition(AttributeList *Attr,
615 AccessSpecifier AS) {
616 ParsingDeclSpec DS(*this);
617 return ParseDeclarationOrFunctionDefinition(DS, Attr, AS);
618}
619
Reid Spencer5f016e22007-07-11 17:01:13 +0000620/// ParseFunctionDefinition - We parsed and verified that the specified
621/// Declarator is well formed. If this is a K&R-style function, read the
622/// parameters declaration-list, then start the compound-statement.
623///
Chris Lattnera798ebc2008-04-05 05:52:15 +0000624/// function-definition: [C99 6.9.1]
625/// decl-specs declarator declaration-list[opt] compound-statement
626/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000627/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregor7ad83902008-11-05 04:29:56 +0000628/// [C++] function-definition: [C++ 8.4]
Chris Lattner23c4b182009-03-29 17:18:04 +0000629/// decl-specifier-seq[opt] declarator ctor-initializer[opt]
630/// function-body
Douglas Gregor7ad83902008-11-05 04:29:56 +0000631/// [C++] function-definition: [C++ 8.4]
Sebastian Redld3a413d2009-04-26 20:35:05 +0000632/// decl-specifier-seq[opt] declarator function-try-block
Reid Spencer5f016e22007-07-11 17:01:13 +0000633///
John McCalld226f652010-08-21 09:40:31 +0000634Decl *Parser::ParseFunctionDefinition(ParsingDeclarator &D,
Douglas Gregor52591bf2009-06-24 00:54:41 +0000635 const ParsedTemplateInfo &TemplateInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000636 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
637 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
638 "This isn't a function declarator!");
639 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stumpa6f01772008-06-19 19:28:49 +0000640
Chris Lattnera798ebc2008-04-05 05:52:15 +0000641 // If this is C90 and the declspecs were completely missing, fudge in an
642 // implicit int. We do this here because this is the only place where
643 // declaration-specifiers are completely optional in the grammar.
Chris Lattner2a327d12009-02-27 18:35:46 +0000644 if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) {
Chris Lattnera798ebc2008-04-05 05:52:15 +0000645 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000646 unsigned DiagID;
Chris Lattner31c28682008-10-20 02:01:34 +0000647 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
648 D.getIdentifierLoc(),
John McCallfec54012009-08-03 20:12:06 +0000649 PrevSpec, DiagID);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000650 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
Chris Lattnera798ebc2008-04-05 05:52:15 +0000651 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000652
Reid Spencer5f016e22007-07-11 17:01:13 +0000653 // If this declaration was formed with a K&R-style identifier list for the
654 // arguments, parse declarations for all of the args next.
655 // int foo(a,b) int a; float b; {}
Chris Lattner004659a2010-07-11 22:42:07 +0000656 if (FTI.isKNRPrototype())
Reid Spencer5f016e22007-07-11 17:01:13 +0000657 ParseKNRParamDeclarations(D);
658
Douglas Gregor7ad83902008-11-05 04:29:56 +0000659 // We should have either an opening brace or, in a C++ constructor,
660 // we may have a colon.
Sebastian Redld3a413d2009-04-26 20:35:05 +0000661 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon) &&
662 Tok.isNot(tok::kw_try)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000663 Diag(Tok, diag::err_expected_fn_body);
664
665 // Skip over garbage, until we get to '{'. Don't eat the '{'.
666 SkipUntil(tok::l_brace, true, true);
Mike Stumpa6f01772008-06-19 19:28:49 +0000667
Reid Spencer5f016e22007-07-11 17:01:13 +0000668 // If we didn't find the '{', bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000669 if (Tok.isNot(tok::l_brace))
John McCalld226f652010-08-21 09:40:31 +0000670 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000671 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000672
Chris Lattnerb652cea2007-10-09 17:14:05 +0000673 // Enter a scope for the function body.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000674 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000675
Chris Lattnerb652cea2007-10-09 17:14:05 +0000676 // Tell the actions module that we have entered a function definition with the
677 // specified Declarator for the function.
John McCalld226f652010-08-21 09:40:31 +0000678 Decl *Res = TemplateInfo.TemplateParams?
Douglas Gregor23c94db2010-07-02 17:43:08 +0000679 Actions.ActOnStartOfFunctionTemplateDef(getCurScope(),
Douglas Gregor52591bf2009-06-24 00:54:41 +0000680 Action::MultiTemplateParamsArg(Actions,
681 TemplateInfo.TemplateParams->data(),
682 TemplateInfo.TemplateParams->size()),
683 D)
Douglas Gregor23c94db2010-07-02 17:43:08 +0000684 : Actions.ActOnStartOfFunctionDef(getCurScope(), D);
Mike Stumpa6f01772008-06-19 19:28:49 +0000685
John McCall54abf7d2009-11-04 02:18:39 +0000686 // Break out of the ParsingDeclarator context before we parse the body.
687 D.complete(Res);
688
689 // Break out of the ParsingDeclSpec context, too. This const_cast is
690 // safe because we're always the sole owner.
691 D.getMutableDeclSpec().abort();
692
Sebastian Redld3a413d2009-04-26 20:35:05 +0000693 if (Tok.is(tok::kw_try))
694 return ParseFunctionTryBlock(Res);
695
Douglas Gregor7ad83902008-11-05 04:29:56 +0000696 // If we have a colon, then we're probably parsing a C++
697 // ctor-initializer.
John McCalld6ca8da2010-04-10 07:37:23 +0000698 if (Tok.is(tok::colon)) {
Douglas Gregor7ad83902008-11-05 04:29:56 +0000699 ParseConstructorInitializer(Res);
John McCalld6ca8da2010-04-10 07:37:23 +0000700
701 // Recover from error.
702 if (!Tok.is(tok::l_brace)) {
John McCall9ae2f072010-08-23 23:25:46 +0000703 Actions.ActOnFinishFunctionBody(Res, 0);
John McCalld6ca8da2010-04-10 07:37:23 +0000704 return Res;
705 }
706 } else
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000707 Actions.ActOnDefaultCtorInitializers(Res);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000708
Chris Lattner40e9bc82009-03-05 00:49:17 +0000709 return ParseFunctionStatementBody(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000710}
711
712/// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
713/// types for a function with a K&R-style identifier list for arguments.
714void Parser::ParseKNRParamDeclarations(Declarator &D) {
715 // We know that the top-level of this declarator is a function.
716 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
717
Chris Lattner04421082008-04-08 04:40:51 +0000718 // Enter function-declaration scope, limiting any declarators to the
719 // function prototype scope, including parameter declarators.
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000720 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattner04421082008-04-08 04:40:51 +0000721
Reid Spencer5f016e22007-07-11 17:01:13 +0000722 // Read all the argument declarations.
723 while (isDeclarationSpecifier()) {
724 SourceLocation DSStart = Tok.getLocation();
Mike Stumpa6f01772008-06-19 19:28:49 +0000725
Reid Spencer5f016e22007-07-11 17:01:13 +0000726 // Parse the common declaration-specifiers piece.
727 DeclSpec DS;
728 ParseDeclarationSpecifiers(DS);
Mike Stumpa6f01772008-06-19 19:28:49 +0000729
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 // C99 6.9.1p6: 'each declaration in the declaration list shall have at
731 // least one declarator'.
732 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with
733 // the declarations though. It's trivial to ignore them, really hard to do
734 // anything else with them.
Chris Lattner00073222007-10-09 17:23:58 +0000735 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000736 Diag(DSStart, diag::err_declaration_does_not_declare_param);
737 ConsumeToken();
738 continue;
739 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000740
Reid Spencer5f016e22007-07-11 17:01:13 +0000741 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
742 // than register.
743 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
744 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
745 Diag(DS.getStorageClassSpecLoc(),
746 diag::err_invalid_storage_class_in_func_decl);
747 DS.ClearStorageClassSpecs();
748 }
749 if (DS.isThreadSpecified()) {
750 Diag(DS.getThreadSpecLoc(),
751 diag::err_invalid_storage_class_in_func_decl);
752 DS.ClearStorageClassSpecs();
753 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000754
Reid Spencer5f016e22007-07-11 17:01:13 +0000755 // Parse the first declarator attached to this declspec.
756 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
757 ParseDeclarator(ParmDeclarator);
758
759 // Handle the full declarator list.
760 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000761 // If attributes are present, parse them.
Richard Pennington33efe2f2010-02-23 12:22:13 +0000762 if (Tok.is(tok::kw___attribute)) {
763 SourceLocation Loc;
764 AttributeList *AttrList = ParseGNUAttributes(&Loc);
765 ParmDeclarator.AddAttributes(AttrList, Loc);
766 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000767
Reid Spencer5f016e22007-07-11 17:01:13 +0000768 // Ask the actions module to compute the type for this declarator.
John McCalld226f652010-08-21 09:40:31 +0000769 Decl *Param =
Douglas Gregor23c94db2010-07-02 17:43:08 +0000770 Actions.ActOnParamDeclarator(getCurScope(), ParmDeclarator);
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000771
Mike Stumpa6f01772008-06-19 19:28:49 +0000772 if (Param &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000773 // A missing identifier has already been diagnosed.
774 ParmDeclarator.getIdentifier()) {
775
776 // Scan the argument list looking for the correct param to apply this
777 // type.
778 for (unsigned i = 0; ; ++i) {
779 // C99 6.9.1p6: those declarators shall declare only identifiers from
780 // the identifier list.
781 if (i == FTI.NumArgs) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000782 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattner6898e332008-11-19 07:51:13 +0000783 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000784 break;
785 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000786
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
788 // Reject redefinitions of parameters.
Chris Lattner04421082008-04-08 04:40:51 +0000789 if (FTI.ArgInfo[i].Param) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000790 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +0000791 diag::err_param_redefinition)
Chris Lattner6898e332008-11-19 07:51:13 +0000792 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000793 } else {
Chris Lattner04421082008-04-08 04:40:51 +0000794 FTI.ArgInfo[i].Param = Param;
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 }
796 break;
797 }
798 }
799 }
800
801 // If we don't have a comma, it is either the end of the list (a ';') or
802 // an error, bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000803 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000804 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000805
Reid Spencer5f016e22007-07-11 17:01:13 +0000806 // Consume the comma.
807 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000808
Reid Spencer5f016e22007-07-11 17:01:13 +0000809 // Parse the next declarator.
810 ParmDeclarator.clear();
811 ParseDeclarator(ParmDeclarator);
812 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000813
Chris Lattner00073222007-10-09 17:23:58 +0000814 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000815 ConsumeToken();
816 } else {
817 Diag(Tok, diag::err_parse_error);
818 // Skip to end of block or statement
819 SkipUntil(tok::semi, true);
Chris Lattner00073222007-10-09 17:23:58 +0000820 if (Tok.is(tok::semi))
Reid Spencer5f016e22007-07-11 17:01:13 +0000821 ConsumeToken();
822 }
823 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000824
Reid Spencer5f016e22007-07-11 17:01:13 +0000825 // The actions module must verify that all arguments were declared.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000826 Actions.ActOnFinishKNRParamDeclarations(getCurScope(), D, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000827}
828
829
830/// ParseAsmStringLiteral - This is just a normal string-literal, but is not
831/// allowed to be a wide string, and is not subject to character translation.
832///
833/// [GNU] asm-string-literal:
834/// string-literal
835///
John McCall60d7b3a2010-08-24 06:29:42 +0000836Parser::ExprResult Parser::ParseAsmStringLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000837 if (!isTokenStringLiteral()) {
838 Diag(Tok, diag::err_expected_string_literal);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000839 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000840 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000841
John McCall60d7b3a2010-08-24 06:29:42 +0000842 ExprResult Res(ParseStringLiteralExpression());
Sebastian Redleffa8d12008-12-10 00:02:53 +0000843 if (Res.isInvalid()) return move(Res);
Mike Stumpa6f01772008-06-19 19:28:49 +0000844
Reid Spencer5f016e22007-07-11 17:01:13 +0000845 // TODO: Diagnose: wide string literal in 'asm'
Mike Stumpa6f01772008-06-19 19:28:49 +0000846
Sebastian Redleffa8d12008-12-10 00:02:53 +0000847 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000848}
849
850/// ParseSimpleAsm
851///
852/// [GNU] simple-asm-expr:
853/// 'asm' '(' asm-string-literal ')'
854///
John McCall60d7b3a2010-08-24 06:29:42 +0000855Parser::ExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
Chris Lattner00073222007-10-09 17:23:58 +0000856 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000857 SourceLocation Loc = ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000858
John McCall7a6ae742010-01-25 22:27:48 +0000859 if (Tok.is(tok::kw_volatile)) {
John McCall841d5e62010-01-25 23:12:50 +0000860 // Remove from the end of 'asm' to the end of 'volatile'.
861 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
862 PP.getLocForEndOfToken(Tok.getLocation()));
863
864 Diag(Tok, diag::warn_file_asm_volatile)
Douglas Gregor849b2432010-03-31 17:46:05 +0000865 << FixItHint::CreateRemoval(RemovalRange);
John McCall7a6ae742010-01-25 22:27:48 +0000866 ConsumeToken();
867 }
868
Chris Lattner00073222007-10-09 17:23:58 +0000869 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000870 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Sebastian Redl61364dd2008-12-11 19:30:53 +0000871 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000872 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000873
Sebastian Redlab197ba2009-02-09 18:23:29 +0000874 Loc = ConsumeParen();
Mike Stumpa6f01772008-06-19 19:28:49 +0000875
John McCall60d7b3a2010-08-24 06:29:42 +0000876 ExprResult Result(ParseAsmStringLiteral());
Mike Stumpa6f01772008-06-19 19:28:49 +0000877
Sebastian Redlab197ba2009-02-09 18:23:29 +0000878 if (Result.isInvalid()) {
879 SkipUntil(tok::r_paren, true, true);
880 if (EndLoc)
881 *EndLoc = Tok.getLocation();
882 ConsumeAnyToken();
883 } else {
884 Loc = MatchRHSPunctuation(tok::r_paren, Loc);
885 if (EndLoc)
886 *EndLoc = Loc;
887 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000888
Sebastian Redleffa8d12008-12-10 00:02:53 +0000889 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000890}
891
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000892/// TryAnnotateTypeOrScopeToken - If the current token position is on a
893/// typename (possibly qualified in C++) or a C++ scope specifier not followed
894/// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
895/// with a single annotation token representing the typename or C++ scope
896/// respectively.
897/// This simplifies handling of C++ scope specifiers and allows efficient
898/// backtracking without the need to re-parse and resolve nested-names and
899/// typenames.
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000900/// It will mainly be called when we expect to treat identifiers as typenames
901/// (if they are typenames). For example, in C we do not expect identifiers
902/// inside expressions to be treated as typenames so it will not be called
903/// for expressions in C.
904/// The benefit for C/ObjC is that a typename will be annotated and
Steve Naroffb43a50f2009-01-28 19:39:02 +0000905/// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000906/// will not be called twice, once to check whether we have a declaration
907/// specifier, and another one to get the actual type inside
908/// ParseDeclarationSpecifiers).
Chris Lattnera7bc7c82009-01-04 23:23:14 +0000909///
John McCall9ba61662010-02-26 08:45:28 +0000910/// This returns true if an error occurred.
Mike Stump1eb44332009-09-09 15:08:12 +0000911///
Chris Lattner55a7cef2009-01-05 00:13:00 +0000912/// Note that this routine emits an error if you call it with ::new or ::delete
913/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +0000914bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000915 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)
John McCallae03cb52009-12-19 00:35:18 +0000916 || Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope)) &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000917 "Cannot be a type or scope token!");
Mike Stump1eb44332009-09-09 15:08:12 +0000918
Douglas Gregord57959a2009-03-27 23:10:48 +0000919 if (Tok.is(tok::kw_typename)) {
920 // Parse a C++ typename-specifier, e.g., "typename T::type".
921 //
922 // typename-specifier:
923 // 'typename' '::' [opt] nested-name-specifier identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000924 // 'typename' '::' [opt] nested-name-specifier template [opt]
Douglas Gregor17343172009-04-01 00:28:59 +0000925 // simple-template-id
Douglas Gregord57959a2009-03-27 23:10:48 +0000926 SourceLocation TypenameLoc = ConsumeToken();
927 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +0000928 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/ParsedType(), false))
John McCall9ba61662010-02-26 08:45:28 +0000929 return true;
930 if (!SS.isSet()) {
Douglas Gregord57959a2009-03-27 23:10:48 +0000931 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
John McCall9ba61662010-02-26 08:45:28 +0000932 return true;
Douglas Gregord57959a2009-03-27 23:10:48 +0000933 }
934
935 TypeResult Ty;
936 if (Tok.is(tok::identifier)) {
937 // FIXME: check whether the next token is '<', first!
Douglas Gregor23c94db2010-07-02 17:43:08 +0000938 Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
Douglas Gregor1a15dae2010-06-16 22:31:08 +0000939 *Tok.getIdentifierInfo(),
Douglas Gregord57959a2009-03-27 23:10:48 +0000940 Tok.getLocation());
Douglas Gregor17343172009-04-01 00:28:59 +0000941 } else if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000942 TemplateIdAnnotation *TemplateId
Douglas Gregor17343172009-04-01 00:28:59 +0000943 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
944 if (TemplateId->Kind == TNK_Function_template) {
945 Diag(Tok, diag::err_typename_refers_to_non_type_template)
946 << Tok.getAnnotationRange();
John McCall9ba61662010-02-26 08:45:28 +0000947 return true;
Douglas Gregor17343172009-04-01 00:28:59 +0000948 }
Douglas Gregord57959a2009-03-27 23:10:48 +0000949
Douglas Gregor31a19b62009-04-01 21:51:26 +0000950 AnnotateTemplateIdTokenAsType(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000951 assert(Tok.is(tok::annot_typename) &&
Douglas Gregor17343172009-04-01 00:28:59 +0000952 "AnnotateTemplateIdTokenAsType isn't working properly");
Douglas Gregor31a19b62009-04-01 21:51:26 +0000953 if (Tok.getAnnotationValue())
Douglas Gregor23c94db2010-07-02 17:43:08 +0000954 Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
Douglas Gregor1a15dae2010-06-16 22:31:08 +0000955 SourceLocation(),
John McCallb3d87482010-08-24 05:47:05 +0000956 getTypeAnnotation(Tok));
Douglas Gregor31a19b62009-04-01 21:51:26 +0000957 else
958 Ty = true;
Douglas Gregor17343172009-04-01 00:28:59 +0000959 } else {
960 Diag(Tok, diag::err_expected_type_name_after_typename)
961 << SS.getRange();
John McCall9ba61662010-02-26 08:45:28 +0000962 return true;
Douglas Gregor17343172009-04-01 00:28:59 +0000963 }
964
Sebastian Redl39d67112010-02-08 19:35:18 +0000965 SourceLocation EndLoc = Tok.getLastLoc();
Douglas Gregor17343172009-04-01 00:28:59 +0000966 Tok.setKind(tok::annot_typename);
John McCallb3d87482010-08-24 05:47:05 +0000967 setTypeAnnotation(Tok, Ty.isInvalid() ? ParsedType() : Ty.get());
Sebastian Redl39d67112010-02-08 19:35:18 +0000968 Tok.setAnnotationEndLoc(EndLoc);
Douglas Gregor17343172009-04-01 00:28:59 +0000969 Tok.setLocation(TypenameLoc);
970 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +0000971 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +0000972 }
973
John McCallae03cb52009-12-19 00:35:18 +0000974 // Remembers whether the token was originally a scope annotation.
975 bool wasScopeAnnotation = Tok.is(tok::annot_cxxscope);
976
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000977 CXXScopeSpec SS;
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000978 if (getLang().CPlusPlus)
John McCallb3d87482010-08-24 05:47:05 +0000979 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext))
John McCall9ba61662010-02-26 08:45:28 +0000980 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000981
982 if (Tok.is(tok::identifier)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000983 // Determine whether the identifier is a type name.
John McCallb3d87482010-08-24 05:47:05 +0000984 if (ParsedType Ty = Actions.getTypeName(*Tok.getIdentifierInfo(),
985 Tok.getLocation(), getCurScope(),
986 &SS)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000987 // This is a typename. Replace the current token in-place with an
988 // annotation type token.
Chris Lattnerb31757b2009-01-06 05:06:21 +0000989 Tok.setKind(tok::annot_typename);
John McCallb3d87482010-08-24 05:47:05 +0000990 setTypeAnnotation(Tok, Ty);
Chris Lattner608d1fc2009-01-05 01:49:50 +0000991 Tok.setAnnotationEndLoc(Tok.getLocation());
992 if (SS.isNotEmpty()) // it was a C++ qualified type name.
993 Tok.setLocation(SS.getBeginLoc());
Mike Stump1eb44332009-09-09 15:08:12 +0000994
Chris Lattner608d1fc2009-01-05 01:49:50 +0000995 // In case the tokens were cached, have Preprocessor replace
996 // them with the annotation token.
997 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +0000998 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000999 }
Douglas Gregor39a8de12009-02-25 19:37:18 +00001000
1001 if (!getLang().CPlusPlus) {
Chris Lattner608d1fc2009-01-05 01:49:50 +00001002 // If we're in C, we can't have :: tokens at all (the lexer won't return
1003 // them). If the identifier is not a type, then it can't be scope either,
Mike Stump1eb44332009-09-09 15:08:12 +00001004 // just early exit.
Chris Lattner608d1fc2009-01-05 01:49:50 +00001005 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001006 }
Mike Stump1eb44332009-09-09 15:08:12 +00001007
Douglas Gregor39a8de12009-02-25 19:37:18 +00001008 // If this is a template-id, annotate with a template-id or type token.
Douglas Gregor55f6b142009-02-09 18:46:07 +00001009 if (NextToken().is(tok::less)) {
Douglas Gregor7532dc62009-03-30 22:58:21 +00001010 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +00001011 UnqualifiedId TemplateName;
1012 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001013 bool MemberOfUnknownSpecialization;
Mike Stump1eb44332009-09-09 15:08:12 +00001014 if (TemplateNameKind TNK
Abramo Bagnara7c153532010-08-06 12:11:11 +00001015 = Actions.isTemplateName(getCurScope(), SS,
1016 /*hasTemplateKeyword=*/false, TemplateName,
John McCallb3d87482010-08-24 05:47:05 +00001017 /*ObjectType=*/ ParsedType(),
1018 EnteringContext,
Abramo Bagnara7c153532010-08-06 12:11:11 +00001019 Template, MemberOfUnknownSpecialization)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001020 // Consume the identifier.
1021 ConsumeToken();
1022 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName)) {
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001023 // If an unrecoverable error occurred, we need to return true here,
1024 // because the token stream is in a damaged state. We may not return
1025 // a valid identifier.
John McCall9ba61662010-02-26 08:45:28 +00001026 return true;
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001027 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001028 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00001029 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001030
Douglas Gregor39a8de12009-02-25 19:37:18 +00001031 // The current token, which is either an identifier or a
1032 // template-id, is not part of the annotation. Fall through to
1033 // push that token back into the stream and complete the C++ scope
1034 // specifier annotation.
Mike Stump1eb44332009-09-09 15:08:12 +00001035 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001036
Douglas Gregor39a8de12009-02-25 19:37:18 +00001037 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001038 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +00001039 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +00001040 if (TemplateId->Kind == TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001041 // A template-id that refers to a type was parsed into a
1042 // template-id annotation in a context where we weren't allowed
1043 // to produce a type annotation token. Update the template-id
1044 // annotation token to a type annotation token now.
Douglas Gregor31a19b62009-04-01 21:51:26 +00001045 AnnotateTemplateIdTokenAsType(&SS);
John McCall9ba61662010-02-26 08:45:28 +00001046 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +00001047 }
1048 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001049
Chris Lattner6ec76d42009-01-04 22:32:19 +00001050 if (SS.isEmpty())
John McCall9ba61662010-02-26 08:45:28 +00001051 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001052
Chris Lattner6ec76d42009-01-04 22:32:19 +00001053 // A C++ scope specifier that isn't followed by a typename.
1054 // Push the current token back into the token stream (or revert it if it is
1055 // cached) and use an annotation scope token for current token.
1056 if (PP.isBacktrackEnabled())
1057 PP.RevertCachedTokens(1);
1058 else
1059 PP.EnterToken(Tok);
1060 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001061 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001062 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001063
John McCallae03cb52009-12-19 00:35:18 +00001064 // In case the tokens were cached, have Preprocessor replace them
1065 // with the annotation token. We don't need to do this if we've
1066 // just reverted back to the state we were in before being called.
1067 if (!wasScopeAnnotation)
1068 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +00001069 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001070}
1071
1072/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
Douglas Gregor39a8de12009-02-25 19:37:18 +00001073/// annotates C++ scope specifiers and template-ids. This returns
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001074/// true if the token was annotated or there was an error that could not be
1075/// recovered from.
Mike Stump1eb44332009-09-09 15:08:12 +00001076///
Chris Lattner55a7cef2009-01-05 00:13:00 +00001077/// Note that this routine emits an error if you call it with ::new or ::delete
1078/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +00001079bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001080 assert(getLang().CPlusPlus &&
Chris Lattner6ec76d42009-01-04 22:32:19 +00001081 "Call sites of this function should be guarded by checking for C++");
Chris Lattner7452c6f2009-01-05 01:24:05 +00001082 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
1083 "Cannot be a type or scope token!");
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001084
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001085 CXXScopeSpec SS;
John McCallb3d87482010-08-24 05:47:05 +00001086 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext))
John McCall9ba61662010-02-26 08:45:28 +00001087 return true;
Jeffrey Yasskinedc28772010-04-07 23:29:58 +00001088 if (SS.isEmpty())
John McCall9ba61662010-02-26 08:45:28 +00001089 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001090
Chris Lattner6ec76d42009-01-04 22:32:19 +00001091 // Push the current token back into the token stream (or revert it if it is
1092 // cached) and use an annotation scope token for current token.
1093 if (PP.isBacktrackEnabled())
1094 PP.RevertCachedTokens(1);
1095 else
1096 PP.EnterToken(Tok);
1097 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001098 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001099 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001100
Chris Lattner6ec76d42009-01-04 22:32:19 +00001101 // In case the tokens were cached, have Preprocessor replace them with the
1102 // annotation token.
1103 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +00001104 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001105}
John McCall6c94a6d2009-11-03 19:33:12 +00001106
Douglas Gregordc845342010-05-25 05:58:43 +00001107void Parser::CodeCompletionRecovery() {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001108 for (Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregordc845342010-05-25 05:58:43 +00001109 if (S->getFlags() & Scope::FnScope) {
Douglas Gregore6b1bb62010-08-11 21:23:17 +00001110 Actions.CodeCompleteOrdinaryName(getCurScope(), Action::PCC_RecoveryInFunction);
Douglas Gregordc845342010-05-25 05:58:43 +00001111 return;
1112 }
1113
1114 if (S->getFlags() & Scope::ClassScope) {
Douglas Gregore6b1bb62010-08-11 21:23:17 +00001115 Actions.CodeCompleteOrdinaryName(getCurScope(), Action::PCC_Class);
Douglas Gregordc845342010-05-25 05:58:43 +00001116 return;
1117 }
1118 }
1119
Douglas Gregore6b1bb62010-08-11 21:23:17 +00001120 Actions.CodeCompleteOrdinaryName(getCurScope(), Action::PCC_Namespace);
Douglas Gregordc845342010-05-25 05:58:43 +00001121}
1122
John McCall6c94a6d2009-11-03 19:33:12 +00001123// Anchor the Parser::FieldCallback vtable to this translation unit.
1124// We use a spurious method instead of the destructor because
1125// destroying FieldCallbacks can actually be slightly
1126// performance-sensitive.
1127void Parser::FieldCallback::_anchor() {
1128}