blob: a2a66f9255ded2b6822ee50171d5876f2ff6a09d [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"
Chris Lattner0102c302009-03-05 07:24:28 +000018#include "llvm/Support/raw_ostream.h"
Chris Lattnerc46d1a12008-10-20 06:45:43 +000019#include "ExtensionRAIIObject.h"
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +000020#include "ParsePragma.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22
23Parser::Parser(Preprocessor &pp, Action &actions)
Chris Lattner0102c302009-03-05 07:24:28 +000024 : CrashInfo(*this), PP(pp), Actions(actions), Diags(PP.getDiagnostics()),
Douglas Gregor55f6b142009-02-09 18:46:07 +000025 GreaterThanIsOperator(true) {
Reid Spencer5f016e22007-07-11 17:01:13 +000026 Tok.setKind(tok::eof);
27 CurScope = 0;
Chris Lattner9e344c62007-07-15 00:04:39 +000028 NumCachedScopes = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000029 ParenCount = BracketCount = BraceCount = 0;
Chris Lattnerb28317a2009-03-28 19:18:32 +000030 ObjCImpDecl = DeclPtrTy();
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +000031
32 // Add #pragma handlers. These are removed and destroyed in the
33 // destructor.
Ted Kremenek4726d032009-03-23 22:28:25 +000034 PackHandler.reset(new
35 PragmaPackHandler(&PP.getIdentifierTable().get("pack"), actions));
36 PP.AddPragmaHandler(0, PackHandler.get());
37
38 UnusedHandler.reset(new
39 PragmaUnusedHandler(&PP.getIdentifierTable().get("unused"), actions,
40 *this));
41 PP.AddPragmaHandler(0, UnusedHandler.get());
Eli Friedman99914792009-06-05 00:49:58 +000042
43 WeakHandler.reset(new
44 PragmaWeakHandler(&PP.getIdentifierTable().get("weak"), actions));
45 PP.AddPragmaHandler(0, WeakHandler.get());
Reid Spencer5f016e22007-07-11 17:01:13 +000046}
47
Chris Lattner0102c302009-03-05 07:24:28 +000048/// If a crash happens while the parser is active, print out a line indicating
49/// what the current token is.
50void PrettyStackTraceParserEntry::print(llvm::raw_ostream &OS) const {
51 const Token &Tok = P.getCurToken();
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000052 if (Tok.is(tok::eof)) {
Chris Lattner0102c302009-03-05 07:24:28 +000053 OS << "<eof> parser at end of file\n";
54 return;
55 }
56
Chris Lattnerddcbc0a2009-03-05 07:27:50 +000057 if (Tok.getLocation().isInvalid()) {
58 OS << "<unknown> parser at unknown location\n";
59 return;
60 }
61
Chris Lattner0102c302009-03-05 07:24:28 +000062 const Preprocessor &PP = P.getPreprocessor();
63 Tok.getLocation().print(OS, PP.getSourceManager());
64 OS << ": current parser token '" << PP.getSpelling(Tok) << "'\n";
Douglas Gregorf780abc2008-12-30 03:27:21 +000065}
Reid Spencer5f016e22007-07-11 17:01:13 +000066
Chris Lattner0102c302009-03-05 07:24:28 +000067
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000068DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
Chris Lattner0102c302009-03-05 07:24:28 +000069 return Diags.Report(FullSourceLoc(Loc, PP.getSourceManager()), DiagID);
Chris Lattner1ab3b962008-11-18 07:48:38 +000070}
71
Chris Lattner3cbfe2c2008-11-22 00:59:29 +000072DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
Chris Lattner1ab3b962008-11-18 07:48:38 +000073 return Diag(Tok.getLocation(), DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +000074}
75
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000076/// \brief Emits a diagnostic suggesting parentheses surrounding a
77/// given range.
78///
79/// \param Loc The location where we'll emit the diagnostic.
80/// \param Loc The kind of diagnostic to emit.
81/// \param ParenRange Source range enclosing code that should be parenthesized.
82void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
83 SourceRange ParenRange) {
Douglas Gregorb2fb6de2009-02-27 17:53:17 +000084 SourceLocation EndLoc = PP.getLocForEndOfToken(ParenRange.getEnd());
85 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000086 // We can't display the parentheses, so just dig the
87 // warning/error and return.
88 Diag(Loc, DK);
89 return;
90 }
91
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000092 Diag(Loc, DK)
Douglas Gregorb2fb6de2009-02-27 17:53:17 +000093 << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(")
94 << CodeModificationHint::CreateInsertion(EndLoc, ")");
Douglas Gregor4b2d3f72009-02-26 21:00:50 +000095}
96
Reid Spencer5f016e22007-07-11 17:01:13 +000097/// MatchRHSPunctuation - For punctuation with a LHS and RHS (e.g. '['/']'),
98/// this helper function matches and consumes the specified RHS token if
99/// present. If not present, it emits the specified diagnostic indicating
100/// that the parser failed to match the RHS of the token at LHSLoc. LHSName
101/// should be the name of the unmatched LHS token.
102SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok,
103 SourceLocation LHSLoc) {
Mike Stumpa6f01772008-06-19 19:28:49 +0000104
Chris Lattner00073222007-10-09 17:23:58 +0000105 if (Tok.is(RHSTok))
Reid Spencer5f016e22007-07-11 17:01:13 +0000106 return ConsumeAnyToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000107
Reid Spencer5f016e22007-07-11 17:01:13 +0000108 SourceLocation R = Tok.getLocation();
109 const char *LHSName = "unknown";
110 diag::kind DID = diag::err_parse_error;
111 switch (RHSTok) {
112 default: break;
113 case tok::r_paren : LHSName = "("; DID = diag::err_expected_rparen; break;
114 case tok::r_brace : LHSName = "{"; DID = diag::err_expected_rbrace; break;
115 case tok::r_square: LHSName = "["; DID = diag::err_expected_rsquare; break;
116 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break;
117 }
118 Diag(Tok, DID);
Chris Lattner28eb7e92008-11-23 23:17:07 +0000119 Diag(LHSLoc, diag::note_matching) << LHSName;
Reid Spencer5f016e22007-07-11 17:01:13 +0000120 SkipUntil(RHSTok);
121 return R;
122}
123
124/// ExpectAndConsume - The parser expects that 'ExpectedTok' is next in the
125/// input. If so, it is consumed and false is returned.
126///
127/// If the input is malformed, this emits the specified diagnostic. Next, if
128/// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
129/// returned.
130bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
131 const char *Msg, tok::TokenKind SkipToTok) {
Chris Lattner00073222007-10-09 17:23:58 +0000132 if (Tok.is(ExpectedTok)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000133 ConsumeAnyToken();
134 return false;
135 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000136
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000137 const char *Spelling = 0;
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000138 SourceLocation EndLoc = PP.getLocForEndOfToken(PrevTokLocation);
139 if (EndLoc.isValid() &&
140 (Spelling = tok::getTokenSimpleSpelling(ExpectedTok))) {
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000141 // Show what code to insert to fix this problem.
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000142 Diag(EndLoc, DiagID)
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000143 << Msg
Douglas Gregorb2fb6de2009-02-27 17:53:17 +0000144 << CodeModificationHint::CreateInsertion(EndLoc, Spelling);
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000145 } else
146 Diag(Tok, DiagID) << Msg;
147
Reid Spencer5f016e22007-07-11 17:01:13 +0000148 if (SkipToTok != tok::unknown)
149 SkipUntil(SkipToTok);
150 return true;
151}
152
153//===----------------------------------------------------------------------===//
154// Error recovery.
155//===----------------------------------------------------------------------===//
156
157/// SkipUntil - Read tokens until we get to the specified token, then consume
Chris Lattner012cf462007-07-24 17:03:04 +0000158/// it (unless DontConsume is true). Because we cannot guarantee that the
Reid Spencer5f016e22007-07-11 17:01:13 +0000159/// token will ever occur, this skips to the next token, or to some likely
160/// good stopping point. If StopAtSemi is true, skipping will stop at a ';'
161/// character.
Mike Stumpa6f01772008-06-19 19:28:49 +0000162///
Reid Spencer5f016e22007-07-11 17:01:13 +0000163/// If SkipUntil finds the specified token, it returns true, otherwise it
Mike Stumpa6f01772008-06-19 19:28:49 +0000164/// returns false.
Reid Spencer5f016e22007-07-11 17:01:13 +0000165bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,
166 bool StopAtSemi, bool DontConsume) {
167 // We always want this function to skip at least one token if the first token
168 // isn't T and if not at EOF.
169 bool isFirstTokenSkipped = true;
170 while (1) {
171 // If we found one of the tokens, stop and return true.
172 for (unsigned i = 0; i != NumToks; ++i) {
Chris Lattner00073222007-10-09 17:23:58 +0000173 if (Tok.is(Toks[i])) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000174 if (DontConsume) {
175 // Noop, don't consume the token.
176 } else {
177 ConsumeAnyToken();
178 }
179 return true;
180 }
181 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000182
Reid Spencer5f016e22007-07-11 17:01:13 +0000183 switch (Tok.getKind()) {
184 case tok::eof:
185 // Ran out of tokens.
186 return false;
Mike Stumpa6f01772008-06-19 19:28:49 +0000187
Reid Spencer5f016e22007-07-11 17:01:13 +0000188 case tok::l_paren:
189 // Recursively skip properly-nested parens.
190 ConsumeParen();
191 SkipUntil(tok::r_paren, false);
192 break;
193 case tok::l_square:
194 // Recursively skip properly-nested square brackets.
195 ConsumeBracket();
196 SkipUntil(tok::r_square, false);
197 break;
198 case tok::l_brace:
199 // Recursively skip properly-nested braces.
200 ConsumeBrace();
201 SkipUntil(tok::r_brace, false);
202 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000203
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 // Okay, we found a ']' or '}' or ')', which we think should be balanced.
205 // Since the user wasn't looking for this token (if they were, it would
206 // already be handled), this isn't balanced. If there is a LHS token at a
207 // higher level, we will assume that this matches the unbalanced token
208 // and return it. Otherwise, this is a spurious RHS token, which we skip.
209 case tok::r_paren:
210 if (ParenCount && !isFirstTokenSkipped)
211 return false; // Matches something.
212 ConsumeParen();
213 break;
214 case tok::r_square:
215 if (BracketCount && !isFirstTokenSkipped)
216 return false; // Matches something.
217 ConsumeBracket();
218 break;
219 case tok::r_brace:
220 if (BraceCount && !isFirstTokenSkipped)
221 return false; // Matches something.
222 ConsumeBrace();
223 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000224
Reid Spencer5f016e22007-07-11 17:01:13 +0000225 case tok::string_literal:
226 case tok::wide_string_literal:
227 ConsumeStringToken();
228 break;
229 case tok::semi:
230 if (StopAtSemi)
231 return false;
232 // FALL THROUGH.
233 default:
234 // Skip this token.
235 ConsumeToken();
236 break;
237 }
238 isFirstTokenSkipped = false;
Mike Stumpa6f01772008-06-19 19:28:49 +0000239 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000240}
241
242//===----------------------------------------------------------------------===//
243// Scope manipulation
244//===----------------------------------------------------------------------===//
245
Reid Spencer5f016e22007-07-11 17:01:13 +0000246/// EnterScope - Start a new scope.
247void Parser::EnterScope(unsigned ScopeFlags) {
Chris Lattner9e344c62007-07-15 00:04:39 +0000248 if (NumCachedScopes) {
249 Scope *N = ScopeCache[--NumCachedScopes];
Reid Spencer5f016e22007-07-11 17:01:13 +0000250 N->Init(CurScope, ScopeFlags);
251 CurScope = N;
252 } else {
253 CurScope = new Scope(CurScope, ScopeFlags);
254 }
255}
256
257/// ExitScope - Pop a scope off the scope stack.
258void Parser::ExitScope() {
259 assert(CurScope && "Scope imbalance!");
260
Chris Lattner90ae68a2007-10-09 20:37:18 +0000261 // Inform the actions module that this scope is going away if there are any
262 // decls in it.
263 if (!CurScope->decl_empty())
Steve Naroffb216c882007-10-09 22:01:59 +0000264 Actions.ActOnPopScope(Tok.getLocation(), CurScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000265
Chris Lattner9e344c62007-07-15 00:04:39 +0000266 Scope *OldScope = CurScope;
267 CurScope = OldScope->getParent();
Mike Stumpa6f01772008-06-19 19:28:49 +0000268
Chris Lattner9e344c62007-07-15 00:04:39 +0000269 if (NumCachedScopes == ScopeCacheSize)
270 delete OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000271 else
Chris Lattner9e344c62007-07-15 00:04:39 +0000272 ScopeCache[NumCachedScopes++] = OldScope;
Reid Spencer5f016e22007-07-11 17:01:13 +0000273}
274
275
276
277
278//===----------------------------------------------------------------------===//
279// C99 6.9: External Definitions.
280//===----------------------------------------------------------------------===//
281
282Parser::~Parser() {
283 // If we still have scopes active, delete the scope tree.
284 delete CurScope;
Mike Stumpa6f01772008-06-19 19:28:49 +0000285
Reid Spencer5f016e22007-07-11 17:01:13 +0000286 // Free the scope cache.
Chris Lattner9e344c62007-07-15 00:04:39 +0000287 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
288 delete ScopeCache[i];
Daniel Dunbarfcdd8fe2008-10-04 19:21:03 +0000289
290 // Remove the pragma handlers we installed.
Ted Kremenek4726d032009-03-23 22:28:25 +0000291 PP.RemovePragmaHandler(0, PackHandler.get());
292 PackHandler.reset();
293 PP.RemovePragmaHandler(0, UnusedHandler.get());
294 UnusedHandler.reset();
Eli Friedman99914792009-06-05 00:49:58 +0000295 PP.RemovePragmaHandler(0, WeakHandler.get());
296 WeakHandler.reset();
Reid Spencer5f016e22007-07-11 17:01:13 +0000297}
298
299/// Initialize - Warm up the parser.
300///
301void Parser::Initialize() {
302 // Prime the lexer look-ahead.
303 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000304
Chris Lattner31e05722007-08-26 06:24:45 +0000305 // Create the translation unit scope. Install it as the current scope.
Reid Spencer5f016e22007-07-11 17:01:13 +0000306 assert(CurScope == 0 && "A scope is already active?");
Chris Lattner31e05722007-08-26 06:24:45 +0000307 EnterScope(Scope::DeclScope);
Steve Naroffb216c882007-10-09 22:01:59 +0000308 Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000309
Chris Lattner00073222007-10-09 17:23:58 +0000310 if (Tok.is(tok::eof) &&
Chris Lattnerf7261752007-08-25 05:47:03 +0000311 !getLang().CPlusPlus) // Empty source file is an extension in C
Reid Spencer5f016e22007-07-11 17:01:13 +0000312 Diag(Tok, diag::ext_empty_source_file);
Mike Stumpa6f01772008-06-19 19:28:49 +0000313
Chris Lattner34870da2007-08-29 22:54:08 +0000314 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000315 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner34870da2007-08-29 22:54:08 +0000316 if (getLang().ObjC1) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000317 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
318 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
319 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
320 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
321 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
322 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
Chris Lattner34870da2007-08-29 22:54:08 +0000323 }
Daniel Dunbar662e8b52008-08-14 22:04:54 +0000324
325 Ident_super = &PP.getIdentifierTable().get("super");
Reid Spencer5f016e22007-07-11 17:01:13 +0000326}
327
328/// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
329/// action tells us to. This returns true if the EOF was encountered.
Chris Lattner682bf922009-03-29 16:50:03 +0000330bool Parser::ParseTopLevelDecl(DeclGroupPtrTy &Result) {
331 Result = DeclGroupPtrTy();
Chris Lattner9299f3f2008-08-23 03:19:52 +0000332 if (Tok.is(tok::eof)) {
333 Actions.ActOnEndOfTranslationUnit();
334 return true;
335 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000336
Steve Naroff89307ff2007-11-29 23:05:20 +0000337 Result = ParseExternalDeclaration();
Reid Spencer5f016e22007-07-11 17:01:13 +0000338 return false;
339}
340
Reid Spencer5f016e22007-07-11 17:01:13 +0000341/// ParseTranslationUnit:
342/// translation-unit: [C99 6.9]
Mike Stumpa6f01772008-06-19 19:28:49 +0000343/// external-declaration
344/// translation-unit external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000345void Parser::ParseTranslationUnit() {
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000346 Initialize();
Mike Stumpa6f01772008-06-19 19:28:49 +0000347
Chris Lattner682bf922009-03-29 16:50:03 +0000348 DeclGroupPtrTy Res;
Steve Naroff89307ff2007-11-29 23:05:20 +0000349 while (!ParseTopLevelDecl(Res))
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 /*parse them all*/;
Chris Lattner06f54852008-08-23 02:00:52 +0000351
352 ExitScope();
353 assert(CurScope == 0 && "Scope imbalance!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000354}
355
356/// ParseExternalDeclaration:
Chris Lattner90b93d62008-12-08 21:59:01 +0000357///
Douglas Gregorc19923d2008-11-21 16:10:08 +0000358/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattnerc3018152007-08-10 20:57:02 +0000359/// function-definition
360/// declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000361/// [EXT] ';'
362/// [GNU] asm-definition
Chris Lattnerc3018152007-08-10 20:57:02 +0000363/// [GNU] __extension__ external-declaration
Reid Spencer5f016e22007-07-11 17:01:13 +0000364/// [OBJC] objc-class-definition
365/// [OBJC] objc-class-declaration
366/// [OBJC] objc-alias-declaration
367/// [OBJC] objc-protocol-definition
368/// [OBJC] objc-method-definition
369/// [OBJC] @end
Douglas Gregorc19923d2008-11-21 16:10:08 +0000370/// [C++] linkage-specification
Reid Spencer5f016e22007-07-11 17:01:13 +0000371/// [GNU] asm-definition:
372/// simple-asm-expr ';'
373///
Chris Lattner682bf922009-03-29 16:50:03 +0000374Parser::DeclGroupPtrTy Parser::ParseExternalDeclaration() {
375 DeclPtrTy SingleDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +0000376 switch (Tok.getKind()) {
377 case tok::semi:
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000378 Diag(Tok, diag::ext_top_level_semi)
379 << CodeModificationHint::CreateRemoval(SourceRange(Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000380 ConsumeToken();
381 // TODO: Invoke action for top-level semicolon.
Chris Lattner682bf922009-03-29 16:50:03 +0000382 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000383 case tok::r_brace:
384 Diag(Tok, diag::err_expected_external_declaration);
385 ConsumeBrace();
Chris Lattner682bf922009-03-29 16:50:03 +0000386 return DeclGroupPtrTy();
Chris Lattner90b93d62008-12-08 21:59:01 +0000387 case tok::eof:
388 Diag(Tok, diag::err_expected_external_declaration);
Chris Lattner682bf922009-03-29 16:50:03 +0000389 return DeclGroupPtrTy();
Chris Lattnerc3018152007-08-10 20:57:02 +0000390 case tok::kw___extension__: {
Chris Lattnerc46d1a12008-10-20 06:45:43 +0000391 // __extension__ silences extension warnings in the subexpression.
392 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner39146d62008-10-20 06:51:33 +0000393 ConsumeToken();
Chris Lattnerc46d1a12008-10-20 06:45:43 +0000394 return ParseExternalDeclaration();
Chris Lattnerc3018152007-08-10 20:57:02 +0000395 }
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000396 case tok::kw_asm: {
Sebastian Redleffa8d12008-12-10 00:02:53 +0000397 OwningExprResult Result(ParseSimpleAsm());
Mike Stumpa6f01772008-06-19 19:28:49 +0000398
Anders Carlsson3f9424f2008-02-08 00:23:11 +0000399 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
400 "top-level asm block");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000401
Chris Lattner682bf922009-03-29 16:50:03 +0000402 if (Result.isInvalid())
403 return DeclGroupPtrTy();
404 SingleDecl = Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), move(Result));
405 break;
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000406 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000407 case tok::at:
Chris Lattner682bf922009-03-29 16:50:03 +0000408 // @ is not a legal token unless objc is enabled, no need to check for ObjC.
409 /// FIXME: ParseObjCAtDirectives should return a DeclGroup for things like
410 /// @class foo, bar;
411 SingleDecl = ParseObjCAtDirectives();
412 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000413 case tok::minus:
Reid Spencer5f016e22007-07-11 17:01:13 +0000414 case tok::plus:
Chris Lattner682bf922009-03-29 16:50:03 +0000415 if (!getLang().ObjC1) {
416 Diag(Tok, diag::err_expected_external_declaration);
417 ConsumeToken();
418 return DeclGroupPtrTy();
419 }
420 SingleDecl = ParseObjCMethodDefinition();
421 break;
Douglas Gregorf780abc2008-12-30 03:27:21 +0000422 case tok::kw_using:
Chris Lattner8f08cb72007-08-25 06:57:03 +0000423 case tok::kw_namespace:
Reid Spencer5f016e22007-07-11 17:01:13 +0000424 case tok::kw_typedef:
Douglas Gregoradcac882008-12-01 23:54:00 +0000425 case tok::kw_template:
426 case tok::kw_export: // As in 'export template'
Anders Carlsson511d7ab2009-03-11 16:27:10 +0000427 case tok::kw_static_assert:
Chris Lattnerbae35112007-08-25 18:15:16 +0000428 // A function definition cannot start with a these keywords.
Chris Lattner97144fc2009-04-02 04:16:50 +0000429 {
430 SourceLocation DeclEnd;
431 return ParseDeclaration(Declarator::FileContext, DeclEnd);
432 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000433 default:
434 // We can't tell whether this is a function-definition or declaration yet.
435 return ParseDeclarationOrFunctionDefinition();
436 }
Chris Lattner682bf922009-03-29 16:50:03 +0000437
438 // This routine returns a DeclGroup, if the thing we parsed only contains a
439 // single decl, convert it now.
440 return Actions.ConvertDeclToDeclGroup(SingleDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000441}
442
Douglas Gregor1426e532009-05-12 21:31:51 +0000443/// \brief Determine whether the current token, if it occurs after a
444/// declarator, continues a declaration or declaration list.
445bool Parser::isDeclarationAfterDeclarator() {
446 return Tok.is(tok::equal) || // int X()= -> not a function def
447 Tok.is(tok::comma) || // int X(), -> not a function def
448 Tok.is(tok::semi) || // int X(); -> not a function def
449 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def
450 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def
451 (getLang().CPlusPlus &&
452 Tok.is(tok::l_paren)); // int X(0) -> not a function def [C++]
453}
454
455/// \brief Determine whether the current token, if it occurs after a
456/// declarator, indicates the start of a function definition.
457bool Parser::isStartOfFunctionDefinition() {
458 return Tok.is(tok::l_brace) || // int X() {}
459 (!getLang().CPlusPlus &&
460 isDeclarationSpecifier()) || // int X(f) int f; {}
461 (getLang().CPlusPlus &&
462 (Tok.is(tok::colon) || // X() : Base() {} (used for ctors)
463 Tok.is(tok::kw_try))); // X() try { ... }
464}
465
Reid Spencer5f016e22007-07-11 17:01:13 +0000466/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
467/// a declaration. We can't tell which we have until we read up to the
Douglas Gregorc4b4e7b2008-12-24 02:52:09 +0000468/// compound-statement in function-definition. TemplateParams, if
469/// non-NULL, provides the template parameters when we're parsing a
470/// C++ template-declaration.
Reid Spencer5f016e22007-07-11 17:01:13 +0000471///
472/// function-definition: [C99 6.9.1]
Chris Lattnera798ebc2008-04-05 05:52:15 +0000473/// decl-specs declarator declaration-list[opt] compound-statement
474/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000475/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattnera798ebc2008-04-05 05:52:15 +0000476///
Reid Spencer5f016e22007-07-11 17:01:13 +0000477/// declaration: [C99 6.7]
Chris Lattner697e15f2007-08-22 06:06:56 +0000478/// declaration-specifiers init-declarator-list[opt] ';'
479/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Reid Spencer5f016e22007-07-11 17:01:13 +0000480/// [OMP] threadprivate-directive [TODO]
481///
Chris Lattner682bf922009-03-29 16:50:03 +0000482Parser::DeclGroupPtrTy
Douglas Gregor70913192009-05-12 21:43:46 +0000483Parser::ParseDeclarationOrFunctionDefinition(AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000484 // Parse the common declaration-specifiers piece.
485 DeclSpec DS;
Douglas Gregor4d9a16f2009-05-12 23:25:50 +0000486 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS);
Mike Stumpa6f01772008-06-19 19:28:49 +0000487
Reid Spencer5f016e22007-07-11 17:01:13 +0000488 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
489 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner00073222007-10-09 17:23:58 +0000490 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000491 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000492 DeclPtrTy TheDecl = Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
493 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000494 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000495
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000496 // ObjC2 allows prefix attributes on class interfaces and protocols.
497 // FIXME: This still needs better diagnostics. We should only accept
498 // attributes here, no types, etc.
Chris Lattner00073222007-10-09 17:23:58 +0000499 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Naroffdac269b2007-08-20 21:31:48 +0000500 SourceLocation AtLoc = ConsumeToken(); // the "@"
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000501 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
502 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
503 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattnercb53b362007-12-27 19:57:00 +0000504 SkipUntil(tok::semi); // FIXME: better skip?
Chris Lattner682bf922009-03-29 16:50:03 +0000505 return DeclGroupPtrTy();
Chris Lattnercb53b362007-12-27 19:57:00 +0000506 }
Fariborz Jahanian0de2ae22008-01-02 19:17:38 +0000507 const char *PrevSpec = 0;
508 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec))
Chris Lattner1ab3b962008-11-18 07:48:38 +0000509 Diag(AtLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Chris Lattner682bf922009-03-29 16:50:03 +0000510
511 DeclPtrTy TheDecl;
Daniel Dunbar246e70f2008-09-26 04:48:09 +0000512 if (Tok.isObjCAtKeyword(tok::objc_protocol))
Chris Lattner682bf922009-03-29 16:50:03 +0000513 TheDecl = ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
514 else
515 TheDecl = ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
516 return Actions.ConvertDeclToDeclGroup(TheDecl);
Steve Naroffdac269b2007-08-20 21:31:48 +0000517 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000518
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000519 // If the declspec consisted only of 'extern' and we have a string
520 // literal following it, this must be a C++ linkage specifier like
521 // 'extern "C"'.
Chris Lattner3c6f6a72008-01-12 07:08:43 +0000522 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000523 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
Chris Lattner682bf922009-03-29 16:50:03 +0000524 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) {
525 DeclPtrTy TheDecl = ParseLinkage(Declarator::FileContext);
526 return Actions.ConvertDeclToDeclGroup(TheDecl);
527 }
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000528
Reid Spencer5f016e22007-07-11 17:01:13 +0000529 // Parse the first declarator.
530 Declarator DeclaratorInfo(DS, Declarator::FileContext);
531 ParseDeclarator(DeclaratorInfo);
532 // Error parsing the declarator?
Douglas Gregor10bd3682008-11-17 22:58:34 +0000533 if (!DeclaratorInfo.hasName()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000534 // If so, skip until the semi-colon or a }.
Douglas Gregorcb43d992008-12-01 23:03:32 +0000535 SkipUntil(tok::r_brace, true, true);
Chris Lattner00073222007-10-09 17:23:58 +0000536 if (Tok.is(tok::semi))
Reid Spencer5f016e22007-07-11 17:01:13 +0000537 ConsumeToken();
Chris Lattner682bf922009-03-29 16:50:03 +0000538 return DeclGroupPtrTy();
Reid Spencer5f016e22007-07-11 17:01:13 +0000539 }
540
Douglas Gregor1426e532009-05-12 21:31:51 +0000541 // If we have a declaration or declarator list, handle it.
542 if (isDeclarationAfterDeclarator()) {
Chris Lattner682bf922009-03-29 16:50:03 +0000543 // Parse the init-declarator-list for a normal declaration.
Chris Lattner23c4b182009-03-29 17:18:04 +0000544 DeclGroupPtrTy DG =
545 ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
546 // Eat the semi colon after the declaration.
547 ExpectAndConsume(tok::semi, diag::err_expected_semi_declation);
548 return DG;
Chris Lattner682bf922009-03-29 16:50:03 +0000549 }
550
Chris Lattner682bf922009-03-29 16:50:03 +0000551 if (DeclaratorInfo.isFunctionDeclarator() &&
Douglas Gregor1426e532009-05-12 21:31:51 +0000552 isStartOfFunctionDefinition()) {
Steve Naroffe39bfd02008-02-14 02:58:32 +0000553 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
554 Diag(Tok, diag::err_function_declared_typedef);
Mike Stumpa6f01772008-06-19 19:28:49 +0000555
Steve Naroffe39bfd02008-02-14 02:58:32 +0000556 if (Tok.is(tok::l_brace)) {
557 // This recovery skips the entire function body. It would be nice
Douglas Gregor72c3f312008-12-05 18:15:24 +0000558 // to simply call ParseFunctionDefinition() below, however Sema
Steve Naroffe39bfd02008-02-14 02:58:32 +0000559 // assumes the declarator represents a function, not a typedef.
560 ConsumeBrace();
561 SkipUntil(tok::r_brace, true);
562 } else {
563 SkipUntil(tok::semi);
564 }
Chris Lattner682bf922009-03-29 16:50:03 +0000565 return DeclGroupPtrTy();
Steve Naroffe39bfd02008-02-14 02:58:32 +0000566 }
Chris Lattner682bf922009-03-29 16:50:03 +0000567 DeclPtrTy TheDecl = ParseFunctionDefinition(DeclaratorInfo);
568 return Actions.ConvertDeclToDeclGroup(TheDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +0000569 }
Chris Lattner682bf922009-03-29 16:50:03 +0000570
571 if (DeclaratorInfo.isFunctionDeclarator())
572 Diag(Tok, diag::err_expected_fn_body);
573 else
574 Diag(Tok, diag::err_invalid_token_after_toplevel_declarator);
575 SkipUntil(tok::semi);
576 return DeclGroupPtrTy();
Reid Spencer5f016e22007-07-11 17:01:13 +0000577}
578
579/// ParseFunctionDefinition - We parsed and verified that the specified
580/// Declarator is well formed. If this is a K&R-style function, read the
581/// parameters declaration-list, then start the compound-statement.
582///
Chris Lattnera798ebc2008-04-05 05:52:15 +0000583/// function-definition: [C99 6.9.1]
584/// decl-specs declarator declaration-list[opt] compound-statement
585/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpa6f01772008-06-19 19:28:49 +0000586/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregor7ad83902008-11-05 04:29:56 +0000587/// [C++] function-definition: [C++ 8.4]
Chris Lattner23c4b182009-03-29 17:18:04 +0000588/// decl-specifier-seq[opt] declarator ctor-initializer[opt]
589/// function-body
Douglas Gregor7ad83902008-11-05 04:29:56 +0000590/// [C++] function-definition: [C++ 8.4]
Sebastian Redld3a413d2009-04-26 20:35:05 +0000591/// decl-specifier-seq[opt] declarator function-try-block
Reid Spencer5f016e22007-07-11 17:01:13 +0000592///
Chris Lattnerb28317a2009-03-28 19:18:32 +0000593Parser::DeclPtrTy Parser::ParseFunctionDefinition(Declarator &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000594 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
595 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
596 "This isn't a function declarator!");
597 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stumpa6f01772008-06-19 19:28:49 +0000598
Chris Lattnera798ebc2008-04-05 05:52:15 +0000599 // If this is C90 and the declspecs were completely missing, fudge in an
600 // implicit int. We do this here because this is the only place where
601 // declaration-specifiers are completely optional in the grammar.
Chris Lattner2a327d12009-02-27 18:35:46 +0000602 if (getLang().ImplicitInt && D.getDeclSpec().isEmpty()) {
Chris Lattnera798ebc2008-04-05 05:52:15 +0000603 const char *PrevSpec;
Chris Lattner31c28682008-10-20 02:01:34 +0000604 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
605 D.getIdentifierLoc(),
606 PrevSpec);
Sebastian Redlab197ba2009-02-09 18:23:29 +0000607 D.SetRangeBegin(D.getDeclSpec().getSourceRange().getBegin());
Chris Lattnera798ebc2008-04-05 05:52:15 +0000608 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000609
Reid Spencer5f016e22007-07-11 17:01:13 +0000610 // If this declaration was formed with a K&R-style identifier list for the
611 // arguments, parse declarations for all of the args next.
612 // int foo(a,b) int a; float b; {}
613 if (!FTI.hasPrototype && FTI.NumArgs != 0)
614 ParseKNRParamDeclarations(D);
615
Douglas Gregor7ad83902008-11-05 04:29:56 +0000616 // We should have either an opening brace or, in a C++ constructor,
617 // we may have a colon.
Sebastian Redld3a413d2009-04-26 20:35:05 +0000618 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon) &&
619 Tok.isNot(tok::kw_try)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000620 Diag(Tok, diag::err_expected_fn_body);
621
622 // Skip over garbage, until we get to '{'. Don't eat the '{'.
623 SkipUntil(tok::l_brace, true, true);
Mike Stumpa6f01772008-06-19 19:28:49 +0000624
Reid Spencer5f016e22007-07-11 17:01:13 +0000625 // If we didn't find the '{', bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000626 if (Tok.isNot(tok::l_brace))
Chris Lattnerb28317a2009-03-28 19:18:32 +0000627 return DeclPtrTy();
Reid Spencer5f016e22007-07-11 17:01:13 +0000628 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000629
Chris Lattnerb652cea2007-10-09 17:14:05 +0000630 // Enter a scope for the function body.
Douglas Gregor8935b8b2008-12-10 06:34:36 +0000631 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
Mike Stumpa6f01772008-06-19 19:28:49 +0000632
Chris Lattnerb652cea2007-10-09 17:14:05 +0000633 // Tell the actions module that we have entered a function definition with the
634 // specified Declarator for the function.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000635 DeclPtrTy Res = Actions.ActOnStartOfFunctionDef(CurScope, D);
Mike Stumpa6f01772008-06-19 19:28:49 +0000636
Sebastian Redld3a413d2009-04-26 20:35:05 +0000637 if (Tok.is(tok::kw_try))
638 return ParseFunctionTryBlock(Res);
639
Douglas Gregor7ad83902008-11-05 04:29:56 +0000640 // If we have a colon, then we're probably parsing a C++
641 // ctor-initializer.
642 if (Tok.is(tok::colon))
643 ParseConstructorInitializer(Res);
644
Chris Lattner40e9bc82009-03-05 00:49:17 +0000645 return ParseFunctionStatementBody(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000646}
647
648/// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
649/// types for a function with a K&R-style identifier list for arguments.
650void Parser::ParseKNRParamDeclarations(Declarator &D) {
651 // We know that the top-level of this declarator is a function.
652 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
653
Chris Lattner04421082008-04-08 04:40:51 +0000654 // Enter function-declaration scope, limiting any declarators to the
655 // function prototype scope, including parameter declarators.
Douglas Gregor3218c4b2009-01-09 22:42:13 +0000656 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope|Scope::DeclScope);
Chris Lattner04421082008-04-08 04:40:51 +0000657
Reid Spencer5f016e22007-07-11 17:01:13 +0000658 // Read all the argument declarations.
659 while (isDeclarationSpecifier()) {
660 SourceLocation DSStart = Tok.getLocation();
Mike Stumpa6f01772008-06-19 19:28:49 +0000661
Reid Spencer5f016e22007-07-11 17:01:13 +0000662 // Parse the common declaration-specifiers piece.
663 DeclSpec DS;
664 ParseDeclarationSpecifiers(DS);
Mike Stumpa6f01772008-06-19 19:28:49 +0000665
Reid Spencer5f016e22007-07-11 17:01:13 +0000666 // C99 6.9.1p6: 'each declaration in the declaration list shall have at
667 // least one declarator'.
668 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with
669 // the declarations though. It's trivial to ignore them, really hard to do
670 // anything else with them.
Chris Lattner00073222007-10-09 17:23:58 +0000671 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000672 Diag(DSStart, diag::err_declaration_does_not_declare_param);
673 ConsumeToken();
674 continue;
675 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000676
Reid Spencer5f016e22007-07-11 17:01:13 +0000677 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
678 // than register.
679 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
680 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
681 Diag(DS.getStorageClassSpecLoc(),
682 diag::err_invalid_storage_class_in_func_decl);
683 DS.ClearStorageClassSpecs();
684 }
685 if (DS.isThreadSpecified()) {
686 Diag(DS.getThreadSpecLoc(),
687 diag::err_invalid_storage_class_in_func_decl);
688 DS.ClearStorageClassSpecs();
689 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000690
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 // Parse the first declarator attached to this declspec.
692 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
693 ParseDeclarator(ParmDeclarator);
694
695 // Handle the full declarator list.
696 while (1) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000697 Action::AttrTy *AttrList;
Reid Spencer5f016e22007-07-11 17:01:13 +0000698 // If attributes are present, parse them.
Chris Lattner00073222007-10-09 17:23:58 +0000699 if (Tok.is(tok::kw___attribute))
Reid Spencer5f016e22007-07-11 17:01:13 +0000700 // FIXME: attach attributes too.
701 AttrList = ParseAttributes();
Mike Stumpa6f01772008-06-19 19:28:49 +0000702
Reid Spencer5f016e22007-07-11 17:01:13 +0000703 // Ask the actions module to compute the type for this declarator.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000704 Action::DeclPtrTy Param =
Chris Lattner04421082008-04-08 04:40:51 +0000705 Actions.ActOnParamDeclarator(CurScope, ParmDeclarator);
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000706
Mike Stumpa6f01772008-06-19 19:28:49 +0000707 if (Param &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000708 // A missing identifier has already been diagnosed.
709 ParmDeclarator.getIdentifier()) {
710
711 // Scan the argument list looking for the correct param to apply this
712 // type.
713 for (unsigned i = 0; ; ++i) {
714 // C99 6.9.1p6: those declarators shall declare only identifiers from
715 // the identifier list.
716 if (i == FTI.NumArgs) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000717 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattner6898e332008-11-19 07:51:13 +0000718 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 break;
720 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000721
Reid Spencer5f016e22007-07-11 17:01:13 +0000722 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
723 // Reject redefinitions of parameters.
Chris Lattner04421082008-04-08 04:40:51 +0000724 if (FTI.ArgInfo[i].Param) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000725 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattner1ab3b962008-11-18 07:48:38 +0000726 diag::err_param_redefinition)
Chris Lattner6898e332008-11-19 07:51:13 +0000727 << ParmDeclarator.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 } else {
Chris Lattner04421082008-04-08 04:40:51 +0000729 FTI.ArgInfo[i].Param = Param;
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 }
731 break;
732 }
733 }
734 }
735
736 // If we don't have a comma, it is either the end of the list (a ';') or
737 // an error, bail out.
Chris Lattner00073222007-10-09 17:23:58 +0000738 if (Tok.isNot(tok::comma))
Reid Spencer5f016e22007-07-11 17:01:13 +0000739 break;
Mike Stumpa6f01772008-06-19 19:28:49 +0000740
Reid Spencer5f016e22007-07-11 17:01:13 +0000741 // Consume the comma.
742 ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000743
Reid Spencer5f016e22007-07-11 17:01:13 +0000744 // Parse the next declarator.
745 ParmDeclarator.clear();
746 ParseDeclarator(ParmDeclarator);
747 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000748
Chris Lattner00073222007-10-09 17:23:58 +0000749 if (Tok.is(tok::semi)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000750 ConsumeToken();
751 } else {
752 Diag(Tok, diag::err_parse_error);
753 // Skip to end of block or statement
754 SkipUntil(tok::semi, true);
Chris Lattner00073222007-10-09 17:23:58 +0000755 if (Tok.is(tok::semi))
Reid Spencer5f016e22007-07-11 17:01:13 +0000756 ConsumeToken();
757 }
758 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000759
Reid Spencer5f016e22007-07-11 17:01:13 +0000760 // The actions module must verify that all arguments were declared.
Douglas Gregora3a83512009-04-01 23:51:29 +0000761 Actions.ActOnFinishKNRParamDeclarations(CurScope, D, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000762}
763
764
765/// ParseAsmStringLiteral - This is just a normal string-literal, but is not
766/// allowed to be a wide string, and is not subject to character translation.
767///
768/// [GNU] asm-string-literal:
769/// string-literal
770///
Sebastian Redleffa8d12008-12-10 00:02:53 +0000771Parser::OwningExprResult Parser::ParseAsmStringLiteral() {
Reid Spencer5f016e22007-07-11 17:01:13 +0000772 if (!isTokenStringLiteral()) {
773 Diag(Tok, diag::err_expected_string_literal);
Sebastian Redl61364dd2008-12-11 19:30:53 +0000774 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000775 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000776
Sebastian Redl20df9b72008-12-11 22:51:44 +0000777 OwningExprResult Res(ParseStringLiteralExpression());
Sebastian Redleffa8d12008-12-10 00:02:53 +0000778 if (Res.isInvalid()) return move(Res);
Mike Stumpa6f01772008-06-19 19:28:49 +0000779
Reid Spencer5f016e22007-07-11 17:01:13 +0000780 // TODO: Diagnose: wide string literal in 'asm'
Mike Stumpa6f01772008-06-19 19:28:49 +0000781
Sebastian Redleffa8d12008-12-10 00:02:53 +0000782 return move(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +0000783}
784
785/// ParseSimpleAsm
786///
787/// [GNU] simple-asm-expr:
788/// 'asm' '(' asm-string-literal ')'
789///
Sebastian Redlab197ba2009-02-09 18:23:29 +0000790Parser::OwningExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
Chris Lattner00073222007-10-09 17:23:58 +0000791 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000792 SourceLocation Loc = ConsumeToken();
Mike Stumpa6f01772008-06-19 19:28:49 +0000793
Chris Lattner00073222007-10-09 17:23:58 +0000794 if (Tok.isNot(tok::l_paren)) {
Chris Lattner1ab3b962008-11-18 07:48:38 +0000795 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Sebastian Redl61364dd2008-12-11 19:30:53 +0000796 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000797 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000798
Sebastian Redlab197ba2009-02-09 18:23:29 +0000799 Loc = ConsumeParen();
Mike Stumpa6f01772008-06-19 19:28:49 +0000800
Sebastian Redleffa8d12008-12-10 00:02:53 +0000801 OwningExprResult Result(ParseAsmStringLiteral());
Mike Stumpa6f01772008-06-19 19:28:49 +0000802
Sebastian Redlab197ba2009-02-09 18:23:29 +0000803 if (Result.isInvalid()) {
804 SkipUntil(tok::r_paren, true, true);
805 if (EndLoc)
806 *EndLoc = Tok.getLocation();
807 ConsumeAnyToken();
808 } else {
809 Loc = MatchRHSPunctuation(tok::r_paren, Loc);
810 if (EndLoc)
811 *EndLoc = Loc;
812 }
Mike Stumpa6f01772008-06-19 19:28:49 +0000813
Sebastian Redleffa8d12008-12-10 00:02:53 +0000814 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +0000815}
816
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000817/// TryAnnotateTypeOrScopeToken - If the current token position is on a
818/// typename (possibly qualified in C++) or a C++ scope specifier not followed
819/// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
820/// with a single annotation token representing the typename or C++ scope
821/// respectively.
822/// This simplifies handling of C++ scope specifiers and allows efficient
823/// backtracking without the need to re-parse and resolve nested-names and
824/// typenames.
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000825/// It will mainly be called when we expect to treat identifiers as typenames
826/// (if they are typenames). For example, in C we do not expect identifiers
827/// inside expressions to be treated as typenames so it will not be called
828/// for expressions in C.
829/// The benefit for C/ObjC is that a typename will be annotated and
Steve Naroffb43a50f2009-01-28 19:39:02 +0000830/// Actions.getTypeName will not be needed to be called again (e.g. getTypeName
Argyrios Kyrtzidis44802cc2008-11-26 21:51:07 +0000831/// will not be called twice, once to check whether we have a declaration
832/// specifier, and another one to get the actual type inside
833/// ParseDeclarationSpecifiers).
Chris Lattnera7bc7c82009-01-04 23:23:14 +0000834///
835/// This returns true if the token was annotated.
Chris Lattner55a7cef2009-01-05 00:13:00 +0000836///
837/// Note that this routine emits an error if you call it with ::new or ::delete
838/// as the current tokens, so only call it in contexts where these are invalid.
Chris Lattner5b454732009-01-05 03:55:46 +0000839bool Parser::TryAnnotateTypeOrScopeToken() {
Douglas Gregord57959a2009-03-27 23:10:48 +0000840 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)
841 || Tok.is(tok::kw_typename)) &&
Chris Lattner7452c6f2009-01-05 01:24:05 +0000842 "Cannot be a type or scope token!");
843
Douglas Gregord57959a2009-03-27 23:10:48 +0000844 if (Tok.is(tok::kw_typename)) {
845 // Parse a C++ typename-specifier, e.g., "typename T::type".
846 //
847 // typename-specifier:
848 // 'typename' '::' [opt] nested-name-specifier identifier
849 // 'typename' '::' [opt] nested-name-specifier template [opt]
Douglas Gregor17343172009-04-01 00:28:59 +0000850 // simple-template-id
Douglas Gregord57959a2009-03-27 23:10:48 +0000851 SourceLocation TypenameLoc = ConsumeToken();
852 CXXScopeSpec SS;
853 bool HadNestedNameSpecifier = ParseOptionalCXXScopeSpecifier(SS);
854 if (!HadNestedNameSpecifier) {
855 Diag(Tok.getLocation(), diag::err_expected_qualified_after_typename);
856 return false;
857 }
858
859 TypeResult Ty;
860 if (Tok.is(tok::identifier)) {
861 // FIXME: check whether the next token is '<', first!
862 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, *Tok.getIdentifierInfo(),
863 Tok.getLocation());
Douglas Gregor17343172009-04-01 00:28:59 +0000864 } else if (Tok.is(tok::annot_template_id)) {
865 TemplateIdAnnotation *TemplateId
866 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
867 if (TemplateId->Kind == TNK_Function_template) {
868 Diag(Tok, diag::err_typename_refers_to_non_type_template)
869 << Tok.getAnnotationRange();
870 return false;
871 }
Douglas Gregord57959a2009-03-27 23:10:48 +0000872
Douglas Gregor31a19b62009-04-01 21:51:26 +0000873 AnnotateTemplateIdTokenAsType(0);
Douglas Gregor17343172009-04-01 00:28:59 +0000874 assert(Tok.is(tok::annot_typename) &&
875 "AnnotateTemplateIdTokenAsType isn't working properly");
Douglas Gregor31a19b62009-04-01 21:51:26 +0000876 if (Tok.getAnnotationValue())
877 Ty = Actions.ActOnTypenameType(TypenameLoc, SS, SourceLocation(),
878 Tok.getAnnotationValue());
879 else
880 Ty = true;
Douglas Gregor17343172009-04-01 00:28:59 +0000881 } else {
882 Diag(Tok, diag::err_expected_type_name_after_typename)
883 << SS.getRange();
884 return false;
885 }
886
Douglas Gregor17343172009-04-01 00:28:59 +0000887 Tok.setKind(tok::annot_typename);
Douglas Gregor31a19b62009-04-01 21:51:26 +0000888 Tok.setAnnotationValue(Ty.isInvalid()? 0 : Ty.get());
Douglas Gregor17343172009-04-01 00:28:59 +0000889 Tok.setAnnotationEndLoc(Tok.getLocation());
890 Tok.setLocation(TypenameLoc);
891 PP.AnnotateCachedTokens(Tok);
892 return true;
Douglas Gregord57959a2009-03-27 23:10:48 +0000893 }
894
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000895 CXXScopeSpec SS;
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000896 if (getLang().CPlusPlus)
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000897 ParseOptionalCXXScopeSpecifier(SS);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000898
899 if (Tok.is(tok::identifier)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000900 // Determine whether the identifier is a type name.
Steve Naroffb43a50f2009-01-28 19:39:02 +0000901 if (TypeTy *Ty = Actions.getTypeName(*Tok.getIdentifierInfo(),
Douglas Gregorb696ea32009-02-04 17:00:24 +0000902 Tok.getLocation(), CurScope, &SS)) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000903 // This is a typename. Replace the current token in-place with an
904 // annotation type token.
Chris Lattnerb31757b2009-01-06 05:06:21 +0000905 Tok.setKind(tok::annot_typename);
Chris Lattner608d1fc2009-01-05 01:49:50 +0000906 Tok.setAnnotationValue(Ty);
907 Tok.setAnnotationEndLoc(Tok.getLocation());
908 if (SS.isNotEmpty()) // it was a C++ qualified type name.
909 Tok.setLocation(SS.getBeginLoc());
910
911 // In case the tokens were cached, have Preprocessor replace
912 // them with the annotation token.
913 PP.AnnotateCachedTokens(Tok);
914 return true;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000915 }
916
917 if (!getLang().CPlusPlus) {
Chris Lattner608d1fc2009-01-05 01:49:50 +0000918 // If we're in C, we can't have :: tokens at all (the lexer won't return
919 // them). If the identifier is not a type, then it can't be scope either,
920 // just early exit.
921 return false;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000922 }
Chris Lattner608d1fc2009-01-05 01:49:50 +0000923
Douglas Gregor39a8de12009-02-25 19:37:18 +0000924 // If this is a template-id, annotate with a template-id or type token.
Douglas Gregor55f6b142009-02-09 18:46:07 +0000925 if (NextToken().is(tok::less)) {
Douglas Gregor7532dc62009-03-30 22:58:21 +0000926 TemplateTy Template;
Douglas Gregor55f6b142009-02-09 18:46:07 +0000927 if (TemplateNameKind TNK
928 = Actions.isTemplateName(*Tok.getIdentifierInfo(),
Douglas Gregor39a8de12009-02-25 19:37:18 +0000929 CurScope, Template, &SS))
Douglas Gregor55f6b142009-02-09 18:46:07 +0000930 AnnotateTemplateIdToken(Template, TNK, &SS);
Douglas Gregor55f6b142009-02-09 18:46:07 +0000931 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000932
Douglas Gregor39a8de12009-02-25 19:37:18 +0000933 // The current token, which is either an identifier or a
934 // template-id, is not part of the annotation. Fall through to
935 // push that token back into the stream and complete the C++ scope
936 // specifier annotation.
Douglas Gregord57959a2009-03-27 23:10:48 +0000937 }
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000938
Douglas Gregor39a8de12009-02-25 19:37:18 +0000939 if (Tok.is(tok::annot_template_id)) {
940 TemplateIdAnnotation *TemplateId
941 = static_cast<TemplateIdAnnotation *>(Tok.getAnnotationValue());
Douglas Gregorc45c2322009-03-31 00:43:58 +0000942 if (TemplateId->Kind == TNK_Type_template) {
Douglas Gregor39a8de12009-02-25 19:37:18 +0000943 // A template-id that refers to a type was parsed into a
944 // template-id annotation in a context where we weren't allowed
945 // to produce a type annotation token. Update the template-id
946 // annotation token to a type annotation token now.
Douglas Gregor31a19b62009-04-01 21:51:26 +0000947 AnnotateTemplateIdTokenAsType(&SS);
948 return true;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000949 }
950 }
Douglas Gregord6fb7ef2008-12-18 19:37:40 +0000951
Chris Lattner6ec76d42009-01-04 22:32:19 +0000952 if (SS.isEmpty())
Chris Lattnera7bc7c82009-01-04 23:23:14 +0000953 return false;
Chris Lattner6ec76d42009-01-04 22:32:19 +0000954
955 // A C++ scope specifier that isn't followed by a typename.
956 // Push the current token back into the token stream (or revert it if it is
957 // cached) and use an annotation scope token for current token.
958 if (PP.isBacktrackEnabled())
959 PP.RevertCachedTokens(1);
960 else
961 PP.EnterToken(Tok);
962 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +0000963 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +0000964 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000965
Chris Lattner6ec76d42009-01-04 22:32:19 +0000966 // In case the tokens were cached, have Preprocessor replace them with the
967 // annotation token.
968 PP.AnnotateCachedTokens(Tok);
Chris Lattnera7bc7c82009-01-04 23:23:14 +0000969 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000970}
971
972/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
Douglas Gregor39a8de12009-02-25 19:37:18 +0000973/// annotates C++ scope specifiers and template-ids. This returns
974/// true if the token was annotated.
Chris Lattner55a7cef2009-01-05 00:13:00 +0000975///
976/// Note that this routine emits an error if you call it with ::new or ::delete
977/// as the current tokens, so only call it in contexts where these are invalid.
Chris Lattner5e02c472009-01-05 00:07:25 +0000978bool Parser::TryAnnotateCXXScopeToken() {
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000979 assert(getLang().CPlusPlus &&
Chris Lattner6ec76d42009-01-04 22:32:19 +0000980 "Call sites of this function should be guarded by checking for C++");
Chris Lattner7452c6f2009-01-05 01:24:05 +0000981 assert((Tok.is(tok::identifier) || Tok.is(tok::coloncolon)) &&
982 "Cannot be a type or scope token!");
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000983
Argyrios Kyrtzidis4bdd91c2008-11-26 21:41:52 +0000984 CXXScopeSpec SS;
Chris Lattner7a0ab5f2009-01-06 06:59:53 +0000985 if (!ParseOptionalCXXScopeSpecifier(SS))
Douglas Gregor39a8de12009-02-25 19:37:18 +0000986 return Tok.is(tok::annot_template_id);
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000987
Chris Lattner6ec76d42009-01-04 22:32:19 +0000988 // Push the current token back into the token stream (or revert it if it is
989 // cached) and use an annotation scope token for current token.
990 if (PP.isBacktrackEnabled())
991 PP.RevertCachedTokens(1);
992 else
993 PP.EnterToken(Tok);
994 Tok.setKind(tok::annot_cxxscope);
Douglas Gregor35073692009-03-26 23:56:24 +0000995 Tok.setAnnotationValue(SS.getScopeRep());
Chris Lattner6ec76d42009-01-04 22:32:19 +0000996 Tok.setAnnotationRange(SS.getRange());
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +0000997
Chris Lattner6ec76d42009-01-04 22:32:19 +0000998 // In case the tokens were cached, have Preprocessor replace them with the
999 // annotation token.
1000 PP.AnnotateCachedTokens(Tok);
Chris Lattner5e02c472009-01-05 00:07:25 +00001001 return true;
Argyrios Kyrtzidiseb83ecd2008-11-08 16:45:02 +00001002}