blob: d45aaed70e54ba79b552ff9a667e8c195b75cf86 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Parser.cpp - C Language Family Parser ----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/Parse/DeclSpec.h"
17#include "clang/Parse/Scope.h"
Douglas Gregor314b97f2009-11-10 19:49:08 +000018#include "clang/Parse/Template.h"
Chris Lattner0102c302009-03-05 07:24:28 +000019#include "llvm/Support/raw_ostream.h"
Chris Lattnerd167ca02009-12-10 00:21:05 +000020#include "RAIIObjectsForParser.h"
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +000021#include "ParsePragma.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
24Parser::Parser(Preprocessor &pp, Action &actions)
Mike Stump1eb44332009-09-09 15:08:12 +000025 : CrashInfo(*this), PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
Chris Lattner08d92ec2009-12-10 00:32:41 +000026 GreaterThanIsOperator(true), ColonIsSacred(false),
27 TemplateParameterDepth(0) {
Reid Spencer5f016e22007-07-11 17:01:13 +000028 Tok.setKind(tok::eof);
29 CurScope = 0;
Chris Lattner9e344c62007-07-15 00:04:39 +000030 NumCachedScopes = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000031 ParenCount = BracketCount = BraceCount = 0;
Chris Lattnerb28317a2009-03-28 19:18:32 +000032 ObjCImpDecl = DeclPtrTy();
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +000033
34 // Add #pragma handlers. These are removed and destroyed in the
35 // destructor.
Ted Kremenek4726d032009-03-23 22:28:25 +000036 PackHandler.reset(new
37 PragmaPackHandler(&PP.getIdentifierTable().get("pack"), actions));
38 PP.AddPragmaHandler(0, PackHandler.get());
Mike Stump1eb44332009-09-09 15:08:12 +000039
Ted Kremenek4726d032009-03-23 22:28:25 +000040 UnusedHandler.reset(new
41 PragmaUnusedHandler(&PP.getIdentifierTable().get("unused"), actions,
42 *this));
43 PP.AddPragmaHandler(0, UnusedHandler.get());
Eli Friedman99914792009-06-05 00:49:58 +000044
45 WeakHandler.reset(new
46 PragmaWeakHandler(&PP.getIdentifierTable().get("weak"), actions));
47 PP.AddPragmaHandler(0, WeakHandler.get());
Reid Spencer5f016e22007-07-11 17:01:13 +000048}
49
Chris Lattner0102c302009-03-05 07:24:28 +000050/// If a crash happens while the parser is active, print out a line indicating
51/// what the current token is.
52void PrettyStackTraceParserEntry::print(llvm::raw_ostream &OS) const {
53 const Token &Tok = P.getCurToken();
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000054 if (Tok.is(tok::eof)) {
Chris Lattner0102c302009-03-05 07:24:28 +000055 OS << "<eof> parser at end of file\n";
56 return;
57 }
Mike Stump1eb44332009-09-09 15:08:12 +000058
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000059 if (Tok.getLocation().isInvalid()) {
60 OS << "<unknown> parser at unknown location\n";
61 return;
62 }
Mike Stump1eb44332009-09-09 15:08:12 +000063
Chris Lattner0102c302009-03-05 07:24:28 +000064 const Preprocessor &PP = P.getPreprocessor();
65 Tok.getLocation().print(OS, PP.getSourceManager());
Daniel Dunbar9fa31dd2009-10-17 06:13:04 +000066 if (Tok.isAnnotation())
67 OS << ": at annotation token \n";
68 else
69 OS << ": current parser token '" << PP.getSpelling(Tok) << "'\n";
Douglas Gregorf780abc2008-12-30 03:27:21 +000070}
Reid Spencer5f016e22007-07-11 17:01:13 +000071
Chris Lattner0102c302009-03-05 07:24:28 +000072
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000073DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
Chris Lattner0102c302009-03-05 07:24:28 +000074 return Diags.Report(FullSourceLoc(Loc, PP.getSourceManager()), DiagID);
Chris Lattner1ab3b962008-11-18 07:48:38 +000075}
76
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000077DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
Chris Lattner1ab3b962008-11-18 07:48:38 +000078 return Diag(Tok.getLocation(), DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +000079}
80
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000081/// \brief Emits a diagnostic suggesting parentheses surrounding a
82/// given range.
83///
84/// \param Loc The location where we'll emit the diagnostic.
85/// \param Loc The kind of diagnostic to emit.
86/// \param ParenRange Source range enclosing code that should be parenthesized.
87void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
88 SourceRange ParenRange) {
Douglas Gregorb2fb6de2009-02-27 17:53:17 +000089 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
90 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000091 // We can't display the parentheses, so just dig the
92 // warning/error and return.
93 Diag(Loc, DK);
94 return;
95 }
Mike Stump1eb44332009-09-09 15:08:12 +000096
97 Diag(Loc, DK)
Douglas Gregorb2fb6de2009-02-27 17:53:17 +000098 << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(")
99 << CodeModificationHint::CreateInsertion(EndLoc, ")");
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000100}
101
Reid Spencer5f016e22007-07-11 17:01:13 +0000102/// MatchRHSPunctuation - For punctuation with a LHS and RHS (e.g. '['/']'),
103/// this helper function matches and consumes the specified RHS token if
104/// present. If not present, it emits the specified diagnostic indicating
105/// that the parser failed to match the RHS of the token at LHSLoc. LHSName
106/// should be the name of the unmatched LHS token.
107SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok,
108 SourceLocation LHSLoc) {
Mike Stumpa6f01772008-06-19 19:28:49 +0000109
Chris Lattner00073222007-10-09 17:23:58 +0000110 if (Tok.is(RHSTok))
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 return ConsumeAnyToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000112
Reid Spencer5f016e22007-07-11 17:01:13 +0000113 SourceLocation R = Tok.getLocation();
114 const char *LHSName = "unknown";
115 diag::kind DID = diag::err_parse_error;
116 switch (RHSTok) {
117 default: break;
118 case tok::r_paren : LHSName = "("; DID = diag::err_expected_rparen; break;
119 case tok::r_brace : LHSName = "{"; DID = diag::err_expected_rbrace; break;
120 case tok::r_square: LHSName = "["; DID = diag::err_expected_rsquare; break;
121 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break;
122 }
123 Diag(Tok, DID);
Chris Lattner28eb7e92008-11-23 23:17:07 +0000124 Diag(LHSLoc, diag::note_matching) << LHSName;
Reid Spencer5f016e22007-07-11 17:01:13 +0000125 SkipUntil(RHSTok);
126 return R;
127}
128
129/// ExpectAndConsume - The parser expects that 'ExpectedTok' is next in the
130/// input. If so, it is consumed and false is returned.
131///
132/// If the input is malformed, this emits the specified diagnostic. Next, if
133/// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
134/// returned.
135bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
136 const char *Msg, tok::TokenKind SkipToTok) {
Chris Lattner00073222007-10-09 17:23:58 +0000137 if (Tok.is(ExpectedTok)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 ConsumeAnyToken();
139 return false;
140 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000141
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000142 const char *Spelling = 0;
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000143 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
Mike Stump1eb44332009-09-09 15:08:12 +0000144 if (EndLoc.isValid() &&
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000145 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000146 // Show what code to insert to fix this problem.
Mike Stump1eb44332009-09-09 15:08:12 +0000147 Diag(EndLoc, DiagID)
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000148 << Msg
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000149 << CodeModificationHint::CreateInsertion(EndLoc, Spelling);
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000150 } else
151 Diag(Tok, DiagID) << Msg;
152
Reid Spencer5f016e22007-07-11 17:01:13 +0000153 if (SkipToTok != tok::unknown)
154 SkipUntil(SkipToTok);
155 return true;
156}
157
158//===----------------------------------------------------------------------===//
159// Error recovery.
160//===----------------------------------------------------------------------===//
161
162/// SkipUntil - Read tokens until we get to the specified token, then consume
Chris Lattner012cf462007-07-24 17:03:04 +0000163/// it (unless DontConsume is true). Because we cannot guarantee that the
Reid Spencer5f016e22007-07-11 17:01:13 +0000164/// token will ever occur, this skips to the next token, or to some likely
165/// good stopping point. If StopAtSemi is true, skipping will stop at a ';'
166/// character.
Mike Stumpa6f01772008-06-19 19:28:49 +0000167///
Reid Spencer5f016e22007-07-11 17:01:13 +0000168/// If SkipUntil finds the specified token, it returns true, otherwise it
Mike Stumpa6f01772008-06-19 19:28:49 +0000169/// returns false.
Reid Spencer5f016e22007-07-11 17:01:13 +0000170bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,
171 bool StopAtSemi, bool DontConsume) {
172 // We always want this function to skip at least one token if the first token
173 // isn't T and if not at EOF.
174 bool isFirstTokenSkipped = true;
175 while (1) {
176 // If we found one of the tokens, stop and return true.
177 for (unsigned i = 0; i != NumToks; ++i) {
Chris Lattner00073222007-10-09 17:23:58 +0000178 if (Tok.is(Toks[i])) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 if (DontConsume) {
180 // Noop, don't consume the token.
181 } else {
182 ConsumeAnyToken();
183 }
184 return true;
185 }
186 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000187
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 switch (Tok.getKind()) {
189 case tok::eof:
190 // Ran out of tokens.
191 return false;
Mike Stumpa6f01772008-06-19 19:28:49 +0000192
Reid Spencer5f016e22007-07-11 17:01:13 +0000193 case tok::l_paren:
194 // Recursively skip properly-nested parens.
195 ConsumeParen();
196 SkipUntil(tok::r_paren, false);
197 break;
198 case tok::l_square:
199 // Recursively skip properly-nested square brackets.
200 ConsumeBracket();
201 SkipUntil(tok::r_square, false);
202 break;
203 case tok::l_brace:
204 // Recursively skip properly-nested braces.
205 ConsumeBrace();
206 SkipUntil(tok::r_brace, false);
207 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000208
Reid Spencer5f016e22007-07-11 17:01:13 +0000209 // Okay, we found a ']' or '}' or ')', which we think should be balanced.
210 // Since the user wasn't looking for this token (if they were, it would
211 // already be handled), this isn't balanced. If there is a LHS token at a
212 // higher level, we will assume that this matches the unbalanced token
213 // and return it. Otherwise, this is a spurious RHS token, which we skip.
214 case tok::r_paren:
215 if (ParenCount && !isFirstTokenSkipped)
216 return false; // Matches something.
217 ConsumeParen();
218 break;
219 case tok::r_square:
220 if (BracketCount && !isFirstTokenSkipped)
221 return false; // Matches something.
222 ConsumeBracket();
223 break;
224 case tok::r_brace:
225 if (BraceCount && !isFirstTokenSkipped)
226 return false; // Matches something.
227 ConsumeBrace();
228 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000229
Reid Spencer5f016e22007-07-11 17:01:13 +0000230 case tok::string_literal:
231 case tok::wide_string_literal:
232 ConsumeStringToken();
233 break;
234 case tok::semi:
235 if (StopAtSemi)
236 return false;
237 // FALL THROUGH.
238 default:
239 // Skip this token.
240 ConsumeToken();
241 break;
242 }
243 isFirstTokenSkipped = false;
Mike Stumpa6f01772008-06-19 19:28:49 +0000244 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000245}
246
247//===----------------------------------------------------------------------===//
248// Scope manipulation
249//===----------------------------------------------------------------------===//
250
Reid Spencer5f016e22007-07-11 17:01:13 +0000251/// EnterScope - Start a new scope.
252void Parser::EnterScope(unsigned ScopeFlags) {
Chris Lattner9e344c62007-07-15 00:04:39 +0000253 if (NumCachedScopes) {
254 Scope *N = ScopeCache[--NumCachedScopes];
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 N->Init(CurScope, ScopeFlags);
256 CurScope = N;
257 } else {
258 CurScope = new Scope(CurScope, ScopeFlags);
259 }
Douglas Gregord6d4fcf2010-03-01 23:31:19 +0000260 CurScope->setNumErrorsAtStart(Diags.getNumErrors());
Reid Spencer5f016e22007-07-11 17:01:13 +0000261}
262
263/// ExitScope - Pop a scope off the scope stack.
264void Parser::ExitScope() {
265 assert(CurScope && "Scope imbalance!");
266
Chris Lattner90ae68a2007-10-09 20:37:18 +0000267 // Inform the actions module that this scope is going away if there are any
268 // decls in it.
269 if (!CurScope->decl_empty())
Steve Naroffb216c882007-10-09 22:01:59 +0000270 Actions.ActOnPopScope(Tok.getLocation(), CurScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000271
Chris Lattner9e344c62007-07-15 00:04:39 +0000272 Scope *OldScope = CurScope;
273 CurScope = OldScope->getParent();
Mike Stumpa6f01772008-06-19 19:28:49 +0000274
Chris Lattner9e344c62007-07-15 00:04:39 +0000275 if (NumCachedScopes == ScopeCacheSize)
276 delete OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 else
Chris Lattner9e344c62007-07-15 00:04:39 +0000278 ScopeCache[NumCachedScopes++] = OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000279}
280
281
282
283
284//===----------------------------------------------------------------------===//
285// C99 6.9: External Definitions.
286//===----------------------------------------------------------------------===//
287
288Parser::~Parser() {
289 // If we still have scopes active, delete the scope tree.
290 delete CurScope;
Mike Stumpa6f01772008-06-19 19:28:49 +0000291
Reid Spencer5f016e22007-07-11 17:01:13 +0000292 // Free the scope cache.
Chris Lattner9e344c62007-07-15 00:04:39 +0000293 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
294 delete ScopeCache[i];
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +0000295
296 // Remove the pragma handlers we installed.
Ted Kremenek4726d032009-03-23 22:28:25 +0000297 PP.RemovePragmaHandler(0, PackHandler.get());
298 PackHandler.reset();
299 PP.RemovePragmaHandler(0, UnusedHandler.get());
300 UnusedHandler.reset();
Eli Friedman99914792009-06-05 00:49:58 +0000301 PP.RemovePragmaHandler(0, WeakHandler.get());
302 WeakHandler.reset();
Reid Spencer5f016e22007-07-11 17:01:13 +0000303}
304
305/// Initialize - Warm up the parser.
306///
307void Parser::Initialize() {
308 // Prime the lexer look-ahead.
309 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000310
Chris Lattner31e05722007-08-26 06:24:45 +0000311 // Create the translation unit scope. Install it as the current scope.
Reid Spencer5f016e22007-07-11 17:01:13 +0000312 assert(CurScope == 0 && "A scope is already active?");
Chris Lattner31e05722007-08-26 06:24:45 +0000313 EnterScope(Scope::DeclScope);
Steve Naroffb216c882007-10-09 22:01:59 +0000314 Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000315
Chris Lattner00073222007-10-09 17:23:58 +0000316 if (Tok.is(tok::eof) &&
Chris Lattnerf7261752007-08-25 05:47:03 +0000317 !getLang().CPlusPlus) // Empty source file is an extension in C
Reid Spencer5f016e22007-07-11 17:01:13 +0000318 Diag(Tok, diag::ext_empty_source_file);
Mike Stumpa6f01772008-06-19 19:28:49 +0000319
Chris Lattner34870da2007-08-29 22:54:08 +0000320 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000321 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner34870da2007-08-29 22:54:08 +0000322 if (getLang().ObjC1) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000323 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
324 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
325 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
326 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
327 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
328 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
Chris Lattner34870da2007-08-29 22:54:08 +0000329 }
Daniel Dunbar662e8b52008-08-14 22:04:54 +0000330
331 Ident_super = &PP.getIdentifierTable().get("super");
John Thompson82287d12010-02-05 00:12:22 +0000332
333 if (getLang().AltiVec) {
334 Ident_vector = &PP.getIdentifierTable().get("vector");
335 Ident_pixel = &PP.getIdentifierTable().get("pixel");
336 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000337}
338
339/// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
340/// action tells us to. This returns true if the EOF was encountered.
Chris Lattner682bf922009-03-29 16:50:03 +0000341bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
342 Result = DeclGroupPtrTy();
Chris Lattner9299f3f2008-08-23 03:19:52 +0000343 if (Tok.is(tok::eof)) {
344 Actions.ActOnEndOfTranslationUnit();
345 return true;
346 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000347
Sean Huntbbd37c62009-11-21 08:43:09 +0000348 CXX0XAttributeList Attr;
349 if (getLang().CPlusPlus0x && isCXX0XAttributeSpecifier())
350 Attr = ParseCXX0XAttributes();
351 Result = ParseExternalDeclaration(Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +0000352 return false;
353}
354
Reid Spencer5f016e22007-07-11 17:01:13 +0000355/// ParseTranslationUnit:
356/// translation-unit: [C99 6.9]
Mike Stumpa6f01772008-06-19 19:28:49 +0000357/// external-declaration
358/// translation-unit external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000359void Parser::ParseTranslationUnit() {
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000360 Initialize();
Mike Stumpa6f01772008-06-19 19:28:49 +0000361
Chris Lattner682bf922009-03-29 16:50:03 +0000362 DeclGroupPtrTy Res;
Steve Naroff89307ff2007-11-29 23:05:20 +0000363 while (!ParseTopLevelDecl(Res))
Reid Spencer5f016e22007-07-11 17:01:13 +0000364 /*parse them all*/;
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Chris Lattner06f54852008-08-23 02:00:52 +0000366 ExitScope();
367 assert(CurScope == 0 && "Scope imbalance!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000368}
369
370/// ParseExternalDeclaration:
Chris Lattner90b93d62008-12-08 21:59:01 +0000371///
Douglas Gregorc19923d2008-11-21 16:10:08 +0000372/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattnerc3018152007-08-10 20:57:02 +0000373/// function-definition
374/// declaration
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000375/// [C++0x] empty-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000376/// [GNU] asm-definition
Chris Lattnerc3018152007-08-10 20:57:02 +0000377/// [GNU] __extension__ external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000378/// [OBJC] objc-class-definition
379/// [OBJC] objc-class-declaration
380/// [OBJC] objc-alias-declaration
381/// [OBJC] objc-protocol-definition
382/// [OBJC] objc-method-definition
383/// [OBJC] @end
Douglas Gregorc19923d2008-11-21 16:10:08 +0000384/// [C++] linkage-specification
Reid Spencer5f016e22007-07-11 17:01:13 +0000385/// [GNU] asm-definition:
386/// simple-asm-expr ';'
387///
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000388/// [C++0x] empty-declaration:
389/// ';'
390///
Douglas Gregor45f96552009-09-04 06:33:52 +0000391/// [C++0x/GNU] 'extern' 'template' declaration
Sean Huntbbd37c62009-11-21 08:43:09 +0000392Parser::DeclGroupPtrTy Parser::ParseExternalDeclaration(CXX0XAttributeList Attr) {
Chris Lattner682bf922009-03-29 16:50:03 +0000393 DeclPtrTy SingleDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +0000394 switch (Tok.getKind()) {
395 case tok::semi:
Douglas Gregora1d71ae2009-08-24 12:17:54 +0000396 if (!getLang().CPlusPlus0x)
397 Diag(Tok, diag::ext_top_level_semi)
Chris Lattner29d9c1a2009-12-06 17:36:05 +0000398 << CodeModificationHint::CreateRemoval(Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000399
Reid Spencer5f016e22007-07-11 17:01:13 +0000400 ConsumeToken();
401 // TODO: Invoke action for top-level semicolon.
Chris Lattner682bf922009-03-29 16:50:03 +0000402 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000403 case tok::r_brace:
404 Diag(Tok, diag::err_expected_external_declaration);
405 ConsumeBrace();
Chris Lattner682bf922009-03-29 16:50:03 +0000406 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000407 case tok::eof:
408 Diag(Tok, diag::err_expected_external_declaration);
Chris Lattner682bf922009-03-29 16:50:03 +0000409 return DeclGroupPtrTy();
Chris Lattnerc3018152007-08-10 20:57:02 +0000410 case tok::kw___extension__: {
Chris Lattnerc46d1a12008-10-20 06:45:43 +0000411 // __extension__ silences extension warnings in the subexpression.
412 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner39146d62008-10-20 06:51:33 +0000413 ConsumeToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000414 return ParseExternalDeclaration(Attr);
Chris Lattnerc3018152007-08-10 20:57:02 +0000415 }
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000416 case tok::kw_asm: {
Sean Huntbbd37c62009-11-21 08:43:09 +0000417 if (Attr.HasAttr)
418 Diag(Attr.Range.getBegin(), diag::err_attributes_not_allowed)
419 << Attr.Range;
420
Sebastian Redleffa8d12008-12-10 00:02:53 +0000421 OwningExprResult Result(ParseSimpleAsm());
Mike Stumpa6f01772008-06-19 19:28:49 +0000422
Anders Carlsson3f9424f2008-02-08 00:23:11 +0000423 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
424 "top-level asm block");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000425
Chris Lattner682bf922009-03-29 16:50:03 +0000426 if (Result.isInvalid())
427 return DeclGroupPtrTy();
428 SingleDecl = Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), move(Result));
429 break;
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000430 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000431 case tok::at:
Chris Lattner682bf922009-03-29 16:50:03 +0000432 // @ is not a legal token unless objc is enabled, no need to check for ObjC.
433 /// FIXME: ParseObjCAtDirectives should return a DeclGroup for things like
434 /// @class foo, bar;
435 SingleDecl = ParseObjCAtDirectives();
436 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000437 case tok::minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000438 case tok::plus:
Chris Lattner682bf922009-03-29 16:50:03 +0000439 if (!getLang().ObjC1) {
440 Diag(Tok, diag::err_expected_external_declaration);
441 ConsumeToken();
442 return DeclGroupPtrTy();
443 }
444 SingleDecl = ParseObjCMethodDefinition();
445 break;
Douglas Gregor791215b2009-09-21 20:51:25 +0000446 case tok::code_completion:
Douglas Gregorb6ac2452010-01-13 21:24:21 +0000447 Actions.CodeCompleteOrdinaryName(CurScope,
448 ObjCImpDecl? Action::CCC_ObjCImplementation
449 : Action::CCC_Namespace);
Douglas Gregor791215b2009-09-21 20:51:25 +0000450 ConsumeToken();
Sean Huntbbd37c62009-11-21 08:43:09 +0000451 return ParseExternalDeclaration(Attr);
Douglas Gregorf780abc2008-12-30 03:27:21 +0000452 case tok::kw_using:
Chris Lattner8f08cb72007-08-25 06:57:03 +0000453 case tok::kw_namespace:
Reid Spencer5f016e22007-07-11 17:01:13 +0000454 case tok::kw_typedef:
Douglas Gregoradcac882008-12-01 23:54:00 +0000455 case tok::kw_template:
456 case tok::kw_export: // As in 'export template'
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000457 case tok::kw_static_assert:
Chris Lattnerbae35112007-08-25 18:15:16 +0000458 // A function definition cannot start with a these keywords.
Chris Lattner97144fc2009-04-02 04:16:50 +0000459 {
460 SourceLocation DeclEnd;
Sean Huntbbd37c62009-11-21 08:43:09 +0000461 return ParseDeclaration(Declarator::FileContext, DeclEnd, Attr);
Chris Lattner97144fc2009-04-02 04:16:50 +0000462 }
Douglas Gregor45f96552009-09-04 06:33:52 +0000463 case tok::kw_extern:
464 if (getLang().CPlusPlus && NextToken().is(tok::kw_template)) {
465 // Extern templates
466 SourceLocation ExternLoc = ConsumeToken();
467 SourceLocation TemplateLoc = ConsumeToken();
468 SourceLocation DeclEnd;
469 return Actions.ConvertDeclToDeclGroup(
470 ParseExplicitInstantiation(ExternLoc, TemplateLoc, DeclEnd));
471 }
Mike Stump1eb44332009-09-09 15:08:12 +0000472
Douglas Gregor45f96552009-09-04 06:33:52 +0000473 // FIXME: Detect C++ linkage specifications here?
Mike Stump1eb44332009-09-09 15:08:12 +0000474
Douglas Gregor45f96552009-09-04 06:33:52 +0000475 // Fall through to handle other declarations or function definitions.
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Reid Spencer5f016e22007-07-11 17:01:13 +0000477 default:
478 // We can't tell whether this is a function-definition or declaration yet.
Sean Huntbbd37c62009-11-21 08:43:09 +0000479 return ParseDeclarationOrFunctionDefinition(Attr.AttrList);
Reid Spencer5f016e22007-07-11 17:01:13 +0000480 }
Mike Stump1eb44332009-09-09 15:08:12 +0000481
Chris Lattner682bf922009-03-29 16:50:03 +0000482 // This routine returns a DeclGroup, if the thing we parsed only contains a
483 // single decl, convert it now.
484 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000485}
486
Douglas Gregor1426e532009-05-12 21:31:51 +0000487/// \brief Determine whether the current token, if it occurs after a
488/// declarator, continues a declaration or declaration list.
489bool Parser::isDeclarationAfterDeclarator() {
490 return Tok.is(tok::equal) || // int X()= -> not a function def
491 Tok.is(tok::comma) || // int X(), -> not a function def
492 Tok.is(tok::semi) || // int X(); -> not a function def
493 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def
494 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def
495 (getLang().CPlusPlus &&
496 Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++]
497}
498
499/// \brief Determine whether the current token, if it occurs after a
500/// declarator, indicates the start of a function definition.
501bool Parser::isStartOfFunctionDefinition() {
Chris Lattner5d1c6192009-12-06 18:34:27 +0000502 if (Tok.is(tok::l_brace)) // int X() {}
503 return true;
504
505 if (!getLang().CPlusPlus)
506 return isDeclarationSpecifier(); // int X(f) int f; {}
507 return Tok.is(tok::colon) || // X() : Base() {} (used for ctors)
508 Tok.is(tok::kw_try); // X() try { ... }
Douglas Gregor1426e532009-05-12 21:31:51 +0000509}
510
Reid Spencer5f016e22007-07-11 17:01:13 +0000511/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
512/// a declaration. We can't tell which we have until we read up to the
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000513/// compound-statement in function-definition. TemplateParams, if
514/// non-NULL, provides the template parameters when we're parsing a
Mike Stump1eb44332009-09-09 15:08:12 +0000515/// C++ template-declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +0000516///
517/// function-definition: [C99 6.9.1]
Chris Lattnera798ebc2008-04-05 05:52:15 +0000518/// decl-specs declarator declaration-list[opt] compound-statement
519/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000520/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattnera798ebc2008-04-05 05:52:15 +0000521///
Reid Spencer5f016e22007-07-11 17:01:13 +0000522/// declaration: [C99 6.7]
Chris Lattner697e15f2007-08-22 06:06:56 +0000523/// declaration-specifiers init-declarator-list[opt] ';'
524/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Reid Spencer5f016e22007-07-11 17:01:13 +0000525/// [OMP] threadprivate-directive [TODO]
526///
Chris Lattner682bf922009-03-29 16:50:03 +0000527Parser::DeclGroupPtrTy
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000528Parser::ParseDeclarationOrFunctionDefinition(ParsingDeclSpec &DS,
529 AttributeList *Attr,
Sean Huntbbd37c62009-11-21 08:43:09 +0000530 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000531 // Parse the common declaration-specifiers piece.
Sean Huntbbd37c62009-11-21 08:43:09 +0000532 if (Attr)
533 DS.AddAttributes(Attr);
534
Douglas Gregor0efc2c12010-01-13 17:31:36 +0000535 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
Mike Stumpa6f01772008-06-19 19:28:49 +0000536
Reid Spencer5f016e22007-07-11 17:01:13 +0000537 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
538 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner00073222007-10-09 17:23:58 +0000539 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000540 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000541 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
John McCall54abf7d2009-11-04 02:18:39 +0000542 DS.complete(TheDecl);
Chris Lattner682bf922009-03-29 16:50:03 +0000543 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000544 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000545
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000546 // ObjC2 allows prefix attributes on class interfaces and protocols.
547 // FIXME: This still needs better diagnostics. We should only accept
548 // attributes here, no types, etc.
Chris Lattner00073222007-10-09 17:23:58 +0000549 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000550 SourceLocation AtLoc = ConsumeToken(); // the "@"
Mike Stump1eb44332009-09-09 15:08:12 +0000551 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000552 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
553 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattnercb53b362007-12-27 19:57:00 +0000554 SkipUntil(tok::semi); // FIXME: better skip?
Chris Lattner682bf922009-03-29 16:50:03 +0000555 return DeclGroupPtrTy();
Chris Lattnercb53b362007-12-27 19:57:00 +0000556 }
John McCalld8ac0572009-11-03 19:26:08 +0000557
John McCall54abf7d2009-11-04 02:18:39 +0000558 DS.abort();
559
Fariborz Jahanian0de2ae22008-01-02 19:17:38 +0000560 const char *PrevSpec = 0;
John McCallfec54012009-08-03 20:12:06 +0000561 unsigned DiagID;
562 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec, DiagID))
563 Diag(AtLoc, DiagID) << PrevSpec;
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Chris Lattner682bf922009-03-29 16:50:03 +0000565 DeclPtrTy TheDecl;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000566 if (Tok.isObjCAtKeyword(tok::objc_protocol))
Chris Lattner682bf922009-03-29 16:50:03 +0000567 TheDecl = ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
568 else
569 TheDecl = ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
570 return Actions.ConvertDeclToDeclGroup(TheDecl);
Steve Naroffdac269b2007-08-20 21:31:48 +0000571 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000572
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000573 // If the declspec consisted only of 'extern' and we have a string
574 // literal following it, this must be a C++ linkage specifier like
575 // 'extern "C"'.
Chris Lattner3c6f6a72008-01-12 07:08:43 +0000576 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000577 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
Chris Lattner682bf922009-03-29 16:50:03 +0000578 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000579 DeclPtrTy TheDecl = ParseLinkage(DS, Declarator::FileContext);
Chris Lattner682bf922009-03-29 16:50:03 +0000580 return Actions.ConvertDeclToDeclGroup(TheDecl);
581 }
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000582
John McCalld8ac0572009-11-03 19:26:08 +0000583 return ParseDeclGroup(DS, Declarator::FileContext, true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000584}
585
Fariborz Jahanian3acd9aa2009-12-09 21:39:38 +0000586Parser::DeclGroupPtrTy
587Parser::ParseDeclarationOrFunctionDefinition(AttributeList *Attr,
588 AccessSpecifier AS) {
589 ParsingDeclSpec DS(*this);
590 return ParseDeclarationOrFunctionDefinition(DS, Attr, AS);
591}
592
Reid Spencer5f016e22007-07-11 17:01:13 +0000593/// ParseFunctionDefinition - We parsed and verified that the specified
594/// Declarator is well formed. If this is a K&R-style function, read the
595/// parameters declaration-list, then start the compound-statement.
596///
Chris Lattnera798ebc2008-04-05 05:52:15 +0000597/// function-definition: [C99 6.9.1]
598/// decl-specs declarator declaration-list[opt] compound-statement
599/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000600/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregor7ad83902008-11-05 04:29:56 +0000601/// [C++] function-definition: [C++ 8.4]
Chris Lattner23c4b182009-03-29 17:18:04 +0000602/// decl-specifier-seq[opt] declarator ctor-initializer[opt]
603/// function-body
Douglas Gregor7ad83902008-11-05 04:29:56 +0000604/// [C++] function-definition: [C++ 8.4]
Sebastian Redld3a413d2009-04-26 20:35:05 +0000605/// decl-specifier-seq[opt] declarator function-try-block
Reid Spencer5f016e22007-07-11 17:01:13 +0000606///
John McCall54abf7d2009-11-04 02:18:39 +0000607Parser::DeclPtrTy Parser::ParseFunctionDefinition(ParsingDeclarator &D,
Douglas Gregor52591bf2009-06-24 00:54:41 +0000608 const ParsedTemplateInfo &TemplateInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000609 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
610 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
611 "This isn't a function declarator!");
612 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stumpa6f01772008-06-19 19:28:49 +0000613
Chris Lattnera798ebc2008-04-05 05:52:15 +0000614 // If this is C90 and the declspecs were completely missing, fudge in an
615 // implicit int. We do this here because this is the only place where
616 // declaration-specifiers are completely optional in the grammar.
Chris Lattner2a327d12009-02-27 18:35:46 +0000617 if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) {
Chris Lattnera798ebc2008-04-05 05:52:15 +0000618 const char *PrevSpec;
John McCallfec54012009-08-03 20:12:06 +0000619 unsigned DiagID;
Chris Lattner31c28682008-10-20 02:01:34 +0000620 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
621 D.getIdentifierLoc(),
John McCallfec54012009-08-03 20:12:06 +0000622 PrevSpec, DiagID);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000623 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
Chris Lattnera798ebc2008-04-05 05:52:15 +0000624 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000625
Reid Spencer5f016e22007-07-11 17:01:13 +0000626 // If this declaration was formed with a K&R-style identifier list for the
627 // arguments, parse declarations for all of the args next.
628 // int foo(a,b) int a; float b; {}
629 if (!FTI.hasPrototype && FTI.NumArgs != 0)
630 ParseKNRParamDeclarations(D);
631
Douglas Gregor7ad83902008-11-05 04:29:56 +0000632 // We should have either an opening brace or, in a C++ constructor,
633 // we may have a colon.
Sebastian Redld3a413d2009-04-26 20:35:05 +0000634 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon) &&
635 Tok.isNot(tok::kw_try)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000636 Diag(Tok, diag::err_expected_fn_body);
637
638 // Skip over garbage, until we get to '{'. Don't eat the '{'.
639 SkipUntil(tok::l_brace, true, true);
Mike Stumpa6f01772008-06-19 19:28:49 +0000640
Reid Spencer5f016e22007-07-11 17:01:13 +0000641 // If we didn't find the '{', bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000642 if (Tok.isNot(tok::l_brace))
Chris Lattnerb28317a2009-03-28 19:18:32 +0000643 return DeclPtrTy();
Reid Spencer5f016e22007-07-11 17:01:13 +0000644 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000645
Chris Lattnerb652cea2007-10-09 17:14:05 +0000646 // Enter a scope for the function body.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000647 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000648
Chris Lattnerb652cea2007-10-09 17:14:05 +0000649 // Tell the actions module that we have entered a function definition with the
650 // specified Declarator for the function.
Mike Stump1eb44332009-09-09 15:08:12 +0000651 DeclPtrTy Res = TemplateInfo.TemplateParams?
Douglas Gregor52591bf2009-06-24 00:54:41 +0000652 Actions.ActOnStartOfFunctionTemplateDef(CurScope,
653 Action::MultiTemplateParamsArg(Actions,
654 TemplateInfo.TemplateParams->data(),
655 TemplateInfo.TemplateParams->size()),
656 D)
657 : Actions.ActOnStartOfFunctionDef(CurScope, D);
Mike Stumpa6f01772008-06-19 19:28:49 +0000658
John McCall54abf7d2009-11-04 02:18:39 +0000659 // Break out of the ParsingDeclarator context before we parse the body.
660 D.complete(Res);
661
662 // Break out of the ParsingDeclSpec context, too. This const_cast is
663 // safe because we're always the sole owner.
664 D.getMutableDeclSpec().abort();
665
Sebastian Redld3a413d2009-04-26 20:35:05 +0000666 if (Tok.is(tok::kw_try))
667 return ParseFunctionTryBlock(Res);
668
Douglas Gregor7ad83902008-11-05 04:29:56 +0000669 // If we have a colon, then we're probably parsing a C++
670 // ctor-initializer.
671 if (Tok.is(tok::colon))
672 ParseConstructorInitializer(Res);
Fariborz Jahanian0849d382009-07-14 20:06:22 +0000673 else
Fariborz Jahanian393612e2009-07-21 22:36:06 +0000674 Actions.ActOnDefaultCtorInitializers(Res);
Douglas Gregor7ad83902008-11-05 04:29:56 +0000675
Chris Lattner40e9bc82009-03-05 00:49:17 +0000676 return ParseFunctionStatementBody(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000677}
678
679/// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
680/// types for a function with a K&R-style identifier list for arguments.
681void Parser::ParseKNRParamDeclarations(Declarator &D) {
682 // We know that the top-level of this declarator is a function.
683 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
684
Chris Lattner04421082008-04-08 04:40:51 +0000685 // Enter function-declaration scope, limiting any declarators to the
686 // function prototype scope, including parameter declarators.
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000687 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattner04421082008-04-08 04:40:51 +0000688
Reid Spencer5f016e22007-07-11 17:01:13 +0000689 // Read all the argument declarations.
690 while (isDeclarationSpecifier()) {
691 SourceLocation DSStart = Tok.getLocation();
Mike Stumpa6f01772008-06-19 19:28:49 +0000692
Reid Spencer5f016e22007-07-11 17:01:13 +0000693 // Parse the common declaration-specifiers piece.
694 DeclSpec DS;
695 ParseDeclarationSpecifiers(DS);
Mike Stumpa6f01772008-06-19 19:28:49 +0000696
Reid Spencer5f016e22007-07-11 17:01:13 +0000697 // C99 6.9.1p6: 'each declaration in the declaration list shall have at
698 // least one declarator'.
699 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with
700 // the declarations though. It's trivial to ignore them, really hard to do
701 // anything else with them.
Chris Lattner00073222007-10-09 17:23:58 +0000702 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000703 Diag(DSStart, diag::err_declaration_does_not_declare_param);
704 ConsumeToken();
705 continue;
706 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000707
Reid Spencer5f016e22007-07-11 17:01:13 +0000708 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
709 // than register.
710 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
711 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
712 Diag(DS.getStorageClassSpecLoc(),
713 diag::err_invalid_storage_class_in_func_decl);
714 DS.ClearStorageClassSpecs();
715 }
716 if (DS.isThreadSpecified()) {
717 Diag(DS.getThreadSpecLoc(),
718 diag::err_invalid_storage_class_in_func_decl);
719 DS.ClearStorageClassSpecs();
720 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000721
Reid Spencer5f016e22007-07-11 17:01:13 +0000722 // Parse the first declarator attached to this declspec.
723 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
724 ParseDeclarator(ParmDeclarator);
725
726 // Handle the full declarator list.
727 while (1) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 // If attributes are present, parse them.
Richard Pennington33efe2f2010-02-23 12:22:13 +0000729 if (Tok.is(tok::kw___attribute)) {
730 SourceLocation Loc;
731 AttributeList *AttrList = ParseGNUAttributes(&Loc);
732 ParmDeclarator.AddAttributes(AttrList, Loc);
733 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000734
Reid Spencer5f016e22007-07-11 17:01:13 +0000735 // Ask the actions module to compute the type for this declarator.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000736 Action::DeclPtrTy Param =
Chris Lattner04421082008-04-08 04:40:51 +0000737 Actions.ActOnParamDeclarator(CurScope, ParmDeclarator);
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000738
Mike Stumpa6f01772008-06-19 19:28:49 +0000739 if (Param &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000740 // A missing identifier has already been diagnosed.
741 ParmDeclarator.getIdentifier()) {
742
743 // Scan the argument list looking for the correct param to apply this
744 // type.
745 for (unsigned i = 0; ; ++i) {
746 // C99 6.9.1p6: those declarators shall declare only identifiers from
747 // the identifier list.
748 if (i == FTI.NumArgs) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000749 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattner6898e332008-11-19 07:51:13 +0000750 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 break;
752 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000753
Reid Spencer5f016e22007-07-11 17:01:13 +0000754 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
755 // Reject redefinitions of parameters.
Chris Lattner04421082008-04-08 04:40:51 +0000756 if (FTI.ArgInfo[i].Param) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000757 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +0000758 diag::err_param_redefinition)
Chris Lattner6898e332008-11-19 07:51:13 +0000759 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000760 } else {
Chris Lattner04421082008-04-08 04:40:51 +0000761 FTI.ArgInfo[i].Param = Param;
Reid Spencer5f016e22007-07-11 17:01:13 +0000762 }
763 break;
764 }
765 }
766 }
767
768 // If we don't have a comma, it is either the end of the list (a ';') or
769 // an error, bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000770 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000771 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000772
Reid Spencer5f016e22007-07-11 17:01:13 +0000773 // Consume the comma.
774 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000775
Reid Spencer5f016e22007-07-11 17:01:13 +0000776 // Parse the next declarator.
777 ParmDeclarator.clear();
778 ParseDeclarator(ParmDeclarator);
779 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000780
Chris Lattner00073222007-10-09 17:23:58 +0000781 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000782 ConsumeToken();
783 } else {
784 Diag(Tok, diag::err_parse_error);
785 // Skip to end of block or statement
786 SkipUntil(tok::semi, true);
Chris Lattner00073222007-10-09 17:23:58 +0000787 if (Tok.is(tok::semi))
Reid Spencer5f016e22007-07-11 17:01:13 +0000788 ConsumeToken();
789 }
790 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000791
Reid Spencer5f016e22007-07-11 17:01:13 +0000792 // The actions module must verify that all arguments were declared.
Douglas Gregora3a83512009-04-01 23:51:29 +0000793 Actions.ActOnFinishKNRParamDeclarations(CurScope, D, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000794}
795
796
797/// ParseAsmStringLiteral - This is just a normal string-literal, but is not
798/// allowed to be a wide string, and is not subject to character translation.
799///
800/// [GNU] asm-string-literal:
801/// string-literal
802///
Sebastian Redleffa8d12008-12-10 00:02:53 +0000803Parser::OwningExprResult Parser::ParseAsmStringLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000804 if (!isTokenStringLiteral()) {
805 Diag(Tok, diag::err_expected_string_literal);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000806 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000808
Sebastian Redl20df9b72008-12-11 22:51:44 +0000809 OwningExprResult Res(ParseStringLiteralExpression());
Sebastian Redleffa8d12008-12-10 00:02:53 +0000810 if (Res.isInvalid()) return move(Res);
Mike Stumpa6f01772008-06-19 19:28:49 +0000811
Reid Spencer5f016e22007-07-11 17:01:13 +0000812 // TODO: Diagnose: wide string literal in 'asm'
Mike Stumpa6f01772008-06-19 19:28:49 +0000813
Sebastian Redleffa8d12008-12-10 00:02:53 +0000814 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000815}
816
817/// ParseSimpleAsm
818///
819/// [GNU] simple-asm-expr:
820/// 'asm' '(' asm-string-literal ')'
821///
Sebastian Redlab197ba2009-02-09 18:23:29 +0000822Parser::OwningExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
Chris Lattner00073222007-10-09 17:23:58 +0000823 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000824 SourceLocation Loc = ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000825
John McCall7a6ae742010-01-25 22:27:48 +0000826 if (Tok.is(tok::kw_volatile)) {
John McCall841d5e62010-01-25 23:12:50 +0000827 // Remove from the end of 'asm' to the end of 'volatile'.
828 SourceRange RemovalRange(PP.getLocForEndOfToken(Loc),
829 PP.getLocForEndOfToken(Tok.getLocation()));
830
831 Diag(Tok, diag::warn_file_asm_volatile)
832 << CodeModificationHint::CreateRemoval(RemovalRange);
John McCall7a6ae742010-01-25 22:27:48 +0000833 ConsumeToken();
834 }
835
Chris Lattner00073222007-10-09 17:23:58 +0000836 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000837 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Sebastian Redl61364dd2008-12-11 19:30:53 +0000838 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000839 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000840
Sebastian Redlab197ba2009-02-09 18:23:29 +0000841 Loc = ConsumeParen();
Mike Stumpa6f01772008-06-19 19:28:49 +0000842
Sebastian Redleffa8d12008-12-10 00:02:53 +0000843 OwningExprResult Result(ParseAsmStringLiteral());
Mike Stumpa6f01772008-06-19 19:28:49 +0000844
Sebastian Redlab197ba2009-02-09 18:23:29 +0000845 if (Result.isInvalid()) {
846 SkipUntil(tok::r_paren, true, true);
847 if (EndLoc)
848 *EndLoc = Tok.getLocation();
849 ConsumeAnyToken();
850 } else {
851 Loc = MatchRHSPunctuation(tok::r_paren, Loc);
852 if (EndLoc)
853 *EndLoc = Loc;
854 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000855
Sebastian Redleffa8d12008-12-10 00:02:53 +0000856 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000857}
858
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000859/// TryAnnotateTypeOrScopeToken - If the current token position is on a
860/// typename (possibly qualified in C++) or a C++ scope specifier not followed
861/// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
862/// with a single annotation token representing the typename or C++ scope
863/// respectively.
864/// This simplifies handling of C++ scope specifiers and allows efficient
865/// backtracking without the need to re-parse and resolve nested-names and
866/// typenames.
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000867/// It will mainly be called when we expect to treat identifiers as typenames
868/// (if they are typenames). For example, in C we do not expect identifiers
869/// inside expressions to be treated as typenames so it will not be called
870/// for expressions in C.
871/// The benefit for C/ObjC is that a typename will be annotated and
Steve Naroffb43a50f2009-01-28 19:39:02 +0000872/// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000873/// will not be called twice, once to check whether we have a declaration
874/// specifier, and another one to get the actual type inside
875/// ParseDeclarationSpecifiers).
Chris Lattnera7bc7c82009-01-04 23:23:14 +0000876///
John McCall9ba61662010-02-26 08:45:28 +0000877/// This returns true if an error occurred.
Mike Stump1eb44332009-09-09 15:08:12 +0000878///
Chris Lattner55a7cef2009-01-05 00:13:00 +0000879/// Note that this routine emits an error if you call it with ::new or ::delete
880/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +0000881bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000882 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)
John McCallae03cb52009-12-19 00:35:18 +0000883 || Tok.is(tok::kw_typename) || Tok.is(tok::annot_cxxscope)) &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000884 "Cannot be a type or scope token!");
Mike Stump1eb44332009-09-09 15:08:12 +0000885
Douglas Gregord57959a2009-03-27 23:10:48 +0000886 if (Tok.is(tok::kw_typename)) {
887 // Parse a C++ typename-specifier, e.g., "typename T::type".
888 //
889 // typename-specifier:
890 // 'typename' '::' [opt] nested-name-specifier identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000891 // 'typename' '::' [opt] nested-name-specifier template [opt]
Douglas Gregor17343172009-04-01 00:28:59 +0000892 // simple-template-id
Douglas Gregord57959a2009-03-27 23:10:48 +0000893 SourceLocation TypenameLoc = ConsumeToken();
894 CXXScopeSpec SS;
John McCall9ba61662010-02-26 08:45:28 +0000895 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, false))
896 return true;
897 if (!SS.isSet()) {
Douglas Gregord57959a2009-03-27 23:10:48 +0000898 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
John McCall9ba61662010-02-26 08:45:28 +0000899 return true;
Douglas Gregord57959a2009-03-27 23:10:48 +0000900 }
901
902 TypeResult Ty;
903 if (Tok.is(tok::identifier)) {
904 // FIXME: check whether the next token is '<', first!
Mike Stump1eb44332009-09-09 15:08:12 +0000905 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, *Tok.getIdentifierInfo(),
Douglas Gregord57959a2009-03-27 23:10:48 +0000906 Tok.getLocation());
Douglas Gregor17343172009-04-01 00:28:59 +0000907 } else if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000908 TemplateIdAnnotation *TemplateId
Douglas Gregor17343172009-04-01 00:28:59 +0000909 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
910 if (TemplateId->Kind == TNK_Function_template) {
911 Diag(Tok, diag::err_typename_refers_to_non_type_template)
912 << Tok.getAnnotationRange();
John McCall9ba61662010-02-26 08:45:28 +0000913 return true;
Douglas Gregor17343172009-04-01 00:28:59 +0000914 }
Douglas Gregord57959a2009-03-27 23:10:48 +0000915
Douglas Gregor31a19b62009-04-01 21:51:26 +0000916 AnnotateTemplateIdTokenAsType(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000917 assert(Tok.is(tok::annot_typename) &&
Douglas Gregor17343172009-04-01 00:28:59 +0000918 "AnnotateTemplateIdTokenAsType isn't working properly");
Douglas Gregor31a19b62009-04-01 21:51:26 +0000919 if (Tok.getAnnotationValue())
920 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, SourceLocation(),
921 Tok.getAnnotationValue());
922 else
923 Ty = true;
Douglas Gregor17343172009-04-01 00:28:59 +0000924 } else {
925 Diag(Tok, diag::err_expected_type_name_after_typename)
926 << SS.getRange();
John McCall9ba61662010-02-26 08:45:28 +0000927 return true;
Douglas Gregor17343172009-04-01 00:28:59 +0000928 }
929
Sebastian Redl39d67112010-02-08 19:35:18 +0000930 SourceLocation EndLoc = Tok.getLastLoc();
Douglas Gregor17343172009-04-01 00:28:59 +0000931 Tok.setKind(tok::annot_typename);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000932 Tok.setAnnotationValue(Ty.isInvalid()? 0 : Ty.get());
Sebastian Redl39d67112010-02-08 19:35:18 +0000933 Tok.setAnnotationEndLoc(EndLoc);
Douglas Gregor17343172009-04-01 00:28:59 +0000934 Tok.setLocation(TypenameLoc);
935 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +0000936 return false;
Douglas Gregord57959a2009-03-27 23:10:48 +0000937 }
938
John McCallae03cb52009-12-19 00:35:18 +0000939 // Remembers whether the token was originally a scope annotation.
940 bool wasScopeAnnotation = Tok.is(tok::annot_cxxscope);
941
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000942 CXXScopeSpec SS;
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000943 if (getLang().CPlusPlus)
John McCall9ba61662010-02-26 08:45:28 +0000944 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext))
945 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000946
947 if (Tok.is(tok::identifier)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000948 // Determine whether the identifier is a type name.
Mike Stump1eb44332009-09-09 15:08:12 +0000949 if (TypeTy *Ty = Actions.getTypeName(*Tok.getIdentifierInfo(),
Douglas Gregorb696ea32009-02-04 17:00:24 +0000950 Tok.getLocation(), CurScope, &SS)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000951 // This is a typename. Replace the current token in-place with an
952 // annotation type token.
Chris Lattnerb31757b2009-01-06 05:06:21 +0000953 Tok.setKind(tok::annot_typename);
Chris Lattner608d1fc2009-01-05 01:49:50 +0000954 Tok.setAnnotationValue(Ty);
955 Tok.setAnnotationEndLoc(Tok.getLocation());
956 if (SS.isNotEmpty()) // it was a C++ qualified type name.
957 Tok.setLocation(SS.getBeginLoc());
Mike Stump1eb44332009-09-09 15:08:12 +0000958
Chris Lattner608d1fc2009-01-05 01:49:50 +0000959 // In case the tokens were cached, have Preprocessor replace
960 // them with the annotation token.
961 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +0000962 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000963 }
Douglas Gregor39a8de12009-02-25 19:37:18 +0000964
965 if (!getLang().CPlusPlus) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000966 // If we're in C, we can't have :: tokens at all (the lexer won't return
967 // them). If the identifier is not a type, then it can't be scope either,
Mike Stump1eb44332009-09-09 15:08:12 +0000968 // just early exit.
Chris Lattner608d1fc2009-01-05 01:49:50 +0000969 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000970 }
Mike Stump1eb44332009-09-09 15:08:12 +0000971
Douglas Gregor39a8de12009-02-25 19:37:18 +0000972 // If this is a template-id, annotate with a template-id or type token.
Douglas Gregor55f6b142009-02-09 18:46:07 +0000973 if (NextToken().is(tok::less)) {
Douglas Gregor7532dc62009-03-30 22:58:21 +0000974 TemplateTy Template;
Douglas Gregor014e88d2009-11-03 23:16:33 +0000975 UnqualifiedId TemplateName;
976 TemplateName.setIdentifier(Tok.getIdentifierInfo(), Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000977 if (TemplateNameKind TNK
Douglas Gregor014e88d2009-11-03 23:16:33 +0000978 = Actions.isTemplateName(CurScope, SS, TemplateName,
Mike Stump1eb44332009-09-09 15:08:12 +0000979 /*ObjectType=*/0, EnteringContext,
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000980 Template)) {
981 // Consume the identifier.
982 ConsumeToken();
983 if (AnnotateTemplateIdToken(Template, TNK, &SS, TemplateName)) {
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000984 // If an unrecoverable error occurred, we need to return true here,
985 // because the token stream is in a damaged state. We may not return
986 // a valid identifier.
John McCall9ba61662010-02-26 08:45:28 +0000987 return true;
Chris Lattnerc8e27cc2009-06-26 04:27:47 +0000988 }
Douglas Gregorca1bdd72009-11-04 00:56:37 +0000989 }
Douglas Gregor55f6b142009-02-09 18:46:07 +0000990 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000991
Douglas Gregor39a8de12009-02-25 19:37:18 +0000992 // The current token, which is either an identifier or a
993 // template-id, is not part of the annotation. Fall through to
994 // push that token back into the stream and complete the C++ scope
995 // specifier annotation.
Mike Stump1eb44332009-09-09 15:08:12 +0000996 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000997
Douglas Gregor39a8de12009-02-25 19:37:18 +0000998 if (Tok.is(tok::annot_template_id)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000999 TemplateIdAnnotation *TemplateId
Douglas Gregor39a8de12009-02-25 19:37:18 +00001000 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +00001001 if (TemplateId->Kind == TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +00001002 // A template-id that refers to a type was parsed into a
1003 // template-id annotation in a context where we weren't allowed
1004 // to produce a type annotation token. Update the template-id
1005 // annotation token to a type annotation token now.
Douglas Gregor31a19b62009-04-01 21:51:26 +00001006 AnnotateTemplateIdTokenAsType(&SS);
John McCall9ba61662010-02-26 08:45:28 +00001007 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +00001008 }
1009 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00001010
Chris Lattner6ec76d42009-01-04 22:32:19 +00001011 if (SS.isEmpty())
John McCall9ba61662010-02-26 08:45:28 +00001012 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001013
Chris Lattner6ec76d42009-01-04 22:32:19 +00001014 // A C++ scope specifier that isn't followed by a typename.
1015 // Push the current token back into the token stream (or revert it if it is
1016 // cached) and use an annotation scope token for current token.
1017 if (PP.isBacktrackEnabled())
1018 PP.RevertCachedTokens(1);
1019 else
1020 PP.EnterToken(Tok);
1021 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001022 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001023 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001024
John McCallae03cb52009-12-19 00:35:18 +00001025 // In case the tokens were cached, have Preprocessor replace them
1026 // with the annotation token. We don't need to do this if we've
1027 // just reverted back to the state we were in before being called.
1028 if (!wasScopeAnnotation)
1029 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +00001030 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001031}
1032
1033/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
Douglas Gregor39a8de12009-02-25 19:37:18 +00001034/// annotates C++ scope specifiers and template-ids. This returns
Chris Lattnerc8e27cc2009-06-26 04:27:47 +00001035/// true if the token was annotated or there was an error that could not be
1036/// recovered from.
Mike Stump1eb44332009-09-09 15:08:12 +00001037///
Chris Lattner55a7cef2009-01-05 00:13:00 +00001038/// Note that this routine emits an error if you call it with ::new or ::delete
1039/// as the current tokens, so only call it in contexts where these are invalid.
Douglas Gregor495c35d2009-08-25 22:51:20 +00001040bool Parser::TryAnnotateCXXScopeToken(bool EnteringContext) {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001041 assert(getLang().CPlusPlus &&
Chris Lattner6ec76d42009-01-04 22:32:19 +00001042 "Call sites of this function should be guarded by checking for C++");
Chris Lattner7452c6f2009-01-05 01:24:05 +00001043 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
1044 "Cannot be a type or scope token!");
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001045
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +00001046 CXXScopeSpec SS;
John McCall9ba61662010-02-26 08:45:28 +00001047 if (ParseOptionalCXXScopeSpecifier(SS, /*ObjectType=*/0, EnteringContext))
1048 return true;
1049 if (!SS.isSet())
1050 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001051
Chris Lattner6ec76d42009-01-04 22:32:19 +00001052 // Push the current token back into the token stream (or revert it if it is
1053 // cached) and use an annotation scope token for current token.
1054 if (PP.isBacktrackEnabled())
1055 PP.RevertCachedTokens(1);
1056 else
1057 PP.EnterToken(Tok);
1058 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +00001059 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +00001060 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001061
Chris Lattner6ec76d42009-01-04 22:32:19 +00001062 // In case the tokens were cached, have Preprocessor replace them with the
1063 // annotation token.
1064 PP.AnnotateCachedTokens(Tok);
John McCall9ba61662010-02-26 08:45:28 +00001065 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001066}
John McCall6c94a6d2009-11-03 19:33:12 +00001067
1068// Anchor the Parser::FieldCallback vtable to this translation unit.
1069// We use a spurious method instead of the destructor because
1070// destroying FieldCallbacks can actually be slightly
1071// performance-sensitive.
1072void Parser::FieldCallback::_anchor() {
1073}