blob: 2558b6675812252d2d42139242507c36809c6b03 [file] [log] [blame]
Chris Lattnereb8a28f2006-08-10 18:43:39 +00001//===--- Parser.cpp - C Language Family Parser ----------------------------===//
Chris Lattner0bb5f832006-07-31 01:59:18 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner0bb5f832006-07-31 01:59:18 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chris Lattner60f36222009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Chris Lattner288e86ff12006-11-11 23:03:42 +000016#include "clang/Parse/DeclSpec.h"
Chris Lattner971c6b62006-08-05 22:46:42 +000017#include "clang/Parse/Scope.h"
Douglas Gregorb53edfb2009-11-10 19:49:08 +000018#include "clang/Parse/Template.h"
Chris Lattnerbcfe4f72009-03-05 07:24:28 +000019#include "llvm/Support/raw_ostream.h"
Chris Lattner8a9a97a2009-12-10 00:21:05 +000020#include "RAIIObjectsForParser.h"
Daniel Dunbar921b9682008-10-04 19:21:03 +000021#include "ParsePragma.h"
Chris Lattner0bb5f832006-07-31 01:59:18 +000022using namespace clang;
23
Douglas Gregorc6d5edd2009-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 Stump11289f42009-09-09 15:08:12 +000028
Douglas Gregorc6d5edd2009-07-02 17:08:52 +000029public:
30 explicit ActionCommentHandler(Action &Actions) : Actions(Actions) { }
Mike Stump11289f42009-09-09 15:08:12 +000031
Chris Lattner87d02082010-01-18 22:35:47 +000032 virtual bool HandleComment(Preprocessor &PP, SourceRange Comment) {
Douglas Gregorc6d5edd2009-07-02 17:08:52 +000033 Actions.ActOnComment(Comment);
Chris Lattner87d02082010-01-18 22:35:47 +000034 return false;
Douglas Gregorc6d5edd2009-07-02 17:08:52 +000035 }
36};
37
Chris Lattner697e5d62006-11-09 06:32:27 +000038Parser::Parser(Preprocessor &pp, Action &actions)
Mike Stump11289f42009-09-09 15:08:12 +000039 : CrashInfo(*this), PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
Chris Lattnerd5c1c9d2009-12-10 00:32:41 +000040 GreaterThanIsOperator(true), ColonIsSacred(false),
41 TemplateParameterDepth(0) {
Chris Lattner8c204872006-10-14 05:19:21 +000042 Tok.setKind(tok::eof);
Chris Lattnere4e38592006-08-14 00:15:05 +000043 CurScope = 0;
Chris Lattner03928c72007-07-15 00:04:39 +000044 NumCachedScopes = 0;
Chris Lattnereec40f92006-08-06 21:55:29 +000045 ParenCount = BracketCount = BraceCount = 0;
Chris Lattner83f095c2009-03-28 19:18:32 +000046 ObjCImpDecl = DeclPtrTy();
Daniel Dunbar921b9682008-10-04 19:21:03 +000047
48 // Add #pragma handlers. These are removed and destroyed in the
49 // destructor.
Ted Kremenekfd14fad2009-03-23 22:28:25 +000050 PackHandler.reset(new
51 PragmaPackHandler(&PP.getIdentifierTable().get("pack"), actions));
52 PP.AddPragmaHandler(0, PackHandler.get());
Mike Stump11289f42009-09-09 15:08:12 +000053
Ted Kremenekfd14fad2009-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 Friedmanf5867dd2009-06-05 00:49:58 +000058
59 WeakHandler.reset(new
60 PragmaWeakHandler(&PP.getIdentifierTable().get("weak"), actions));
61 PP.AddPragmaHandler(0, WeakHandler.get());
Mike Stump11289f42009-09-09 15:08:12 +000062
Douglas Gregorc6d5edd2009-07-02 17:08:52 +000063 CommentHandler.reset(new ActionCommentHandler(actions));
Mike Stump11289f42009-09-09 15:08:12 +000064 PP.AddCommentHandler(CommentHandler.get());
Chris Lattner971c6b62006-08-05 22:46:42 +000065}
66
Chris Lattnerbcfe4f72009-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 Lattnerf02db352009-03-05 07:27:50 +000071 if (Tok.is(tok::eof)) {
Chris Lattnerbcfe4f72009-03-05 07:24:28 +000072 OS << "<eof> parser at end of file\n";
73 return;
74 }
Mike Stump11289f42009-09-09 15:08:12 +000075
Chris Lattnerf02db352009-03-05 07:27:50 +000076 if (Tok.getLocation().isInvalid()) {
77 OS << "<unknown> parser at unknown location\n";
78 return;
79 }
Mike Stump11289f42009-09-09 15:08:12 +000080
Chris Lattnerbcfe4f72009-03-05 07:24:28 +000081 const Preprocessor &PP = P.getPreprocessor();
82 Tok.getLocation().print(OS, PP.getSourceManager());
Daniel Dunbar68d9d7b2009-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 Gregord7c4d982008-12-30 03:27:21 +000087}
Chris Lattner0bb5f832006-07-31 01:59:18 +000088
Chris Lattnerbcfe4f72009-03-05 07:24:28 +000089
Chris Lattner427c9c12008-11-22 00:59:29 +000090DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
Chris Lattnerbcfe4f72009-03-05 07:24:28 +000091 return Diags.Report(FullSourceLoc(Loc, PP.getSourceManager()), DiagID);
Chris Lattner6d29c102008-11-18 07:48:38 +000092}
93
Chris Lattner427c9c12008-11-22 00:59:29 +000094DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
Chris Lattner6d29c102008-11-18 07:48:38 +000095 return Diag(Tok.getLocation(), DiagID);
Chris Lattner0bb5f832006-07-31 01:59:18 +000096}
97
Douglas Gregor87f95b02009-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 Gregor96977da2009-02-27 17:53:17 +0000106 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
107 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
Douglas Gregor87f95b02009-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 Stump11289f42009-09-09 15:08:12 +0000113
114 Diag(Loc, DK)
Douglas Gregor96977da2009-02-27 17:53:17 +0000115 << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(")
116 << CodeModificationHint::CreateInsertion(EndLoc, ")");
Douglas Gregor87f95b02009-02-26 21:00:50 +0000117}
118
Chris Lattner4564bc12006-08-10 23:14:52 +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.
Chris Lattner71e23ce2006-11-04 20:18:38 +0000124SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok,
125 SourceLocation LHSLoc) {
Mike Stump01e07652008-06-19 19:28:49 +0000126
Chris Lattner0ab032a2007-10-09 17:23:58 +0000127 if (Tok.is(RHSTok))
Chris Lattner71e23ce2006-11-04 20:18:38 +0000128 return ConsumeAnyToken();
Mike Stump01e07652008-06-19 19:28:49 +0000129
Chris Lattner71e23ce2006-11-04 20:18:38 +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;
Chris Lattner29375652006-12-04 18:06:35 +0000138 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break;
Chris Lattner4564bc12006-08-10 23:14:52 +0000139 }
Chris Lattner71e23ce2006-11-04 20:18:38 +0000140 Diag(Tok, DID);
Chris Lattner03c40412008-11-23 23:17:07 +0000141 Diag(LHSLoc, diag::note_matching) << LHSName;
Chris Lattner71e23ce2006-11-04 20:18:38 +0000142 SkipUntil(RHSTok);
143 return R;
Chris Lattner4564bc12006-08-10 23:14:52 +0000144}
145
Chris Lattnerdbb2a462006-08-12 19:26:13 +0000146/// 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,
Chris Lattner6d7e6342006-08-15 03:41:14 +0000153 const char *Msg, tok::TokenKind SkipToTok) {
Chris Lattner0ab032a2007-10-09 17:23:58 +0000154 if (Tok.is(ExpectedTok)) {
Chris Lattner15a00da2006-08-15 04:10:31 +0000155 ConsumeAnyToken();
Chris Lattnerdbb2a462006-08-12 19:26:13 +0000156 return false;
157 }
Mike Stump01e07652008-06-19 19:28:49 +0000158
Douglas Gregor87f95b02009-02-26 21:00:50 +0000159 const char *Spelling = 0;
Douglas Gregor96977da2009-02-27 17:53:17 +0000160 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
Mike Stump11289f42009-09-09 15:08:12 +0000161 if (EndLoc.isValid() &&
Douglas Gregor96977da2009-02-27 17:53:17 +0000162 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
Douglas Gregor87f95b02009-02-26 21:00:50 +0000163 // Show what code to insert to fix this problem.
Mike Stump11289f42009-09-09 15:08:12 +0000164 Diag(EndLoc, DiagID)
Douglas Gregor87f95b02009-02-26 21:00:50 +0000165 << Msg
Douglas Gregor96977da2009-02-27 17:53:17 +0000166 << CodeModificationHint::CreateInsertion(EndLoc, Spelling);
Douglas Gregor87f95b02009-02-26 21:00:50 +0000167 } else
168 Diag(Tok, DiagID) << Msg;
169
Chris Lattnerdbb2a462006-08-12 19:26:13 +0000170 if (SkipToTok != tok::unknown)
171 SkipUntil(SkipToTok);
172 return true;
173}
174
Chris Lattner70f32b72006-07-31 05:09:04 +0000175//===----------------------------------------------------------------------===//
Chris Lattnereec40f92006-08-06 21:55:29 +0000176// Error recovery.
177//===----------------------------------------------------------------------===//
178
179/// SkipUntil - Read tokens until we get to the specified token, then consume
Chris Lattner01e4b242007-07-24 17:03:04 +0000180/// it (unless DontConsume is true). Because we cannot guarantee that the
Chris Lattnereec40f92006-08-06 21:55:29 +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 Stump01e07652008-06-19 19:28:49 +0000184///
Chris Lattnereec40f92006-08-06 21:55:29 +0000185/// If SkipUntil finds the specified token, it returns true, otherwise it
Mike Stump01e07652008-06-19 19:28:49 +0000186/// returns false.
Chris Lattner83b94e02007-04-27 19:12:15 +0000187bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,
188 bool StopAtSemi, bool DontConsume) {
Chris Lattner5bd57e02006-08-11 06:40:25 +0000189 // 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;
Chris Lattnereec40f92006-08-06 21:55:29 +0000192 while (1) {
Chris Lattner83b94e02007-04-27 19:12:15 +0000193 // If we found one of the tokens, stop and return true.
194 for (unsigned i = 0; i != NumToks; ++i) {
Chris Lattner0ab032a2007-10-09 17:23:58 +0000195 if (Tok.is(Toks[i])) {
Chris Lattner83b94e02007-04-27 19:12:15 +0000196 if (DontConsume) {
197 // Noop, don't consume the token.
198 } else {
199 ConsumeAnyToken();
200 }
201 return true;
Chris Lattnereec40f92006-08-06 21:55:29 +0000202 }
Chris Lattnereec40f92006-08-06 21:55:29 +0000203 }
Mike Stump01e07652008-06-19 19:28:49 +0000204
Chris Lattnereec40f92006-08-06 21:55:29 +0000205 switch (Tok.getKind()) {
206 case tok::eof:
207 // Ran out of tokens.
208 return false;
Mike Stump01e07652008-06-19 19:28:49 +0000209
Chris Lattnereec40f92006-08-06 21:55:29 +0000210 case tok::l_paren:
211 // Recursively skip properly-nested parens.
212 ConsumeParen();
Chris Lattner5bd57e02006-08-11 06:40:25 +0000213 SkipUntil(tok::r_paren, false);
Chris Lattnereec40f92006-08-06 21:55:29 +0000214 break;
215 case tok::l_square:
216 // Recursively skip properly-nested square brackets.
217 ConsumeBracket();
Chris Lattner5bd57e02006-08-11 06:40:25 +0000218 SkipUntil(tok::r_square, false);
Chris Lattnereec40f92006-08-06 21:55:29 +0000219 break;
220 case tok::l_brace:
221 // Recursively skip properly-nested braces.
222 ConsumeBrace();
Chris Lattner5bd57e02006-08-11 06:40:25 +0000223 SkipUntil(tok::r_brace, false);
Chris Lattnereec40f92006-08-06 21:55:29 +0000224 break;
Mike Stump01e07652008-06-19 19:28:49 +0000225
Chris Lattnereec40f92006-08-06 21:55:29 +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:
Chris Lattner5bd57e02006-08-11 06:40:25 +0000232 if (ParenCount && !isFirstTokenSkipped)
233 return false; // Matches something.
Chris Lattnereec40f92006-08-06 21:55:29 +0000234 ConsumeParen();
235 break;
236 case tok::r_square:
Chris Lattner5bd57e02006-08-11 06:40:25 +0000237 if (BracketCount && !isFirstTokenSkipped)
238 return false; // Matches something.
Chris Lattnereec40f92006-08-06 21:55:29 +0000239 ConsumeBracket();
240 break;
241 case tok::r_brace:
Chris Lattner5bd57e02006-08-11 06:40:25 +0000242 if (BraceCount && !isFirstTokenSkipped)
243 return false; // Matches something.
Chris Lattnereec40f92006-08-06 21:55:29 +0000244 ConsumeBrace();
245 break;
Mike Stump01e07652008-06-19 19:28:49 +0000246
Chris Lattnereec40f92006-08-06 21:55:29 +0000247 case tok::string_literal:
Chris Lattnerd3e98952006-10-06 05:22:26 +0000248 case tok::wide_string_literal:
Chris Lattnereec40f92006-08-06 21:55:29 +0000249 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 }
Chris Lattner5bd57e02006-08-11 06:40:25 +0000260 isFirstTokenSkipped = false;
Mike Stump01e07652008-06-19 19:28:49 +0000261 }
Chris Lattnereec40f92006-08-06 21:55:29 +0000262}
263
264//===----------------------------------------------------------------------===//
Chris Lattnere4e38592006-08-14 00:15:05 +0000265// Scope manipulation
266//===----------------------------------------------------------------------===//
267
268/// EnterScope - Start a new scope.
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000269void Parser::EnterScope(unsigned ScopeFlags) {
Chris Lattner03928c72007-07-15 00:04:39 +0000270 if (NumCachedScopes) {
271 Scope *N = ScopeCache[--NumCachedScopes];
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000272 N->Init(CurScope, ScopeFlags);
273 CurScope = N;
274 } else {
275 CurScope = new Scope(CurScope, ScopeFlags);
276 }
Chris Lattnere4e38592006-08-14 00:15:05 +0000277}
278
279/// ExitScope - Pop a scope off the scope stack.
280void Parser::ExitScope() {
281 assert(CurScope && "Scope imbalance!");
282
Chris Lattner87547e62007-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 Naroffc62adb62007-10-09 22:01:59 +0000286 Actions.ActOnPopScope(Tok.getLocation(), CurScope);
Mike Stump01e07652008-06-19 19:28:49 +0000287
Chris Lattner03928c72007-07-15 00:04:39 +0000288 Scope *OldScope = CurScope;
289 CurScope = OldScope->getParent();
Mike Stump01e07652008-06-19 19:28:49 +0000290
Chris Lattner03928c72007-07-15 00:04:39 +0000291 if (NumCachedScopes == ScopeCacheSize)
292 delete OldScope;
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000293 else
Chris Lattner03928c72007-07-15 00:04:39 +0000294 ScopeCache[NumCachedScopes++] = OldScope;
Chris Lattnere4e38592006-08-14 00:15:05 +0000295}
296
297
298
299
300//===----------------------------------------------------------------------===//
Chris Lattner70f32b72006-07-31 05:09:04 +0000301// C99 6.9: External Definitions.
302//===----------------------------------------------------------------------===//
Chris Lattner0bb5f832006-07-31 01:59:18 +0000303
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000304Parser::~Parser() {
305 // If we still have scopes active, delete the scope tree.
306 delete CurScope;
Mike Stump01e07652008-06-19 19:28:49 +0000307
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000308 // Free the scope cache.
Chris Lattner03928c72007-07-15 00:04:39 +0000309 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
310 delete ScopeCache[i];
Daniel Dunbar921b9682008-10-04 19:21:03 +0000311
312 // Remove the pragma handlers we installed.
Ted Kremenekfd14fad2009-03-23 22:28:25 +0000313 PP.RemovePragmaHandler(0, PackHandler.get());
314 PackHandler.reset();
315 PP.RemovePragmaHandler(0, UnusedHandler.get());
316 UnusedHandler.reset();
Eli Friedmanf5867dd2009-06-05 00:49:58 +0000317 PP.RemovePragmaHandler(0, WeakHandler.get());
318 WeakHandler.reset();
Douglas Gregorc6d5edd2009-07-02 17:08:52 +0000319 PP.RemoveCommentHandler(CommentHandler.get());
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000320}
321
Chris Lattner38ba3362006-08-17 07:04:37 +0000322/// Initialize - Warm up the parser.
323///
324void Parser::Initialize() {
Chris Lattnere4e38592006-08-14 00:15:05 +0000325 // Prime the lexer look-ahead.
326 ConsumeToken();
Mike Stump01e07652008-06-19 19:28:49 +0000327
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000328 // Create the translation unit scope. Install it as the current scope.
Chris Lattnere4e38592006-08-14 00:15:05 +0000329 assert(CurScope == 0 && "A scope is already active?");
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000330 EnterScope(Scope::DeclScope);
Steve Naroffc62adb62007-10-09 22:01:59 +0000331 Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope);
Mike Stump01e07652008-06-19 19:28:49 +0000332
Chris Lattner0ab032a2007-10-09 17:23:58 +0000333 if (Tok.is(tok::eof) &&
Chris Lattner66b67ef2007-08-25 05:47:03 +0000334 !getLang().CPlusPlus) // Empty source file is an extension in C
Chris Lattnerbd638922006-11-10 05:19:25 +0000335 Diag(Tok, diag::ext_empty_source_file);
Mike Stump01e07652008-06-19 19:28:49 +0000336
Chris Lattner66782842007-08-29 22:54:08 +0000337 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000338 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner66782842007-08-29 22:54:08 +0000339 if (getLang().ObjC1) {
Ted Kremenek1b0ea822008-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 Lattner66782842007-08-29 22:54:08 +0000346 }
Daniel Dunbar12c9ddc2008-08-14 22:04:54 +0000347
348 Ident_super = &PP.getIdentifierTable().get("super");
John Thompson22334602010-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 }
Chris Lattner38ba3362006-08-17 07:04:37 +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 Lattner5bbb3c82009-03-29 16:50:03 +0000358bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
359 Result = DeclGroupPtrTy();
Chris Lattnerf4404402008-08-23 03:19:52 +0000360 if (Tok.is(tok::eof)) {
361 Actions.ActOnEndOfTranslationUnit();
362 return true;
363 }
Mike Stump01e07652008-06-19 19:28:49 +0000364
Alexis Hunt96d5c762009-11-21 08:43:09 +0000365 CXX0XAttributeList Attr;
366 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
367 Attr = ParseCXX0XAttributes();
368 Result = ParseExternalDeclaration(Attr);
Chris Lattner38ba3362006-08-17 07:04:37 +0000369 return false;
370}
371
Chris Lattner38ba3362006-08-17 07:04:37 +0000372/// ParseTranslationUnit:
373/// translation-unit: [C99 6.9]
Mike Stump01e07652008-06-19 19:28:49 +0000374/// external-declaration
375/// translation-unit external-declaration
Chris Lattner38ba3362006-08-17 07:04:37 +0000376void Parser::ParseTranslationUnit() {
Douglas Gregor7307d6c2008-12-10 06:34:36 +0000377 Initialize();
Mike Stump01e07652008-06-19 19:28:49 +0000378
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000379 DeclGroupPtrTy Res;
Steve Naroff205ec3d2007-11-29 23:05:20 +0000380 while (!ParseTopLevelDecl(Res))
Chris Lattner38ba3362006-08-17 07:04:37 +0000381 /*parse them all*/;
Mike Stump11289f42009-09-09 15:08:12 +0000382
Chris Lattner2cc35ae2008-08-23 02:00:52 +0000383 ExitScope();
384 assert(CurScope == 0 && "Scope imbalance!");
Chris Lattner38ba3362006-08-17 07:04:37 +0000385}
386
Chris Lattner0bb5f832006-07-31 01:59:18 +0000387/// ParseExternalDeclaration:
Chris Lattner46415262008-12-08 21:59:01 +0000388///
Douglas Gregor15799fd2008-11-21 16:10:08 +0000389/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattnercccc3112007-08-10 20:57:02 +0000390/// function-definition
391/// declaration
Douglas Gregor8b9575f2009-08-24 12:17:54 +0000392/// [C++0x] empty-declaration
Chris Lattner6d7e6342006-08-15 03:41:14 +0000393/// [GNU] asm-definition
Chris Lattnercccc3112007-08-10 20:57:02 +0000394/// [GNU] __extension__ external-declaration
Chris Lattner40f16b52006-11-05 02:05:37 +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 Gregor15799fd2008-11-21 16:10:08 +0000401/// [C++] linkage-specification
Chris Lattner6d7e6342006-08-15 03:41:14 +0000402/// [GNU] asm-definition:
403/// simple-asm-expr ';'
404///
Douglas Gregor8b9575f2009-08-24 12:17:54 +0000405/// [C++0x] empty-declaration:
406/// ';'
407///
Douglas Gregor43e75172009-09-04 06:33:52 +0000408/// [C++0x/GNU] 'extern' 'template' declaration
Alexis Hunt96d5c762009-11-21 08:43:09 +0000409Parser::DeclGroupPtrTy Parser::ParseExternalDeclaration(CXX0XAttributeList Attr) {
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000410 DeclPtrTy SingleDecl;
Chris Lattner0bb5f832006-07-31 01:59:18 +0000411 switch (Tok.getKind()) {
412 case tok::semi:
Douglas Gregor8b9575f2009-08-24 12:17:54 +0000413 if (!getLang().CPlusPlus0x)
414 Diag(Tok, diag::ext_top_level_semi)
Chris Lattner3c7b86f2009-12-06 17:36:05 +0000415 << CodeModificationHint::CreateRemoval(Tok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +0000416
Chris Lattner0bb5f832006-07-31 01:59:18 +0000417 ConsumeToken();
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000418 // TODO: Invoke action for top-level semicolon.
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000419 return DeclGroupPtrTy();
Chris Lattner46415262008-12-08 21:59:01 +0000420 case tok::r_brace:
421 Diag(Tok, diag::err_expected_external_declaration);
422 ConsumeBrace();
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000423 return DeclGroupPtrTy();
Chris Lattner46415262008-12-08 21:59:01 +0000424 case tok::eof:
425 Diag(Tok, diag::err_expected_external_declaration);
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000426 return DeclGroupPtrTy();
Chris Lattnercccc3112007-08-10 20:57:02 +0000427 case tok::kw___extension__: {
Chris Lattnerf02ef3e2008-10-20 06:45:43 +0000428 // __extension__ silences extension warnings in the subexpression.
429 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner1ff6e732008-10-20 06:51:33 +0000430 ConsumeToken();
Alexis Hunt96d5c762009-11-21 08:43:09 +0000431 return ParseExternalDeclaration(Attr);
Chris Lattnercccc3112007-08-10 20:57:02 +0000432 }
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000433 case tok::kw_asm: {
Alexis Hunt96d5c762009-11-21 08:43:09 +0000434 if (Attr.HasAttr)
435 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
436 << Attr.Range;
437
Sebastian Redld9f7b1c2008-12-10 00:02:53 +0000438 OwningExprResult Result(ParseSimpleAsm());
Mike Stump01e07652008-06-19 19:28:49 +0000439
Anders Carlsson0fae4f52008-02-08 00:23:11 +0000440 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
441 "top-level asm block");
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000442
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000443 if (Result.isInvalid())
444 return DeclGroupPtrTy();
445 SingleDecl = Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), move(Result));
446 break;
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000447 }
Steve Naroffb419d3a2006-10-27 23:18:49 +0000448 case tok::at:
Chris Lattner5bbb3c82009-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;
Steve Naroffb419d3a2006-10-27 23:18:49 +0000454 case tok::minus:
Steve Naroffb419d3a2006-10-27 23:18:49 +0000455 case tok::plus:
Chris Lattner5bbb3c82009-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 Gregor9d64c5e2009-09-21 20:51:25 +0000463 case tok::code_completion:
Douglas Gregorf1934162010-01-13 21:24:21 +0000464 Actions.CodeCompleteOrdinaryName(CurScope,
465 ObjCImpDecl? Action::CCC_ObjCImplementation
466 : Action::CCC_Namespace);
Douglas Gregor9d64c5e2009-09-21 20:51:25 +0000467 ConsumeToken();
Alexis Hunt96d5c762009-11-21 08:43:09 +0000468 return ParseExternalDeclaration(Attr);
Douglas Gregord7c4d982008-12-30 03:27:21 +0000469 case tok::kw_using:
Chris Lattnera5235172007-08-25 06:57:03 +0000470 case tok::kw_namespace:
Chris Lattner302b4be2006-11-19 02:31:38 +0000471 case tok::kw_typedef:
Douglas Gregoreb31f392008-12-01 23:54:00 +0000472 case tok::kw_template:
473 case tok::kw_export: // As in 'export template'
Anders Carlssonf24fcff62009-03-11 16:27:10 +0000474 case tok::kw_static_assert:
Chris Lattner479ed3a2007-08-25 18:15:16 +0000475 // A function definition cannot start with a these keywords.
Chris Lattner49836b42009-04-02 04:16:50 +0000476 {
477 SourceLocation DeclEnd;
Alexis Hunt96d5c762009-11-21 08:43:09 +0000478 return ParseDeclaration(Declarator::FileContext, DeclEnd, Attr);
Chris Lattner49836b42009-04-02 04:16:50 +0000479 }
Douglas Gregor43e75172009-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 Stump11289f42009-09-09 15:08:12 +0000489
Douglas Gregor43e75172009-09-04 06:33:52 +0000490 // FIXME: Detect C++ linkage specifications here?
Mike Stump11289f42009-09-09 15:08:12 +0000491
Douglas Gregor43e75172009-09-04 06:33:52 +0000492 // Fall through to handle other declarations or function definitions.
Mike Stump11289f42009-09-09 15:08:12 +0000493
Chris Lattner0bb5f832006-07-31 01:59:18 +0000494 default:
495 // We can't tell whether this is a function-definition or declaration yet.
Alexis Hunt96d5c762009-11-21 08:43:09 +0000496 return ParseDeclarationOrFunctionDefinition(Attr.AttrList);
Chris Lattner0bb5f832006-07-31 01:59:18 +0000497 }
Mike Stump11289f42009-09-09 15:08:12 +0000498
Chris Lattner5bbb3c82009-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);
Chris Lattner0bb5f832006-07-31 01:59:18 +0000502}
503
Douglas Gregor23996282009-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 Lattner8c56c492009-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 Gregor23996282009-05-12 21:31:51 +0000526}
527
Chris Lattner0bb5f832006-07-31 01:59:18 +0000528/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
Chris Lattner70f32b72006-07-31 05:09:04 +0000529/// a declaration. We can't tell which we have until we read up to the
Douglas Gregorb9bd8a92008-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 Stump11289f42009-09-09 15:08:12 +0000532/// C++ template-declaration.
Chris Lattner0bb5f832006-07-31 01:59:18 +0000533///
Chris Lattner70f32b72006-07-31 05:09:04 +0000534/// function-definition: [C99 6.9.1]
Chris Lattner94fc8062008-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 Stump01e07652008-06-19 19:28:49 +0000537/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattner94fc8062008-04-05 05:52:15 +0000538///
Chris Lattner70f32b72006-07-31 05:09:04 +0000539/// declaration: [C99 6.7]
Chris Lattnerf2659392007-08-22 06:06:56 +0000540/// declaration-specifiers init-declarator-list[opt] ';'
541/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Chris Lattner70f32b72006-07-31 05:09:04 +0000542/// [OMP] threadprivate-directive [TODO]
543///
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000544Parser::DeclGroupPtrTy
Fariborz Jahanian26de2e52009-12-09 21:39:38 +0000545Parser::ParseDeclarationOrFunctionDefinition(ParsingDeclSpec &DS,
546 AttributeList *Attr,
Alexis Hunt96d5c762009-11-21 08:43:09 +0000547 AccessSpecifier AS) {
Chris Lattner70f32b72006-07-31 05:09:04 +0000548 // Parse the common declaration-specifiers piece.
Alexis Hunt96d5c762009-11-21 08:43:09 +0000549 if (Attr)
550 DS.AddAttributes(Attr);
551
Douglas Gregor9de54ea2010-01-13 17:31:36 +0000552 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
Mike Stump01e07652008-06-19 19:28:49 +0000553
Chris Lattnerd2864882006-08-05 08:09:44 +0000554 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
Chris Lattner53361ac2006-08-10 05:19:57 +0000555 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner0ab032a2007-10-09 17:23:58 +0000556 if (Tok.is(tok::semi)) {
Chris Lattner0e894622006-08-13 19:58:17 +0000557 ConsumeToken();
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000558 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
John McCall28a6aea2009-11-04 02:18:39 +0000559 DS.complete(TheDecl);
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000560 return Actions.ConvertDeclToDeclGroup(TheDecl);
Chris Lattner0e894622006-08-13 19:58:17 +0000561 }
Mike Stump01e07652008-06-19 19:28:49 +0000562
Daniel Dunbar26e2ab42008-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 Lattner0ab032a2007-10-09 17:23:58 +0000566 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Naroff1eb1ad62007-08-20 21:31:48 +0000567 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump11289f42009-09-09 15:08:12 +0000568 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
Daniel Dunbar26e2ab42008-09-26 04:48:09 +0000569 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
570 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattner5e530bc2007-12-27 19:57:00 +0000571 SkipUntil(tok::semi); // FIXME: better skip?
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000572 return DeclGroupPtrTy();
Chris Lattner5e530bc2007-12-27 19:57:00 +0000573 }
John McCalld5a36322009-11-03 19:26:08 +0000574
John McCall28a6aea2009-11-04 02:18:39 +0000575 DS.abort();
576
Fariborz Jahanian056e3a42008-01-02 19:17:38 +0000577 const char *PrevSpec = 0;
John McCall49bfce42009-08-03 20:12:06 +0000578 unsigned DiagID;
579 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
580 Diag(AtLoc, DiagID) << PrevSpec;
Mike Stump11289f42009-09-09 15:08:12 +0000581
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000582 DeclPtrTy TheDecl;
Daniel Dunbar26e2ab42008-09-26 04:48:09 +0000583 if (Tok.isObjCAtKeyword(tok::objc_protocol))
Chris Lattner5bbb3c82009-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 Naroff1eb1ad62007-08-20 21:31:48 +0000588 }
Mike Stump01e07652008-06-19 19:28:49 +0000589
Chris Lattner38376f12008-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 Lattner65531e82008-01-12 07:08:43 +0000593 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattner38376f12008-01-12 07:05:38 +0000594 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000595 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
Fariborz Jahanian26de2e52009-12-09 21:39:38 +0000596 DeclPtrTy TheDecl = ParseLinkage(DS, Declarator::FileContext);
Chris Lattner5bbb3c82009-03-29 16:50:03 +0000597 return Actions.ConvertDeclToDeclGroup(TheDecl);
598 }
Chris Lattner38376f12008-01-12 07:05:38 +0000599
John McCalld5a36322009-11-03 19:26:08 +0000600 return ParseDeclGroup(DS, Declarator::FileContext, true);
Chris Lattner70f32b72006-07-31 05:09:04 +0000601}
602
Fariborz Jahanian26de2e52009-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
Chris Lattnerfff824f2006-08-07 06:31:38 +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 Lattner94fc8062008-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 Stump01e07652008-06-19 19:28:49 +0000617/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregore8381c02008-11-05 04:29:56 +0000618/// [C++] function-definition: [C++ 8.4]
Chris Lattnerefb0f112009-03-29 17:18:04 +0000619/// decl-specifier-seq[opt] declarator ctor-initializer[opt]
620/// function-body
Douglas Gregore8381c02008-11-05 04:29:56 +0000621/// [C++] function-definition: [C++ 8.4]
Sebastian Redla7b98a72009-04-26 20:35:05 +0000622/// decl-specifier-seq[opt] declarator function-try-block
Chris Lattnerfff824f2006-08-07 06:31:38 +0000623///
John McCall28a6aea2009-11-04 02:18:39 +0000624Parser::DeclPtrTy Parser::ParseFunctionDefinition(ParsingDeclarator &D,
Douglas Gregor17a7c122009-06-24 00:54:41 +0000625 const ParsedTemplateInfo &TemplateInfo) {
Chris Lattnercbc426d2006-12-02 06:43:02 +0000626 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
627 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
Chris Lattnerfff824f2006-08-07 06:31:38 +0000628 "This isn't a function declarator!");
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000629 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stump01e07652008-06-19 19:28:49 +0000630
Chris Lattner94fc8062008-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 Lattnere0c51162009-02-27 18:35:46 +0000634 if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) {
Chris Lattner94fc8062008-04-05 05:52:15 +0000635 const char *PrevSpec;
John McCall49bfce42009-08-03 20:12:06 +0000636 unsigned DiagID;
Chris Lattnerfcc390a2008-10-20 02:01:34 +0000637 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
638 D.getIdentifierLoc(),
John McCall49bfce42009-08-03 20:12:06 +0000639 PrevSpec, DiagID);
Sebastian Redlf6591ca2009-02-09 18:23:29 +0000640 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
Chris Lattner94fc8062008-04-05 05:52:15 +0000641 }
Mike Stump01e07652008-06-19 19:28:49 +0000642
Chris Lattnerfff824f2006-08-07 06:31:38 +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; {}
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000646 if (!FTI.hasPrototype && FTI.NumArgs != 0)
647 ParseKNRParamDeclarations(D);
Chris Lattnerfff824f2006-08-07 06:31:38 +0000648
Douglas Gregore8381c02008-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 Redla7b98a72009-04-26 20:35:05 +0000651 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon) &&
652 Tok.isNot(tok::kw_try)) {
Chris Lattner0ccd51e2006-08-09 05:47:47 +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 Stump01e07652008-06-19 19:28:49 +0000657
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000658 // If we didn't find the '{', bail out.
Chris Lattner0ab032a2007-10-09 17:23:58 +0000659 if (Tok.isNot(tok::l_brace))
Chris Lattner83f095c2009-03-28 19:18:32 +0000660 return DeclPtrTy();
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000661 }
Mike Stump01e07652008-06-19 19:28:49 +0000662
Chris Lattnera55a2cc2007-10-09 17:14:05 +0000663 // Enter a scope for the function body.
Douglas Gregor7307d6c2008-12-10 06:34:36 +0000664 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
Mike Stump01e07652008-06-19 19:28:49 +0000665
Chris Lattnera55a2cc2007-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 Stump11289f42009-09-09 15:08:12 +0000668 DeclPtrTy Res = TemplateInfo.TemplateParams?
Douglas Gregor17a7c122009-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 Stump01e07652008-06-19 19:28:49 +0000675
John McCall28a6aea2009-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 Redla7b98a72009-04-26 20:35:05 +0000683 if (Tok.is(tok::kw_try))
684 return ParseFunctionTryBlock(Res);
685
Douglas Gregore8381c02008-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 Jahanian06b23742009-07-14 20:06:22 +0000690 else
Fariborz Jahanianaee31ac2009-07-21 22:36:06 +0000691 Actions.ActOnDefaultCtorInitializers(Res);
Douglas Gregore8381c02008-11-05 04:29:56 +0000692
Chris Lattner12f2ea52009-03-05 00:49:17 +0000693 return ParseFunctionStatementBody(Res);
Chris Lattnerfff824f2006-08-07 06:31:38 +0000694}
695
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000696/// 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 Lattneraa9c7ae2008-04-08 04:40:51 +0000702 // Enter function-declaration scope, limiting any declarators to the
703 // function prototype scope, including parameter declarators.
Douglas Gregor658b9552009-01-09 22:42:13 +0000704 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000705
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000706 // Read all the argument declarations.
707 while (isDeclarationSpecifier()) {
708 SourceLocation DSStart = Tok.getLocation();
Mike Stump01e07652008-06-19 19:28:49 +0000709
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000710 // Parse the common declaration-specifiers piece.
711 DeclSpec DS;
712 ParseDeclarationSpecifiers(DS);
Mike Stump01e07652008-06-19 19:28:49 +0000713
Chris Lattner5c5fbcc2006-12-03 08:41:30 +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 Lattner0ab032a2007-10-09 17:23:58 +0000719 if (Tok.is(tok::semi)) {
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000720 Diag(DSStart, diag::err_declaration_does_not_declare_param);
721 ConsumeToken();
722 continue;
723 }
Mike Stump01e07652008-06-19 19:28:49 +0000724
Chris Lattner5c5fbcc2006-12-03 08:41:30 +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 Stump01e07652008-06-19 19:28:49 +0000738
Chris Lattner5c5fbcc2006-12-03 08:41:30 +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) {
Chris Lattner83f095c2009-03-28 19:18:32 +0000745 Action::AttrTy *AttrList;
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000746 // If attributes are present, parse them.
Chris Lattner0ab032a2007-10-09 17:23:58 +0000747 if (Tok.is(tok::kw___attribute))
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000748 // FIXME: attach attributes too.
Alexis Hunt96d5c762009-11-21 08:43:09 +0000749 AttrList = ParseGNUAttributes();
Mike Stump01e07652008-06-19 19:28:49 +0000750
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000751 // Ask the actions module to compute the type for this declarator.
Chris Lattner83f095c2009-03-28 19:18:32 +0000752 Action::DeclPtrTy Param =
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000753 Actions.ActOnParamDeclarator(CurScope, ParmDeclarator);
Steve Naroffacb1e742007-09-10 20:51:04 +0000754
Mike Stump01e07652008-06-19 19:28:49 +0000755 if (Param &&
Chris Lattner5c5fbcc2006-12-03 08:41:30 +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 Lattner6d29c102008-11-18 07:48:38 +0000765 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattner760d19ad2008-11-19 07:51:13 +0000766 << ParmDeclarator.getIdentifier();
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000767 break;
768 }
Mike Stump01e07652008-06-19 19:28:49 +0000769
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000770 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
771 // Reject redefinitions of parameters.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000772 if (FTI.ArgInfo[i].Param) {
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000773 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +0000774 diag::err_param_redefinition)
Chris Lattner760d19ad2008-11-19 07:51:13 +0000775 << ParmDeclarator.getIdentifier();
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000776 } else {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000777 FTI.ArgInfo[i].Param = Param;
Chris Lattner5c5fbcc2006-12-03 08:41:30 +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 Lattner0ab032a2007-10-09 17:23:58 +0000786 if (Tok.isNot(tok::comma))
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000787 break;
Mike Stump01e07652008-06-19 19:28:49 +0000788
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000789 // Consume the comma.
790 ConsumeToken();
Mike Stump01e07652008-06-19 19:28:49 +0000791
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000792 // Parse the next declarator.
793 ParmDeclarator.clear();
794 ParseDeclarator(ParmDeclarator);
795 }
Mike Stump01e07652008-06-19 19:28:49 +0000796
Chris Lattner0ab032a2007-10-09 17:23:58 +0000797 if (Tok.is(tok::semi)) {
Chris Lattner5c5fbcc2006-12-03 08:41:30 +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 Lattner0ab032a2007-10-09 17:23:58 +0000803 if (Tok.is(tok::semi))
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000804 ConsumeToken();
805 }
806 }
Mike Stump01e07652008-06-19 19:28:49 +0000807
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000808 // The actions module must verify that all arguments were declared.
Douglas Gregor170512f2009-04-01 23:51:29 +0000809 Actions.ActOnFinishKNRParamDeclarations(CurScope, D, Tok.getLocation());
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000810}
811
812
Chris Lattner0116c472006-08-15 06:03:28 +0000813/// 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 Redld9f7b1c2008-12-10 00:02:53 +0000819Parser::OwningExprResult Parser::ParseAsmStringLiteral() {
Chris Lattnerd3e98952006-10-06 05:22:26 +0000820 if (!isTokenStringLiteral()) {
Chris Lattner0116c472006-08-15 06:03:28 +0000821 Diag(Tok, diag::err_expected_string_literal);
Sebastian Redl042ad952008-12-11 19:30:53 +0000822 return ExprError();
Chris Lattner0116c472006-08-15 06:03:28 +0000823 }
Mike Stump01e07652008-06-19 19:28:49 +0000824
Sebastian Redld65cea82008-12-11 22:51:44 +0000825 OwningExprResult Res(ParseStringLiteralExpression());
Sebastian Redld9f7b1c2008-12-10 00:02:53 +0000826 if (Res.isInvalid()) return move(Res);
Mike Stump01e07652008-06-19 19:28:49 +0000827
Chris Lattner0116c472006-08-15 06:03:28 +0000828 // TODO: Diagnose: wide string literal in 'asm'
Mike Stump01e07652008-06-19 19:28:49 +0000829
Sebastian Redld9f7b1c2008-12-10 00:02:53 +0000830 return move(Res);
Chris Lattner0116c472006-08-15 06:03:28 +0000831}
832
Chris Lattner6d7e6342006-08-15 03:41:14 +0000833/// ParseSimpleAsm
834///
835/// [GNU] simple-asm-expr:
836/// 'asm' '(' asm-string-literal ')'
Chris Lattner6d7e6342006-08-15 03:41:14 +0000837///
Sebastian Redlf6591ca2009-02-09 18:23:29 +0000838Parser::OwningExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
Chris Lattner0ab032a2007-10-09 17:23:58 +0000839 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000840 SourceLocation Loc = ConsumeToken();
Mike Stump01e07652008-06-19 19:28:49 +0000841
John McCall9dfb1622010-01-25 22:27:48 +0000842 if (Tok.is(tok::kw_volatile)) {
John McCall5cb52872010-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 McCall9dfb1622010-01-25 22:27:48 +0000849 ConsumeToken();
850 }
851
Chris Lattner0ab032a2007-10-09 17:23:58 +0000852 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +0000853 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Sebastian Redl042ad952008-12-11 19:30:53 +0000854 return ExprError();
Chris Lattner6d7e6342006-08-15 03:41:14 +0000855 }
Mike Stump01e07652008-06-19 19:28:49 +0000856
Sebastian Redlf6591ca2009-02-09 18:23:29 +0000857 Loc = ConsumeParen();
Mike Stump01e07652008-06-19 19:28:49 +0000858
Sebastian Redld9f7b1c2008-12-10 00:02:53 +0000859 OwningExprResult Result(ParseAsmStringLiteral());
Mike Stump01e07652008-06-19 19:28:49 +0000860
Sebastian Redlf6591ca2009-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 Stump01e07652008-06-19 19:28:49 +0000871
Sebastian Redld9f7b1c2008-12-10 00:02:53 +0000872 return move(Result);
Chris Lattner6d7e6342006-08-15 03:41:14 +0000873}
Steve Naroffb419d3a2006-10-27 23:18:49 +0000874
Argyrios Kyrtzidis32a03792008-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 Kyrtzidis0c4162a2008-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 Naroff16c8e592009-01-28 19:39:02 +0000888/// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
Argyrios Kyrtzidis0c4162a2008-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 Lattner9a8968b2009-01-04 23:23:14 +0000892///
Chris Lattner5558e9f2009-06-26 04:27:47 +0000893/// This returns true if the token was annotated or an unrecoverable error
894/// occurs.
Mike Stump11289f42009-09-09 15:08:12 +0000895///
Chris Lattner45ddec32009-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 Gregore861bac2009-08-25 22:51:20 +0000898bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext) {
Mike Stump11289f42009-09-09 15:08:12 +0000899 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)
John McCalle2ade282009-12-19 00:35:18 +0000900 || Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope)) &&
Chris Lattnerb5134c02009-01-05 01:24:05 +0000901 "Cannot be a type or scope token!");
Mike Stump11289f42009-09-09 15:08:12 +0000902
Douglas Gregor333489b2009-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 Stump11289f42009-09-09 15:08:12 +0000908 // 'typename' '::' [opt] nested-name-specifier template [opt]
Douglas Gregordce2b622009-04-01 00:28:59 +0000909 // simple-template-id
Douglas Gregor333489b2009-03-27 23:10:48 +0000910 SourceLocation TypenameLoc = ConsumeToken();
911 CXXScopeSpec SS;
Mike Stump11289f42009-09-09 15:08:12 +0000912 bool HadNestedNameSpecifier
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000913 = ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false);
Douglas Gregor333489b2009-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 Stump11289f42009-09-09 15:08:12 +0000922 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, *Tok.getIdentifierInfo(),
Douglas Gregor333489b2009-03-27 23:10:48 +0000923 Tok.getLocation());
Douglas Gregordce2b622009-04-01 00:28:59 +0000924 } else if (Tok.is(tok::annot_template_id)) {
Mike Stump11289f42009-09-09 15:08:12 +0000925 TemplateIdAnnotation *TemplateId
Douglas Gregordce2b622009-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 Gregor333489b2009-03-27 23:10:48 +0000932
Douglas Gregorfe3d7d02009-04-01 21:51:26 +0000933 AnnotateTemplateIdTokenAsType(0);
Mike Stump11289f42009-09-09 15:08:12 +0000934 assert(Tok.is(tok::annot_typename) &&
Douglas Gregordce2b622009-04-01 00:28:59 +0000935 "AnnotateTemplateIdTokenAsType isn't working properly");
Douglas Gregorfe3d7d02009-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 Gregordce2b622009-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
Douglas Gregordce2b622009-04-01 00:28:59 +0000947 Tok.setKind(tok::annot_typename);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +0000948 Tok.setAnnotationValue(Ty.isInvalid()? 0 : Ty.get());
Douglas Gregordce2b622009-04-01 00:28:59 +0000949 Tok.setAnnotationEndLoc(Tok.getLocation());
950 Tok.setLocation(TypenameLoc);
951 PP.AnnotateCachedTokens(Tok);
952 return true;
Douglas Gregor333489b2009-03-27 23:10:48 +0000953 }
954
John McCalle2ade282009-12-19 00:35:18 +0000955 // Remembers whether the token was originally a scope annotation.
956 bool wasScopeAnnotation = Tok.is(tok::annot_cxxscope);
957
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000958 CXXScopeSpec SS;
Argyrios Kyrtzidisace521a2008-11-26 21:41:52 +0000959 if (getLang().CPlusPlus)
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000960 ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000961
962 if (Tok.is(tok::identifier)) {
Chris Lattnerda030082009-01-05 01:49:50 +0000963 // Determine whether the identifier is a type name.
Mike Stump11289f42009-09-09 15:08:12 +0000964 if (TypeTy *Ty = Actions.getTypeName(*Tok.getIdentifierInfo(),
Douglas Gregor8a6be5e2009-02-04 17:00:24 +0000965 Tok.getLocation(), CurScope, &SS)) {
Chris Lattnerda030082009-01-05 01:49:50 +0000966 // This is a typename. Replace the current token in-place with an
967 // annotation type token.
Chris Lattnera8a3f732009-01-06 05:06:21 +0000968 Tok.setKind(tok::annot_typename);
Chris Lattnerda030082009-01-05 01:49:50 +0000969 Tok.setAnnotationValue(Ty);
970 Tok.setAnnotationEndLoc(Tok.getLocation());
971 if (SS.isNotEmpty()) // it was a C++ qualified type name.
972 Tok.setLocation(SS.getBeginLoc());
Mike Stump11289f42009-09-09 15:08:12 +0000973
Chris Lattnerda030082009-01-05 01:49:50 +0000974 // In case the tokens were cached, have Preprocessor replace
975 // them with the annotation token.
976 PP.AnnotateCachedTokens(Tok);
977 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000978 }
Douglas Gregor7f741122009-02-25 19:37:18 +0000979
980 if (!getLang().CPlusPlus) {
Chris Lattnerda030082009-01-05 01:49:50 +0000981 // If we're in C, we can't have :: tokens at all (the lexer won't return
982 // them). If the identifier is not a type, then it can't be scope either,
Mike Stump11289f42009-09-09 15:08:12 +0000983 // just early exit.
Chris Lattnerda030082009-01-05 01:49:50 +0000984 return false;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000985 }
Mike Stump11289f42009-09-09 15:08:12 +0000986
Douglas Gregor7f741122009-02-25 19:37:18 +0000987 // If this is a template-id, annotate with a template-id or type token.
Douglas Gregor8bf42052009-02-09 18:46:07 +0000988 if (NextToken().is(tok::less)) {
Douglas Gregordc572a32009-03-30 22:58:21 +0000989 TemplateTy Template;
Douglas Gregor3cf81312009-11-03 23:16:33 +0000990 UnqualifiedId TemplateName;
991 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Mike Stump11289f42009-09-09 15:08:12 +0000992 if (TemplateNameKind TNK
Douglas Gregor3cf81312009-11-03 23:16:33 +0000993 = Actions.isTemplateName(CurScope, SS, TemplateName,
Mike Stump11289f42009-09-09 15:08:12 +0000994 /*ObjectType=*/0, EnteringContext,
Douglas Gregor71395fa2009-11-04 00:56:37 +0000995 Template)) {
996 // Consume the identifier.
997 ConsumeToken();
998 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName)) {
Chris Lattner5558e9f2009-06-26 04:27:47 +0000999 // If an unrecoverable error occurred, we need to return true here,
1000 // because the token stream is in a damaged state. We may not return
1001 // a valid identifier.
1002 return Tok.isNot(tok::identifier);
1003 }
Douglas Gregor71395fa2009-11-04 00:56:37 +00001004 }
Douglas Gregor8bf42052009-02-09 18:46:07 +00001005 }
Douglas Gregor55ad91f2008-12-18 19:37:40 +00001006
Douglas Gregor7f741122009-02-25 19:37:18 +00001007 // The current token, which is either an identifier or a
1008 // template-id, is not part of the annotation. Fall through to
1009 // push that token back into the stream and complete the C++ scope
1010 // specifier annotation.
Mike Stump11289f42009-09-09 15:08:12 +00001011 }
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001012
Douglas Gregor7f741122009-02-25 19:37:18 +00001013 if (Tok.is(tok::annot_template_id)) {
Mike Stump11289f42009-09-09 15:08:12 +00001014 TemplateIdAnnotation *TemplateId
Douglas Gregor7f741122009-02-25 19:37:18 +00001015 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorb67535d2009-03-31 00:43:58 +00001016 if (TemplateId->Kind == TNK_Type_template) {
Douglas Gregor7f741122009-02-25 19:37:18 +00001017 // A template-id that refers to a type was parsed into a
1018 // template-id annotation in a context where we weren't allowed
1019 // to produce a type annotation token. Update the template-id
1020 // annotation token to a type annotation token now.
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00001021 AnnotateTemplateIdTokenAsType(&SS);
1022 return true;
Douglas Gregor7f741122009-02-25 19:37:18 +00001023 }
1024 }
Douglas Gregor55ad91f2008-12-18 19:37:40 +00001025
Chris Lattnerdfa1a452009-01-04 22:32:19 +00001026 if (SS.isEmpty())
Eli Friedmand95e1cd2009-06-27 08:17:02 +00001027 return Tok.isNot(tok::identifier) && Tok.isNot(tok::coloncolon);
Mike Stump11289f42009-09-09 15:08:12 +00001028
Chris Lattnerdfa1a452009-01-04 22:32:19 +00001029 // A C++ scope specifier that isn't followed by a typename.
1030 // Push the current token back into the token stream (or revert it if it is
1031 // cached) and use an annotation scope token for current token.
1032 if (PP.isBacktrackEnabled())
1033 PP.RevertCachedTokens(1);
1034 else
1035 PP.EnterToken(Tok);
1036 Tok.setKind(tok::annot_cxxscope);
Douglas Gregorc23500e2009-03-26 23:56:24 +00001037 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattnerdfa1a452009-01-04 22:32:19 +00001038 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001039
John McCalle2ade282009-12-19 00:35:18 +00001040 // In case the tokens were cached, have Preprocessor replace them
1041 // with the annotation token. We don't need to do this if we've
1042 // just reverted back to the state we were in before being called.
1043 if (!wasScopeAnnotation)
1044 PP.AnnotateCachedTokens(Tok);
Chris Lattner9a8968b2009-01-04 23:23:14 +00001045 return true;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001046}
1047
1048/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
Douglas Gregor7f741122009-02-25 19:37:18 +00001049/// annotates C++ scope specifiers and template-ids. This returns
Chris Lattner5558e9f2009-06-26 04:27:47 +00001050/// true if the token was annotated or there was an error that could not be
1051/// recovered from.
Mike Stump11289f42009-09-09 15:08:12 +00001052///
Chris Lattner45ddec32009-01-05 00:13:00 +00001053/// Note that this routine emits an error if you call it with ::new or ::delete
1054/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregore861bac2009-08-25 22:51:20 +00001055bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
Argyrios Kyrtzidisace521a2008-11-26 21:41:52 +00001056 assert(getLang().CPlusPlus &&
Chris Lattnerdfa1a452009-01-04 22:32:19 +00001057 "Call sites of this function should be guarded by checking for C++");
Chris Lattnerb5134c02009-01-05 01:24:05 +00001058 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
1059 "Cannot be a type or scope token!");
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001060
Argyrios Kyrtzidisace521a2008-11-26 21:41:52 +00001061 CXXScopeSpec SS;
Douglas Gregorb7bfe792009-09-02 22:59:36 +00001062 if (!ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext))
Chris Lattner045cbff2009-12-07 00:48:47 +00001063 // If the token left behind is not an identifier, we either had an error or
1064 // successfully turned it into an annotation token.
1065 return Tok.isNot(tok::identifier);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001066
Chris Lattnerdfa1a452009-01-04 22:32:19 +00001067 // Push the current token back into the token stream (or revert it if it is
1068 // cached) and use an annotation scope token for current token.
1069 if (PP.isBacktrackEnabled())
1070 PP.RevertCachedTokens(1);
1071 else
1072 PP.EnterToken(Tok);
1073 Tok.setKind(tok::annot_cxxscope);
Douglas Gregorc23500e2009-03-26 23:56:24 +00001074 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattnerdfa1a452009-01-04 22:32:19 +00001075 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001076
Chris Lattnerdfa1a452009-01-04 22:32:19 +00001077 // In case the tokens were cached, have Preprocessor replace them with the
1078 // annotation token.
1079 PP.AnnotateCachedTokens(Tok);
Chris Lattnerbd31aa32009-01-05 00:07:25 +00001080 return true;
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00001081}
John McCall37958aa2009-11-03 19:33:12 +00001082
1083// Anchor the Parser::FieldCallback vtable to this translation unit.
1084// We use a spurious method instead of the destructor because
1085// destroying FieldCallbacks can actually be slightly
1086// performance-sensitive.
1087void Parser::FieldCallback::_anchor() {
1088}