blob: 42d95e7f02e8d545420a33bd79ee5f33d21b924b [file] [log] [blame]
Chris Lattnereb8a28f2006-08-10 18:43:39 +00001//===--- Parser.cpp - C Language Family Parser ----------------------------===//
Chris Lattner0bb5f832006-07-31 01:59:18 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner0bb5f832006-07-31 01:59:18 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Daniel Dunbarc74b5cc2008-08-11 03:45:03 +000015#include "clang/Basic/Diagnostic.h"
Chris Lattner288e86ff12006-11-11 23:03:42 +000016#include "clang/Parse/DeclSpec.h"
Chris Lattner971c6b62006-08-05 22:46:42 +000017#include "clang/Parse/Scope.h"
Chris Lattnerf02ef3e2008-10-20 06:45:43 +000018#include "ExtensionRAIIObject.h"
Daniel Dunbar921b9682008-10-04 19:21:03 +000019#include "ParsePragma.h"
Chris Lattner0bb5f832006-07-31 01:59:18 +000020using namespace clang;
21
Chris Lattner697e5d62006-11-09 06:32:27 +000022Parser::Parser(Preprocessor &pp, Action &actions)
23 : PP(pp), Actions(actions), Diags(PP.getDiagnostics()) {
Chris Lattner8c204872006-10-14 05:19:21 +000024 Tok.setKind(tok::eof);
Chris Lattnere4e38592006-08-14 00:15:05 +000025 CurScope = 0;
Chris Lattner03928c72007-07-15 00:04:39 +000026 NumCachedScopes = 0;
Chris Lattnereec40f92006-08-06 21:55:29 +000027 ParenCount = BracketCount = BraceCount = 0;
Ted Kremenek1b0ea822008-01-07 19:49:32 +000028 ObjCImpDecl = 0;
Daniel Dunbar921b9682008-10-04 19:21:03 +000029
30 // Add #pragma handlers. These are removed and destroyed in the
31 // destructor.
32 PackHandler =
33 new PragmaPackHandler(&PP.getIdentifierTable().get("pack"), actions);
34 PP.AddPragmaHandler(0, PackHandler);
35
Argyrios Kyrtzidis7bbb20e2008-06-24 22:12:16 +000036 // Instantiate a LexedMethodsForTopClass for all the non-nested classes.
37 PushTopClassStack();
Chris Lattner971c6b62006-08-05 22:46:42 +000038}
39
Chris Lattner685ed1e2006-08-14 00:22:04 +000040/// Out-of-line virtual destructor to provide home for Action class.
41Action::~Action() {}
Chris Lattnere4e38592006-08-14 00:15:05 +000042
Chris Lattner0bb5f832006-07-31 01:59:18 +000043
Chris Lattner427c9c12008-11-22 00:59:29 +000044DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
Chris Lattner6d29c102008-11-18 07:48:38 +000045 return Diags.Report(FullSourceLoc(Loc,PP.getSourceManager()), DiagID);
46}
47
Chris Lattner427c9c12008-11-22 00:59:29 +000048DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
Chris Lattner6d29c102008-11-18 07:48:38 +000049 return Diag(Tok.getLocation(), DiagID);
Chris Lattner0bb5f832006-07-31 01:59:18 +000050}
51
Chris Lattner4564bc12006-08-10 23:14:52 +000052/// MatchRHSPunctuation - For punctuation with a LHS and RHS (e.g. '['/']'),
53/// this helper function matches and consumes the specified RHS token if
54/// present. If not present, it emits the specified diagnostic indicating
55/// that the parser failed to match the RHS of the token at LHSLoc. LHSName
56/// should be the name of the unmatched LHS token.
Chris Lattner71e23ce2006-11-04 20:18:38 +000057SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok,
58 SourceLocation LHSLoc) {
Mike Stump01e07652008-06-19 19:28:49 +000059
Chris Lattner0ab032a2007-10-09 17:23:58 +000060 if (Tok.is(RHSTok))
Chris Lattner71e23ce2006-11-04 20:18:38 +000061 return ConsumeAnyToken();
Mike Stump01e07652008-06-19 19:28:49 +000062
Chris Lattner71e23ce2006-11-04 20:18:38 +000063 SourceLocation R = Tok.getLocation();
64 const char *LHSName = "unknown";
65 diag::kind DID = diag::err_parse_error;
66 switch (RHSTok) {
67 default: break;
68 case tok::r_paren : LHSName = "("; DID = diag::err_expected_rparen; break;
69 case tok::r_brace : LHSName = "{"; DID = diag::err_expected_rbrace; break;
70 case tok::r_square: LHSName = "["; DID = diag::err_expected_rsquare; break;
Chris Lattner29375652006-12-04 18:06:35 +000071 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break;
Chris Lattner4564bc12006-08-10 23:14:52 +000072 }
Chris Lattner71e23ce2006-11-04 20:18:38 +000073 Diag(Tok, DID);
Chris Lattner03c40412008-11-23 23:17:07 +000074 Diag(LHSLoc, diag::note_matching) << LHSName;
Chris Lattner71e23ce2006-11-04 20:18:38 +000075 SkipUntil(RHSTok);
76 return R;
Chris Lattner4564bc12006-08-10 23:14:52 +000077}
78
Chris Lattnerdbb2a462006-08-12 19:26:13 +000079/// ExpectAndConsume - The parser expects that 'ExpectedTok' is next in the
80/// input. If so, it is consumed and false is returned.
81///
82/// If the input is malformed, this emits the specified diagnostic. Next, if
83/// SkipToTok is specified, it calls SkipUntil(SkipToTok). Finally, true is
84/// returned.
85bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
Chris Lattner6d7e6342006-08-15 03:41:14 +000086 const char *Msg, tok::TokenKind SkipToTok) {
Chris Lattner0ab032a2007-10-09 17:23:58 +000087 if (Tok.is(ExpectedTok)) {
Chris Lattner15a00da2006-08-15 04:10:31 +000088 ConsumeAnyToken();
Chris Lattnerdbb2a462006-08-12 19:26:13 +000089 return false;
90 }
Mike Stump01e07652008-06-19 19:28:49 +000091
Chris Lattner6d29c102008-11-18 07:48:38 +000092 Diag(Tok, DiagID) << Msg;
Chris Lattnerdbb2a462006-08-12 19:26:13 +000093 if (SkipToTok != tok::unknown)
94 SkipUntil(SkipToTok);
95 return true;
96}
97
Chris Lattner70f32b72006-07-31 05:09:04 +000098//===----------------------------------------------------------------------===//
Chris Lattnereec40f92006-08-06 21:55:29 +000099// Error recovery.
100//===----------------------------------------------------------------------===//
101
102/// SkipUntil - Read tokens until we get to the specified token, then consume
Chris Lattner01e4b242007-07-24 17:03:04 +0000103/// it (unless DontConsume is true). Because we cannot guarantee that the
Chris Lattnereec40f92006-08-06 21:55:29 +0000104/// token will ever occur, this skips to the next token, or to some likely
105/// good stopping point. If StopAtSemi is true, skipping will stop at a ';'
106/// character.
Mike Stump01e07652008-06-19 19:28:49 +0000107///
Chris Lattnereec40f92006-08-06 21:55:29 +0000108/// If SkipUntil finds the specified token, it returns true, otherwise it
Mike Stump01e07652008-06-19 19:28:49 +0000109/// returns false.
Chris Lattner83b94e02007-04-27 19:12:15 +0000110bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks,
111 bool StopAtSemi, bool DontConsume) {
Chris Lattner5bd57e02006-08-11 06:40:25 +0000112 // We always want this function to skip at least one token if the first token
113 // isn't T and if not at EOF.
114 bool isFirstTokenSkipped = true;
Chris Lattnereec40f92006-08-06 21:55:29 +0000115 while (1) {
Chris Lattner83b94e02007-04-27 19:12:15 +0000116 // If we found one of the tokens, stop and return true.
117 for (unsigned i = 0; i != NumToks; ++i) {
Chris Lattner0ab032a2007-10-09 17:23:58 +0000118 if (Tok.is(Toks[i])) {
Chris Lattner83b94e02007-04-27 19:12:15 +0000119 if (DontConsume) {
120 // Noop, don't consume the token.
121 } else {
122 ConsumeAnyToken();
123 }
124 return true;
Chris Lattnereec40f92006-08-06 21:55:29 +0000125 }
Chris Lattnereec40f92006-08-06 21:55:29 +0000126 }
Mike Stump01e07652008-06-19 19:28:49 +0000127
Chris Lattnereec40f92006-08-06 21:55:29 +0000128 switch (Tok.getKind()) {
129 case tok::eof:
130 // Ran out of tokens.
131 return false;
Mike Stump01e07652008-06-19 19:28:49 +0000132
Chris Lattnereec40f92006-08-06 21:55:29 +0000133 case tok::l_paren:
134 // Recursively skip properly-nested parens.
135 ConsumeParen();
Chris Lattner5bd57e02006-08-11 06:40:25 +0000136 SkipUntil(tok::r_paren, false);
Chris Lattnereec40f92006-08-06 21:55:29 +0000137 break;
138 case tok::l_square:
139 // Recursively skip properly-nested square brackets.
140 ConsumeBracket();
Chris Lattner5bd57e02006-08-11 06:40:25 +0000141 SkipUntil(tok::r_square, false);
Chris Lattnereec40f92006-08-06 21:55:29 +0000142 break;
143 case tok::l_brace:
144 // Recursively skip properly-nested braces.
145 ConsumeBrace();
Chris Lattner5bd57e02006-08-11 06:40:25 +0000146 SkipUntil(tok::r_brace, false);
Chris Lattnereec40f92006-08-06 21:55:29 +0000147 break;
Mike Stump01e07652008-06-19 19:28:49 +0000148
Chris Lattnereec40f92006-08-06 21:55:29 +0000149 // Okay, we found a ']' or '}' or ')', which we think should be balanced.
150 // Since the user wasn't looking for this token (if they were, it would
151 // already be handled), this isn't balanced. If there is a LHS token at a
152 // higher level, we will assume that this matches the unbalanced token
153 // and return it. Otherwise, this is a spurious RHS token, which we skip.
154 case tok::r_paren:
Chris Lattner5bd57e02006-08-11 06:40:25 +0000155 if (ParenCount && !isFirstTokenSkipped)
156 return false; // Matches something.
Chris Lattnereec40f92006-08-06 21:55:29 +0000157 ConsumeParen();
158 break;
159 case tok::r_square:
Chris Lattner5bd57e02006-08-11 06:40:25 +0000160 if (BracketCount && !isFirstTokenSkipped)
161 return false; // Matches something.
Chris Lattnereec40f92006-08-06 21:55:29 +0000162 ConsumeBracket();
163 break;
164 case tok::r_brace:
Chris Lattner5bd57e02006-08-11 06:40:25 +0000165 if (BraceCount && !isFirstTokenSkipped)
166 return false; // Matches something.
Chris Lattnereec40f92006-08-06 21:55:29 +0000167 ConsumeBrace();
168 break;
Mike Stump01e07652008-06-19 19:28:49 +0000169
Chris Lattnereec40f92006-08-06 21:55:29 +0000170 case tok::string_literal:
Chris Lattnerd3e98952006-10-06 05:22:26 +0000171 case tok::wide_string_literal:
Chris Lattnereec40f92006-08-06 21:55:29 +0000172 ConsumeStringToken();
173 break;
174 case tok::semi:
175 if (StopAtSemi)
176 return false;
177 // FALL THROUGH.
178 default:
179 // Skip this token.
180 ConsumeToken();
181 break;
182 }
Chris Lattner5bd57e02006-08-11 06:40:25 +0000183 isFirstTokenSkipped = false;
Mike Stump01e07652008-06-19 19:28:49 +0000184 }
Chris Lattnereec40f92006-08-06 21:55:29 +0000185}
186
187//===----------------------------------------------------------------------===//
Chris Lattnere4e38592006-08-14 00:15:05 +0000188// Scope manipulation
189//===----------------------------------------------------------------------===//
190
191/// EnterScope - Start a new scope.
Chris Lattner33ad2ca2006-11-05 23:47:55 +0000192void Parser::EnterScope(unsigned ScopeFlags) {
Chris Lattner03928c72007-07-15 00:04:39 +0000193 if (NumCachedScopes) {
194 Scope *N = ScopeCache[--NumCachedScopes];
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000195 N->Init(CurScope, ScopeFlags);
196 CurScope = N;
197 } else {
198 CurScope = new Scope(CurScope, ScopeFlags);
199 }
Chris Lattnere4e38592006-08-14 00:15:05 +0000200}
201
202/// ExitScope - Pop a scope off the scope stack.
203void Parser::ExitScope() {
204 assert(CurScope && "Scope imbalance!");
205
Chris Lattner87547e62007-10-09 20:37:18 +0000206 // Inform the actions module that this scope is going away if there are any
207 // decls in it.
208 if (!CurScope->decl_empty())
Steve Naroffc62adb62007-10-09 22:01:59 +0000209 Actions.ActOnPopScope(Tok.getLocation(), CurScope);
Mike Stump01e07652008-06-19 19:28:49 +0000210
Chris Lattner03928c72007-07-15 00:04:39 +0000211 Scope *OldScope = CurScope;
212 CurScope = OldScope->getParent();
Mike Stump01e07652008-06-19 19:28:49 +0000213
Chris Lattner03928c72007-07-15 00:04:39 +0000214 if (NumCachedScopes == ScopeCacheSize)
215 delete OldScope;
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000216 else
Chris Lattner03928c72007-07-15 00:04:39 +0000217 ScopeCache[NumCachedScopes++] = OldScope;
Chris Lattnere4e38592006-08-14 00:15:05 +0000218}
219
220
221
222
223//===----------------------------------------------------------------------===//
Chris Lattner70f32b72006-07-31 05:09:04 +0000224// C99 6.9: External Definitions.
225//===----------------------------------------------------------------------===//
Chris Lattner0bb5f832006-07-31 01:59:18 +0000226
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000227Parser::~Parser() {
228 // If we still have scopes active, delete the scope tree.
229 delete CurScope;
Mike Stump01e07652008-06-19 19:28:49 +0000230
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000231 // Free the scope cache.
Chris Lattner03928c72007-07-15 00:04:39 +0000232 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
233 delete ScopeCache[i];
Daniel Dunbar921b9682008-10-04 19:21:03 +0000234
235 // Remove the pragma handlers we installed.
236 PP.RemovePragmaHandler(0, PackHandler);
237 delete PackHandler;
Chris Lattnerb6a0e172006-11-06 00:22:42 +0000238}
239
Chris Lattner38ba3362006-08-17 07:04:37 +0000240/// Initialize - Warm up the parser.
241///
242void Parser::Initialize() {
Chris Lattnere4e38592006-08-14 00:15:05 +0000243 // Prime the lexer look-ahead.
244 ConsumeToken();
Mike Stump01e07652008-06-19 19:28:49 +0000245
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000246 // Create the translation unit scope. Install it as the current scope.
Chris Lattnere4e38592006-08-14 00:15:05 +0000247 assert(CurScope == 0 && "A scope is already active?");
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000248 EnterScope(Scope::DeclScope);
Steve Naroffc62adb62007-10-09 22:01:59 +0000249 Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope);
Mike Stump01e07652008-06-19 19:28:49 +0000250
Chris Lattner0ab032a2007-10-09 17:23:58 +0000251 if (Tok.is(tok::eof) &&
Chris Lattner66b67ef2007-08-25 05:47:03 +0000252 !getLang().CPlusPlus) // Empty source file is an extension in C
Chris Lattnerbd638922006-11-10 05:19:25 +0000253 Diag(Tok, diag::ext_empty_source_file);
Mike Stump01e07652008-06-19 19:28:49 +0000254
Chris Lattner66782842007-08-29 22:54:08 +0000255 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000256 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner66782842007-08-29 22:54:08 +0000257 if (getLang().ObjC1) {
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000258 ObjCTypeQuals[objc_in] = &PP.getIdentifierTable().get("in");
259 ObjCTypeQuals[objc_out] = &PP.getIdentifierTable().get("out");
260 ObjCTypeQuals[objc_inout] = &PP.getIdentifierTable().get("inout");
261 ObjCTypeQuals[objc_oneway] = &PP.getIdentifierTable().get("oneway");
262 ObjCTypeQuals[objc_bycopy] = &PP.getIdentifierTable().get("bycopy");
263 ObjCTypeQuals[objc_byref] = &PP.getIdentifierTable().get("byref");
Chris Lattner66782842007-08-29 22:54:08 +0000264 }
Daniel Dunbar12c9ddc2008-08-14 22:04:54 +0000265
266 Ident_super = &PP.getIdentifierTable().get("super");
Chris Lattner38ba3362006-08-17 07:04:37 +0000267}
268
269/// ParseTopLevelDecl - Parse one top-level declaration, return whatever the
270/// action tells us to. This returns true if the EOF was encountered.
Steve Naroff205ec3d2007-11-29 23:05:20 +0000271bool Parser::ParseTopLevelDecl(DeclTy*& Result) {
272 Result = 0;
Chris Lattnerf4404402008-08-23 03:19:52 +0000273 if (Tok.is(tok::eof)) {
274 Actions.ActOnEndOfTranslationUnit();
275 return true;
276 }
Mike Stump01e07652008-06-19 19:28:49 +0000277
Steve Naroff205ec3d2007-11-29 23:05:20 +0000278 Result = ParseExternalDeclaration();
Chris Lattner38ba3362006-08-17 07:04:37 +0000279 return false;
280}
281
Chris Lattner38ba3362006-08-17 07:04:37 +0000282/// ParseTranslationUnit:
283/// translation-unit: [C99 6.9]
Mike Stump01e07652008-06-19 19:28:49 +0000284/// external-declaration
285/// translation-unit external-declaration
Chris Lattner38ba3362006-08-17 07:04:37 +0000286void Parser::ParseTranslationUnit() {
Chris Lattner9e8c0572008-08-23 02:06:50 +0000287 Initialize(); // pushes a scope.
Mike Stump01e07652008-06-19 19:28:49 +0000288
Steve Naroff205ec3d2007-11-29 23:05:20 +0000289 DeclTy *Res;
290 while (!ParseTopLevelDecl(Res))
Chris Lattner38ba3362006-08-17 07:04:37 +0000291 /*parse them all*/;
Chris Lattner2cc35ae2008-08-23 02:00:52 +0000292
293 ExitScope();
294 assert(CurScope == 0 && "Scope imbalance!");
Chris Lattner38ba3362006-08-17 07:04:37 +0000295}
296
Chris Lattner0bb5f832006-07-31 01:59:18 +0000297/// ParseExternalDeclaration:
Douglas Gregor15799fd2008-11-21 16:10:08 +0000298/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattnercccc3112007-08-10 20:57:02 +0000299/// function-definition
300/// declaration
Chris Lattner0bb5f832006-07-31 01:59:18 +0000301/// [EXT] ';'
Chris Lattner6d7e6342006-08-15 03:41:14 +0000302/// [GNU] asm-definition
Chris Lattnercccc3112007-08-10 20:57:02 +0000303/// [GNU] __extension__ external-declaration
Chris Lattner40f16b52006-11-05 02:05:37 +0000304/// [OBJC] objc-class-definition
305/// [OBJC] objc-class-declaration
306/// [OBJC] objc-alias-declaration
307/// [OBJC] objc-protocol-definition
308/// [OBJC] objc-method-definition
309/// [OBJC] @end
Douglas Gregor15799fd2008-11-21 16:10:08 +0000310/// [C++] linkage-specification
Chris Lattner6d7e6342006-08-15 03:41:14 +0000311/// [GNU] asm-definition:
312/// simple-asm-expr ';'
313///
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000314Parser::DeclTy *Parser::ParseExternalDeclaration() {
Chris Lattner0bb5f832006-07-31 01:59:18 +0000315 switch (Tok.getKind()) {
316 case tok::semi:
Chris Lattnerbd638922006-11-10 05:19:25 +0000317 Diag(Tok, diag::ext_top_level_semi);
Chris Lattner0bb5f832006-07-31 01:59:18 +0000318 ConsumeToken();
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000319 // TODO: Invoke action for top-level semicolon.
320 return 0;
Chris Lattnercccc3112007-08-10 20:57:02 +0000321 case tok::kw___extension__: {
Chris Lattnerf02ef3e2008-10-20 06:45:43 +0000322 // __extension__ silences extension warnings in the subexpression.
323 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner1ff6e732008-10-20 06:51:33 +0000324 ConsumeToken();
Chris Lattnerf02ef3e2008-10-20 06:45:43 +0000325 return ParseExternalDeclaration();
Chris Lattnercccc3112007-08-10 20:57:02 +0000326 }
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000327 case tok::kw_asm: {
328 ExprResult Result = ParseSimpleAsm();
Mike Stump01e07652008-06-19 19:28:49 +0000329
Anders Carlsson0fae4f52008-02-08 00:23:11 +0000330 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
331 "top-level asm block");
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000332
333 if (!Result.isInvalid)
334 return Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), Result.Val);
Chris Lattnera120a522008-05-27 23:32:43 +0000335 return 0;
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000336 }
Steve Naroffb419d3a2006-10-27 23:18:49 +0000337 case tok::at:
Chris Lattnerc24278d2007-05-02 23:45:06 +0000338 // @ is not a legal token unless objc is enabled, no need to check.
Steve Naroffacb1e742007-09-10 20:51:04 +0000339 return ParseObjCAtDirectives();
Steve Naroffb419d3a2006-10-27 23:18:49 +0000340 case tok::minus:
Steve Naroffb419d3a2006-10-27 23:18:49 +0000341 case tok::plus:
Fariborz Jahanian85e1d0d2007-11-10 16:31:34 +0000342 if (getLang().ObjC1)
Steve Naroff7b8fa472007-11-13 23:01:27 +0000343 return ParseObjCMethodDefinition();
Fariborz Jahanian85e1d0d2007-11-10 16:31:34 +0000344 else {
Chris Lattnerc24278d2007-05-02 23:45:06 +0000345 Diag(Tok, diag::err_expected_external_declaration);
346 ConsumeToken();
347 }
Steve Naroffb419d3a2006-10-27 23:18:49 +0000348 return 0;
Chris Lattnera5235172007-08-25 06:57:03 +0000349 case tok::kw_namespace:
Chris Lattner302b4be2006-11-19 02:31:38 +0000350 case tok::kw_typedef:
Chris Lattner479ed3a2007-08-25 18:15:16 +0000351 // A function definition cannot start with a these keywords.
Chris Lattner302b4be2006-11-19 02:31:38 +0000352 return ParseDeclaration(Declarator::FileContext);
Chris Lattner0bb5f832006-07-31 01:59:18 +0000353 default:
354 // We can't tell whether this is a function-definition or declaration yet.
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000355 return ParseDeclarationOrFunctionDefinition();
Chris Lattner0bb5f832006-07-31 01:59:18 +0000356 }
357}
358
359/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
Chris Lattner70f32b72006-07-31 05:09:04 +0000360/// a declaration. We can't tell which we have until we read up to the
361/// compound-statement in function-definition.
Chris Lattner0bb5f832006-07-31 01:59:18 +0000362///
Chris Lattner70f32b72006-07-31 05:09:04 +0000363/// function-definition: [C99 6.9.1]
Chris Lattner94fc8062008-04-05 05:52:15 +0000364/// decl-specs declarator declaration-list[opt] compound-statement
365/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stump01e07652008-06-19 19:28:49 +0000366/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattner94fc8062008-04-05 05:52:15 +0000367///
Chris Lattner70f32b72006-07-31 05:09:04 +0000368/// declaration: [C99 6.7]
Chris Lattnerf2659392007-08-22 06:06:56 +0000369/// declaration-specifiers init-declarator-list[opt] ';'
370/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Chris Lattner70f32b72006-07-31 05:09:04 +0000371/// [OMP] threadprivate-directive [TODO]
372///
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000373Parser::DeclTy *Parser::ParseDeclarationOrFunctionDefinition() {
Chris Lattner70f32b72006-07-31 05:09:04 +0000374 // Parse the common declaration-specifiers piece.
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000375 DeclSpec DS;
376 ParseDeclarationSpecifiers(DS);
Mike Stump01e07652008-06-19 19:28:49 +0000377
Chris Lattnerd2864882006-08-05 08:09:44 +0000378 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
Chris Lattner53361ac2006-08-10 05:19:57 +0000379 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner0ab032a2007-10-09 17:23:58 +0000380 if (Tok.is(tok::semi)) {
Chris Lattner0e894622006-08-13 19:58:17 +0000381 ConsumeToken();
Chris Lattner200bdc32006-11-19 02:43:37 +0000382 return Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
Chris Lattner0e894622006-08-13 19:58:17 +0000383 }
Mike Stump01e07652008-06-19 19:28:49 +0000384
Daniel Dunbar26e2ab42008-09-26 04:48:09 +0000385 // ObjC2 allows prefix attributes on class interfaces and protocols.
386 // FIXME: This still needs better diagnostics. We should only accept
387 // attributes here, no types, etc.
Chris Lattner0ab032a2007-10-09 17:23:58 +0000388 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Naroff1eb1ad62007-08-20 21:31:48 +0000389 SourceLocation AtLoc = ConsumeToken(); // the "@"
Daniel Dunbar26e2ab42008-09-26 04:48:09 +0000390 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
391 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
392 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattner5e530bc2007-12-27 19:57:00 +0000393 SkipUntil(tok::semi); // FIXME: better skip?
394 return 0;
395 }
Fariborz Jahanian056e3a42008-01-02 19:17:38 +0000396 const char *PrevSpec = 0;
397 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec))
Chris Lattner6d29c102008-11-18 07:48:38 +0000398 Diag(AtLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Daniel Dunbar26e2ab42008-09-26 04:48:09 +0000399 if (Tok.isObjCAtKeyword(tok::objc_protocol))
400 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
Mike Stump01e07652008-06-19 19:28:49 +0000401 return ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
Steve Naroff1eb1ad62007-08-20 21:31:48 +0000402 }
Mike Stump01e07652008-06-19 19:28:49 +0000403
Chris Lattner38376f12008-01-12 07:05:38 +0000404 // If the declspec consisted only of 'extern' and we have a string
405 // literal following it, this must be a C++ linkage specifier like
406 // 'extern "C"'.
Chris Lattner65531e82008-01-12 07:08:43 +0000407 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattner38376f12008-01-12 07:05:38 +0000408 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
409 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier)
410 return ParseLinkage(Declarator::FileContext);
411
Chris Lattnerfff824f2006-08-07 06:31:38 +0000412 // Parse the first declarator.
413 Declarator DeclaratorInfo(DS, Declarator::FileContext);
414 ParseDeclarator(DeclaratorInfo);
415 // Error parsing the declarator?
Douglas Gregor92751d42008-11-17 22:58:34 +0000416 if (!DeclaratorInfo.hasName()) {
Chris Lattnerfff824f2006-08-07 06:31:38 +0000417 // If so, skip until the semi-colon or a }.
418 SkipUntil(tok::r_brace, true);
Chris Lattner0ab032a2007-10-09 17:23:58 +0000419 if (Tok.is(tok::semi))
Chris Lattnerfff824f2006-08-07 06:31:38 +0000420 ConsumeToken();
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000421 return 0;
Chris Lattnerfff824f2006-08-07 06:31:38 +0000422 }
Chris Lattner70f32b72006-07-31 05:09:04 +0000423
Chris Lattnerfff824f2006-08-07 06:31:38 +0000424 // If the declarator is the start of a function definition, handle it.
Chris Lattner0ab032a2007-10-09 17:23:58 +0000425 if (Tok.is(tok::equal) || // int X()= -> not a function def
426 Tok.is(tok::comma) || // int X(), -> not a function def
427 Tok.is(tok::semi) || // int X(); -> not a function def
428 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def
Argyrios Kyrtzidis9a1191c2008-10-06 17:10:33 +0000429 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def
430 (getLang().CPlusPlus &&
431 Tok.is(tok::l_paren)) ) { // int X(0) -> not a function def [C++]
Chris Lattnerfff824f2006-08-07 06:31:38 +0000432 // FALL THROUGH.
Chris Lattnera11999d2006-10-15 22:34:45 +0000433 } else if (DeclaratorInfo.isFunctionDeclarator() &&
Argyrios Kyrtzidise6aff3d2008-06-21 10:00:56 +0000434 (Tok.is(tok::l_brace) || // int X() {}
435 ( !getLang().CPlusPlus &&
436 isDeclarationSpecifier() ))) { // int X(f) int f; {}
Steve Narofff6319972008-02-14 02:58:32 +0000437 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
438 Diag(Tok, diag::err_function_declared_typedef);
Mike Stump01e07652008-06-19 19:28:49 +0000439
Steve Narofff6319972008-02-14 02:58:32 +0000440 if (Tok.is(tok::l_brace)) {
441 // This recovery skips the entire function body. It would be nice
Mike Stump01e07652008-06-19 19:28:49 +0000442 // to simply call ParseFunctionDefintion() below, however Sema
Steve Narofff6319972008-02-14 02:58:32 +0000443 // assumes the declarator represents a function, not a typedef.
444 ConsumeBrace();
445 SkipUntil(tok::r_brace, true);
446 } else {
447 SkipUntil(tok::semi);
448 }
449 return 0;
450 }
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000451 return ParseFunctionDefinition(DeclaratorInfo);
Chris Lattnerfff824f2006-08-07 06:31:38 +0000452 } else {
Chris Lattnera11999d2006-10-15 22:34:45 +0000453 if (DeclaratorInfo.isFunctionDeclarator())
Chris Lattnerfff824f2006-08-07 06:31:38 +0000454 Diag(Tok, diag::err_expected_fn_body);
455 else
456 Diag(Tok, diag::err_expected_after_declarator);
Chris Lattnere4e38592006-08-14 00:15:05 +0000457 SkipUntil(tok::semi);
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000458 return 0;
Chris Lattnerfff824f2006-08-07 06:31:38 +0000459 }
Chris Lattnerd9c3c592006-08-05 06:26:47 +0000460
Chris Lattner53361ac2006-08-10 05:19:57 +0000461 // Parse the init-declarator-list for a normal declaration.
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000462 return ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
Chris Lattner70f32b72006-07-31 05:09:04 +0000463}
464
Chris Lattnerfff824f2006-08-07 06:31:38 +0000465/// ParseFunctionDefinition - We parsed and verified that the specified
466/// Declarator is well formed. If this is a K&R-style function, read the
467/// parameters declaration-list, then start the compound-statement.
468///
Chris Lattner94fc8062008-04-05 05:52:15 +0000469/// function-definition: [C99 6.9.1]
470/// decl-specs declarator declaration-list[opt] compound-statement
471/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stump01e07652008-06-19 19:28:49 +0000472/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregore8381c02008-11-05 04:29:56 +0000473/// [C++] function-definition: [C++ 8.4]
474/// decl-specifier-seq[opt] declarator ctor-initializer[opt] function-body
475/// [C++] function-definition: [C++ 8.4]
476/// decl-specifier-seq[opt] declarator function-try-block [TODO]
Chris Lattnerfff824f2006-08-07 06:31:38 +0000477///
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000478Parser::DeclTy *Parser::ParseFunctionDefinition(Declarator &D) {
Chris Lattnercbc426d2006-12-02 06:43:02 +0000479 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
480 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
Chris Lattnerfff824f2006-08-07 06:31:38 +0000481 "This isn't a function declarator!");
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000482 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stump01e07652008-06-19 19:28:49 +0000483
Chris Lattner94fc8062008-04-05 05:52:15 +0000484 // If this is C90 and the declspecs were completely missing, fudge in an
485 // implicit int. We do this here because this is the only place where
486 // declaration-specifiers are completely optional in the grammar.
Chris Lattner9d51f2b2008-04-05 06:32:51 +0000487 if (getLang().ImplicitInt && D.getDeclSpec().getParsedSpecifiers() == 0) {
Chris Lattner94fc8062008-04-05 05:52:15 +0000488 const char *PrevSpec;
Chris Lattnerfcc390a2008-10-20 02:01:34 +0000489 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
490 D.getIdentifierLoc(),
491 PrevSpec);
Chris Lattner94fc8062008-04-05 05:52:15 +0000492 }
Mike Stump01e07652008-06-19 19:28:49 +0000493
Chris Lattnerfff824f2006-08-07 06:31:38 +0000494 // If this declaration was formed with a K&R-style identifier list for the
495 // arguments, parse declarations for all of the args next.
496 // int foo(a,b) int a; float b; {}
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000497 if (!FTI.hasPrototype && FTI.NumArgs != 0)
498 ParseKNRParamDeclarations(D);
Chris Lattnerfff824f2006-08-07 06:31:38 +0000499
Douglas Gregore8381c02008-11-05 04:29:56 +0000500 // We should have either an opening brace or, in a C++ constructor,
501 // we may have a colon.
Sebastian Redl198a5832008-11-24 21:45:59 +0000502 // FIXME: In C++, we might also find the 'try' keyword.
Douglas Gregore8381c02008-11-05 04:29:56 +0000503 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon)) {
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000504 Diag(Tok, diag::err_expected_fn_body);
505
506 // Skip over garbage, until we get to '{'. Don't eat the '{'.
507 SkipUntil(tok::l_brace, true, true);
Mike Stump01e07652008-06-19 19:28:49 +0000508
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000509 // If we didn't find the '{', bail out.
Chris Lattner0ab032a2007-10-09 17:23:58 +0000510 if (Tok.isNot(tok::l_brace))
Chris Lattner2dacc3f2006-10-16 00:33:54 +0000511 return 0;
Chris Lattner0ccd51e2006-08-09 05:47:47 +0000512 }
Mike Stump01e07652008-06-19 19:28:49 +0000513
Chris Lattnera55a2cc2007-10-09 17:14:05 +0000514 // Enter a scope for the function body.
515 EnterScope(Scope::FnScope|Scope::DeclScope);
Mike Stump01e07652008-06-19 19:28:49 +0000516
Chris Lattnera55a2cc2007-10-09 17:14:05 +0000517 // Tell the actions module that we have entered a function definition with the
518 // specified Declarator for the function.
519 DeclTy *Res = Actions.ActOnStartOfFunctionDef(CurScope, D);
Mike Stump01e07652008-06-19 19:28:49 +0000520
Douglas Gregore8381c02008-11-05 04:29:56 +0000521 // If we have a colon, then we're probably parsing a C++
522 // ctor-initializer.
523 if (Tok.is(tok::colon))
524 ParseConstructorInitializer(Res);
525
526 SourceLocation BraceLoc = Tok.getLocation();
Mike Stump01e07652008-06-19 19:28:49 +0000527 return ParseFunctionStatementBody(Res, BraceLoc, BraceLoc);
Chris Lattnerfff824f2006-08-07 06:31:38 +0000528}
529
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000530/// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
531/// types for a function with a K&R-style identifier list for arguments.
532void Parser::ParseKNRParamDeclarations(Declarator &D) {
533 // We know that the top-level of this declarator is a function.
534 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
535
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000536 // Enter function-declaration scope, limiting any declarators to the
537 // function prototype scope, including parameter declarators.
Eli Friedman2460b0c2008-05-20 09:10:20 +0000538 EnterScope(Scope::FnScope|Scope::DeclScope);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000539
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000540 // Read all the argument declarations.
541 while (isDeclarationSpecifier()) {
542 SourceLocation DSStart = Tok.getLocation();
Mike Stump01e07652008-06-19 19:28:49 +0000543
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000544 // Parse the common declaration-specifiers piece.
545 DeclSpec DS;
546 ParseDeclarationSpecifiers(DS);
Mike Stump01e07652008-06-19 19:28:49 +0000547
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000548 // C99 6.9.1p6: 'each declaration in the declaration list shall have at
549 // least one declarator'.
550 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with
551 // the declarations though. It's trivial to ignore them, really hard to do
552 // anything else with them.
Chris Lattner0ab032a2007-10-09 17:23:58 +0000553 if (Tok.is(tok::semi)) {
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000554 Diag(DSStart, diag::err_declaration_does_not_declare_param);
555 ConsumeToken();
556 continue;
557 }
Mike Stump01e07652008-06-19 19:28:49 +0000558
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000559 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
560 // than register.
561 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
562 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
563 Diag(DS.getStorageClassSpecLoc(),
564 diag::err_invalid_storage_class_in_func_decl);
565 DS.ClearStorageClassSpecs();
566 }
567 if (DS.isThreadSpecified()) {
568 Diag(DS.getThreadSpecLoc(),
569 diag::err_invalid_storage_class_in_func_decl);
570 DS.ClearStorageClassSpecs();
571 }
Mike Stump01e07652008-06-19 19:28:49 +0000572
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000573 // Parse the first declarator attached to this declspec.
574 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
575 ParseDeclarator(ParmDeclarator);
576
577 // Handle the full declarator list.
578 while (1) {
Steve Naroff0f2fe172007-06-01 17:11:19 +0000579 DeclTy *AttrList;
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000580 // If attributes are present, parse them.
Chris Lattner0ab032a2007-10-09 17:23:58 +0000581 if (Tok.is(tok::kw___attribute))
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000582 // FIXME: attach attributes too.
Steve Naroff0f2fe172007-06-01 17:11:19 +0000583 AttrList = ParseAttributes();
Mike Stump01e07652008-06-19 19:28:49 +0000584
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000585 // Ask the actions module to compute the type for this declarator.
Mike Stump01e07652008-06-19 19:28:49 +0000586 Action::DeclTy *Param =
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000587 Actions.ActOnParamDeclarator(CurScope, ParmDeclarator);
Steve Naroffacb1e742007-09-10 20:51:04 +0000588
Mike Stump01e07652008-06-19 19:28:49 +0000589 if (Param &&
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000590 // A missing identifier has already been diagnosed.
591 ParmDeclarator.getIdentifier()) {
592
593 // Scan the argument list looking for the correct param to apply this
594 // type.
595 for (unsigned i = 0; ; ++i) {
596 // C99 6.9.1p6: those declarators shall declare only identifiers from
597 // the identifier list.
598 if (i == FTI.NumArgs) {
Chris Lattner6d29c102008-11-18 07:48:38 +0000599 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattner760d19ad2008-11-19 07:51:13 +0000600 << ParmDeclarator.getIdentifier();
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000601 break;
602 }
Mike Stump01e07652008-06-19 19:28:49 +0000603
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000604 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
605 // Reject redefinitions of parameters.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000606 if (FTI.ArgInfo[i].Param) {
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000607 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattner6d29c102008-11-18 07:48:38 +0000608 diag::err_param_redefinition)
Chris Lattner760d19ad2008-11-19 07:51:13 +0000609 << ParmDeclarator.getIdentifier();
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000610 } else {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000611 FTI.ArgInfo[i].Param = Param;
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000612 }
613 break;
614 }
615 }
616 }
617
618 // If we don't have a comma, it is either the end of the list (a ';') or
619 // an error, bail out.
Chris Lattner0ab032a2007-10-09 17:23:58 +0000620 if (Tok.isNot(tok::comma))
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000621 break;
Mike Stump01e07652008-06-19 19:28:49 +0000622
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000623 // Consume the comma.
624 ConsumeToken();
Mike Stump01e07652008-06-19 19:28:49 +0000625
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000626 // Parse the next declarator.
627 ParmDeclarator.clear();
628 ParseDeclarator(ParmDeclarator);
629 }
Mike Stump01e07652008-06-19 19:28:49 +0000630
Chris Lattner0ab032a2007-10-09 17:23:58 +0000631 if (Tok.is(tok::semi)) {
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000632 ConsumeToken();
633 } else {
634 Diag(Tok, diag::err_parse_error);
635 // Skip to end of block or statement
636 SkipUntil(tok::semi, true);
Chris Lattner0ab032a2007-10-09 17:23:58 +0000637 if (Tok.is(tok::semi))
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000638 ConsumeToken();
639 }
640 }
Mike Stump01e07652008-06-19 19:28:49 +0000641
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000642 // Leave prototype scope.
643 ExitScope();
644
Chris Lattner5c5fbcc2006-12-03 08:41:30 +0000645 // The actions module must verify that all arguments were declared.
646}
647
648
Chris Lattner0116c472006-08-15 06:03:28 +0000649/// ParseAsmStringLiteral - This is just a normal string-literal, but is not
650/// allowed to be a wide string, and is not subject to character translation.
651///
652/// [GNU] asm-string-literal:
653/// string-literal
654///
Anders Carlsson81a5a692007-11-20 19:21:03 +0000655Parser::ExprResult Parser::ParseAsmStringLiteral() {
Chris Lattnerd3e98952006-10-06 05:22:26 +0000656 if (!isTokenStringLiteral()) {
Chris Lattner0116c472006-08-15 06:03:28 +0000657 Diag(Tok, diag::err_expected_string_literal);
Anders Carlsson81a5a692007-11-20 19:21:03 +0000658 return true;
Chris Lattner0116c472006-08-15 06:03:28 +0000659 }
Mike Stump01e07652008-06-19 19:28:49 +0000660
Chris Lattner0116c472006-08-15 06:03:28 +0000661 ExprResult Res = ParseStringLiteralExpression();
Anders Carlsson81a5a692007-11-20 19:21:03 +0000662 if (Res.isInvalid) return true;
Mike Stump01e07652008-06-19 19:28:49 +0000663
Chris Lattner0116c472006-08-15 06:03:28 +0000664 // TODO: Diagnose: wide string literal in 'asm'
Mike Stump01e07652008-06-19 19:28:49 +0000665
Anders Carlsson81a5a692007-11-20 19:21:03 +0000666 return Res;
Chris Lattner0116c472006-08-15 06:03:28 +0000667}
668
Chris Lattner6d7e6342006-08-15 03:41:14 +0000669/// ParseSimpleAsm
670///
671/// [GNU] simple-asm-expr:
672/// 'asm' '(' asm-string-literal ')'
Chris Lattner6d7e6342006-08-15 03:41:14 +0000673///
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000674Parser::ExprResult Parser::ParseSimpleAsm() {
Chris Lattner0ab032a2007-10-09 17:23:58 +0000675 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000676 SourceLocation Loc = ConsumeToken();
Mike Stump01e07652008-06-19 19:28:49 +0000677
Chris Lattner0ab032a2007-10-09 17:23:58 +0000678 if (Tok.isNot(tok::l_paren)) {
Chris Lattner6d29c102008-11-18 07:48:38 +0000679 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Chris Lattnera120a522008-05-27 23:32:43 +0000680 return true;
Chris Lattner6d7e6342006-08-15 03:41:14 +0000681 }
Mike Stump01e07652008-06-19 19:28:49 +0000682
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000683 ConsumeParen();
Mike Stump01e07652008-06-19 19:28:49 +0000684
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000685 ExprResult Result = ParseAsmStringLiteral();
Mike Stump01e07652008-06-19 19:28:49 +0000686
Chris Lattner18ffde82008-10-20 07:36:58 +0000687 if (Result.isInvalid)
Daniel Dunbar4983df32008-08-05 01:35:17 +0000688 SkipUntil(tok::r_paren);
Chris Lattner18ffde82008-10-20 07:36:58 +0000689 else
Daniel Dunbar4983df32008-08-05 01:35:17 +0000690 MatchRHSPunctuation(tok::r_paren, Loc);
Mike Stump01e07652008-06-19 19:28:49 +0000691
Anders Carlsson5c6c0592008-02-08 00:33:21 +0000692 return Result;
Chris Lattner6d7e6342006-08-15 03:41:14 +0000693}
Steve Naroffb419d3a2006-10-27 23:18:49 +0000694
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000695/// TryAnnotateTypeOrScopeToken - If the current token position is on a
696/// typename (possibly qualified in C++) or a C++ scope specifier not followed
697/// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
698/// with a single annotation token representing the typename or C++ scope
699/// respectively.
700/// This simplifies handling of C++ scope specifiers and allows efficient
701/// backtracking without the need to re-parse and resolve nested-names and
702/// typenames.
Argyrios Kyrtzidis0c4162a2008-11-26 21:51:07 +0000703/// It will mainly be called when we expect to treat identifiers as typenames
704/// (if they are typenames). For example, in C we do not expect identifiers
705/// inside expressions to be treated as typenames so it will not be called
706/// for expressions in C.
707/// The benefit for C/ObjC is that a typename will be annotated and
708/// Actions.isTypeName will not be needed to be called again (e.g. isTypeName
709/// will not be called twice, once to check whether we have a declaration
710/// specifier, and another one to get the actual type inside
711/// ParseDeclarationSpecifiers).
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000712void Parser::TryAnnotateTypeOrScopeToken() {
713 if (Tok.is(tok::annot_qualtypename) || Tok.is(tok::annot_cxxscope))
714 return;
715
716 CXXScopeSpec SS;
Argyrios Kyrtzidisace521a2008-11-26 21:41:52 +0000717 if (getLang().CPlusPlus)
718 MaybeParseCXXScopeSpecifier(SS);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000719
720 if (Tok.is(tok::identifier)) {
721 TypeTy *Ty = Actions.isTypeName(*Tok.getIdentifierInfo(), CurScope, &SS);
722 if (Ty) {
723 // This is a typename. Replace the current token in-place with an
724 // annotation type token.
725 Tok.setKind(tok::annot_qualtypename);
726 Tok.setAnnotationValue(Ty);
727 Tok.setAnnotationEndLoc(Tok.getLocation());
728 if (SS.isNotEmpty()) // it was a C++ qualified type name.
729 Tok.setLocation(SS.getBeginLoc());
730
731 // In case the tokens were cached, have Preprocessor replace them with the
732 // annotation token.
733 PP.AnnotateCachedTokens(Tok);
734 return;
735 }
736 }
737
738 if (SS.isNotEmpty()) {
739 // A C++ scope specifier that isn't followed by a typename.
Argyrios Kyrtzidis89709ac2008-11-19 15:22:16 +0000740 // Push the current token back into the token stream (or revert it if it is
741 // cached) and use an annotation scope token for current token.
742 if (PP.isBacktrackEnabled())
743 PP.RevertCachedTokens(1);
744 else
745 PP.EnterToken(Tok);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000746 Tok.setKind(tok::annot_cxxscope);
747 Tok.setAnnotationValue(SS.getScopeRep());
748 Tok.setAnnotationRange(SS.getRange());
749
750 // In case the tokens were cached, have Preprocessor replace them with the
751 // annotation token.
752 PP.AnnotateCachedTokens(Tok);
753 }
754}
755
756/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
757/// annotates C++ scope specifiers.
Argyrios Kyrtzidisace521a2008-11-26 21:41:52 +0000758void Parser::TryAnnotateCXXScopeToken() {
759 assert(getLang().CPlusPlus &&
760 "Call sites of this function should be guarded by checking for C++.");
761
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000762 if (Tok.is(tok::annot_cxxscope))
763 return;
764
Argyrios Kyrtzidisace521a2008-11-26 21:41:52 +0000765 CXXScopeSpec SS;
766 if (MaybeParseCXXScopeSpecifier(SS)) {
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000767
Argyrios Kyrtzidis89709ac2008-11-19 15:22:16 +0000768 // Push the current token back into the token stream (or revert it if it is
769 // cached) and use an annotation scope token for current token.
770 if (PP.isBacktrackEnabled())
771 PP.RevertCachedTokens(1);
772 else
773 PP.EnterToken(Tok);
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +0000774 Tok.setKind(tok::annot_cxxscope);
775 Tok.setAnnotationValue(SS.getScopeRep());
776 Tok.setAnnotationRange(SS.getRange());
777
778 // In case the tokens were cached, have Preprocessor replace them with the
779 // annotation token.
780 PP.AnnotateCachedTokens(Tok);
781 }
782}