blob: ac78f114a967be67b106cd98cef39637bdf0e647 [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/Parse/DeclSpec.h"
17#include "clang/Parse/Scope.h"
Douglas Gregor314b97f2009-11-10 19:49:08 +000018#include "clang/Parse/Template.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;
Chris Lattnerb28317a2009-03-28 19:18:32 +000032 ObjCImpDecl = DeclPtrTy();
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +000033
34 // Add #pragma handlers. These are removed and destroyed in the
35 // destructor.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000036 OptionsHandler.reset(new PragmaOptionsHandler(actions));
37 PP.AddPragmaHandler(OptionsHandler.get());
Daniel Dunbar861800c2010-05-26 23:29:06 +000038
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000039 PackHandler.reset(new PragmaPackHandler(actions));
40 PP.AddPragmaHandler(PackHandler.get());
Mike Stump1eb44332009-09-09 15:08:12 +000041
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000042 UnusedHandler.reset(new PragmaUnusedHandler(actions, *this));
43 PP.AddPragmaHandler(UnusedHandler.get());
Eli Friedman99914792009-06-05 00:49:58 +000044
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000045 WeakHandler.reset(new PragmaWeakHandler(actions));
46 PP.AddPragmaHandler(WeakHandler.get());
Reid Spencer5f016e22007-07-11 17:01:13 +000047}
48
Chris Lattner0102c302009-03-05 07:24:28 +000049/// If a crash happens while the parser is active, print out a line indicating
50/// what the current token is.
51void PrettyStackTraceParserEntry::print(llvm::raw_ostream &OS) const {
52 const Token &Tok = P.getCurToken();
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000053 if (Tok.is(tok::eof)) {
Chris Lattner0102c302009-03-05 07:24:28 +000054 OS << "<eof> parser at end of file\n";
55 return;
56 }
Mike Stump1eb44332009-09-09 15:08:12 +000057
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000058 if (Tok.getLocation().isInvalid()) {
59 OS << "<unknown> parser at unknown location\n";
60 return;
61 }
Mike Stump1eb44332009-09-09 15:08:12 +000062
Chris Lattner0102c302009-03-05 07:24:28 +000063 const Preprocessor &PP = P.getPreprocessor();
64 Tok.getLocation().print(OS, PP.getSourceManager());
Daniel Dunbar9fa31dd2009-10-17 06:13:04 +000065 if (Tok.isAnnotation())
66 OS << ": at annotation token \n";
67 else
68 OS << ": current parser token '" << PP.getSpelling(Tok) << "'\n";
Douglas Gregorf780abc2008-12-30 03:27:21 +000069}
Reid Spencer5f016e22007-07-11 17:01:13 +000070
Chris Lattner0102c302009-03-05 07:24:28 +000071
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000072DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
Chris Lattner0102c302009-03-05 07:24:28 +000073 return Diags.Report(FullSourceLoc(Loc, PP.getSourceManager()), DiagID);
Chris Lattner1ab3b962008-11-18 07:48:38 +000074}
75
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000076DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
Chris Lattner1ab3b962008-11-18 07:48:38 +000077 return Diag(Tok.getLocation(), DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +000078}
79
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000080/// \brief Emits a diagnostic suggesting parentheses surrounding a
81/// given range.
82///
83/// \param Loc The location where we'll emit the diagnostic.
84/// \param Loc The kind of diagnostic to emit.
85/// \param ParenRange Source range enclosing code that should be parenthesized.
86void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
87 SourceRange ParenRange) {
Douglas Gregorb2fb6de2009-02-27 17:53:17 +000088 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
89 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000090 // We can't display the parentheses, so just dig the
91 // warning/error and return.
92 Diag(Loc, DK);
93 return;
94 }
Mike Stump1eb44332009-09-09 15:08:12 +000095
96 Diag(Loc, DK)
Douglas Gregor849b2432010-03-31 17:46:05 +000097 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
98 << FixItHint::CreateInsertion(EndLoc, ")");
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000099}
100
Reid Spencer5f016e22007-07-11 17:01:13 +0000101/// MatchRHSPunctuation - For punctuation with a LHS and RHS (e.g. '['/']'),
102/// this helper function matches and consumes the specified RHS token if
103/// present. If not present, it emits the specified diagnostic indicating
104/// that the parser failed to match the RHS of the token at LHSLoc. LHSName
105/// should be the name of the unmatched LHS token.
106SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok,
107 SourceLocation LHSLoc) {
Mike Stumpa6f01772008-06-19 19:28:49 +0000108
Chris Lattner00073222007-10-09 17:23:58 +0000109 if (Tok.is(RHSTok))
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 return ConsumeAnyToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000111
Reid Spencer5f016e22007-07-11 17:01:13 +0000112 SourceLocation R = Tok.getLocation();
113 const char *LHSName = "unknown";
114 diag::kind DID = diag::err_parse_error;
115 switch (RHSTok) {
116 default: break;
117 case tok::r_paren : LHSName = "("; DID = diag::err_expected_rparen; break;
118 case tok::r_brace : LHSName = "{"; DID = diag::err_expected_rbrace; break;
119 case tok::r_square: LHSName = "["; DID = diag::err_expected_rsquare; break;
120 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break;
121 }
122 Diag(Tok, DID);
Chris Lattner28eb7e92008-11-23 23:17:07 +0000123 Diag(LHSLoc, diag::note_matching) << LHSName;
Chris Lattner9fc18732010-07-12 01:48:28 +0000124 SkipUntil(RHSTok);
Reid Spencer5f016e22007-07-11 17:01:13 +0000125 return R;
126}
127
128/// ExpectAndConsume - The parser expects that 'ExpectedTok' is next in the
129/// input. If so, it is consumed and false is returned.
130///
131/// If the input is malformed, this emits the specified diagnostic. Next, if
132/// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
133/// returned.
134bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
135 const char *Msg, tok::TokenKind SkipToTok) {
Douglas Gregordc845342010-05-25 05:58:43 +0000136 if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000137 ConsumeAnyToken();
138 return false;
139 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000140
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000141 const char *Spelling = 0;
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000142 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
Mike Stump1eb44332009-09-09 15:08:12 +0000143 if (EndLoc.isValid() &&
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000144 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000145 // Show what code to insert to fix this problem.
Mike Stump1eb44332009-09-09 15:08:12 +0000146 Diag(EndLoc, DiagID)
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000147 << Msg
Douglas Gregor849b2432010-03-31 17:46:05 +0000148 << FixItHint::CreateInsertion(EndLoc, Spelling);
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000149 } else
150 Diag(Tok, DiagID) << Msg;
151
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 if (SkipToTok != tok::unknown)
153 SkipUntil(SkipToTok);
154 return true;
155}
156
157//===----------------------------------------------------------------------===//
158// Error recovery.
159//===----------------------------------------------------------------------===//
160
161/// SkipUntil - Read tokens until we get to the specified token, then consume
Chris Lattner012cf462007-07-24 17:03:04 +0000162/// it (unless DontConsume is true). Because we cannot guarantee that the
Reid Spencer5f016e22007-07-11 17:01:13 +0000163/// token will ever occur, this skips to the next token, or to some likely
164/// good stopping point. If StopAtSemi is true, skipping will stop at a ';'
165/// character.
Mike Stumpa6f01772008-06-19 19:28:49 +0000166///
Reid Spencer5f016e22007-07-11 17:01:13 +0000167/// If SkipUntil finds the specified token, it returns true, otherwise it
Mike Stumpa6f01772008-06-19 19:28:49 +0000168/// returns false.
Reid Spencer5f016e22007-07-11 17:01:13 +0000169bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,
170 bool StopAtSemi, bool DontConsume) {
171 // We always want this function to skip at least one token if the first token
172 // isn't T and if not at EOF.
173 bool isFirstTokenSkipped = true;
174 while (1) {
175 // If we found one of the tokens, stop and return true.
176 for (unsigned i = 0; i != NumToks; ++i) {
Chris Lattner00073222007-10-09 17:23:58 +0000177 if (Tok.is(Toks[i])) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 if (DontConsume) {
179 // Noop, don't consume the token.
180 } else {
181 ConsumeAnyToken();
182 }
183 return true;
184 }
185 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000186
Reid Spencer5f016e22007-07-11 17:01:13 +0000187 switch (Tok.getKind()) {
188 case tok::eof:
189 // Ran out of tokens.
190 return false;
Douglas Gregordc845342010-05-25 05:58:43 +0000191
192 case tok::code_completion:
193 ConsumeToken();
194 return false;
195
Reid Spencer5f016e22007-07-11 17:01:13 +0000196 case tok::l_paren:
197 // Recursively skip properly-nested parens.
198 ConsumeParen();
199 SkipUntil(tok::r_paren, false);
200 break;
201 case tok::l_square:
202 // Recursively skip properly-nested square brackets.
203 ConsumeBracket();
204 SkipUntil(tok::r_square, false);
205 break;
206 case tok::l_brace:
207 // Recursively skip properly-nested braces.
208 ConsumeBrace();
209 SkipUntil(tok::r_brace, false);
210 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000211
Reid Spencer5f016e22007-07-11 17:01:13 +0000212 // Okay, we found a ']' or '}' or ')', which we think should be balanced.
213 // Since the user wasn't looking for this token (if they were, it would
214 // already be handled), this isn't balanced. If there is a LHS token at a
215 // higher level, we will assume that this matches the unbalanced token
216 // and return it. Otherwise, this is a spurious RHS token, which we skip.
217 case tok::r_paren:
218 if (ParenCount && !isFirstTokenSkipped)
219 return false; // Matches something.
220 ConsumeParen();
221 break;
222 case tok::r_square:
223 if (BracketCount && !isFirstTokenSkipped)
224 return false; // Matches something.
225 ConsumeBracket();
226 break;
227 case tok::r_brace:
228 if (BraceCount && !isFirstTokenSkipped)
229 return false; // Matches something.
230 ConsumeBrace();
231 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000232
Reid Spencer5f016e22007-07-11 17:01:13 +0000233 case tok::string_literal:
234 case tok::wide_string_literal:
235 ConsumeStringToken();
236 break;
237 case tok::semi:
238 if (StopAtSemi)
239 return false;
240 // FALL THROUGH.
241 default:
242 // Skip this token.
243 ConsumeToken();
244 break;
245 }
246 isFirstTokenSkipped = false;
Mike Stumpa6f01772008-06-19 19:28:49 +0000247 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000248}
249
250//===----------------------------------------------------------------------===//
251// Scope manipulation
252//===----------------------------------------------------------------------===//
253
Reid Spencer5f016e22007-07-11 17:01:13 +0000254/// EnterScope - Start a new scope.
255void Parser::EnterScope(unsigned ScopeFlags) {
Chris Lattner9e344c62007-07-15 00:04:39 +0000256 if (NumCachedScopes) {
257 Scope *N = ScopeCache[--NumCachedScopes];
Douglas Gregor23c94db2010-07-02 17:43:08 +0000258 N->Init(getCurScope(), ScopeFlags);
259 Actions.CurScope = N;
Reid Spencer5f016e22007-07-11 17:01:13 +0000260 } else {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000261 Actions.CurScope = new Scope(getCurScope(), ScopeFlags);
Reid Spencer5f016e22007-07-11 17:01:13 +0000262 }
Douglas Gregor23c94db2010-07-02 17:43:08 +0000263 getCurScope()->setNumErrorsAtStart(Diags.getNumErrors());
Reid Spencer5f016e22007-07-11 17:01:13 +0000264}
265
266/// ExitScope - Pop a scope off the scope stack.
267void Parser::ExitScope() {
Douglas Gregor23c94db2010-07-02 17:43:08 +0000268 assert(getCurScope() && "Scope imbalance!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000269
Chris Lattner90ae68a2007-10-09 20:37:18 +0000270 // Inform the actions module that this scope is going away if there are any
271 // decls in it.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000272 if (!getCurScope()->decl_empty())
273 Actions.ActOnPopScope(Tok.getLocation(), getCurScope());
Mike Stumpa6f01772008-06-19 19:28:49 +0000274
Douglas Gregor23c94db2010-07-02 17:43:08 +0000275 Scope *OldScope = getCurScope();
276 Actions.CurScope = OldScope->getParent();
Mike Stumpa6f01772008-06-19 19:28:49 +0000277
Chris Lattner9e344c62007-07-15 00:04:39 +0000278 if (NumCachedScopes == ScopeCacheSize)
279 delete OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000280 else
Chris Lattner9e344c62007-07-15 00:04:39 +0000281 ScopeCache[NumCachedScopes++] = OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000282}
283
284
285
286
287//===----------------------------------------------------------------------===//
288// C99 6.9: External Definitions.
289//===----------------------------------------------------------------------===//
290
291Parser::~Parser() {
292 // If we still have scopes active, delete the scope tree.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000293 delete getCurScope();
294 Actions.CurScope = 0;
295
Reid Spencer5f016e22007-07-11 17:01:13 +0000296 // Free the scope cache.
Chris Lattner9e344c62007-07-15 00:04:39 +0000297 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
298 delete ScopeCache[i];
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +0000299
300 // Remove the pragma handlers we installed.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000301 PP.RemovePragmaHandler(OptionsHandler.get());
Daniel Dunbar861800c2010-05-26 23:29:06 +0000302 OptionsHandler.reset();
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000303 PP.RemovePragmaHandler(PackHandler.get());
Ted Kremenek4726d032009-03-23 22:28:25 +0000304 PackHandler.reset();
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000305 PP.RemovePragmaHandler(UnusedHandler.get());
Ted Kremenek4726d032009-03-23 22:28:25 +0000306 UnusedHandler.reset();
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000307 PP.RemovePragmaHandler(WeakHandler.get());
Eli Friedman99914792009-06-05 00:49:58 +0000308 WeakHandler.reset();
Reid Spencer5f016e22007-07-11 17:01:13 +0000309}
310
311/// Initialize - Warm up the parser.
312///
313void Parser::Initialize() {
314 // Prime the lexer look-ahead.
315 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000316
Chris Lattner31e05722007-08-26 06:24:45 +0000317 // Create the translation unit scope. Install it as the current scope.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000318 assert(getCurScope() == 0 && "A scope is already active?");
Chris Lattner31e05722007-08-26 06:24:45 +0000319 EnterScope(Scope::DeclScope);
Douglas Gregor23c94db2010-07-02 17:43:08 +0000320 Actions.ActOnTranslationUnitScope(Tok.getLocation(), getCurScope());
Mike Stumpa6f01772008-06-19 19:28:49 +0000321
Chris Lattner00073222007-10-09 17:23:58 +0000322 if (Tok.is(tok::eof) &&
Chris Lattnerf7261752007-08-25 05:47:03 +0000323 !getLang().CPlusPlus) // Empty source file is an extension in C
Reid Spencer5f016e22007-07-11 17:01:13 +0000324 Diag(Tok, diag::ext_empty_source_file);
Mike Stumpa6f01772008-06-19 19:28:49 +0000325
Chris Lattner34870da2007-08-29 22:54:08 +0000326 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000327 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner34870da2007-08-29 22:54:08 +0000328 if (getLang().ObjC1) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000329 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
330 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
331 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
332 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
333 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
334 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
Chris Lattner34870da2007-08-29 22:54:08 +0000335 }
Daniel Dunbar662e8b52008-08-14 22:04:54 +0000336
337 Ident_super = &PP.getIdentifierTable().get("super");
John Thompson82287d12010-02-05 00:12:22 +0000338
339 if (getLang().AltiVec) {
340 Ident_vector = &PP.getIdentifierTable().get("vector");
341 Ident_pixel = &PP.getIdentifierTable().get("pixel");
342 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000343}
344
345/// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
346/// action tells us to. This returns true if the EOF was encountered.
Chris Lattner682bf922009-03-29 16:50:03 +0000347bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
348 Result = DeclGroupPtrTy();
Chris Lattner9299f3f2008-08-23 03:19:52 +0000349 if (Tok.is(tok::eof)) {
350 Actions.ActOnEndOfTranslationUnit();
351 return true;
352 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000353
Sean Huntbbd37c62009-11-21 08:43:09 +0000354 CXX0XAttributeList Attr;
355 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
356 Attr = ParseCXX0XAttributes();
357 Result = ParseExternalDeclaration(Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000358 return false;
359}
360
Reid Spencer5f016e22007-07-11 17:01:13 +0000361/// ParseTranslationUnit:
362/// translation-unit: [C99 6.9]
Mike Stumpa6f01772008-06-19 19:28:49 +0000363/// external-declaration
364/// translation-unit external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000365void Parser::ParseTranslationUnit() {
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000366 Initialize();
Mike Stumpa6f01772008-06-19 19:28:49 +0000367
Chris Lattner682bf922009-03-29 16:50:03 +0000368 DeclGroupPtrTy Res;
Steve Naroff89307ff2007-11-29 23:05:20 +0000369 while (!ParseTopLevelDecl(Res))
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 /*parse them all*/;
Mike Stump1eb44332009-09-09 15:08:12 +0000371
Chris Lattner06f54852008-08-23 02:00:52 +0000372 ExitScope();
Douglas Gregor23c94db2010-07-02 17:43:08 +0000373 assert(getCurScope() == 0 && "Scope imbalance!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000374}
375
376/// ParseExternalDeclaration:
Chris Lattner90b93d62008-12-08 21:59:01 +0000377///
Douglas Gregorc19923d2008-11-21 16:10:08 +0000378/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattnerc3018152007-08-10 20:57:02 +0000379/// function-definition
380/// declaration
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000381/// [C++0x] empty-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000382/// [GNU] asm-definition
Chris Lattnerc3018152007-08-10 20:57:02 +0000383/// [GNU] __extension__ external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000384/// [OBJC] objc-class-definition
385/// [OBJC] objc-class-declaration
386/// [OBJC] objc-alias-declaration
387/// [OBJC] objc-protocol-definition
388/// [OBJC] objc-method-definition
389/// [OBJC] @end
Douglas Gregorc19923d2008-11-21 16:10:08 +0000390/// [C++] linkage-specification
Reid Spencer5f016e22007-07-11 17:01:13 +0000391/// [GNU] asm-definition:
392/// simple-asm-expr ';'
393///
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000394/// [C++0x] empty-declaration:
395/// ';'
396///
Douglas Gregor45f96552009-09-04 06:33:52 +0000397/// [C++0x/GNU] 'extern' 'template' declaration
Sean Huntbbd37c62009-11-21 08:43:09 +0000398Parser::DeclGroupPtrTy Parser::ParseExternalDeclaration(CXX0XAttributeList Attr) {
Argyrios Kyrtzidis36d36802010-06-17 10:52:18 +0000399 ParenBraceBracketBalancer BalancerRAIIObj(*this);
400
Chris Lattner682bf922009-03-29 16:50:03 +0000401 DeclPtrTy SingleDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +0000402 switch (Tok.getKind()) {
403 case tok::semi:
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000404 if (!getLang().CPlusPlus0x)
405 Diag(Tok, diag::ext_top_level_semi)
Douglas Gregor849b2432010-03-31 17:46:05 +0000406 << FixItHint::CreateRemoval(Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000407
Reid Spencer5f016e22007-07-11 17:01:13 +0000408 ConsumeToken();
409 // TODO: Invoke action for top-level semicolon.
Chris Lattner682bf922009-03-29 16:50:03 +0000410 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000411 case tok::r_brace:
412 Diag(Tok, diag::err_expected_external_declaration);
413 ConsumeBrace();
Chris Lattner682bf922009-03-29 16:50:03 +0000414 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000415 case tok::eof:
416 Diag(Tok, diag::err_expected_external_declaration);
Chris Lattner682bf922009-03-29 16:50:03 +0000417 return DeclGroupPtrTy();
Chris Lattnerc3018152007-08-10 20:57:02 +0000418 case tok::kw___extension__: {
Chris Lattnerc46d1a12008-10-20 06:45:43 +0000419 // __extension__ silences extension warnings in the subexpression.
420 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner39146d62008-10-20 06:51:33 +0000421 ConsumeToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000422 return ParseExternalDeclaration(Attr);
Chris Lattnerc3018152007-08-10 20:57:02 +0000423 }
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000424 case tok::kw_asm: {
Sean Huntbbd37c62009-11-21 08:43:09 +0000425 if (Attr.HasAttr)
426 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
427 << Attr.Range;
428
Sebastian Redleffa8d12008-12-10 00:02:53 +0000429 OwningExprResult Result(ParseSimpleAsm());
Mike Stumpa6f01772008-06-19 19:28:49 +0000430
Anders Carlsson3f9424f2008-02-08 00:23:11 +0000431 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
432 "top-level asm block");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000433
Chris Lattner682bf922009-03-29 16:50:03 +0000434 if (Result.isInvalid())
435 return DeclGroupPtrTy();
436 SingleDecl = Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), move(Result));
437 break;
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000438 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000439 case tok::at:
Chris Lattner682bf922009-03-29 16:50:03 +0000440 // @ is not a legal token unless objc is enabled, no need to check for ObjC.
441 /// FIXME: ParseObjCAtDirectives should return a DeclGroup for things like
442 /// @class foo, bar;
443 SingleDecl = ParseObjCAtDirectives();
444 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000445 case tok::minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000446 case tok::plus:
Chris Lattner682bf922009-03-29 16:50:03 +0000447 if (!getLang().ObjC1) {
448 Diag(Tok, diag::err_expected_external_declaration);
449 ConsumeToken();
450 return DeclGroupPtrTy();
451 }
452 SingleDecl = ParseObjCMethodDefinition();
453 break;
Douglas Gregor791215b2009-09-21 20:51:25 +0000454 case tok::code_completion:
Douglas Gregor23c94db2010-07-02 17:43:08 +0000455 Actions.CodeCompleteOrdinaryName(getCurScope(),
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000456 ObjCImpDecl? Action::CCC_ObjCImplementation
457 : Action::CCC_Namespace);
Douglas Gregordc845342010-05-25 05:58:43 +0000458 ConsumeCodeCompletionToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000459 return ParseExternalDeclaration(Attr);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000460 case tok::kw_using:
Chris Lattner8f08cb72007-08-25 06:57:03 +0000461 case tok::kw_namespace:
Reid Spencer5f016e22007-07-11 17:01:13 +0000462 case tok::kw_typedef:
Douglas Gregoradcac882008-12-01 23:54:00 +0000463 case tok::kw_template:
464 case tok::kw_export: // As in 'export template'
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000465 case tok::kw_static_assert:
Chris Lattnerbae35112007-08-25 18:15:16 +0000466 // A function definition cannot start with a these keywords.
Chris Lattner97144fc2009-04-02 04:16:50 +0000467 {
468 SourceLocation DeclEnd;
Sean Huntbbd37c62009-11-21 08:43:09 +0000469 return ParseDeclaration(Declarator::FileContext, DeclEnd, Attr);
Chris Lattner97144fc2009-04-02 04:16:50 +0000470 }
Douglas Gregor45f96552009-09-04 06:33:52 +0000471 case tok::kw_extern:
472 if (getLang().CPlusPlus && NextToken().is(tok::kw_template)) {
473 // Extern templates
474 SourceLocation ExternLoc = ConsumeToken();
475 SourceLocation TemplateLoc = ConsumeToken();
476 SourceLocation DeclEnd;
477 return Actions.ConvertDeclToDeclGroup(
478 ParseExplicitInstantiation(ExternLoc, TemplateLoc, DeclEnd));
479 }
Mike Stump1eb44332009-09-09 15:08:12 +0000480
Douglas Gregor45f96552009-09-04 06:33:52 +0000481 // FIXME: Detect C++ linkage specifications here?
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Douglas Gregor45f96552009-09-04 06:33:52 +0000483 // Fall through to handle other declarations or function definitions.
Mike Stump1eb44332009-09-09 15:08:12 +0000484
Reid Spencer5f016e22007-07-11 17:01:13 +0000485 default:
486 // We can't tell whether this is a function-definition or declaration yet.
Sean Huntbbd37c62009-11-21 08:43:09 +0000487 return ParseDeclarationOrFunctionDefinition(Attr.AttrList);
Reid Spencer5f016e22007-07-11 17:01:13 +0000488 }
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Chris Lattner682bf922009-03-29 16:50:03 +0000490 // This routine returns a DeclGroup, if the thing we parsed only contains a
491 // single decl, convert it now.
492 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000493}
494
Douglas Gregor1426e532009-05-12 21:31:51 +0000495/// \brief Determine whether the current token, if it occurs after a
496/// declarator, continues a declaration or declaration list.
Chris Lattnerc82daef2010-07-11 22:24:20 +0000497bool Parser::isDeclarationAfterDeclarator() const {
Douglas Gregor1426e532009-05-12 21:31:51 +0000498 return Tok.is(tok::equal) || // int X()= -> not a function def
499 Tok.is(tok::comma) || // int X(), -> not a function def
500 Tok.is(tok::semi) || // int X(); -> not a function def
501 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def
502 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def
503 (getLang().CPlusPlus &&
504 Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++]
505}
506
507/// \brief Determine whether the current token, if it occurs after a
508/// declarator, indicates the start of a function definition.
Chris Lattner004659a2010-07-11 22:42:07 +0000509bool Parser::isStartOfFunctionDefinition(const ParsingDeclarator &Declarator) {
510 assert(Declarator.getTypeObject(0).Kind == DeclaratorChunk::Function &&
511 "Isn't a function declarator");
Chris Lattner5d1c6192009-12-06 18:34:27 +0000512 if (Tok.is(tok::l_brace)) // int X() {}
513 return true;
514
Chris Lattner004659a2010-07-11 22:42:07 +0000515 // Handle K&R C argument lists: int X(f) int f; {}
516 if (!getLang().CPlusPlus &&
517 Declarator.getTypeObject(0).Fun.isKNRPrototype())
518 return isDeclarationSpecifier();
519
Chris Lattner5d1c6192009-12-06 18:34:27 +0000520 return Tok.is(tok::colon) || // X() : Base() {} (used for ctors)
521 Tok.is(tok::kw_try); // X() try { ... }
Douglas Gregor1426e532009-05-12 21:31:51 +0000522}
523
Reid Spencer5f016e22007-07-11 17:01:13 +0000524/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
525/// a declaration. We can't tell which we have until we read up to the
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000526/// compound-statement in function-definition. TemplateParams, if
527/// non-NULL, provides the template parameters when we're parsing a
Mike Stump1eb44332009-09-09 15:08:12 +0000528/// C++ template-declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +0000529///
530/// function-definition: [C99 6.9.1]
Chris Lattnera798ebc2008-04-05 05:52:15 +0000531/// decl-specs declarator declaration-list[opt] compound-statement
532/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000533/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattnera798ebc2008-04-05 05:52:15 +0000534///
Reid Spencer5f016e22007-07-11 17:01:13 +0000535/// declaration: [C99 6.7]
Chris Lattner697e15f2007-08-22 06:06:56 +0000536/// declaration-specifiers init-declarator-list[opt] ';'
537/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Reid Spencer5f016e22007-07-11 17:01:13 +0000538/// [OMP] threadprivate-directive [TODO]
539///
Chris Lattner682bf922009-03-29 16:50:03 +0000540Parser::DeclGroupPtrTy
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000541Parser::ParseDeclarationOrFunctionDefinition(ParsingDeclSpec &DS,
542 AttributeList *Attr,
Sean Huntbbd37c62009-11-21 08:43:09 +0000543 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000544 // Parse the common declaration-specifiers piece.
Sean Huntbbd37c62009-11-21 08:43:09 +0000545 if (Attr)
546 DS.AddAttributes(Attr);
547
Douglas Gregor0efc2c12010-01-13 17:31:36 +0000548 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
Mike Stumpa6f01772008-06-19 19:28:49 +0000549
Reid Spencer5f016e22007-07-11 17:01:13 +0000550 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
551 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner00073222007-10-09 17:23:58 +0000552 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000553 ConsumeToken();
Douglas Gregor23c94db2010-07-02 17:43:08 +0000554 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
John McCall54abf7d2009-11-04 02:18:39 +0000555 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +0000556 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000557 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000558
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000559 // ObjC2 allows prefix attributes on class interfaces and protocols.
560 // FIXME: This still needs better diagnostics. We should only accept
561 // attributes here, no types, etc.
Chris Lattner00073222007-10-09 17:23:58 +0000562 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000563 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +0000564 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000565 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
566 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattnercb53b362007-12-27 19:57:00 +0000567 SkipUntil(tok::semi); // FIXME: better skip?
Chris Lattner682bf922009-03-29 16:50:03 +0000568 return DeclGroupPtrTy();
Chris Lattnercb53b362007-12-27 19:57:00 +0000569 }
John McCalld8ac0572009-11-03 19:26:08 +0000570
John McCall54abf7d2009-11-04 02:18:39 +0000571 DS.abort();
572
Fariborz Jahanian0de2ae22008-01-02 19:17:38 +0000573 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000574 unsigned DiagID;
575 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
576 Diag(AtLoc, DiagID) << PrevSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Chris Lattner682bf922009-03-29 16:50:03 +0000578 DeclPtrTy TheDecl;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000579 if (Tok.isObjCAtKeyword(tok::objc_protocol))
Chris Lattner682bf922009-03-29 16:50:03 +0000580 TheDecl = ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
581 else
582 TheDecl = ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
583 return Actions.ConvertDeclToDeclGroup(TheDecl);
Steve Naroffdac269b2007-08-20 21:31:48 +0000584 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000585
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000586 // If the declspec consisted only of 'extern' and we have a string
587 // literal following it, this must be a C++ linkage specifier like
588 // 'extern "C"'.
Chris Lattner3c6f6a72008-01-12 07:08:43 +0000589 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000590 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
Chris Lattner682bf922009-03-29 16:50:03 +0000591 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000592 DeclPtrTy TheDecl = ParseLinkage(DS, Declarator::FileContext);
Chris Lattner682bf922009-03-29 16:50:03 +0000593 return Actions.ConvertDeclToDeclGroup(TheDecl);
594 }
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000595
John McCalld8ac0572009-11-03 19:26:08 +0000596 return ParseDeclGroup(DS, Declarator::FileContext, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000597}
598
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000599Parser::DeclGroupPtrTy
600Parser::ParseDeclarationOrFunctionDefinition(AttributeList *Attr,
601 AccessSpecifier AS) {
602 ParsingDeclSpec DS(*this);
603 return ParseDeclarationOrFunctionDefinition(DS, Attr, AS);
604}
605
Reid Spencer5f016e22007-07-11 17:01:13 +0000606/// ParseFunctionDefinition - We parsed and verified that the specified
607/// Declarator is well formed. If this is a K&R-style function, read the
608/// parameters declaration-list, then start the compound-statement.
609///
Chris Lattnera798ebc2008-04-05 05:52:15 +0000610/// function-definition: [C99 6.9.1]
611/// decl-specs declarator declaration-list[opt] compound-statement
612/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000613/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregor7ad83902008-11-05 04:29:56 +0000614/// [C++] function-definition: [C++ 8.4]
Chris Lattner23c4b182009-03-29 17:18:04 +0000615/// decl-specifier-seq[opt] declarator ctor-initializer[opt]
616/// function-body
Douglas Gregor7ad83902008-11-05 04:29:56 +0000617/// [C++] function-definition: [C++ 8.4]
Sebastian Redld3a413d2009-04-26 20:35:05 +0000618/// decl-specifier-seq[opt] declarator function-try-block
Reid Spencer5f016e22007-07-11 17:01:13 +0000619///
John McCall54abf7d2009-11-04 02:18:39 +0000620Parser::DeclPtrTy Parser::ParseFunctionDefinition(ParsingDeclarator &D,
Douglas Gregor52591bf2009-06-24 00:54:41 +0000621 const ParsedTemplateInfo &TemplateInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000622 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
623 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
624 "This isn't a function declarator!");
625 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stumpa6f01772008-06-19 19:28:49 +0000626
Chris Lattnera798ebc2008-04-05 05:52:15 +0000627 // If this is C90 and the declspecs were completely missing, fudge in an
628 // implicit int. We do this here because this is the only place where
629 // declaration-specifiers are completely optional in the grammar.
Chris Lattner2a327d12009-02-27 18:35:46 +0000630 if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) {
Chris Lattnera798ebc2008-04-05 05:52:15 +0000631 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000632 unsigned DiagID;
Chris Lattner31c28682008-10-20 02:01:34 +0000633 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
634 D.getIdentifierLoc(),
John McCallfec54012009-08-03 20:12:06 +0000635 PrevSpec, DiagID);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000636 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
Chris Lattnera798ebc2008-04-05 05:52:15 +0000637 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000638
Reid Spencer5f016e22007-07-11 17:01:13 +0000639 // If this declaration was formed with a K&R-style identifier list for the
640 // arguments, parse declarations for all of the args next.
641 // int foo(a,b) int a; float b; {}
Chris Lattner004659a2010-07-11 22:42:07 +0000642 if (FTI.isKNRPrototype())
Reid Spencer5f016e22007-07-11 17:01:13 +0000643 ParseKNRParamDeclarations(D);
644
Douglas Gregor7ad83902008-11-05 04:29:56 +0000645 // We should have either an opening brace or, in a C++ constructor,
646 // we may have a colon.
Sebastian Redld3a413d2009-04-26 20:35:05 +0000647 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon) &&
648 Tok.isNot(tok::kw_try)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000649 Diag(Tok, diag::err_expected_fn_body);
650
651 // Skip over garbage, until we get to '{'. Don't eat the '{'.
652 SkipUntil(tok::l_brace, true, true);
Mike Stumpa6f01772008-06-19 19:28:49 +0000653
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 // If we didn't find the '{', bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000655 if (Tok.isNot(tok::l_brace))
Chris Lattnerb28317a2009-03-28 19:18:32 +0000656 return DeclPtrTy();
Reid Spencer5f016e22007-07-11 17:01:13 +0000657 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000658
Chris Lattnerb652cea2007-10-09 17:14:05 +0000659 // Enter a scope for the function body.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000660 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000661
Chris Lattnerb652cea2007-10-09 17:14:05 +0000662 // Tell the actions module that we have entered a function definition with the
663 // specified Declarator for the function.
Mike Stump1eb44332009-09-09 15:08:12 +0000664 DeclPtrTy Res = TemplateInfo.TemplateParams?
Douglas Gregor23c94db2010-07-02 17:43:08 +0000665 Actions.ActOnStartOfFunctionTemplateDef(getCurScope(),
Douglas Gregor52591bf2009-06-24 00:54:41 +0000666 Action::MultiTemplateParamsArg(Actions,
667 TemplateInfo.TemplateParams->data(),
668 TemplateInfo.TemplateParams->size()),
669 D)
Douglas Gregor23c94db2010-07-02 17:43:08 +0000670 : Actions.ActOnStartOfFunctionDef(getCurScope(), D);
Mike Stumpa6f01772008-06-19 19:28:49 +0000671
John McCall54abf7d2009-11-04 02:18:39 +0000672 // Break out of the ParsingDeclarator context before we parse the body.
673 D.complete(Res);
674
675 // Break out of the ParsingDeclSpec context, too. This const_cast is
676 // safe because we're always the sole owner.
677 D.getMutableDeclSpec().abort();
678
Sebastian Redld3a413d2009-04-26 20:35:05 +0000679 if (Tok.is(tok::kw_try))
680 return ParseFunctionTryBlock(Res);
681
Douglas Gregor7ad83902008-11-05 04:29:56 +0000682 // If we have a colon, then we're probably parsing a C++
683 // ctor-initializer.
John McCalld6ca8da2010-04-10 07:37:23 +0000684 if (Tok.is(tok::colon)) {
Douglas Gregor7ad83902008-11-05 04:29:56 +0000685 ParseConstructorInitializer(Res);
John McCalld6ca8da2010-04-10 07:37:23 +0000686
687 // Recover from error.
688 if (!Tok.is(tok::l_brace)) {
689 Actions.ActOnFinishFunctionBody(Res, Action::StmtArg(Actions));
690 return Res;
691 }
692 } else
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000693 Actions.ActOnDefaultCtorInitializers(Res);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000694
Chris Lattner40e9bc82009-03-05 00:49:17 +0000695 return ParseFunctionStatementBody(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000696}
697
698/// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
699/// types for a function with a K&R-style identifier list for arguments.
700void Parser::ParseKNRParamDeclarations(Declarator &D) {
701 // We know that the top-level of this declarator is a function.
702 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
703
Chris Lattner04421082008-04-08 04:40:51 +0000704 // Enter function-declaration scope, limiting any declarators to the
705 // function prototype scope, including parameter declarators.
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000706 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattner04421082008-04-08 04:40:51 +0000707
Reid Spencer5f016e22007-07-11 17:01:13 +0000708 // Read all the argument declarations.
709 while (isDeclarationSpecifier()) {
710 SourceLocation DSStart = Tok.getLocation();
Mike Stumpa6f01772008-06-19 19:28:49 +0000711
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 // Parse the common declaration-specifiers piece.
713 DeclSpec DS;
714 ParseDeclarationSpecifiers(DS);
Mike Stumpa6f01772008-06-19 19:28:49 +0000715
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 // C99 6.9.1p6: 'each declaration in the declaration list shall have at
717 // least one declarator'.
718 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with
719 // the declarations though. It's trivial to ignore them, really hard to do
720 // anything else with them.
Chris Lattner00073222007-10-09 17:23:58 +0000721 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000722 Diag(DSStart, diag::err_declaration_does_not_declare_param);
723 ConsumeToken();
724 continue;
725 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000726
Reid Spencer5f016e22007-07-11 17:01:13 +0000727 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
728 // than register.
729 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
730 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
731 Diag(DS.getStorageClassSpecLoc(),
732 diag::err_invalid_storage_class_in_func_decl);
733 DS.ClearStorageClassSpecs();
734 }
735 if (DS.isThreadSpecified()) {
736 Diag(DS.getThreadSpecLoc(),
737 diag::err_invalid_storage_class_in_func_decl);
738 DS.ClearStorageClassSpecs();
739 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000740
Reid Spencer5f016e22007-07-11 17:01:13 +0000741 // Parse the first declarator attached to this declspec.
742 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
743 ParseDeclarator(ParmDeclarator);
744
745 // Handle the full declarator list.
746 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000747 // If attributes are present, parse them.
Richard Pennington33efe2f2010-02-23 12:22:13 +0000748 if (Tok.is(tok::kw___attribute)) {
749 SourceLocation Loc;
750 AttributeList *AttrList = ParseGNUAttributes(&Loc);
751 ParmDeclarator.AddAttributes(AttrList, Loc);
752 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000753
Reid Spencer5f016e22007-07-11 17:01:13 +0000754 // Ask the actions module to compute the type for this declarator.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000755 Action::DeclPtrTy Param =
Douglas Gregor23c94db2010-07-02 17:43:08 +0000756 Actions.ActOnParamDeclarator(getCurScope(), ParmDeclarator);
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000757
Mike Stumpa6f01772008-06-19 19:28:49 +0000758 if (Param &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000759 // A missing identifier has already been diagnosed.
760 ParmDeclarator.getIdentifier()) {
761
762 // Scan the argument list looking for the correct param to apply this
763 // type.
764 for (unsigned i = 0; ; ++i) {
765 // C99 6.9.1p6: those declarators shall declare only identifiers from
766 // the identifier list.
767 if (i == FTI.NumArgs) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000768 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattner6898e332008-11-19 07:51:13 +0000769 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000770 break;
771 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000772
Reid Spencer5f016e22007-07-11 17:01:13 +0000773 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
774 // Reject redefinitions of parameters.
Chris Lattner04421082008-04-08 04:40:51 +0000775 if (FTI.ArgInfo[i].Param) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000776 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +0000777 diag::err_param_redefinition)
Chris Lattner6898e332008-11-19 07:51:13 +0000778 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 } else {
Chris Lattner04421082008-04-08 04:40:51 +0000780 FTI.ArgInfo[i].Param = Param;
Reid Spencer5f016e22007-07-11 17:01:13 +0000781 }
782 break;
783 }
784 }
785 }
786
787 // If we don't have a comma, it is either the end of the list (a ';') or
788 // an error, bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000789 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000790 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000791
Reid Spencer5f016e22007-07-11 17:01:13 +0000792 // Consume the comma.
793 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000794
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 // Parse the next declarator.
796 ParmDeclarator.clear();
797 ParseDeclarator(ParmDeclarator);
798 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000799
Chris Lattner00073222007-10-09 17:23:58 +0000800 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000801 ConsumeToken();
802 } else {
803 Diag(Tok, diag::err_parse_error);
804 // Skip to end of block or statement
805 SkipUntil(tok::semi, true);
Chris Lattner00073222007-10-09 17:23:58 +0000806 if (Tok.is(tok::semi))
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 ConsumeToken();
808 }
809 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000810
Reid Spencer5f016e22007-07-11 17:01:13 +0000811 // The actions module must verify that all arguments were declared.
Douglas Gregor23c94db2010-07-02 17:43:08 +0000812 Actions.ActOnFinishKNRParamDeclarations(getCurScope(), D, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000813}
814
815
816/// ParseAsmStringLiteral - This is just a normal string-literal, but is not
817/// allowed to be a wide string, and is not subject to character translation.
818///
819/// [GNU] asm-string-literal:
820/// string-literal
821///
Sebastian Redleffa8d12008-12-10 00:02:53 +0000822Parser::OwningExprResult Parser::ParseAsmStringLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000823 if (!isTokenStringLiteral()) {
824 Diag(Tok, diag::err_expected_string_literal);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000825 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000826 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000827
Sebastian Redl20df9b72008-12-11 22:51:44 +0000828 OwningExprResult Res(ParseStringLiteralExpression());
Sebastian Redleffa8d12008-12-10 00:02:53 +0000829 if (Res.isInvalid()) return move(Res);
Mike Stumpa6f01772008-06-19 19:28:49 +0000830
Reid Spencer5f016e22007-07-11 17:01:13 +0000831 // TODO: Diagnose: wide string literal in 'asm'
Mike Stumpa6f01772008-06-19 19:28:49 +0000832
Sebastian Redleffa8d12008-12-10 00:02:53 +0000833 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000834}
835
836/// ParseSimpleAsm
837///
838/// [GNU] simple-asm-expr:
839/// 'asm' '(' asm-string-literal ')'
840///
Sebastian Redlab197ba2009-02-09 18:23:29 +0000841Parser::OwningExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
Chris Lattner00073222007-10-09 17:23:58 +0000842 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000843 SourceLocation Loc = ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000844
John McCall7a6ae742010-01-25 22:27:48 +0000845 if (Tok.is(tok::kw_volatile)) {
John McCall841d5e62010-01-25 23:12:50 +0000846 // Remove from the end of 'asm' to the end of 'volatile'.
847 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
848 PP.getLocForEndOfToken(Tok.getLocation()));
849
850 Diag(Tok, diag::warn_file_asm_volatile)
Douglas Gregor849b2432010-03-31 17:46:05 +0000851 << FixItHint::CreateRemoval(RemovalRange);
John McCall7a6ae742010-01-25 22:27:48 +0000852 ConsumeToken();
853 }
854
Chris Lattner00073222007-10-09 17:23:58 +0000855 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000856 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Sebastian Redl61364dd2008-12-11 19:30:53 +0000857 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000858 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000859
Sebastian Redlab197ba2009-02-09 18:23:29 +0000860 Loc = ConsumeParen();
Mike Stumpa6f01772008-06-19 19:28:49 +0000861
Sebastian Redleffa8d12008-12-10 00:02:53 +0000862 OwningExprResult Result(ParseAsmStringLiteral());
Mike Stumpa6f01772008-06-19 19:28:49 +0000863
Sebastian Redlab197ba2009-02-09 18:23:29 +0000864 if (Result.isInvalid()) {
865 SkipUntil(tok::r_paren, true, true);
866 if (EndLoc)
867 *EndLoc = Tok.getLocation();
868 ConsumeAnyToken();
869 } else {
870 Loc = MatchRHSPunctuation(tok::r_paren, Loc);
871 if (EndLoc)
872 *EndLoc = Loc;
873 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000874
Sebastian Redleffa8d12008-12-10 00:02:53 +0000875 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000876}
877
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000878/// TryAnnotateTypeOrScopeToken - If the current token position is on a
879/// typename (possibly qualified in C++) or a C++ scope specifier not followed
880/// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
881/// with a single annotation token representing the typename or C++ scope
882/// respectively.
883/// This simplifies handling of C++ scope specifiers and allows efficient
884/// backtracking without the need to re-parse and resolve nested-names and
885/// typenames.
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000886/// It will mainly be called when we expect to treat identifiers as typenames
887/// (if they are typenames). For example, in C we do not expect identifiers
888/// inside expressions to be treated as typenames so it will not be called
889/// for expressions in C.
890/// The benefit for C/ObjC is that a typename will be annotated and
Steve Naroffb43a50f2009-01-28 19:39:02 +0000891/// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000892/// will not be called twice, once to check whether we have a declaration
893/// specifier, and another one to get the actual type inside
894/// ParseDeclarationSpecifiers).
Chris Lattnera7bc7c82009-01-04 23:23:14 +0000895///
John McCall9ba61662010-02-26 08:45:28 +0000896/// This returns true if an error occurred.
Mike Stump1eb44332009-09-09 15:08:12 +0000897///
Chris Lattner55a7cef2009-01-05 00:13:00 +0000898/// Note that this routine emits an error if you call it with ::new or ::delete
899/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +0000900bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000901 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)
John McCallae03cb52009-12-19 00:35:18 +0000902 || Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope)) &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000903 "Cannot be a type or scope token!");
Mike Stump1eb44332009-09-09 15:08:12 +0000904
Douglas Gregord57959a2009-03-27 23:10:48 +0000905 if (Tok.is(tok::kw_typename)) {
906 // Parse a C++ typename-specifier, e.g., "typename T::type".
907 //
908 // typename-specifier:
909 // 'typename' '::' [opt] nested-name-specifier identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000910 // 'typename' '::' [opt] nested-name-specifier template [opt]
Douglas Gregor17343172009-04-01 00:28:59 +0000911 // simple-template-id
Douglas Gregord57959a2009-03-27 23:10:48 +0000912 SourceLocation TypenameLoc = ConsumeToken();
913 CXXScopeSpec SS;
John McCall9ba61662010-02-26 08:45:28 +0000914 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false))
915 return true;
916 if (!SS.isSet()) {
Douglas Gregord57959a2009-03-27 23:10:48 +0000917 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
John McCall9ba61662010-02-26 08:45:28 +0000918 return true;
Douglas Gregord57959a2009-03-27 23:10:48 +0000919 }
920
921 TypeResult Ty;
922 if (Tok.is(tok::identifier)) {
923 // FIXME: check whether the next token is '<', first!
Douglas Gregor23c94db2010-07-02 17:43:08 +0000924 Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
Douglas Gregor1a15dae2010-06-16 22:31:08 +0000925 *Tok.getIdentifierInfo(),
Douglas Gregord57959a2009-03-27 23:10:48 +0000926 Tok.getLocation());
Douglas Gregor17343172009-04-01 00:28:59 +0000927 } else if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000928 TemplateIdAnnotation *TemplateId
Douglas Gregor17343172009-04-01 00:28:59 +0000929 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
930 if (TemplateId->Kind == TNK_Function_template) {
931 Diag(Tok, diag::err_typename_refers_to_non_type_template)
932 << Tok.getAnnotationRange();
John McCall9ba61662010-02-26 08:45:28 +0000933 return true;
Douglas Gregor17343172009-04-01 00:28:59 +0000934 }
Douglas Gregord57959a2009-03-27 23:10:48 +0000935
Douglas Gregor31a19b62009-04-01 21:51:26 +0000936 AnnotateTemplateIdTokenAsType(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000937 assert(Tok.is(tok::annot_typename) &&
Douglas Gregor17343172009-04-01 00:28:59 +0000938 "AnnotateTemplateIdTokenAsType isn't working properly");
Douglas Gregor31a19b62009-04-01 21:51:26 +0000939 if (Tok.getAnnotationValue())
Douglas Gregor23c94db2010-07-02 17:43:08 +0000940 Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS,
Douglas Gregor1a15dae2010-06-16 22:31:08 +0000941 SourceLocation(),
Douglas Gregor31a19b62009-04-01 21:51:26 +0000942 Tok.getAnnotationValue());
943 else
944 Ty = true;
Douglas Gregor17343172009-04-01 00:28:59 +0000945 } else {
946 Diag(Tok, diag::err_expected_type_name_after_typename)
947 << SS.getRange();
John McCall9ba61662010-02-26 08:45:28 +0000948 return true;
Douglas Gregor17343172009-04-01 00:28:59 +0000949 }
950
Sebastian Redl39d67112010-02-08 19:35:18 +0000951 SourceLocation EndLoc = Tok.getLastLoc();
Douglas Gregor17343172009-04-01 00:28:59 +0000952 Tok.setKind(tok::annot_typename);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000953 Tok.setAnnotationValue(Ty.isInvalid()? 0 : Ty.get());
Sebastian Redl39d67112010-02-08 19:35:18 +0000954 Tok.setAnnotationEndLoc(EndLoc);
Douglas Gregor17343172009-04-01 00:28:59 +0000955 Tok.setLocation(TypenameLoc);
956 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +0000957 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +0000958 }
959
John McCallae03cb52009-12-19 00:35:18 +0000960 // Remembers whether the token was originally a scope annotation.
961 bool wasScopeAnnotation = Tok.is(tok::annot_cxxscope);
962
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000963 CXXScopeSpec SS;
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000964 if (getLang().CPlusPlus)
John McCall9ba61662010-02-26 08:45:28 +0000965 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext))
966 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000967
968 if (Tok.is(tok::identifier)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000969 // Determine whether the identifier is a type name.
Mike Stump1eb44332009-09-09 15:08:12 +0000970 if (TypeTy *Ty = Actions.getTypeName(*Tok.getIdentifierInfo(),
Douglas Gregor23c94db2010-07-02 17:43:08 +0000971 Tok.getLocation(), getCurScope(), &SS)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000972 // This is a typename. Replace the current token in-place with an
973 // annotation type token.
Chris Lattnerb31757b2009-01-06 05:06:21 +0000974 Tok.setKind(tok::annot_typename);
Chris Lattner608d1fc2009-01-05 01:49:50 +0000975 Tok.setAnnotationValue(Ty);
976 Tok.setAnnotationEndLoc(Tok.getLocation());
977 if (SS.isNotEmpty()) // it was a C++ qualified type name.
978 Tok.setLocation(SS.getBeginLoc());
Mike Stump1eb44332009-09-09 15:08:12 +0000979
Chris Lattner608d1fc2009-01-05 01:49:50 +0000980 // In case the tokens were cached, have Preprocessor replace
981 // them with the annotation token.
982 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +0000983 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000984 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000985
986 if (!getLang().CPlusPlus) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000987 // If we're in C, we can't have :: tokens at all (the lexer won't return
988 // them). If the identifier is not a type, then it can't be scope either,
Mike Stump1eb44332009-09-09 15:08:12 +0000989 // just early exit.
Chris Lattner608d1fc2009-01-05 01:49:50 +0000990 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000991 }
Mike Stump1eb44332009-09-09 15:08:12 +0000992
Douglas Gregor39a8de12009-02-25 19:37:18 +0000993 // If this is a template-id, annotate with a template-id or type token.
Douglas Gregor55f6b142009-02-09 18:46:07 +0000994 if (NextToken().is(tok::less)) {
Douglas Gregor7532dc62009-03-30 22:58:21 +0000995 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000996 UnqualifiedId TemplateName;
997 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000998 bool MemberOfUnknownSpecialization;
Mike Stump1eb44332009-09-09 15:08:12 +0000999 if (TemplateNameKind TNK
Douglas Gregor23c94db2010-07-02 17:43:08 +00001000 = Actions.isTemplateName(getCurScope(), SS, TemplateName,
Mike Stump1eb44332009-09-09 15:08:12 +00001001 /*ObjectType=*/0, EnteringContext,
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001002 Template, MemberOfUnknownSpecialization)) {
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001003 // Consume the identifier.
1004 ConsumeToken();
1005 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName)) {
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001006 // If an unrecoverable error occurred, we need to return true here,
1007 // because the token stream is in a damaged state. We may not return
1008 // a valid identifier.
John McCall9ba61662010-02-26 08:45:28 +00001009 return true;
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001010 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001011 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00001012 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001013
Douglas Gregor39a8de12009-02-25 19:37:18 +00001014 // The current token, which is either an identifier or a
1015 // template-id, is not part of the annotation. Fall through to
1016 // push that token back into the stream and complete the C++ scope
1017 // specifier annotation.
Mike Stump1eb44332009-09-09 15:08:12 +00001018 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001019
Douglas Gregor39a8de12009-02-25 19:37:18 +00001020 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001021 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +00001022 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +00001023 if (TemplateId->Kind == TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001024 // A template-id that refers to a type was parsed into a
1025 // template-id annotation in a context where we weren't allowed
1026 // to produce a type annotation token. Update the template-id
1027 // annotation token to a type annotation token now.
Douglas Gregor31a19b62009-04-01 21:51:26 +00001028 AnnotateTemplateIdTokenAsType(&SS);
John McCall9ba61662010-02-26 08:45:28 +00001029 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +00001030 }
1031 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001032
Chris Lattner6ec76d42009-01-04 22:32:19 +00001033 if (SS.isEmpty())
John McCall9ba61662010-02-26 08:45:28 +00001034 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001035
Chris Lattner6ec76d42009-01-04 22:32:19 +00001036 // A C++ scope specifier that isn't followed by a typename.
1037 // Push the current token back into the token stream (or revert it if it is
1038 // cached) and use an annotation scope token for current token.
1039 if (PP.isBacktrackEnabled())
1040 PP.RevertCachedTokens(1);
1041 else
1042 PP.EnterToken(Tok);
1043 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001044 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001045 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001046
John McCallae03cb52009-12-19 00:35:18 +00001047 // In case the tokens were cached, have Preprocessor replace them
1048 // with the annotation token. We don't need to do this if we've
1049 // just reverted back to the state we were in before being called.
1050 if (!wasScopeAnnotation)
1051 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +00001052 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001053}
1054
1055/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
Douglas Gregor39a8de12009-02-25 19:37:18 +00001056/// annotates C++ scope specifiers and template-ids. This returns
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001057/// true if the token was annotated or there was an error that could not be
1058/// recovered from.
Mike Stump1eb44332009-09-09 15:08:12 +00001059///
Chris Lattner55a7cef2009-01-05 00:13:00 +00001060/// Note that this routine emits an error if you call it with ::new or ::delete
1061/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +00001062bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001063 assert(getLang().CPlusPlus &&
Chris Lattner6ec76d42009-01-04 22:32:19 +00001064 "Call sites of this function should be guarded by checking for C++");
Chris Lattner7452c6f2009-01-05 01:24:05 +00001065 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
1066 "Cannot be a type or scope token!");
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001067
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001068 CXXScopeSpec SS;
John McCall9ba61662010-02-26 08:45:28 +00001069 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext))
1070 return true;
Jeffrey Yasskinedc28772010-04-07 23:29:58 +00001071 if (SS.isEmpty())
John McCall9ba61662010-02-26 08:45:28 +00001072 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001073
Chris Lattner6ec76d42009-01-04 22:32:19 +00001074 // Push the current token back into the token stream (or revert it if it is
1075 // cached) and use an annotation scope token for current token.
1076 if (PP.isBacktrackEnabled())
1077 PP.RevertCachedTokens(1);
1078 else
1079 PP.EnterToken(Tok);
1080 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001081 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001082 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001083
Chris Lattner6ec76d42009-01-04 22:32:19 +00001084 // In case the tokens were cached, have Preprocessor replace them with the
1085 // annotation token.
1086 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +00001087 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001088}
John McCall6c94a6d2009-11-03 19:33:12 +00001089
Douglas Gregordc845342010-05-25 05:58:43 +00001090void Parser::CodeCompletionRecovery() {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001091 for (Scope *S = getCurScope(); S; S = S->getParent()) {
Douglas Gregordc845342010-05-25 05:58:43 +00001092 if (S->getFlags() & Scope::FnScope) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001093 Actions.CodeCompleteOrdinaryName(getCurScope(), Action::CCC_RecoveryInFunction);
Douglas Gregordc845342010-05-25 05:58:43 +00001094 return;
1095 }
1096
1097 if (S->getFlags() & Scope::ClassScope) {
Douglas Gregor23c94db2010-07-02 17:43:08 +00001098 Actions.CodeCompleteOrdinaryName(getCurScope(), Action::CCC_Class);
Douglas Gregordc845342010-05-25 05:58:43 +00001099 return;
1100 }
1101 }
1102
Douglas Gregor23c94db2010-07-02 17:43:08 +00001103 Actions.CodeCompleteOrdinaryName(getCurScope(), Action::CCC_Namespace);
Douglas Gregordc845342010-05-25 05:58:43 +00001104}
1105
John McCall6c94a6d2009-11-03 19:33:12 +00001106// Anchor the Parser::FieldCallback vtable to this translation unit.
1107// We use a spurious method instead of the destructor because
1108// destroying FieldCallbacks can actually be slightly
1109// performance-sensitive.
1110void Parser::FieldCallback::_anchor() {
1111}