blob: 30899c5dddb5b664bfdd84ba71d3fc0c6d055a89 [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 }
277}
278
279/// ExitScope - Pop a scope off the scope stack.
280void Parser::ExitScope() {
281 assert(CurScope && "Scope imbalance!");
282
Chris Lattner90ae68a2007-10-09 20:37:18 +0000283 // Inform the actions module that this scope is going away if there are any
284 // decls in it.
285 if (!CurScope->decl_empty())
Steve Naroffb216c882007-10-09 22:01:59 +0000286 Actions.ActOnPopScope(Tok.getLocation(), CurScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000287
Chris Lattner9e344c62007-07-15 00:04:39 +0000288 Scope *OldScope = CurScope;
289 CurScope = OldScope->getParent();
Mike Stumpa6f01772008-06-19 19:28:49 +0000290
Chris Lattner9e344c62007-07-15 00:04:39 +0000291 if (NumCachedScopes == ScopeCacheSize)
292 delete OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000293 else
Chris Lattner9e344c62007-07-15 00:04:39 +0000294 ScopeCache[NumCachedScopes++] = OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000295}
296
297
298
299
300//===----------------------------------------------------------------------===//
301// C99 6.9: External Definitions.
302//===----------------------------------------------------------------------===//
303
304Parser::~Parser() {
305 // If we still have scopes active, delete the scope tree.
306 delete CurScope;
Mike Stumpa6f01772008-06-19 19:28:49 +0000307
Reid Spencer5f016e22007-07-11 17:01:13 +0000308 // Free the scope cache.
Chris Lattner9e344c62007-07-15 00:04:39 +0000309 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
310 delete ScopeCache[i];
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +0000311
312 // Remove the pragma handlers we installed.
Ted Kremenek4726d032009-03-23 22:28:25 +0000313 PP.RemovePragmaHandler(0, PackHandler.get());
314 PackHandler.reset();
315 PP.RemovePragmaHandler(0, UnusedHandler.get());
316 UnusedHandler.reset();
Eli Friedman99914792009-06-05 00:49:58 +0000317 PP.RemovePragmaHandler(0, WeakHandler.get());
318 WeakHandler.reset();
Douglas Gregor2e222532009-07-02 17:08:52 +0000319 PP.RemoveCommentHandler(CommentHandler.get());
Reid Spencer5f016e22007-07-11 17:01:13 +0000320}
321
322/// Initialize - Warm up the parser.
323///
324void Parser::Initialize() {
325 // Prime the lexer look-ahead.
326 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000327
Chris Lattner31e05722007-08-26 06:24:45 +0000328 // Create the translation unit scope. Install it as the current scope.
Reid Spencer5f016e22007-07-11 17:01:13 +0000329 assert(CurScope == 0 && "A scope is already active?");
Chris Lattner31e05722007-08-26 06:24:45 +0000330 EnterScope(Scope::DeclScope);
Steve Naroffb216c882007-10-09 22:01:59 +0000331 Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000332
Chris Lattner00073222007-10-09 17:23:58 +0000333 if (Tok.is(tok::eof) &&
Chris Lattnerf7261752007-08-25 05:47:03 +0000334 !getLang().CPlusPlus) // Empty source file is an extension in C
Reid Spencer5f016e22007-07-11 17:01:13 +0000335 Diag(Tok, diag::ext_empty_source_file);
Mike Stumpa6f01772008-06-19 19:28:49 +0000336
Chris Lattner34870da2007-08-29 22:54:08 +0000337 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000338 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner34870da2007-08-29 22:54:08 +0000339 if (getLang().ObjC1) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000340 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
341 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
342 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
343 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
344 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
345 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
Chris Lattner34870da2007-08-29 22:54:08 +0000346 }
Daniel Dunbar662e8b52008-08-14 22:04:54 +0000347
348 Ident_super = &PP.getIdentifierTable().get("super");
John Thompson82287d12010-02-05 00:12:22 +0000349
350 if (getLang().AltiVec) {
351 Ident_vector = &PP.getIdentifierTable().get("vector");
352 Ident_pixel = &PP.getIdentifierTable().get("pixel");
353 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000354}
355
356/// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
357/// action tells us to. This returns true if the EOF was encountered.
Chris Lattner682bf922009-03-29 16:50:03 +0000358bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
359 Result = DeclGroupPtrTy();
Chris Lattner9299f3f2008-08-23 03:19:52 +0000360 if (Tok.is(tok::eof)) {
361 Actions.ActOnEndOfTranslationUnit();
362 return true;
363 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000364
Sean Huntbbd37c62009-11-21 08:43:09 +0000365 CXX0XAttributeList Attr;
366 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
367 Attr = ParseCXX0XAttributes();
368 Result = ParseExternalDeclaration(Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000369 return false;
370}
371
Reid Spencer5f016e22007-07-11 17:01:13 +0000372/// ParseTranslationUnit:
373/// translation-unit: [C99 6.9]
Mike Stumpa6f01772008-06-19 19:28:49 +0000374/// external-declaration
375/// translation-unit external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000376void Parser::ParseTranslationUnit() {
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000377 Initialize();
Mike Stumpa6f01772008-06-19 19:28:49 +0000378
Chris Lattner682bf922009-03-29 16:50:03 +0000379 DeclGroupPtrTy Res;
Steve Naroff89307ff2007-11-29 23:05:20 +0000380 while (!ParseTopLevelDecl(Res))
Reid Spencer5f016e22007-07-11 17:01:13 +0000381 /*parse them all*/;
Mike Stump1eb44332009-09-09 15:08:12 +0000382
Chris Lattner06f54852008-08-23 02:00:52 +0000383 ExitScope();
384 assert(CurScope == 0 && "Scope imbalance!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000385}
386
387/// ParseExternalDeclaration:
Chris Lattner90b93d62008-12-08 21:59:01 +0000388///
Douglas Gregorc19923d2008-11-21 16:10:08 +0000389/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattnerc3018152007-08-10 20:57:02 +0000390/// function-definition
391/// declaration
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000392/// [C++0x] empty-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000393/// [GNU] asm-definition
Chris Lattnerc3018152007-08-10 20:57:02 +0000394/// [GNU] __extension__ external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000395/// [OBJC] objc-class-definition
396/// [OBJC] objc-class-declaration
397/// [OBJC] objc-alias-declaration
398/// [OBJC] objc-protocol-definition
399/// [OBJC] objc-method-definition
400/// [OBJC] @end
Douglas Gregorc19923d2008-11-21 16:10:08 +0000401/// [C++] linkage-specification
Reid Spencer5f016e22007-07-11 17:01:13 +0000402/// [GNU] asm-definition:
403/// simple-asm-expr ';'
404///
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000405/// [C++0x] empty-declaration:
406/// ';'
407///
Douglas Gregor45f96552009-09-04 06:33:52 +0000408/// [C++0x/GNU] 'extern' 'template' declaration
Sean Huntbbd37c62009-11-21 08:43:09 +0000409Parser::DeclGroupPtrTy Parser::ParseExternalDeclaration(CXX0XAttributeList Attr) {
Chris Lattner682bf922009-03-29 16:50:03 +0000410 DeclPtrTy SingleDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +0000411 switch (Tok.getKind()) {
412 case tok::semi:
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000413 if (!getLang().CPlusPlus0x)
414 Diag(Tok, diag::ext_top_level_semi)
Chris Lattner29d9c1a2009-12-06 17:36:05 +0000415 << CodeModificationHint::CreateRemoval(Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000416
Reid Spencer5f016e22007-07-11 17:01:13 +0000417 ConsumeToken();
418 // TODO: Invoke action for top-level semicolon.
Chris Lattner682bf922009-03-29 16:50:03 +0000419 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000420 case tok::r_brace:
421 Diag(Tok, diag::err_expected_external_declaration);
422 ConsumeBrace();
Chris Lattner682bf922009-03-29 16:50:03 +0000423 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000424 case tok::eof:
425 Diag(Tok, diag::err_expected_external_declaration);
Chris Lattner682bf922009-03-29 16:50:03 +0000426 return DeclGroupPtrTy();
Chris Lattnerc3018152007-08-10 20:57:02 +0000427 case tok::kw___extension__: {
Chris Lattnerc46d1a12008-10-20 06:45:43 +0000428 // __extension__ silences extension warnings in the subexpression.
429 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner39146d62008-10-20 06:51:33 +0000430 ConsumeToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000431 return ParseExternalDeclaration(Attr);
Chris Lattnerc3018152007-08-10 20:57:02 +0000432 }
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000433 case tok::kw_asm: {
Sean Huntbbd37c62009-11-21 08:43:09 +0000434 if (Attr.HasAttr)
435 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
436 << Attr.Range;
437
Sebastian Redleffa8d12008-12-10 00:02:53 +0000438 OwningExprResult Result(ParseSimpleAsm());
Mike Stumpa6f01772008-06-19 19:28:49 +0000439
Anders Carlsson3f9424f2008-02-08 00:23:11 +0000440 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
441 "top-level asm block");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000442
Chris Lattner682bf922009-03-29 16:50:03 +0000443 if (Result.isInvalid())
444 return DeclGroupPtrTy();
445 SingleDecl = Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), move(Result));
446 break;
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000447 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000448 case tok::at:
Chris Lattner682bf922009-03-29 16:50:03 +0000449 // @ is not a legal token unless objc is enabled, no need to check for ObjC.
450 /// FIXME: ParseObjCAtDirectives should return a DeclGroup for things like
451 /// @class foo, bar;
452 SingleDecl = ParseObjCAtDirectives();
453 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000454 case tok::minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000455 case tok::plus:
Chris Lattner682bf922009-03-29 16:50:03 +0000456 if (!getLang().ObjC1) {
457 Diag(Tok, diag::err_expected_external_declaration);
458 ConsumeToken();
459 return DeclGroupPtrTy();
460 }
461 SingleDecl = ParseObjCMethodDefinition();
462 break;
Douglas Gregor791215b2009-09-21 20:51:25 +0000463 case tok::code_completion:
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000464 Actions.CodeCompleteOrdinaryName(CurScope,
465 ObjCImpDecl? Action::CCC_ObjCImplementation
466 : Action::CCC_Namespace);
Douglas Gregor791215b2009-09-21 20:51:25 +0000467 ConsumeToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000468 return ParseExternalDeclaration(Attr);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000469 case tok::kw_using:
Chris Lattner8f08cb72007-08-25 06:57:03 +0000470 case tok::kw_namespace:
Reid Spencer5f016e22007-07-11 17:01:13 +0000471 case tok::kw_typedef:
Douglas Gregoradcac882008-12-01 23:54:00 +0000472 case tok::kw_template:
473 case tok::kw_export: // As in 'export template'
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000474 case tok::kw_static_assert:
Chris Lattnerbae35112007-08-25 18:15:16 +0000475 // A function definition cannot start with a these keywords.
Chris Lattner97144fc2009-04-02 04:16:50 +0000476 {
477 SourceLocation DeclEnd;
Sean Huntbbd37c62009-11-21 08:43:09 +0000478 return ParseDeclaration(Declarator::FileContext, DeclEnd, Attr);
Chris Lattner97144fc2009-04-02 04:16:50 +0000479 }
Douglas Gregor45f96552009-09-04 06:33:52 +0000480 case tok::kw_extern:
481 if (getLang().CPlusPlus && NextToken().is(tok::kw_template)) {
482 // Extern templates
483 SourceLocation ExternLoc = ConsumeToken();
484 SourceLocation TemplateLoc = ConsumeToken();
485 SourceLocation DeclEnd;
486 return Actions.ConvertDeclToDeclGroup(
487 ParseExplicitInstantiation(ExternLoc, TemplateLoc, DeclEnd));
488 }
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Douglas Gregor45f96552009-09-04 06:33:52 +0000490 // FIXME: Detect C++ linkage specifications here?
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Douglas Gregor45f96552009-09-04 06:33:52 +0000492 // Fall through to handle other declarations or function definitions.
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Reid Spencer5f016e22007-07-11 17:01:13 +0000494 default:
495 // We can't tell whether this is a function-definition or declaration yet.
Sean Huntbbd37c62009-11-21 08:43:09 +0000496 return ParseDeclarationOrFunctionDefinition(Attr.AttrList);
Reid Spencer5f016e22007-07-11 17:01:13 +0000497 }
Mike Stump1eb44332009-09-09 15:08:12 +0000498
Chris Lattner682bf922009-03-29 16:50:03 +0000499 // This routine returns a DeclGroup, if the thing we parsed only contains a
500 // single decl, convert it now.
501 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000502}
503
Douglas Gregor1426e532009-05-12 21:31:51 +0000504/// \brief Determine whether the current token, if it occurs after a
505/// declarator, continues a declaration or declaration list.
506bool Parser::isDeclarationAfterDeclarator() {
507 return Tok.is(tok::equal) || // int X()= -> not a function def
508 Tok.is(tok::comma) || // int X(), -> not a function def
509 Tok.is(tok::semi) || // int X(); -> not a function def
510 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def
511 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def
512 (getLang().CPlusPlus &&
513 Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++]
514}
515
516/// \brief Determine whether the current token, if it occurs after a
517/// declarator, indicates the start of a function definition.
518bool Parser::isStartOfFunctionDefinition() {
Chris Lattner5d1c6192009-12-06 18:34:27 +0000519 if (Tok.is(tok::l_brace)) // int X() {}
520 return true;
521
522 if (!getLang().CPlusPlus)
523 return isDeclarationSpecifier(); // int X(f) int f; {}
524 return Tok.is(tok::colon) || // X() : Base() {} (used for ctors)
525 Tok.is(tok::kw_try); // X() try { ... }
Douglas Gregor1426e532009-05-12 21:31:51 +0000526}
527
Reid Spencer5f016e22007-07-11 17:01:13 +0000528/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
529/// a declaration. We can't tell which we have until we read up to the
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000530/// compound-statement in function-definition. TemplateParams, if
531/// non-NULL, provides the template parameters when we're parsing a
Mike Stump1eb44332009-09-09 15:08:12 +0000532/// C++ template-declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +0000533///
534/// function-definition: [C99 6.9.1]
Chris Lattnera798ebc2008-04-05 05:52:15 +0000535/// decl-specs declarator declaration-list[opt] compound-statement
536/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000537/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattnera798ebc2008-04-05 05:52:15 +0000538///
Reid Spencer5f016e22007-07-11 17:01:13 +0000539/// declaration: [C99 6.7]
Chris Lattner697e15f2007-08-22 06:06:56 +0000540/// declaration-specifiers init-declarator-list[opt] ';'
541/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Reid Spencer5f016e22007-07-11 17:01:13 +0000542/// [OMP] threadprivate-directive [TODO]
543///
Chris Lattner682bf922009-03-29 16:50:03 +0000544Parser::DeclGroupPtrTy
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000545Parser::ParseDeclarationOrFunctionDefinition(ParsingDeclSpec &DS,
546 AttributeList *Attr,
Sean Huntbbd37c62009-11-21 08:43:09 +0000547 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000548 // Parse the common declaration-specifiers piece.
Sean Huntbbd37c62009-11-21 08:43:09 +0000549 if (Attr)
550 DS.AddAttributes(Attr);
551
Douglas Gregor0efc2c12010-01-13 17:31:36 +0000552 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
Mike Stumpa6f01772008-06-19 19:28:49 +0000553
Reid Spencer5f016e22007-07-11 17:01:13 +0000554 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
555 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner00073222007-10-09 17:23:58 +0000556 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000557 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000558 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
John McCall54abf7d2009-11-04 02:18:39 +0000559 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +0000560 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000561 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000562
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000563 // ObjC2 allows prefix attributes on class interfaces and protocols.
564 // FIXME: This still needs better diagnostics. We should only accept
565 // attributes here, no types, etc.
Chris Lattner00073222007-10-09 17:23:58 +0000566 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000567 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +0000568 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000569 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
570 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattnercb53b362007-12-27 19:57:00 +0000571 SkipUntil(tok::semi); // FIXME: better skip?
Chris Lattner682bf922009-03-29 16:50:03 +0000572 return DeclGroupPtrTy();
Chris Lattnercb53b362007-12-27 19:57:00 +0000573 }
John McCalld8ac0572009-11-03 19:26:08 +0000574
John McCall54abf7d2009-11-04 02:18:39 +0000575 DS.abort();
576
Fariborz Jahanian0de2ae22008-01-02 19:17:38 +0000577 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000578 unsigned DiagID;
579 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
580 Diag(AtLoc, DiagID) << PrevSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000581
Chris Lattner682bf922009-03-29 16:50:03 +0000582 DeclPtrTy TheDecl;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000583 if (Tok.isObjCAtKeyword(tok::objc_protocol))
Chris Lattner682bf922009-03-29 16:50:03 +0000584 TheDecl = ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
585 else
586 TheDecl = ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
587 return Actions.ConvertDeclToDeclGroup(TheDecl);
Steve Naroffdac269b2007-08-20 21:31:48 +0000588 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000589
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000590 // If the declspec consisted only of 'extern' and we have a string
591 // literal following it, this must be a C++ linkage specifier like
592 // 'extern "C"'.
Chris Lattner3c6f6a72008-01-12 07:08:43 +0000593 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000594 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
Chris Lattner682bf922009-03-29 16:50:03 +0000595 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000596 DeclPtrTy TheDecl = ParseLinkage(DS, Declarator::FileContext);
Chris Lattner682bf922009-03-29 16:50:03 +0000597 return Actions.ConvertDeclToDeclGroup(TheDecl);
598 }
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000599
John McCalld8ac0572009-11-03 19:26:08 +0000600 return ParseDeclGroup(DS, Declarator::FileContext, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000601}
602
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000603Parser::DeclGroupPtrTy
604Parser::ParseDeclarationOrFunctionDefinition(AttributeList *Attr,
605 AccessSpecifier AS) {
606 ParsingDeclSpec DS(*this);
607 return ParseDeclarationOrFunctionDefinition(DS, Attr, AS);
608}
609
Reid Spencer5f016e22007-07-11 17:01:13 +0000610/// ParseFunctionDefinition - We parsed and verified that the specified
611/// Declarator is well formed. If this is a K&R-style function, read the
612/// parameters declaration-list, then start the compound-statement.
613///
Chris Lattnera798ebc2008-04-05 05:52:15 +0000614/// function-definition: [C99 6.9.1]
615/// decl-specs declarator declaration-list[opt] compound-statement
616/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000617/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregor7ad83902008-11-05 04:29:56 +0000618/// [C++] function-definition: [C++ 8.4]
Chris Lattner23c4b182009-03-29 17:18:04 +0000619/// decl-specifier-seq[opt] declarator ctor-initializer[opt]
620/// function-body
Douglas Gregor7ad83902008-11-05 04:29:56 +0000621/// [C++] function-definition: [C++ 8.4]
Sebastian Redld3a413d2009-04-26 20:35:05 +0000622/// decl-specifier-seq[opt] declarator function-try-block
Reid Spencer5f016e22007-07-11 17:01:13 +0000623///
John McCall54abf7d2009-11-04 02:18:39 +0000624Parser::DeclPtrTy Parser::ParseFunctionDefinition(ParsingDeclarator &D,
Douglas Gregor52591bf2009-06-24 00:54:41 +0000625 const ParsedTemplateInfo &TemplateInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000626 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
627 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
628 "This isn't a function declarator!");
629 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stumpa6f01772008-06-19 19:28:49 +0000630
Chris Lattnera798ebc2008-04-05 05:52:15 +0000631 // If this is C90 and the declspecs were completely missing, fudge in an
632 // implicit int. We do this here because this is the only place where
633 // declaration-specifiers are completely optional in the grammar.
Chris Lattner2a327d12009-02-27 18:35:46 +0000634 if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) {
Chris Lattnera798ebc2008-04-05 05:52:15 +0000635 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000636 unsigned DiagID;
Chris Lattner31c28682008-10-20 02:01:34 +0000637 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
638 D.getIdentifierLoc(),
John McCallfec54012009-08-03 20:12:06 +0000639 PrevSpec, DiagID);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000640 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
Chris Lattnera798ebc2008-04-05 05:52:15 +0000641 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000642
Reid Spencer5f016e22007-07-11 17:01:13 +0000643 // If this declaration was formed with a K&R-style identifier list for the
644 // arguments, parse declarations for all of the args next.
645 // int foo(a,b) int a; float b; {}
646 if (!FTI.hasPrototype && FTI.NumArgs != 0)
647 ParseKNRParamDeclarations(D);
648
Douglas Gregor7ad83902008-11-05 04:29:56 +0000649 // We should have either an opening brace or, in a C++ constructor,
650 // we may have a colon.
Sebastian Redld3a413d2009-04-26 20:35:05 +0000651 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon) &&
652 Tok.isNot(tok::kw_try)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000653 Diag(Tok, diag::err_expected_fn_body);
654
655 // Skip over garbage, until we get to '{'. Don't eat the '{'.
656 SkipUntil(tok::l_brace, true, true);
Mike Stumpa6f01772008-06-19 19:28:49 +0000657
Reid Spencer5f016e22007-07-11 17:01:13 +0000658 // If we didn't find the '{', bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000659 if (Tok.isNot(tok::l_brace))
Chris Lattnerb28317a2009-03-28 19:18:32 +0000660 return DeclPtrTy();
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000662
Chris Lattnerb652cea2007-10-09 17:14:05 +0000663 // Enter a scope for the function body.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000664 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000665
Chris Lattnerb652cea2007-10-09 17:14:05 +0000666 // Tell the actions module that we have entered a function definition with the
667 // specified Declarator for the function.
Mike Stump1eb44332009-09-09 15:08:12 +0000668 DeclPtrTy Res = TemplateInfo.TemplateParams?
Douglas Gregor52591bf2009-06-24 00:54:41 +0000669 Actions.ActOnStartOfFunctionTemplateDef(CurScope,
670 Action::MultiTemplateParamsArg(Actions,
671 TemplateInfo.TemplateParams->data(),
672 TemplateInfo.TemplateParams->size()),
673 D)
674 : Actions.ActOnStartOfFunctionDef(CurScope, D);
Mike Stumpa6f01772008-06-19 19:28:49 +0000675
John McCall54abf7d2009-11-04 02:18:39 +0000676 // Break out of the ParsingDeclarator context before we parse the body.
677 D.complete(Res);
678
679 // Break out of the ParsingDeclSpec context, too. This const_cast is
680 // safe because we're always the sole owner.
681 D.getMutableDeclSpec().abort();
682
Sebastian Redld3a413d2009-04-26 20:35:05 +0000683 if (Tok.is(tok::kw_try))
684 return ParseFunctionTryBlock(Res);
685
Douglas Gregor7ad83902008-11-05 04:29:56 +0000686 // If we have a colon, then we're probably parsing a C++
687 // ctor-initializer.
688 if (Tok.is(tok::colon))
689 ParseConstructorInitializer(Res);
Fariborz Jahanian0849d382009-07-14 20:06:22 +0000690 else
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000691 Actions.ActOnDefaultCtorInitializers(Res);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000692
Chris Lattner40e9bc82009-03-05 00:49:17 +0000693 return ParseFunctionStatementBody(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000694}
695
696/// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
697/// types for a function with a K&R-style identifier list for arguments.
698void Parser::ParseKNRParamDeclarations(Declarator &D) {
699 // We know that the top-level of this declarator is a function.
700 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
701
Chris Lattner04421082008-04-08 04:40:51 +0000702 // Enter function-declaration scope, limiting any declarators to the
703 // function prototype scope, including parameter declarators.
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000704 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattner04421082008-04-08 04:40:51 +0000705
Reid Spencer5f016e22007-07-11 17:01:13 +0000706 // Read all the argument declarations.
707 while (isDeclarationSpecifier()) {
708 SourceLocation DSStart = Tok.getLocation();
Mike Stumpa6f01772008-06-19 19:28:49 +0000709
Reid Spencer5f016e22007-07-11 17:01:13 +0000710 // Parse the common declaration-specifiers piece.
711 DeclSpec DS;
712 ParseDeclarationSpecifiers(DS);
Mike Stumpa6f01772008-06-19 19:28:49 +0000713
Reid Spencer5f016e22007-07-11 17:01:13 +0000714 // C99 6.9.1p6: 'each declaration in the declaration list shall have at
715 // least one declarator'.
716 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with
717 // the declarations though. It's trivial to ignore them, really hard to do
718 // anything else with them.
Chris Lattner00073222007-10-09 17:23:58 +0000719 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000720 Diag(DSStart, diag::err_declaration_does_not_declare_param);
721 ConsumeToken();
722 continue;
723 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000724
Reid Spencer5f016e22007-07-11 17:01:13 +0000725 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
726 // than register.
727 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
728 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
729 Diag(DS.getStorageClassSpecLoc(),
730 diag::err_invalid_storage_class_in_func_decl);
731 DS.ClearStorageClassSpecs();
732 }
733 if (DS.isThreadSpecified()) {
734 Diag(DS.getThreadSpecLoc(),
735 diag::err_invalid_storage_class_in_func_decl);
736 DS.ClearStorageClassSpecs();
737 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000738
Reid Spencer5f016e22007-07-11 17:01:13 +0000739 // Parse the first declarator attached to this declspec.
740 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
741 ParseDeclarator(ParmDeclarator);
742
743 // Handle the full declarator list.
744 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000745 // If attributes are present, parse them.
Ted Kremenek1e377652010-02-11 02:19:13 +0000746 llvm::OwningPtr<AttributeList> AttrList;
Chris Lattner00073222007-10-09 17:23:58 +0000747 if (Tok.is(tok::kw___attribute))
Reid Spencer5f016e22007-07-11 17:01:13 +0000748 // FIXME: attach attributes too.
Ted Kremenek1e377652010-02-11 02:19:13 +0000749 AttrList.reset(ParseGNUAttributes());
Mike Stumpa6f01772008-06-19 19:28:49 +0000750
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 // Ask the actions module to compute the type for this declarator.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000752 Action::DeclPtrTy Param =
Chris Lattner04421082008-04-08 04:40:51 +0000753 Actions.ActOnParamDeclarator(CurScope, ParmDeclarator);
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000754
Mike Stumpa6f01772008-06-19 19:28:49 +0000755 if (Param &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000756 // A missing identifier has already been diagnosed.
757 ParmDeclarator.getIdentifier()) {
758
759 // Scan the argument list looking for the correct param to apply this
760 // type.
761 for (unsigned i = 0; ; ++i) {
762 // C99 6.9.1p6: those declarators shall declare only identifiers from
763 // the identifier list.
764 if (i == FTI.NumArgs) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000765 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattner6898e332008-11-19 07:51:13 +0000766 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000767 break;
768 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000769
Reid Spencer5f016e22007-07-11 17:01:13 +0000770 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
771 // Reject redefinitions of parameters.
Chris Lattner04421082008-04-08 04:40:51 +0000772 if (FTI.ArgInfo[i].Param) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000773 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +0000774 diag::err_param_redefinition)
Chris Lattner6898e332008-11-19 07:51:13 +0000775 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000776 } else {
Chris Lattner04421082008-04-08 04:40:51 +0000777 FTI.ArgInfo[i].Param = Param;
Reid Spencer5f016e22007-07-11 17:01:13 +0000778 }
779 break;
780 }
781 }
782 }
783
784 // If we don't have a comma, it is either the end of the list (a ';') or
785 // an error, bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000786 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000788
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 // Consume the comma.
790 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000791
Reid Spencer5f016e22007-07-11 17:01:13 +0000792 // Parse the next declarator.
793 ParmDeclarator.clear();
794 ParseDeclarator(ParmDeclarator);
795 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000796
Chris Lattner00073222007-10-09 17:23:58 +0000797 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 ConsumeToken();
799 } else {
800 Diag(Tok, diag::err_parse_error);
801 // Skip to end of block or statement
802 SkipUntil(tok::semi, true);
Chris Lattner00073222007-10-09 17:23:58 +0000803 if (Tok.is(tok::semi))
Reid Spencer5f016e22007-07-11 17:01:13 +0000804 ConsumeToken();
805 }
806 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000807
Reid Spencer5f016e22007-07-11 17:01:13 +0000808 // The actions module must verify that all arguments were declared.
Douglas Gregora3a83512009-04-01 23:51:29 +0000809 Actions.ActOnFinishKNRParamDeclarations(CurScope, D, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000810}
811
812
813/// ParseAsmStringLiteral - This is just a normal string-literal, but is not
814/// allowed to be a wide string, and is not subject to character translation.
815///
816/// [GNU] asm-string-literal:
817/// string-literal
818///
Sebastian Redleffa8d12008-12-10 00:02:53 +0000819Parser::OwningExprResult Parser::ParseAsmStringLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000820 if (!isTokenStringLiteral()) {
821 Diag(Tok, diag::err_expected_string_literal);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000822 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000823 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000824
Sebastian Redl20df9b72008-12-11 22:51:44 +0000825 OwningExprResult Res(ParseStringLiteralExpression());
Sebastian Redleffa8d12008-12-10 00:02:53 +0000826 if (Res.isInvalid()) return move(Res);
Mike Stumpa6f01772008-06-19 19:28:49 +0000827
Reid Spencer5f016e22007-07-11 17:01:13 +0000828 // TODO: Diagnose: wide string literal in 'asm'
Mike Stumpa6f01772008-06-19 19:28:49 +0000829
Sebastian Redleffa8d12008-12-10 00:02:53 +0000830 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000831}
832
833/// ParseSimpleAsm
834///
835/// [GNU] simple-asm-expr:
836/// 'asm' '(' asm-string-literal ')'
837///
Sebastian Redlab197ba2009-02-09 18:23:29 +0000838Parser::OwningExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
Chris Lattner00073222007-10-09 17:23:58 +0000839 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000840 SourceLocation Loc = ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000841
John McCall7a6ae742010-01-25 22:27:48 +0000842 if (Tok.is(tok::kw_volatile)) {
John McCall841d5e62010-01-25 23:12:50 +0000843 // Remove from the end of 'asm' to the end of 'volatile'.
844 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
845 PP.getLocForEndOfToken(Tok.getLocation()));
846
847 Diag(Tok, diag::warn_file_asm_volatile)
848 << CodeModificationHint::CreateRemoval(RemovalRange);
John McCall7a6ae742010-01-25 22:27:48 +0000849 ConsumeToken();
850 }
851
Chris Lattner00073222007-10-09 17:23:58 +0000852 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000853 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Sebastian Redl61364dd2008-12-11 19:30:53 +0000854 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000855 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000856
Sebastian Redlab197ba2009-02-09 18:23:29 +0000857 Loc = ConsumeParen();
Mike Stumpa6f01772008-06-19 19:28:49 +0000858
Sebastian Redleffa8d12008-12-10 00:02:53 +0000859 OwningExprResult Result(ParseAsmStringLiteral());
Mike Stumpa6f01772008-06-19 19:28:49 +0000860
Sebastian Redlab197ba2009-02-09 18:23:29 +0000861 if (Result.isInvalid()) {
862 SkipUntil(tok::r_paren, true, true);
863 if (EndLoc)
864 *EndLoc = Tok.getLocation();
865 ConsumeAnyToken();
866 } else {
867 Loc = MatchRHSPunctuation(tok::r_paren, Loc);
868 if (EndLoc)
869 *EndLoc = Loc;
870 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000871
Sebastian Redleffa8d12008-12-10 00:02:53 +0000872 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000873}
874
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000875/// TryAnnotateTypeOrScopeToken - If the current token position is on a
876/// typename (possibly qualified in C++) or a C++ scope specifier not followed
877/// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
878/// with a single annotation token representing the typename or C++ scope
879/// respectively.
880/// This simplifies handling of C++ scope specifiers and allows efficient
881/// backtracking without the need to re-parse and resolve nested-names and
882/// typenames.
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000883/// It will mainly be called when we expect to treat identifiers as typenames
884/// (if they are typenames). For example, in C we do not expect identifiers
885/// inside expressions to be treated as typenames so it will not be called
886/// for expressions in C.
887/// The benefit for C/ObjC is that a typename will be annotated and
Steve Naroffb43a50f2009-01-28 19:39:02 +0000888/// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000889/// will not be called twice, once to check whether we have a declaration
890/// specifier, and another one to get the actual type inside
891/// ParseDeclarationSpecifiers).
Chris Lattnera7bc7c82009-01-04 23:23:14 +0000892///
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000893/// This returns true if the token was annotated or an unrecoverable error
894/// occurs.
Mike Stump1eb44332009-09-09 15:08:12 +0000895///
Chris Lattner55a7cef2009-01-05 00:13:00 +0000896/// Note that this routine emits an error if you call it with ::new or ::delete
897/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +0000898bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000899 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)
John McCallae03cb52009-12-19 00:35:18 +0000900 || Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope)) &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000901 "Cannot be a type or scope token!");
Mike Stump1eb44332009-09-09 15:08:12 +0000902
Douglas Gregord57959a2009-03-27 23:10:48 +0000903 if (Tok.is(tok::kw_typename)) {
904 // Parse a C++ typename-specifier, e.g., "typename T::type".
905 //
906 // typename-specifier:
907 // 'typename' '::' [opt] nested-name-specifier identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000908 // 'typename' '::' [opt] nested-name-specifier template [opt]
Douglas Gregor17343172009-04-01 00:28:59 +0000909 // simple-template-id
Douglas Gregord57959a2009-03-27 23:10:48 +0000910 SourceLocation TypenameLoc = ConsumeToken();
911 CXXScopeSpec SS;
Mike Stump1eb44332009-09-09 15:08:12 +0000912 bool HadNestedNameSpecifier
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000913 = ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
Douglas Gregord57959a2009-03-27 23:10:48 +0000914 if (!HadNestedNameSpecifier) {
915 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
916 return false;
917 }
918
919 TypeResult Ty;
920 if (Tok.is(tok::identifier)) {
921 // FIXME: check whether the next token is '<', first!
Mike Stump1eb44332009-09-09 15:08:12 +0000922 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, *Tok.getIdentifierInfo(),
Douglas Gregord57959a2009-03-27 23:10:48 +0000923 Tok.getLocation());
Douglas Gregor17343172009-04-01 00:28:59 +0000924 } else if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000925 TemplateIdAnnotation *TemplateId
Douglas Gregor17343172009-04-01 00:28:59 +0000926 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
927 if (TemplateId->Kind == TNK_Function_template) {
928 Diag(Tok, diag::err_typename_refers_to_non_type_template)
929 << Tok.getAnnotationRange();
930 return false;
931 }
Douglas Gregord57959a2009-03-27 23:10:48 +0000932
Douglas Gregor31a19b62009-04-01 21:51:26 +0000933 AnnotateTemplateIdTokenAsType(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000934 assert(Tok.is(tok::annot_typename) &&
Douglas Gregor17343172009-04-01 00:28:59 +0000935 "AnnotateTemplateIdTokenAsType isn't working properly");
Douglas Gregor31a19b62009-04-01 21:51:26 +0000936 if (Tok.getAnnotationValue())
937 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, SourceLocation(),
938 Tok.getAnnotationValue());
939 else
940 Ty = true;
Douglas Gregor17343172009-04-01 00:28:59 +0000941 } else {
942 Diag(Tok, diag::err_expected_type_name_after_typename)
943 << SS.getRange();
944 return false;
945 }
946
Sebastian Redl39d67112010-02-08 19:35:18 +0000947 SourceLocation EndLoc = Tok.getLastLoc();
Douglas Gregor17343172009-04-01 00:28:59 +0000948 Tok.setKind(tok::annot_typename);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000949 Tok.setAnnotationValue(Ty.isInvalid()? 0 : Ty.get());
Sebastian Redl39d67112010-02-08 19:35:18 +0000950 Tok.setAnnotationEndLoc(EndLoc);
Douglas Gregor17343172009-04-01 00:28:59 +0000951 Tok.setLocation(TypenameLoc);
952 PP.AnnotateCachedTokens(Tok);
953 return true;
Douglas Gregord57959a2009-03-27 23:10:48 +0000954 }
955
John McCallae03cb52009-12-19 00:35:18 +0000956 // Remembers whether the token was originally a scope annotation.
957 bool wasScopeAnnotation = Tok.is(tok::annot_cxxscope);
958
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000959 CXXScopeSpec SS;
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000960 if (getLang().CPlusPlus)
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000961 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000962
963 if (Tok.is(tok::identifier)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000964 // Determine whether the identifier is a type name.
Mike Stump1eb44332009-09-09 15:08:12 +0000965 if (TypeTy *Ty = Actions.getTypeName(*Tok.getIdentifierInfo(),
Douglas Gregorb696ea32009-02-04 17:00:24 +0000966 Tok.getLocation(), CurScope, &SS)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000967 // This is a typename. Replace the current token in-place with an
968 // annotation type token.
Chris Lattnerb31757b2009-01-06 05:06:21 +0000969 Tok.setKind(tok::annot_typename);
Chris Lattner608d1fc2009-01-05 01:49:50 +0000970 Tok.setAnnotationValue(Ty);
971 Tok.setAnnotationEndLoc(Tok.getLocation());
972 if (SS.isNotEmpty()) // it was a C++ qualified type name.
973 Tok.setLocation(SS.getBeginLoc());
Mike Stump1eb44332009-09-09 15:08:12 +0000974
Chris Lattner608d1fc2009-01-05 01:49:50 +0000975 // In case the tokens were cached, have Preprocessor replace
976 // them with the annotation token.
977 PP.AnnotateCachedTokens(Tok);
978 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000979 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000980
981 if (!getLang().CPlusPlus) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000982 // If we're in C, we can't have :: tokens at all (the lexer won't return
983 // them). If the identifier is not a type, then it can't be scope either,
Mike Stump1eb44332009-09-09 15:08:12 +0000984 // just early exit.
Chris Lattner608d1fc2009-01-05 01:49:50 +0000985 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000986 }
Mike Stump1eb44332009-09-09 15:08:12 +0000987
Douglas Gregor39a8de12009-02-25 19:37:18 +0000988 // If this is a template-id, annotate with a template-id or type token.
Douglas Gregor55f6b142009-02-09 18:46:07 +0000989 if (NextToken().is(tok::less)) {
Douglas Gregor7532dc62009-03-30 22:58:21 +0000990 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000991 UnqualifiedId TemplateName;
992 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000993 if (TemplateNameKind TNK
Douglas Gregor014e88d2009-11-03 23:16:33 +0000994 = Actions.isTemplateName(CurScope, SS, TemplateName,
Mike Stump1eb44332009-09-09 15:08:12 +0000995 /*ObjectType=*/0, EnteringContext,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000996 Template)) {
997 // Consume the identifier.
998 ConsumeToken();
999 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName)) {
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001000 // If an unrecoverable error occurred, we need to return true here,
1001 // because the token stream is in a damaged state. We may not return
1002 // a valid identifier.
1003 return Tok.isNot(tok::identifier);
1004 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +00001005 }
Douglas Gregor55f6b142009-02-09 18:46:07 +00001006 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001007
Douglas Gregor39a8de12009-02-25 19:37:18 +00001008 // The current token, which is either an identifier or a
1009 // template-id, is not part of the annotation. Fall through to
1010 // push that token back into the stream and complete the C++ scope
1011 // specifier annotation.
Mike Stump1eb44332009-09-09 15:08:12 +00001012 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001013
Douglas Gregor39a8de12009-02-25 19:37:18 +00001014 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001015 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +00001016 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +00001017 if (TemplateId->Kind == TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001018 // A template-id that refers to a type was parsed into a
1019 // template-id annotation in a context where we weren't allowed
1020 // to produce a type annotation token. Update the template-id
1021 // annotation token to a type annotation token now.
Douglas Gregor31a19b62009-04-01 21:51:26 +00001022 AnnotateTemplateIdTokenAsType(&SS);
1023 return true;
Douglas Gregor39a8de12009-02-25 19:37:18 +00001024 }
1025 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001026
Chris Lattner6ec76d42009-01-04 22:32:19 +00001027 if (SS.isEmpty())
Eli Friedman3c9028a2009-06-27 08:17:02 +00001028 return Tok.isNot(tok::identifier) && Tok.isNot(tok::coloncolon);
Mike Stump1eb44332009-09-09 15:08:12 +00001029
Chris Lattner6ec76d42009-01-04 22:32:19 +00001030 // A C++ scope specifier that isn't followed by a typename.
1031 // Push the current token back into the token stream (or revert it if it is
1032 // cached) and use an annotation scope token for current token.
1033 if (PP.isBacktrackEnabled())
1034 PP.RevertCachedTokens(1);
1035 else
1036 PP.EnterToken(Tok);
1037 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001038 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001039 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001040
John McCallae03cb52009-12-19 00:35:18 +00001041 // In case the tokens were cached, have Preprocessor replace them
1042 // with the annotation token. We don't need to do this if we've
1043 // just reverted back to the state we were in before being called.
1044 if (!wasScopeAnnotation)
1045 PP.AnnotateCachedTokens(Tok);
Chris Lattnera7bc7c82009-01-04 23:23:14 +00001046 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001047}
1048
1049/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
Douglas Gregor39a8de12009-02-25 19:37:18 +00001050/// annotates C++ scope specifiers and template-ids. This returns
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001051/// true if the token was annotated or there was an error that could not be
1052/// recovered from.
Mike Stump1eb44332009-09-09 15:08:12 +00001053///
Chris Lattner55a7cef2009-01-05 00:13:00 +00001054/// Note that this routine emits an error if you call it with ::new or ::delete
1055/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +00001056bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001057 assert(getLang().CPlusPlus &&
Chris Lattner6ec76d42009-01-04 22:32:19 +00001058 "Call sites of this function should be guarded by checking for C++");
Chris Lattner7452c6f2009-01-05 01:24:05 +00001059 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
1060 "Cannot be a type or scope token!");
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001061
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001062 CXXScopeSpec SS;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00001063 if (!ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext))
Chris Lattnerbd87c0b2009-12-07 00:48:47 +00001064 // If the token left behind is not an identifier, we either had an error or
1065 // successfully turned it into an annotation token.
1066 return Tok.isNot(tok::identifier);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001067
Chris Lattner6ec76d42009-01-04 22:32:19 +00001068 // Push the current token back into the token stream (or revert it if it is
1069 // cached) and use an annotation scope token for current token.
1070 if (PP.isBacktrackEnabled())
1071 PP.RevertCachedTokens(1);
1072 else
1073 PP.EnterToken(Tok);
1074 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001075 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001076 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001077
Chris Lattner6ec76d42009-01-04 22:32:19 +00001078 // In case the tokens were cached, have Preprocessor replace them with the
1079 // annotation token.
1080 PP.AnnotateCachedTokens(Tok);
Chris Lattner5e02c472009-01-05 00:07:25 +00001081 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001082}
John McCall6c94a6d2009-11-03 19:33:12 +00001083
1084// Anchor the Parser::FieldCallback vtable to this translation unit.
1085// We use a spurious method instead of the destructor because
1086// destroying FieldCallbacks can actually be slightly
1087// performance-sensitive.
1088void Parser::FieldCallback::_anchor() {
1089}