blob: e7a771edda4473dfec0877e9eadb3b7a224039a6 [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
Douglas Gregor2e222532009-07-02 17:08:52 +000024/// \brief A comment handler that passes comments found by the preprocessor
25/// to the parser action.
26class ActionCommentHandler : public CommentHandler {
27 Action &Actions;
Mike Stump1eb44332009-09-09 15:08:12 +000028
Douglas Gregor2e222532009-07-02 17:08:52 +000029public:
30 explicit ActionCommentHandler(Action &Actions) : Actions(Actions) { }
Mike Stump1eb44332009-09-09 15:08:12 +000031
Chris Lattner046c2272010-01-18 22:35:47 +000032 virtual bool HandleComment(Preprocessor &PP, SourceRange Comment) {
Douglas Gregor2e222532009-07-02 17:08:52 +000033 Actions.ActOnComment(Comment);
Chris Lattner046c2272010-01-18 22:35:47 +000034 return false;
Douglas Gregor2e222532009-07-02 17:08:52 +000035 }
36};
37
Reid Spencer5f016e22007-07-11 17:01:13 +000038Parser::Parser(Preprocessor &pp, Action &actions)
Mike Stump1eb44332009-09-09 15:08:12 +000039 : CrashInfo(*this), PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
Chris Lattner08d92ec2009-12-10 00:32:41 +000040 GreaterThanIsOperator(true), ColonIsSacred(false),
41 TemplateParameterDepth(0) {
Reid Spencer5f016e22007-07-11 17:01:13 +000042 Tok.setKind(tok::eof);
43 CurScope = 0;
Chris Lattner9e344c62007-07-15 00:04:39 +000044 NumCachedScopes = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000045 ParenCount = BracketCount = BraceCount = 0;
Chris Lattnerb28317a2009-03-28 19:18:32 +000046 ObjCImpDecl = DeclPtrTy();
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +000047
48 // Add #pragma handlers. These are removed and destroyed in the
49 // destructor.
Ted Kremenek4726d032009-03-23 22:28:25 +000050 PackHandler.reset(new
51 PragmaPackHandler(&PP.getIdentifierTable().get("pack"), actions));
52 PP.AddPragmaHandler(0, PackHandler.get());
Mike Stump1eb44332009-09-09 15:08:12 +000053
Ted Kremenek4726d032009-03-23 22:28:25 +000054 UnusedHandler.reset(new
55 PragmaUnusedHandler(&PP.getIdentifierTable().get("unused"), actions,
56 *this));
57 PP.AddPragmaHandler(0, UnusedHandler.get());
Eli Friedman99914792009-06-05 00:49:58 +000058
59 WeakHandler.reset(new
60 PragmaWeakHandler(&PP.getIdentifierTable().get("weak"), actions));
61 PP.AddPragmaHandler(0, WeakHandler.get());
Mike Stump1eb44332009-09-09 15:08:12 +000062
Douglas Gregor2e222532009-07-02 17:08:52 +000063 CommentHandler.reset(new ActionCommentHandler(actions));
Mike Stump1eb44332009-09-09 15:08:12 +000064 PP.AddCommentHandler(CommentHandler.get());
Reid Spencer5f016e22007-07-11 17:01:13 +000065}
66
Chris Lattner0102c302009-03-05 07:24:28 +000067/// If a crash happens while the parser is active, print out a line indicating
68/// what the current token is.
69void PrettyStackTraceParserEntry::print(llvm::raw_ostream &OS) const {
70 const Token &Tok = P.getCurToken();
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000071 if (Tok.is(tok::eof)) {
Chris Lattner0102c302009-03-05 07:24:28 +000072 OS << "<eof> parser at end of file\n";
73 return;
74 }
Mike Stump1eb44332009-09-09 15:08:12 +000075
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000076 if (Tok.getLocation().isInvalid()) {
77 OS << "<unknown> parser at unknown location\n";
78 return;
79 }
Mike Stump1eb44332009-09-09 15:08:12 +000080
Chris Lattner0102c302009-03-05 07:24:28 +000081 const Preprocessor &PP = P.getPreprocessor();
82 Tok.getLocation().print(OS, PP.getSourceManager());
Daniel Dunbar9fa31dd2009-10-17 06:13:04 +000083 if (Tok.isAnnotation())
84 OS << ": at annotation token \n";
85 else
86 OS << ": current parser token '" << PP.getSpelling(Tok) << "'\n";
Douglas Gregorf780abc2008-12-30 03:27:21 +000087}
Reid Spencer5f016e22007-07-11 17:01:13 +000088
Chris Lattner0102c302009-03-05 07:24:28 +000089
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000090DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
Chris Lattner0102c302009-03-05 07:24:28 +000091 return Diags.Report(FullSourceLoc(Loc, PP.getSourceManager()), DiagID);
Chris Lattner1ab3b962008-11-18 07:48:38 +000092}
93
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000094DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
Chris Lattner1ab3b962008-11-18 07:48:38 +000095 return Diag(Tok.getLocation(), DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +000096}
97
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000098/// \brief Emits a diagnostic suggesting parentheses surrounding a
99/// given range.
100///
101/// \param Loc The location where we'll emit the diagnostic.
102/// \param Loc The kind of diagnostic to emit.
103/// \param ParenRange Source range enclosing code that should be parenthesized.
104void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
105 SourceRange ParenRange) {
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000106 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
107 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000108 // We can't display the parentheses, so just dig the
109 // warning/error and return.
110 Diag(Loc, DK);
111 return;
112 }
Mike Stump1eb44332009-09-09 15:08:12 +0000113
114 Diag(Loc, DK)
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000115 << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(")
116 << CodeModificationHint::CreateInsertion(EndLoc, ")");
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000117}
118
Reid Spencer5f016e22007-07-11 17:01:13 +0000119/// MatchRHSPunctuation - For punctuation with a LHS and RHS (e.g. '['/']'),
120/// this helper function matches and consumes the specified RHS token if
121/// present. If not present, it emits the specified diagnostic indicating
122/// that the parser failed to match the RHS of the token at LHSLoc. LHSName
123/// should be the name of the unmatched LHS token.
124SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok,
125 SourceLocation LHSLoc) {
Mike Stumpa6f01772008-06-19 19:28:49 +0000126
Chris Lattner00073222007-10-09 17:23:58 +0000127 if (Tok.is(RHSTok))
Reid Spencer5f016e22007-07-11 17:01:13 +0000128 return ConsumeAnyToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000129
Reid Spencer5f016e22007-07-11 17:01:13 +0000130 SourceLocation R = Tok.getLocation();
131 const char *LHSName = "unknown";
132 diag::kind DID = diag::err_parse_error;
133 switch (RHSTok) {
134 default: break;
135 case tok::r_paren : LHSName = "("; DID = diag::err_expected_rparen; break;
136 case tok::r_brace : LHSName = "{"; DID = diag::err_expected_rbrace; break;
137 case tok::r_square: LHSName = "["; DID = diag::err_expected_rsquare; break;
138 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break;
139 }
140 Diag(Tok, DID);
Chris Lattner28eb7e92008-11-23 23:17:07 +0000141 Diag(LHSLoc, diag::note_matching) << LHSName;
Reid Spencer5f016e22007-07-11 17:01:13 +0000142 SkipUntil(RHSTok);
143 return R;
144}
145
146/// ExpectAndConsume - The parser expects that 'ExpectedTok' is next in the
147/// input. If so, it is consumed and false is returned.
148///
149/// If the input is malformed, this emits the specified diagnostic. Next, if
150/// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
151/// returned.
152bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
153 const char *Msg, tok::TokenKind SkipToTok) {
Chris Lattner00073222007-10-09 17:23:58 +0000154 if (Tok.is(ExpectedTok)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 ConsumeAnyToken();
156 return false;
157 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000158
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000159 const char *Spelling = 0;
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000160 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
Mike Stump1eb44332009-09-09 15:08:12 +0000161 if (EndLoc.isValid() &&
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000162 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000163 // Show what code to insert to fix this problem.
Mike Stump1eb44332009-09-09 15:08:12 +0000164 Diag(EndLoc, DiagID)
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000165 << Msg
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000166 << CodeModificationHint::CreateInsertion(EndLoc, Spelling);
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000167 } else
168 Diag(Tok, DiagID) << Msg;
169
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 if (SkipToTok != tok::unknown)
171 SkipUntil(SkipToTok);
172 return true;
173}
174
175//===----------------------------------------------------------------------===//
176// Error recovery.
177//===----------------------------------------------------------------------===//
178
179/// SkipUntil - Read tokens until we get to the specified token, then consume
Chris Lattner012cf462007-07-24 17:03:04 +0000180/// it (unless DontConsume is true). Because we cannot guarantee that the
Reid Spencer5f016e22007-07-11 17:01:13 +0000181/// token will ever occur, this skips to the next token, or to some likely
182/// good stopping point. If StopAtSemi is true, skipping will stop at a ';'
183/// character.
Mike Stumpa6f01772008-06-19 19:28:49 +0000184///
Reid Spencer5f016e22007-07-11 17:01:13 +0000185/// If SkipUntil finds the specified token, it returns true, otherwise it
Mike Stumpa6f01772008-06-19 19:28:49 +0000186/// returns false.
Reid Spencer5f016e22007-07-11 17:01:13 +0000187bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,
188 bool StopAtSemi, bool DontConsume) {
189 // We always want this function to skip at least one token if the first token
190 // isn't T and if not at EOF.
191 bool isFirstTokenSkipped = true;
192 while (1) {
193 // If we found one of the tokens, stop and return true.
194 for (unsigned i = 0; i != NumToks; ++i) {
Chris Lattner00073222007-10-09 17:23:58 +0000195 if (Tok.is(Toks[i])) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000196 if (DontConsume) {
197 // Noop, don't consume the token.
198 } else {
199 ConsumeAnyToken();
200 }
201 return true;
202 }
203 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000204
Reid Spencer5f016e22007-07-11 17:01:13 +0000205 switch (Tok.getKind()) {
206 case tok::eof:
207 // Ran out of tokens.
208 return false;
Mike Stumpa6f01772008-06-19 19:28:49 +0000209
Reid Spencer5f016e22007-07-11 17:01:13 +0000210 case tok::l_paren:
211 // Recursively skip properly-nested parens.
212 ConsumeParen();
213 SkipUntil(tok::r_paren, false);
214 break;
215 case tok::l_square:
216 // Recursively skip properly-nested square brackets.
217 ConsumeBracket();
218 SkipUntil(tok::r_square, false);
219 break;
220 case tok::l_brace:
221 // Recursively skip properly-nested braces.
222 ConsumeBrace();
223 SkipUntil(tok::r_brace, false);
224 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000225
Reid Spencer5f016e22007-07-11 17:01:13 +0000226 // Okay, we found a ']' or '}' or ')', which we think should be balanced.
227 // Since the user wasn't looking for this token (if they were, it would
228 // already be handled), this isn't balanced. If there is a LHS token at a
229 // higher level, we will assume that this matches the unbalanced token
230 // and return it. Otherwise, this is a spurious RHS token, which we skip.
231 case tok::r_paren:
232 if (ParenCount && !isFirstTokenSkipped)
233 return false; // Matches something.
234 ConsumeParen();
235 break;
236 case tok::r_square:
237 if (BracketCount && !isFirstTokenSkipped)
238 return false; // Matches something.
239 ConsumeBracket();
240 break;
241 case tok::r_brace:
242 if (BraceCount && !isFirstTokenSkipped)
243 return false; // Matches something.
244 ConsumeBrace();
245 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000246
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 case tok::string_literal:
248 case tok::wide_string_literal:
249 ConsumeStringToken();
250 break;
251 case tok::semi:
252 if (StopAtSemi)
253 return false;
254 // FALL THROUGH.
255 default:
256 // Skip this token.
257 ConsumeToken();
258 break;
259 }
260 isFirstTokenSkipped = false;
Mike Stumpa6f01772008-06-19 19:28:49 +0000261 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000262}
263
264//===----------------------------------------------------------------------===//
265// Scope manipulation
266//===----------------------------------------------------------------------===//
267
Reid Spencer5f016e22007-07-11 17:01:13 +0000268/// EnterScope - Start a new scope.
269void Parser::EnterScope(unsigned ScopeFlags) {
Chris Lattner9e344c62007-07-15 00:04:39 +0000270 if (NumCachedScopes) {
271 Scope *N = ScopeCache[--NumCachedScopes];
Reid Spencer5f016e22007-07-11 17:01:13 +0000272 N->Init(CurScope, ScopeFlags);
273 CurScope = N;
274 } else {
275 CurScope = new Scope(CurScope, ScopeFlags);
276 }
Douglas Gregord6d4fcf2010-03-01 23:31:19 +0000277 CurScope->setNumErrorsAtStart(Diags.getNumErrors());
Reid Spencer5f016e22007-07-11 17:01:13 +0000278}
279
280/// ExitScope - Pop a scope off the scope stack.
281void Parser::ExitScope() {
282 assert(CurScope && "Scope imbalance!");
283
Chris Lattner90ae68a2007-10-09 20:37:18 +0000284 // Inform the actions module that this scope is going away if there are any
285 // decls in it.
286 if (!CurScope->decl_empty())
Steve Naroffb216c882007-10-09 22:01:59 +0000287 Actions.ActOnPopScope(Tok.getLocation(), CurScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000288
Chris Lattner9e344c62007-07-15 00:04:39 +0000289 Scope *OldScope = CurScope;
290 CurScope = OldScope->getParent();
Mike Stumpa6f01772008-06-19 19:28:49 +0000291
Chris Lattner9e344c62007-07-15 00:04:39 +0000292 if (NumCachedScopes == ScopeCacheSize)
293 delete OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 else
Chris Lattner9e344c62007-07-15 00:04:39 +0000295 ScopeCache[NumCachedScopes++] = OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000296}
297
298
299
300
301//===----------------------------------------------------------------------===//
302// C99 6.9: External Definitions.
303//===----------------------------------------------------------------------===//
304
305Parser::~Parser() {
306 // If we still have scopes active, delete the scope tree.
307 delete CurScope;
Mike Stumpa6f01772008-06-19 19:28:49 +0000308
Reid Spencer5f016e22007-07-11 17:01:13 +0000309 // Free the scope cache.
Chris Lattner9e344c62007-07-15 00:04:39 +0000310 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
311 delete ScopeCache[i];
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +0000312
313 // Remove the pragma handlers we installed.
Ted Kremenek4726d032009-03-23 22:28:25 +0000314 PP.RemovePragmaHandler(0, PackHandler.get());
315 PackHandler.reset();
316 PP.RemovePragmaHandler(0, UnusedHandler.get());
317 UnusedHandler.reset();
Eli Friedman99914792009-06-05 00:49:58 +0000318 PP.RemovePragmaHandler(0, WeakHandler.get());
319 WeakHandler.reset();
Douglas Gregor2e222532009-07-02 17:08:52 +0000320 PP.RemoveCommentHandler(CommentHandler.get());
Reid Spencer5f016e22007-07-11 17:01:13 +0000321}
322
323/// Initialize - Warm up the parser.
324///
325void Parser::Initialize() {
326 // Prime the lexer look-ahead.
327 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000328
Chris Lattner31e05722007-08-26 06:24:45 +0000329 // Create the translation unit scope. Install it as the current scope.
Reid Spencer5f016e22007-07-11 17:01:13 +0000330 assert(CurScope == 0 && "A scope is already active?");
Chris Lattner31e05722007-08-26 06:24:45 +0000331 EnterScope(Scope::DeclScope);
Steve Naroffb216c882007-10-09 22:01:59 +0000332 Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000333
Chris Lattner00073222007-10-09 17:23:58 +0000334 if (Tok.is(tok::eof) &&
Chris Lattnerf7261752007-08-25 05:47:03 +0000335 !getLang().CPlusPlus) // Empty source file is an extension in C
Reid Spencer5f016e22007-07-11 17:01:13 +0000336 Diag(Tok, diag::ext_empty_source_file);
Mike Stumpa6f01772008-06-19 19:28:49 +0000337
Chris Lattner34870da2007-08-29 22:54:08 +0000338 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000339 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner34870da2007-08-29 22:54:08 +0000340 if (getLang().ObjC1) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000341 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
342 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
343 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
344 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
345 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
346 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
Chris Lattner34870da2007-08-29 22:54:08 +0000347 }
Daniel Dunbar662e8b52008-08-14 22:04:54 +0000348
349 Ident_super = &PP.getIdentifierTable().get("super");
John Thompson82287d12010-02-05 00:12:22 +0000350
351 if (getLang().AltiVec) {
352 Ident_vector = &PP.getIdentifierTable().get("vector");
353 Ident_pixel = &PP.getIdentifierTable().get("pixel");
354 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000355}
356
357/// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
358/// action tells us to. This returns true if the EOF was encountered.
Chris Lattner682bf922009-03-29 16:50:03 +0000359bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
360 Result = DeclGroupPtrTy();
Chris Lattner9299f3f2008-08-23 03:19:52 +0000361 if (Tok.is(tok::eof)) {
362 Actions.ActOnEndOfTranslationUnit();
363 return true;
364 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000365
Sean Huntbbd37c62009-11-21 08:43:09 +0000366 CXX0XAttributeList Attr;
367 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
368 Attr = ParseCXX0XAttributes();
369 Result = ParseExternalDeclaration(Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 return false;
371}
372
Reid Spencer5f016e22007-07-11 17:01:13 +0000373/// ParseTranslationUnit:
374/// translation-unit: [C99 6.9]
Mike Stumpa6f01772008-06-19 19:28:49 +0000375/// external-declaration
376/// translation-unit external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000377void Parser::ParseTranslationUnit() {
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000378 Initialize();
Mike Stumpa6f01772008-06-19 19:28:49 +0000379
Chris Lattner682bf922009-03-29 16:50:03 +0000380 DeclGroupPtrTy Res;
Steve Naroff89307ff2007-11-29 23:05:20 +0000381 while (!ParseTopLevelDecl(Res))
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 /*parse them all*/;
Mike Stump1eb44332009-09-09 15:08:12 +0000383
Chris Lattner06f54852008-08-23 02:00:52 +0000384 ExitScope();
385 assert(CurScope == 0 && "Scope imbalance!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000386}
387
388/// ParseExternalDeclaration:
Chris Lattner90b93d62008-12-08 21:59:01 +0000389///
Douglas Gregorc19923d2008-11-21 16:10:08 +0000390/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattnerc3018152007-08-10 20:57:02 +0000391/// function-definition
392/// declaration
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000393/// [C++0x] empty-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000394/// [GNU] asm-definition
Chris Lattnerc3018152007-08-10 20:57:02 +0000395/// [GNU] __extension__ external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000396/// [OBJC] objc-class-definition
397/// [OBJC] objc-class-declaration
398/// [OBJC] objc-alias-declaration
399/// [OBJC] objc-protocol-definition
400/// [OBJC] objc-method-definition
401/// [OBJC] @end
Douglas Gregorc19923d2008-11-21 16:10:08 +0000402/// [C++] linkage-specification
Reid Spencer5f016e22007-07-11 17:01:13 +0000403/// [GNU] asm-definition:
404/// simple-asm-expr ';'
405///
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000406/// [C++0x] empty-declaration:
407/// ';'
408///
Douglas Gregor45f96552009-09-04 06:33:52 +0000409/// [C++0x/GNU] 'extern' 'template' declaration
Sean Huntbbd37c62009-11-21 08:43:09 +0000410Parser::DeclGroupPtrTy Parser::ParseExternalDeclaration(CXX0XAttributeList Attr) {
Chris Lattner682bf922009-03-29 16:50:03 +0000411 DeclPtrTy SingleDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +0000412 switch (Tok.getKind()) {
413 case tok::semi:
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000414 if (!getLang().CPlusPlus0x)
415 Diag(Tok, diag::ext_top_level_semi)
Chris Lattner29d9c1a2009-12-06 17:36:05 +0000416 << CodeModificationHint::CreateRemoval(Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Reid Spencer5f016e22007-07-11 17:01:13 +0000418 ConsumeToken();
419 // TODO: Invoke action for top-level semicolon.
Chris Lattner682bf922009-03-29 16:50:03 +0000420 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000421 case tok::r_brace:
422 Diag(Tok, diag::err_expected_external_declaration);
423 ConsumeBrace();
Chris Lattner682bf922009-03-29 16:50:03 +0000424 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000425 case tok::eof:
426 Diag(Tok, diag::err_expected_external_declaration);
Chris Lattner682bf922009-03-29 16:50:03 +0000427 return DeclGroupPtrTy();
Chris Lattnerc3018152007-08-10 20:57:02 +0000428 case tok::kw___extension__: {
Chris Lattnerc46d1a12008-10-20 06:45:43 +0000429 // __extension__ silences extension warnings in the subexpression.
430 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner39146d62008-10-20 06:51:33 +0000431 ConsumeToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000432 return ParseExternalDeclaration(Attr);
Chris Lattnerc3018152007-08-10 20:57:02 +0000433 }
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000434 case tok::kw_asm: {
Sean Huntbbd37c62009-11-21 08:43:09 +0000435 if (Attr.HasAttr)
436 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
437 << Attr.Range;
438
Sebastian Redleffa8d12008-12-10 00:02:53 +0000439 OwningExprResult Result(ParseSimpleAsm());
Mike Stumpa6f01772008-06-19 19:28:49 +0000440
Anders Carlsson3f9424f2008-02-08 00:23:11 +0000441 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
442 "top-level asm block");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000443
Chris Lattner682bf922009-03-29 16:50:03 +0000444 if (Result.isInvalid())
445 return DeclGroupPtrTy();
446 SingleDecl = Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), move(Result));
447 break;
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000448 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000449 case tok::at:
Chris Lattner682bf922009-03-29 16:50:03 +0000450 // @ is not a legal token unless objc is enabled, no need to check for ObjC.
451 /// FIXME: ParseObjCAtDirectives should return a DeclGroup for things like
452 /// @class foo, bar;
453 SingleDecl = ParseObjCAtDirectives();
454 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000455 case tok::minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000456 case tok::plus:
Chris Lattner682bf922009-03-29 16:50:03 +0000457 if (!getLang().ObjC1) {
458 Diag(Tok, diag::err_expected_external_declaration);
459 ConsumeToken();
460 return DeclGroupPtrTy();
461 }
462 SingleDecl = ParseObjCMethodDefinition();
463 break;
Douglas Gregor791215b2009-09-21 20:51:25 +0000464 case tok::code_completion:
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000465 Actions.CodeCompleteOrdinaryName(CurScope,
466 ObjCImpDecl? Action::CCC_ObjCImplementation
467 : Action::CCC_Namespace);
Douglas Gregor791215b2009-09-21 20:51:25 +0000468 ConsumeToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000469 return ParseExternalDeclaration(Attr);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000470 case tok::kw_using:
Chris Lattner8f08cb72007-08-25 06:57:03 +0000471 case tok::kw_namespace:
Reid Spencer5f016e22007-07-11 17:01:13 +0000472 case tok::kw_typedef:
Douglas Gregoradcac882008-12-01 23:54:00 +0000473 case tok::kw_template:
474 case tok::kw_export: // As in 'export template'
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000475 case tok::kw_static_assert:
Chris Lattnerbae35112007-08-25 18:15:16 +0000476 // A function definition cannot start with a these keywords.
Chris Lattner97144fc2009-04-02 04:16:50 +0000477 {
478 SourceLocation DeclEnd;
Sean Huntbbd37c62009-11-21 08:43:09 +0000479 return ParseDeclaration(Declarator::FileContext, DeclEnd, Attr);
Chris Lattner97144fc2009-04-02 04:16:50 +0000480 }
Douglas Gregor45f96552009-09-04 06:33:52 +0000481 case tok::kw_extern:
482 if (getLang().CPlusPlus && NextToken().is(tok::kw_template)) {
483 // Extern templates
484 SourceLocation ExternLoc = ConsumeToken();
485 SourceLocation TemplateLoc = ConsumeToken();
486 SourceLocation DeclEnd;
487 return Actions.ConvertDeclToDeclGroup(
488 ParseExplicitInstantiation(ExternLoc, TemplateLoc, DeclEnd));
489 }
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Douglas Gregor45f96552009-09-04 06:33:52 +0000491 // FIXME: Detect C++ linkage specifications here?
Mike Stump1eb44332009-09-09 15:08:12 +0000492
Douglas Gregor45f96552009-09-04 06:33:52 +0000493 // Fall through to handle other declarations or function definitions.
Mike Stump1eb44332009-09-09 15:08:12 +0000494
Reid Spencer5f016e22007-07-11 17:01:13 +0000495 default:
496 // We can't tell whether this is a function-definition or declaration yet.
Sean Huntbbd37c62009-11-21 08:43:09 +0000497 return ParseDeclarationOrFunctionDefinition(Attr.AttrList);
Reid Spencer5f016e22007-07-11 17:01:13 +0000498 }
Mike Stump1eb44332009-09-09 15:08:12 +0000499
Chris Lattner682bf922009-03-29 16:50:03 +0000500 // This routine returns a DeclGroup, if the thing we parsed only contains a
501 // single decl, convert it now.
502 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000503}
504
Douglas Gregor1426e532009-05-12 21:31:51 +0000505/// \brief Determine whether the current token, if it occurs after a
506/// declarator, continues a declaration or declaration list.
507bool Parser::isDeclarationAfterDeclarator() {
508 return Tok.is(tok::equal) || // int X()= -> not a function def
509 Tok.is(tok::comma) || // int X(), -> not a function def
510 Tok.is(tok::semi) || // int X(); -> not a function def
511 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def
512 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def
513 (getLang().CPlusPlus &&
514 Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++]
515}
516
517/// \brief Determine whether the current token, if it occurs after a
518/// declarator, indicates the start of a function definition.
519bool Parser::isStartOfFunctionDefinition() {
Chris Lattner5d1c6192009-12-06 18:34:27 +0000520 if (Tok.is(tok::l_brace)) // int X() {}
521 return true;
522
523 if (!getLang().CPlusPlus)
524 return isDeclarationSpecifier(); // int X(f) int f; {}
525 return Tok.is(tok::colon) || // X() : Base() {} (used for ctors)
526 Tok.is(tok::kw_try); // X() try { ... }
Douglas Gregor1426e532009-05-12 21:31:51 +0000527}
528
Reid Spencer5f016e22007-07-11 17:01:13 +0000529/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
530/// a declaration. We can't tell which we have until we read up to the
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000531/// compound-statement in function-definition. TemplateParams, if
532/// non-NULL, provides the template parameters when we're parsing a
Mike Stump1eb44332009-09-09 15:08:12 +0000533/// C++ template-declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +0000534///
535/// function-definition: [C99 6.9.1]
Chris Lattnera798ebc2008-04-05 05:52:15 +0000536/// decl-specs declarator declaration-list[opt] compound-statement
537/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000538/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattnera798ebc2008-04-05 05:52:15 +0000539///
Reid Spencer5f016e22007-07-11 17:01:13 +0000540/// declaration: [C99 6.7]
Chris Lattner697e15f2007-08-22 06:06:56 +0000541/// declaration-specifiers init-declarator-list[opt] ';'
542/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Reid Spencer5f016e22007-07-11 17:01:13 +0000543/// [OMP] threadprivate-directive [TODO]
544///
Chris Lattner682bf922009-03-29 16:50:03 +0000545Parser::DeclGroupPtrTy
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000546Parser::ParseDeclarationOrFunctionDefinition(ParsingDeclSpec &DS,
547 AttributeList *Attr,
Sean Huntbbd37c62009-11-21 08:43:09 +0000548 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000549 // Parse the common declaration-specifiers piece.
Sean Huntbbd37c62009-11-21 08:43:09 +0000550 if (Attr)
551 DS.AddAttributes(Attr);
552
Douglas Gregor0efc2c12010-01-13 17:31:36 +0000553 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
Mike Stumpa6f01772008-06-19 19:28:49 +0000554
Reid Spencer5f016e22007-07-11 17:01:13 +0000555 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
556 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner00073222007-10-09 17:23:58 +0000557 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000558 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000559 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
John McCall54abf7d2009-11-04 02:18:39 +0000560 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +0000561 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000562 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000563
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000564 // ObjC2 allows prefix attributes on class interfaces and protocols.
565 // FIXME: This still needs better diagnostics. We should only accept
566 // attributes here, no types, etc.
Chris Lattner00073222007-10-09 17:23:58 +0000567 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000568 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +0000569 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000570 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
571 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattnercb53b362007-12-27 19:57:00 +0000572 SkipUntil(tok::semi); // FIXME: better skip?
Chris Lattner682bf922009-03-29 16:50:03 +0000573 return DeclGroupPtrTy();
Chris Lattnercb53b362007-12-27 19:57:00 +0000574 }
John McCalld8ac0572009-11-03 19:26:08 +0000575
John McCall54abf7d2009-11-04 02:18:39 +0000576 DS.abort();
577
Fariborz Jahanian0de2ae22008-01-02 19:17:38 +0000578 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000579 unsigned DiagID;
580 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
581 Diag(AtLoc, DiagID) << PrevSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000582
Chris Lattner682bf922009-03-29 16:50:03 +0000583 DeclPtrTy TheDecl;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000584 if (Tok.isObjCAtKeyword(tok::objc_protocol))
Chris Lattner682bf922009-03-29 16:50:03 +0000585 TheDecl = ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
586 else
587 TheDecl = ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
588 return Actions.ConvertDeclToDeclGroup(TheDecl);
Steve Naroffdac269b2007-08-20 21:31:48 +0000589 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000590
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000591 // If the declspec consisted only of 'extern' and we have a string
592 // literal following it, this must be a C++ linkage specifier like
593 // 'extern "C"'.
Chris Lattner3c6f6a72008-01-12 07:08:43 +0000594 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000595 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
Chris Lattner682bf922009-03-29 16:50:03 +0000596 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000597 DeclPtrTy TheDecl = ParseLinkage(DS, Declarator::FileContext);
Chris Lattner682bf922009-03-29 16:50:03 +0000598 return Actions.ConvertDeclToDeclGroup(TheDecl);
599 }
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000600
John McCalld8ac0572009-11-03 19:26:08 +0000601 return ParseDeclGroup(DS, Declarator::FileContext, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000602}
603
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000604Parser::DeclGroupPtrTy
605Parser::ParseDeclarationOrFunctionDefinition(AttributeList *Attr,
606 AccessSpecifier AS) {
607 ParsingDeclSpec DS(*this);
608 return ParseDeclarationOrFunctionDefinition(DS, Attr, AS);
609}
610
Reid Spencer5f016e22007-07-11 17:01:13 +0000611/// ParseFunctionDefinition - We parsed and verified that the specified
612/// Declarator is well formed. If this is a K&R-style function, read the
613/// parameters declaration-list, then start the compound-statement.
614///
Chris Lattnera798ebc2008-04-05 05:52:15 +0000615/// function-definition: [C99 6.9.1]
616/// decl-specs declarator declaration-list[opt] compound-statement
617/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000618/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregor7ad83902008-11-05 04:29:56 +0000619/// [C++] function-definition: [C++ 8.4]
Chris Lattner23c4b182009-03-29 17:18:04 +0000620/// decl-specifier-seq[opt] declarator ctor-initializer[opt]
621/// function-body
Douglas Gregor7ad83902008-11-05 04:29:56 +0000622/// [C++] function-definition: [C++ 8.4]
Sebastian Redld3a413d2009-04-26 20:35:05 +0000623/// decl-specifier-seq[opt] declarator function-try-block
Reid Spencer5f016e22007-07-11 17:01:13 +0000624///
John McCall54abf7d2009-11-04 02:18:39 +0000625Parser::DeclPtrTy Parser::ParseFunctionDefinition(ParsingDeclarator &D,
Douglas Gregor52591bf2009-06-24 00:54:41 +0000626 const ParsedTemplateInfo &TemplateInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000627 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
628 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
629 "This isn't a function declarator!");
630 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stumpa6f01772008-06-19 19:28:49 +0000631
Chris Lattnera798ebc2008-04-05 05:52:15 +0000632 // If this is C90 and the declspecs were completely missing, fudge in an
633 // implicit int. We do this here because this is the only place where
634 // declaration-specifiers are completely optional in the grammar.
Chris Lattner2a327d12009-02-27 18:35:46 +0000635 if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) {
Chris Lattnera798ebc2008-04-05 05:52:15 +0000636 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000637 unsigned DiagID;
Chris Lattner31c28682008-10-20 02:01:34 +0000638 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
639 D.getIdentifierLoc(),
John McCallfec54012009-08-03 20:12:06 +0000640 PrevSpec, DiagID);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000641 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
Chris Lattnera798ebc2008-04-05 05:52:15 +0000642 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000643
Reid Spencer5f016e22007-07-11 17:01:13 +0000644 // If this declaration was formed with a K&R-style identifier list for the
645 // arguments, parse declarations for all of the args next.
646 // int foo(a,b) int a; float b; {}
647 if (!FTI.hasPrototype && FTI.NumArgs != 0)
648 ParseKNRParamDeclarations(D);
649
Douglas Gregor7ad83902008-11-05 04:29:56 +0000650 // We should have either an opening brace or, in a C++ constructor,
651 // we may have a colon.
Sebastian Redld3a413d2009-04-26 20:35:05 +0000652 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon) &&
653 Tok.isNot(tok::kw_try)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 Diag(Tok, diag::err_expected_fn_body);
655
656 // Skip over garbage, until we get to '{'. Don't eat the '{'.
657 SkipUntil(tok::l_brace, true, true);
Mike Stumpa6f01772008-06-19 19:28:49 +0000658
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 // If we didn't find the '{', bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000660 if (Tok.isNot(tok::l_brace))
Chris Lattnerb28317a2009-03-28 19:18:32 +0000661 return DeclPtrTy();
Reid Spencer5f016e22007-07-11 17:01:13 +0000662 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000663
Chris Lattnerb652cea2007-10-09 17:14:05 +0000664 // Enter a scope for the function body.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000665 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000666
Chris Lattnerb652cea2007-10-09 17:14:05 +0000667 // Tell the actions module that we have entered a function definition with the
668 // specified Declarator for the function.
Mike Stump1eb44332009-09-09 15:08:12 +0000669 DeclPtrTy Res = TemplateInfo.TemplateParams?
Douglas Gregor52591bf2009-06-24 00:54:41 +0000670 Actions.ActOnStartOfFunctionTemplateDef(CurScope,
671 Action::MultiTemplateParamsArg(Actions,
672 TemplateInfo.TemplateParams->data(),
673 TemplateInfo.TemplateParams->size()),
674 D)
675 : Actions.ActOnStartOfFunctionDef(CurScope, D);
Mike Stumpa6f01772008-06-19 19:28:49 +0000676
John McCall54abf7d2009-11-04 02:18:39 +0000677 // Break out of the ParsingDeclarator context before we parse the body.
678 D.complete(Res);
679
680 // Break out of the ParsingDeclSpec context, too. This const_cast is
681 // safe because we're always the sole owner.
682 D.getMutableDeclSpec().abort();
683
Sebastian Redld3a413d2009-04-26 20:35:05 +0000684 if (Tok.is(tok::kw_try))
685 return ParseFunctionTryBlock(Res);
686
Douglas Gregor7ad83902008-11-05 04:29:56 +0000687 // If we have a colon, then we're probably parsing a C++
688 // ctor-initializer.
689 if (Tok.is(tok::colon))
690 ParseConstructorInitializer(Res);
Fariborz Jahanian0849d382009-07-14 20:06:22 +0000691 else
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000692 Actions.ActOnDefaultCtorInitializers(Res);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000693
Chris Lattner40e9bc82009-03-05 00:49:17 +0000694 return ParseFunctionStatementBody(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000695}
696
697/// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
698/// types for a function with a K&R-style identifier list for arguments.
699void Parser::ParseKNRParamDeclarations(Declarator &D) {
700 // We know that the top-level of this declarator is a function.
701 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
702
Chris Lattner04421082008-04-08 04:40:51 +0000703 // Enter function-declaration scope, limiting any declarators to the
704 // function prototype scope, including parameter declarators.
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000705 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattner04421082008-04-08 04:40:51 +0000706
Reid Spencer5f016e22007-07-11 17:01:13 +0000707 // Read all the argument declarations.
708 while (isDeclarationSpecifier()) {
709 SourceLocation DSStart = Tok.getLocation();
Mike Stumpa6f01772008-06-19 19:28:49 +0000710
Reid Spencer5f016e22007-07-11 17:01:13 +0000711 // Parse the common declaration-specifiers piece.
712 DeclSpec DS;
713 ParseDeclarationSpecifiers(DS);
Mike Stumpa6f01772008-06-19 19:28:49 +0000714
Reid Spencer5f016e22007-07-11 17:01:13 +0000715 // C99 6.9.1p6: 'each declaration in the declaration list shall have at
716 // least one declarator'.
717 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with
718 // the declarations though. It's trivial to ignore them, really hard to do
719 // anything else with them.
Chris Lattner00073222007-10-09 17:23:58 +0000720 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 Diag(DSStart, diag::err_declaration_does_not_declare_param);
722 ConsumeToken();
723 continue;
724 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000725
Reid Spencer5f016e22007-07-11 17:01:13 +0000726 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
727 // than register.
728 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
729 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
730 Diag(DS.getStorageClassSpecLoc(),
731 diag::err_invalid_storage_class_in_func_decl);
732 DS.ClearStorageClassSpecs();
733 }
734 if (DS.isThreadSpecified()) {
735 Diag(DS.getThreadSpecLoc(),
736 diag::err_invalid_storage_class_in_func_decl);
737 DS.ClearStorageClassSpecs();
738 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000739
Reid Spencer5f016e22007-07-11 17:01:13 +0000740 // Parse the first declarator attached to this declspec.
741 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
742 ParseDeclarator(ParmDeclarator);
743
744 // Handle the full declarator list.
745 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000746 // If attributes are present, parse them.
Richard Pennington33efe2f2010-02-23 12:22:13 +0000747 if (Tok.is(tok::kw___attribute)) {
748 SourceLocation Loc;
749 AttributeList *AttrList = ParseGNUAttributes(&Loc);
750 ParmDeclarator.AddAttributes(AttrList, Loc);
751 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000752
Reid Spencer5f016e22007-07-11 17:01:13 +0000753 // Ask the actions module to compute the type for this declarator.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000754 Action::DeclPtrTy Param =
Chris Lattner04421082008-04-08 04:40:51 +0000755 Actions.ActOnParamDeclarator(CurScope, ParmDeclarator);
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000756
Mike Stumpa6f01772008-06-19 19:28:49 +0000757 if (Param &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000758 // A missing identifier has already been diagnosed.
759 ParmDeclarator.getIdentifier()) {
760
761 // Scan the argument list looking for the correct param to apply this
762 // type.
763 for (unsigned i = 0; ; ++i) {
764 // C99 6.9.1p6: those declarators shall declare only identifiers from
765 // the identifier list.
766 if (i == FTI.NumArgs) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000767 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattner6898e332008-11-19 07:51:13 +0000768 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000769 break;
770 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000771
Reid Spencer5f016e22007-07-11 17:01:13 +0000772 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
773 // Reject redefinitions of parameters.
Chris Lattner04421082008-04-08 04:40:51 +0000774 if (FTI.ArgInfo[i].Param) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000775 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +0000776 diag::err_param_redefinition)
Chris Lattner6898e332008-11-19 07:51:13 +0000777 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000778 } else {
Chris Lattner04421082008-04-08 04:40:51 +0000779 FTI.ArgInfo[i].Param = Param;
Reid Spencer5f016e22007-07-11 17:01:13 +0000780 }
781 break;
782 }
783 }
784 }
785
786 // If we don't have a comma, it is either the end of the list (a ';') or
787 // an error, bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000788 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000790
Reid Spencer5f016e22007-07-11 17:01:13 +0000791 // Consume the comma.
792 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000793
Reid Spencer5f016e22007-07-11 17:01:13 +0000794 // Parse the next declarator.
795 ParmDeclarator.clear();
796 ParseDeclarator(ParmDeclarator);
797 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000798
Chris Lattner00073222007-10-09 17:23:58 +0000799 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000800 ConsumeToken();
801 } else {
802 Diag(Tok, diag::err_parse_error);
803 // Skip to end of block or statement
804 SkipUntil(tok::semi, true);
Chris Lattner00073222007-10-09 17:23:58 +0000805 if (Tok.is(tok::semi))
Reid Spencer5f016e22007-07-11 17:01:13 +0000806 ConsumeToken();
807 }
808 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000809
Reid Spencer5f016e22007-07-11 17:01:13 +0000810 // The actions module must verify that all arguments were declared.
Douglas Gregora3a83512009-04-01 23:51:29 +0000811 Actions.ActOnFinishKNRParamDeclarations(CurScope, D, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000812}
813
814
815/// ParseAsmStringLiteral - This is just a normal string-literal, but is not
816/// allowed to be a wide string, and is not subject to character translation.
817///
818/// [GNU] asm-string-literal:
819/// string-literal
820///
Sebastian Redleffa8d12008-12-10 00:02:53 +0000821Parser::OwningExprResult Parser::ParseAsmStringLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000822 if (!isTokenStringLiteral()) {
823 Diag(Tok, diag::err_expected_string_literal);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000824 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000825 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000826
Sebastian Redl20df9b72008-12-11 22:51:44 +0000827 OwningExprResult Res(ParseStringLiteralExpression());
Sebastian Redleffa8d12008-12-10 00:02:53 +0000828 if (Res.isInvalid()) return move(Res);
Mike Stumpa6f01772008-06-19 19:28:49 +0000829
Reid Spencer5f016e22007-07-11 17:01:13 +0000830 // TODO: Diagnose: wide string literal in 'asm'
Mike Stumpa6f01772008-06-19 19:28:49 +0000831
Sebastian Redleffa8d12008-12-10 00:02:53 +0000832 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000833}
834
835/// ParseSimpleAsm
836///
837/// [GNU] simple-asm-expr:
838/// 'asm' '(' asm-string-literal ')'
839///
Sebastian Redlab197ba2009-02-09 18:23:29 +0000840Parser::OwningExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
Chris Lattner00073222007-10-09 17:23:58 +0000841 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000842 SourceLocation Loc = ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000843
John McCall7a6ae742010-01-25 22:27:48 +0000844 if (Tok.is(tok::kw_volatile)) {
John McCall841d5e62010-01-25 23:12:50 +0000845 // Remove from the end of 'asm' to the end of 'volatile'.
846 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
847 PP.getLocForEndOfToken(Tok.getLocation()));
848
849 Diag(Tok, diag::warn_file_asm_volatile)
850 << CodeModificationHint::CreateRemoval(RemovalRange);
John McCall7a6ae742010-01-25 22:27:48 +0000851 ConsumeToken();
852 }
853
Chris Lattner00073222007-10-09 17:23:58 +0000854 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000855 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Sebastian Redl61364dd2008-12-11 19:30:53 +0000856 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000857 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000858
Sebastian Redlab197ba2009-02-09 18:23:29 +0000859 Loc = ConsumeParen();
Mike Stumpa6f01772008-06-19 19:28:49 +0000860
Sebastian Redleffa8d12008-12-10 00:02:53 +0000861 OwningExprResult Result(ParseAsmStringLiteral());
Mike Stumpa6f01772008-06-19 19:28:49 +0000862
Sebastian Redlab197ba2009-02-09 18:23:29 +0000863 if (Result.isInvalid()) {
864 SkipUntil(tok::r_paren, true, true);
865 if (EndLoc)
866 *EndLoc = Tok.getLocation();
867 ConsumeAnyToken();
868 } else {
869 Loc = MatchRHSPunctuation(tok::r_paren, Loc);
870 if (EndLoc)
871 *EndLoc = Loc;
872 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000873
Sebastian Redleffa8d12008-12-10 00:02:53 +0000874 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000875}
876
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000877/// TryAnnotateTypeOrScopeToken - If the current token position is on a
878/// typename (possibly qualified in C++) or a C++ scope specifier not followed
879/// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
880/// with a single annotation token representing the typename or C++ scope
881/// respectively.
882/// This simplifies handling of C++ scope specifiers and allows efficient
883/// backtracking without the need to re-parse and resolve nested-names and
884/// typenames.
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000885/// It will mainly be called when we expect to treat identifiers as typenames
886/// (if they are typenames). For example, in C we do not expect identifiers
887/// inside expressions to be treated as typenames so it will not be called
888/// for expressions in C.
889/// The benefit for C/ObjC is that a typename will be annotated and
Steve Naroffb43a50f2009-01-28 19:39:02 +0000890/// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000891/// will not be called twice, once to check whether we have a declaration
892/// specifier, and another one to get the actual type inside
893/// ParseDeclarationSpecifiers).
Chris Lattnera7bc7c82009-01-04 23:23:14 +0000894///
John McCall9ba61662010-02-26 08:45:28 +0000895/// This returns true if an error occurred.
Mike Stump1eb44332009-09-09 15:08:12 +0000896///
Chris Lattner55a7cef2009-01-05 00:13:00 +0000897/// Note that this routine emits an error if you call it with ::new or ::delete
898/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +0000899bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000900 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)
John McCallae03cb52009-12-19 00:35:18 +0000901 || Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope)) &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000902 "Cannot be a type or scope token!");
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Douglas Gregord57959a2009-03-27 23:10:48 +0000904 if (Tok.is(tok::kw_typename)) {
905 // Parse a C++ typename-specifier, e.g., "typename T::type".
906 //
907 // typename-specifier:
908 // 'typename' '::' [opt] nested-name-specifier identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000909 // 'typename' '::' [opt] nested-name-specifier template [opt]
Douglas Gregor17343172009-04-01 00:28:59 +0000910 // simple-template-id
Douglas Gregord57959a2009-03-27 23:10:48 +0000911 SourceLocation TypenameLoc = ConsumeToken();
912 CXXScopeSpec SS;
John McCall9ba61662010-02-26 08:45:28 +0000913 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false))
914 return true;
915 if (!SS.isSet()) {
Douglas Gregord57959a2009-03-27 23:10:48 +0000916 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
John McCall9ba61662010-02-26 08:45:28 +0000917 return true;
Douglas Gregord57959a2009-03-27 23:10:48 +0000918 }
919
920 TypeResult Ty;
921 if (Tok.is(tok::identifier)) {
922 // FIXME: check whether the next token is '<', first!
Mike Stump1eb44332009-09-09 15:08:12 +0000923 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, *Tok.getIdentifierInfo(),
Douglas Gregord57959a2009-03-27 23:10:48 +0000924 Tok.getLocation());
Douglas Gregor17343172009-04-01 00:28:59 +0000925 } else if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000926 TemplateIdAnnotation *TemplateId
Douglas Gregor17343172009-04-01 00:28:59 +0000927 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
928 if (TemplateId->Kind == TNK_Function_template) {
929 Diag(Tok, diag::err_typename_refers_to_non_type_template)
930 << Tok.getAnnotationRange();
John McCall9ba61662010-02-26 08:45:28 +0000931 return true;
Douglas Gregor17343172009-04-01 00:28:59 +0000932 }
Douglas Gregord57959a2009-03-27 23:10:48 +0000933
Douglas Gregor31a19b62009-04-01 21:51:26 +0000934 AnnotateTemplateIdTokenAsType(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000935 assert(Tok.is(tok::annot_typename) &&
Douglas Gregor17343172009-04-01 00:28:59 +0000936 "AnnotateTemplateIdTokenAsType isn't working properly");
Douglas Gregor31a19b62009-04-01 21:51:26 +0000937 if (Tok.getAnnotationValue())
938 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, SourceLocation(),
939 Tok.getAnnotationValue());
940 else
941 Ty = true;
Douglas Gregor17343172009-04-01 00:28:59 +0000942 } else {
943 Diag(Tok, diag::err_expected_type_name_after_typename)
944 << SS.getRange();
John McCall9ba61662010-02-26 08:45:28 +0000945 return true;
Douglas Gregor17343172009-04-01 00:28:59 +0000946 }
947
Sebastian Redl39d67112010-02-08 19:35:18 +0000948 SourceLocation EndLoc = Tok.getLastLoc();
Douglas Gregor17343172009-04-01 00:28:59 +0000949 Tok.setKind(tok::annot_typename);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000950 Tok.setAnnotationValue(Ty.isInvalid()? 0 : Ty.get());
Sebastian Redl39d67112010-02-08 19:35:18 +0000951 Tok.setAnnotationEndLoc(EndLoc);
Douglas Gregor17343172009-04-01 00:28:59 +0000952 Tok.setLocation(TypenameLoc);
953 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +0000954 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +0000955 }
956
John McCallae03cb52009-12-19 00:35:18 +0000957 // Remembers whether the token was originally a scope annotation.
958 bool wasScopeAnnotation = Tok.is(tok::annot_cxxscope);
959
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000960 CXXScopeSpec SS;
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000961 if (getLang().CPlusPlus)
John McCall9ba61662010-02-26 08:45:28 +0000962 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext))
963 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000964
965 if (Tok.is(tok::identifier)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000966 // Determine whether the identifier is a type name.
Mike Stump1eb44332009-09-09 15:08:12 +0000967 if (TypeTy *Ty = Actions.getTypeName(*Tok.getIdentifierInfo(),
Douglas Gregorb696ea32009-02-04 17:00:24 +0000968 Tok.getLocation(), CurScope, &SS)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000969 // This is a typename. Replace the current token in-place with an
970 // annotation type token.
Chris Lattnerb31757b2009-01-06 05:06:21 +0000971 Tok.setKind(tok::annot_typename);
Chris Lattner608d1fc2009-01-05 01:49:50 +0000972 Tok.setAnnotationValue(Ty);
973 Tok.setAnnotationEndLoc(Tok.getLocation());
974 if (SS.isNotEmpty()) // it was a C++ qualified type name.
975 Tok.setLocation(SS.getBeginLoc());
Mike Stump1eb44332009-09-09 15:08:12 +0000976
Chris Lattner608d1fc2009-01-05 01:49:50 +0000977 // In case the tokens were cached, have Preprocessor replace
978 // them with the annotation token.
979 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +0000980 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000981 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000982
983 if (!getLang().CPlusPlus) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000984 // If we're in C, we can't have :: tokens at all (the lexer won't return
985 // them). If the identifier is not a type, then it can't be scope either,
Mike Stump1eb44332009-09-09 15:08:12 +0000986 // just early exit.
Chris Lattner608d1fc2009-01-05 01:49:50 +0000987 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000988 }
Mike Stump1eb44332009-09-09 15:08:12 +0000989
Douglas Gregor39a8de12009-02-25 19:37:18 +0000990 // If this is a template-id, annotate with a template-id or type token.
Douglas Gregor55f6b142009-02-09 18:46:07 +0000991 if (NextToken().is(tok::less)) {
Douglas Gregor7532dc62009-03-30 22:58:21 +0000992 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000993 UnqualifiedId TemplateName;
994 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000995 if (TemplateNameKind TNK
Douglas Gregor014e88d2009-11-03 23:16:33 +0000996 = Actions.isTemplateName(CurScope, SS, TemplateName,
Mike Stump1eb44332009-09-09 15:08:12 +0000997 /*ObjectType=*/0, EnteringContext,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000998 Template)) {
999 // Consume the identifier.
1000 ConsumeToken();
1001 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName)) {
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001002 // If an unrecoverable error occurred, we need to return true here,
1003 // because the token stream is in a damaged state. We may not return
1004 // a valid identifier.
John McCall9ba61662010-02-26 08:45:28 +00001005 return true;
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001006 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001007 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00001008 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001009
Douglas Gregor39a8de12009-02-25 19:37:18 +00001010 // The current token, which is either an identifier or a
1011 // template-id, is not part of the annotation. Fall through to
1012 // push that token back into the stream and complete the C++ scope
1013 // specifier annotation.
Mike Stump1eb44332009-09-09 15:08:12 +00001014 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001015
Douglas Gregor39a8de12009-02-25 19:37:18 +00001016 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001017 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +00001018 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +00001019 if (TemplateId->Kind == TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001020 // A template-id that refers to a type was parsed into a
1021 // template-id annotation in a context where we weren't allowed
1022 // to produce a type annotation token. Update the template-id
1023 // annotation token to a type annotation token now.
Douglas Gregor31a19b62009-04-01 21:51:26 +00001024 AnnotateTemplateIdTokenAsType(&SS);
John McCall9ba61662010-02-26 08:45:28 +00001025 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +00001026 }
1027 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001028
Chris Lattner6ec76d42009-01-04 22:32:19 +00001029 if (SS.isEmpty())
John McCall9ba61662010-02-26 08:45:28 +00001030 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001031
Chris Lattner6ec76d42009-01-04 22:32:19 +00001032 // A C++ scope specifier that isn't followed by a typename.
1033 // Push the current token back into the token stream (or revert it if it is
1034 // cached) and use an annotation scope token for current token.
1035 if (PP.isBacktrackEnabled())
1036 PP.RevertCachedTokens(1);
1037 else
1038 PP.EnterToken(Tok);
1039 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001040 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001041 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001042
John McCallae03cb52009-12-19 00:35:18 +00001043 // In case the tokens were cached, have Preprocessor replace them
1044 // with the annotation token. We don't need to do this if we've
1045 // just reverted back to the state we were in before being called.
1046 if (!wasScopeAnnotation)
1047 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +00001048 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001049}
1050
1051/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
Douglas Gregor39a8de12009-02-25 19:37:18 +00001052/// annotates C++ scope specifiers and template-ids. This returns
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001053/// true if the token was annotated or there was an error that could not be
1054/// recovered from.
Mike Stump1eb44332009-09-09 15:08:12 +00001055///
Chris Lattner55a7cef2009-01-05 00:13:00 +00001056/// Note that this routine emits an error if you call it with ::new or ::delete
1057/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +00001058bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001059 assert(getLang().CPlusPlus &&
Chris Lattner6ec76d42009-01-04 22:32:19 +00001060 "Call sites of this function should be guarded by checking for C++");
Chris Lattner7452c6f2009-01-05 01:24:05 +00001061 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
1062 "Cannot be a type or scope token!");
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001063
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001064 CXXScopeSpec SS;
John McCall9ba61662010-02-26 08:45:28 +00001065 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext))
1066 return true;
1067 if (!SS.isSet())
1068 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001069
Chris Lattner6ec76d42009-01-04 22:32:19 +00001070 // Push the current token back into the token stream (or revert it if it is
1071 // cached) and use an annotation scope token for current token.
1072 if (PP.isBacktrackEnabled())
1073 PP.RevertCachedTokens(1);
1074 else
1075 PP.EnterToken(Tok);
1076 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001077 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001078 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001079
Chris Lattner6ec76d42009-01-04 22:32:19 +00001080 // In case the tokens were cached, have Preprocessor replace them with the
1081 // annotation token.
1082 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +00001083 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001084}
John McCall6c94a6d2009-11-03 19:33:12 +00001085
1086// Anchor the Parser::FieldCallback vtable to this translation unit.
1087// We use a spurious method instead of the destructor because
1088// destroying FieldCallbacks can actually be slightly
1089// performance-sensitive.
1090void Parser::FieldCallback::_anchor() {
1091}