Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Parser.cpp - C Language Family Parser ----------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the Parser interfaces. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/Parse/Parser.h" |
Daniel Dunbar | e4858a6 | 2008-08-11 03:45:03 +0000 | [diff] [blame] | 15 | #include "clang/Basic/Diagnostic.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 16 | #include "clang/Parse/DeclSpec.h" |
| 17 | #include "clang/Parse/Scope.h" |
Chris Lattner | c46d1a1 | 2008-10-20 06:45:43 +0000 | [diff] [blame] | 18 | #include "ExtensionRAIIObject.h" |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 19 | #include "ParsePragma.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 20 | using namespace clang; |
| 21 | |
| 22 | Parser::Parser(Preprocessor &pp, Action &actions) |
| 23 | : PP(pp), Actions(actions), Diags(PP.getDiagnostics()) { |
| 24 | Tok.setKind(tok::eof); |
| 25 | CurScope = 0; |
Chris Lattner | 9e344c6 | 2007-07-15 00:04:39 +0000 | [diff] [blame] | 26 | NumCachedScopes = 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | ParenCount = BracketCount = BraceCount = 0; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 28 | ObjCImpDecl = 0; |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 29 | |
| 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 Kyrtzidis | 4cc18a4 | 2008-06-24 22:12:16 +0000 | [diff] [blame] | 36 | // Instantiate a LexedMethodsForTopClass for all the non-nested classes. |
| 37 | PushTopClassStack(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | /// Out-of-line virtual destructor to provide home for Action class. |
| 41 | Action::~Action() {} |
| 42 | |
| 43 | |
Chris Lattner | 3cbfe2c | 2008-11-22 00:59:29 +0000 | [diff] [blame] | 44 | DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 45 | return Diags.Report(FullSourceLoc(Loc,PP.getSourceManager()), DiagID); |
| 46 | } |
| 47 | |
Chris Lattner | 3cbfe2c | 2008-11-22 00:59:29 +0000 | [diff] [blame] | 48 | DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 49 | return Diag(Tok.getLocation(), DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | /// 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. |
| 57 | SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok, |
| 58 | SourceLocation LHSLoc) { |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 59 | |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 60 | if (Tok.is(RHSTok)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 61 | return ConsumeAnyToken(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 62 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 63 | 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; |
| 71 | case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break; |
| 72 | } |
| 73 | Diag(Tok, DID); |
Chris Lattner | 28eb7e9 | 2008-11-23 23:17:07 +0000 | [diff] [blame] | 74 | Diag(LHSLoc, diag::note_matching) << LHSName; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 75 | SkipUntil(RHSTok); |
| 76 | return R; |
| 77 | } |
| 78 | |
| 79 | /// 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. |
| 85 | bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID, |
| 86 | const char *Msg, tok::TokenKind SkipToTok) { |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 87 | if (Tok.is(ExpectedTok)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 88 | ConsumeAnyToken(); |
| 89 | return false; |
| 90 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 91 | |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 92 | Diag(Tok, DiagID) << Msg; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 93 | if (SkipToTok != tok::unknown) |
| 94 | SkipUntil(SkipToTok); |
| 95 | return true; |
| 96 | } |
| 97 | |
| 98 | //===----------------------------------------------------------------------===// |
| 99 | // Error recovery. |
| 100 | //===----------------------------------------------------------------------===// |
| 101 | |
| 102 | /// SkipUntil - Read tokens until we get to the specified token, then consume |
Chris Lattner | 012cf46 | 2007-07-24 17:03:04 +0000 | [diff] [blame] | 103 | /// it (unless DontConsume is true). Because we cannot guarantee that the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 104 | /// 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 Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 107 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 108 | /// If SkipUntil finds the specified token, it returns true, otherwise it |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 109 | /// returns false. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 110 | bool Parser::SkipUntil(const tok::TokenKind *Toks, unsigned NumToks, |
| 111 | bool StopAtSemi, bool DontConsume) { |
| 112 | // 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; |
| 115 | while (1) { |
| 116 | // If we found one of the tokens, stop and return true. |
| 117 | for (unsigned i = 0; i != NumToks; ++i) { |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 118 | if (Tok.is(Toks[i])) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 119 | if (DontConsume) { |
| 120 | // Noop, don't consume the token. |
| 121 | } else { |
| 122 | ConsumeAnyToken(); |
| 123 | } |
| 124 | return true; |
| 125 | } |
| 126 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 127 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 128 | switch (Tok.getKind()) { |
| 129 | case tok::eof: |
| 130 | // Ran out of tokens. |
| 131 | return false; |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 132 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 133 | case tok::l_paren: |
| 134 | // Recursively skip properly-nested parens. |
| 135 | ConsumeParen(); |
| 136 | SkipUntil(tok::r_paren, false); |
| 137 | break; |
| 138 | case tok::l_square: |
| 139 | // Recursively skip properly-nested square brackets. |
| 140 | ConsumeBracket(); |
| 141 | SkipUntil(tok::r_square, false); |
| 142 | break; |
| 143 | case tok::l_brace: |
| 144 | // Recursively skip properly-nested braces. |
| 145 | ConsumeBrace(); |
| 146 | SkipUntil(tok::r_brace, false); |
| 147 | break; |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 148 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 149 | // 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: |
| 155 | if (ParenCount && !isFirstTokenSkipped) |
| 156 | return false; // Matches something. |
| 157 | ConsumeParen(); |
| 158 | break; |
| 159 | case tok::r_square: |
| 160 | if (BracketCount && !isFirstTokenSkipped) |
| 161 | return false; // Matches something. |
| 162 | ConsumeBracket(); |
| 163 | break; |
| 164 | case tok::r_brace: |
| 165 | if (BraceCount && !isFirstTokenSkipped) |
| 166 | return false; // Matches something. |
| 167 | ConsumeBrace(); |
| 168 | break; |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 169 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 170 | case tok::string_literal: |
| 171 | case tok::wide_string_literal: |
| 172 | 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 | } |
| 183 | isFirstTokenSkipped = false; |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 184 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | //===----------------------------------------------------------------------===// |
| 188 | // Scope manipulation |
| 189 | //===----------------------------------------------------------------------===// |
| 190 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 191 | /// EnterScope - Start a new scope. |
| 192 | void Parser::EnterScope(unsigned ScopeFlags) { |
Chris Lattner | 9e344c6 | 2007-07-15 00:04:39 +0000 | [diff] [blame] | 193 | if (NumCachedScopes) { |
| 194 | Scope *N = ScopeCache[--NumCachedScopes]; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 195 | N->Init(CurScope, ScopeFlags); |
| 196 | CurScope = N; |
| 197 | } else { |
| 198 | CurScope = new Scope(CurScope, ScopeFlags); |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | /// ExitScope - Pop a scope off the scope stack. |
| 203 | void Parser::ExitScope() { |
| 204 | assert(CurScope && "Scope imbalance!"); |
| 205 | |
Chris Lattner | 90ae68a | 2007-10-09 20:37:18 +0000 | [diff] [blame] | 206 | // Inform the actions module that this scope is going away if there are any |
| 207 | // decls in it. |
| 208 | if (!CurScope->decl_empty()) |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 209 | Actions.ActOnPopScope(Tok.getLocation(), CurScope); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 210 | |
Chris Lattner | 9e344c6 | 2007-07-15 00:04:39 +0000 | [diff] [blame] | 211 | Scope *OldScope = CurScope; |
| 212 | CurScope = OldScope->getParent(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 213 | |
Chris Lattner | 9e344c6 | 2007-07-15 00:04:39 +0000 | [diff] [blame] | 214 | if (NumCachedScopes == ScopeCacheSize) |
| 215 | delete OldScope; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 216 | else |
Chris Lattner | 9e344c6 | 2007-07-15 00:04:39 +0000 | [diff] [blame] | 217 | ScopeCache[NumCachedScopes++] = OldScope; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | |
| 221 | |
| 222 | |
| 223 | //===----------------------------------------------------------------------===// |
| 224 | // C99 6.9: External Definitions. |
| 225 | //===----------------------------------------------------------------------===// |
| 226 | |
| 227 | Parser::~Parser() { |
| 228 | // If we still have scopes active, delete the scope tree. |
| 229 | delete CurScope; |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 230 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 231 | // Free the scope cache. |
Chris Lattner | 9e344c6 | 2007-07-15 00:04:39 +0000 | [diff] [blame] | 232 | for (unsigned i = 0, e = NumCachedScopes; i != e; ++i) |
| 233 | delete ScopeCache[i]; |
Daniel Dunbar | fcdd8fe | 2008-10-04 19:21:03 +0000 | [diff] [blame] | 234 | |
| 235 | // Remove the pragma handlers we installed. |
| 236 | PP.RemovePragmaHandler(0, PackHandler); |
| 237 | delete PackHandler; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | /// Initialize - Warm up the parser. |
| 241 | /// |
| 242 | void Parser::Initialize() { |
| 243 | // Prime the lexer look-ahead. |
| 244 | ConsumeToken(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 245 | |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 246 | // Create the translation unit scope. Install it as the current scope. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 247 | assert(CurScope == 0 && "A scope is already active?"); |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 248 | EnterScope(Scope::DeclScope); |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 249 | Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 250 | |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 251 | if (Tok.is(tok::eof) && |
Chris Lattner | f726175 | 2007-08-25 05:47:03 +0000 | [diff] [blame] | 252 | !getLang().CPlusPlus) // Empty source file is an extension in C |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 253 | Diag(Tok, diag::ext_empty_source_file); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 254 | |
Chris Lattner | 34870da | 2007-08-29 22:54:08 +0000 | [diff] [blame] | 255 | // Initialization for Objective-C context sensitive keywords recognition. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 256 | // Referenced in Parser::ParseObjCTypeQualifierList. |
Chris Lattner | 34870da | 2007-08-29 22:54:08 +0000 | [diff] [blame] | 257 | if (getLang().ObjC1) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 258 | 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 Lattner | 34870da | 2007-08-29 22:54:08 +0000 | [diff] [blame] | 264 | } |
Daniel Dunbar | 662e8b5 | 2008-08-14 22:04:54 +0000 | [diff] [blame] | 265 | |
| 266 | Ident_super = &PP.getIdentifierTable().get("super"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 267 | } |
| 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 Naroff | 89307ff | 2007-11-29 23:05:20 +0000 | [diff] [blame] | 271 | bool Parser::ParseTopLevelDecl(DeclTy*& Result) { |
| 272 | Result = 0; |
Chris Lattner | 9299f3f | 2008-08-23 03:19:52 +0000 | [diff] [blame] | 273 | if (Tok.is(tok::eof)) { |
| 274 | Actions.ActOnEndOfTranslationUnit(); |
| 275 | return true; |
| 276 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 277 | |
Steve Naroff | 89307ff | 2007-11-29 23:05:20 +0000 | [diff] [blame] | 278 | Result = ParseExternalDeclaration(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 279 | return false; |
| 280 | } |
| 281 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 282 | /// ParseTranslationUnit: |
| 283 | /// translation-unit: [C99 6.9] |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 284 | /// external-declaration |
| 285 | /// translation-unit external-declaration |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 286 | void Parser::ParseTranslationUnit() { |
Chris Lattner | a9e8fec | 2008-08-23 02:06:50 +0000 | [diff] [blame] | 287 | Initialize(); // pushes a scope. |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 288 | |
Steve Naroff | 89307ff | 2007-11-29 23:05:20 +0000 | [diff] [blame] | 289 | DeclTy *Res; |
| 290 | while (!ParseTopLevelDecl(Res)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 291 | /*parse them all*/; |
Chris Lattner | 06f5485 | 2008-08-23 02:00:52 +0000 | [diff] [blame] | 292 | |
| 293 | ExitScope(); |
| 294 | assert(CurScope == 0 && "Scope imbalance!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | /// ParseExternalDeclaration: |
Douglas Gregor | c19923d | 2008-11-21 16:10:08 +0000 | [diff] [blame] | 298 | /// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl] |
Chris Lattner | c301815 | 2007-08-10 20:57:02 +0000 | [diff] [blame] | 299 | /// function-definition |
| 300 | /// declaration |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 301 | /// [EXT] ';' |
| 302 | /// [GNU] asm-definition |
Chris Lattner | c301815 | 2007-08-10 20:57:02 +0000 | [diff] [blame] | 303 | /// [GNU] __extension__ external-declaration |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 304 | /// [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 Gregor | c19923d | 2008-11-21 16:10:08 +0000 | [diff] [blame] | 310 | /// [C++] linkage-specification |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 311 | /// [GNU] asm-definition: |
| 312 | /// simple-asm-expr ';' |
| 313 | /// |
| 314 | Parser::DeclTy *Parser::ParseExternalDeclaration() { |
| 315 | switch (Tok.getKind()) { |
| 316 | case tok::semi: |
| 317 | Diag(Tok, diag::ext_top_level_semi); |
| 318 | ConsumeToken(); |
| 319 | // TODO: Invoke action for top-level semicolon. |
| 320 | return 0; |
Chris Lattner | c301815 | 2007-08-10 20:57:02 +0000 | [diff] [blame] | 321 | case tok::kw___extension__: { |
Chris Lattner | c46d1a1 | 2008-10-20 06:45:43 +0000 | [diff] [blame] | 322 | // __extension__ silences extension warnings in the subexpression. |
| 323 | ExtensionRAIIObject O(Diags); // Use RAII to do this. |
Chris Lattner | 39146d6 | 2008-10-20 06:51:33 +0000 | [diff] [blame] | 324 | ConsumeToken(); |
Chris Lattner | c46d1a1 | 2008-10-20 06:45:43 +0000 | [diff] [blame] | 325 | return ParseExternalDeclaration(); |
Chris Lattner | c301815 | 2007-08-10 20:57:02 +0000 | [diff] [blame] | 326 | } |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 327 | case tok::kw_asm: { |
| 328 | ExprResult Result = ParseSimpleAsm(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 329 | |
Anders Carlsson | 3f9424f | 2008-02-08 00:23:11 +0000 | [diff] [blame] | 330 | ExpectAndConsume(tok::semi, diag::err_expected_semi_after, |
| 331 | "top-level asm block"); |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 332 | |
| 333 | if (!Result.isInvalid) |
| 334 | return Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), Result.Val); |
Chris Lattner | aec3a1e | 2008-05-27 23:32:43 +0000 | [diff] [blame] | 335 | return 0; |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 336 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 337 | case tok::at: |
| 338 | // @ is not a legal token unless objc is enabled, no need to check. |
Steve Naroff | 2bd42fa | 2007-09-10 20:51:04 +0000 | [diff] [blame] | 339 | return ParseObjCAtDirectives(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 340 | case tok::minus: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 341 | case tok::plus: |
Fariborz Jahanian | 60fbca0 | 2007-11-10 16:31:34 +0000 | [diff] [blame] | 342 | if (getLang().ObjC1) |
Steve Naroff | 71c0a95 | 2007-11-13 23:01:27 +0000 | [diff] [blame] | 343 | return ParseObjCMethodDefinition(); |
Fariborz Jahanian | 60fbca0 | 2007-11-10 16:31:34 +0000 | [diff] [blame] | 344 | else { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 345 | Diag(Tok, diag::err_expected_external_declaration); |
| 346 | ConsumeToken(); |
| 347 | } |
| 348 | return 0; |
Chris Lattner | 8f08cb7 | 2007-08-25 06:57:03 +0000 | [diff] [blame] | 349 | case tok::kw_namespace: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 350 | case tok::kw_typedef: |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 351 | case tok::kw_template: |
| 352 | case tok::kw_export: // As in 'export template' |
Chris Lattner | bae3511 | 2007-08-25 18:15:16 +0000 | [diff] [blame] | 353 | // A function definition cannot start with a these keywords. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 354 | return ParseDeclaration(Declarator::FileContext); |
| 355 | default: |
| 356 | // We can't tell whether this is a function-definition or declaration yet. |
| 357 | return ParseDeclarationOrFunctionDefinition(); |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | /// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or |
| 362 | /// a declaration. We can't tell which we have until we read up to the |
| 363 | /// compound-statement in function-definition. |
| 364 | /// |
| 365 | /// function-definition: [C99 6.9.1] |
Chris Lattner | a798ebc | 2008-04-05 05:52:15 +0000 | [diff] [blame] | 366 | /// decl-specs declarator declaration-list[opt] compound-statement |
| 367 | /// [C90] function-definition: [C99 6.7.1] - implicit int result |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 368 | /// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement |
Chris Lattner | a798ebc | 2008-04-05 05:52:15 +0000 | [diff] [blame] | 369 | /// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 370 | /// declaration: [C99 6.7] |
Chris Lattner | 697e15f | 2007-08-22 06:06:56 +0000 | [diff] [blame] | 371 | /// declaration-specifiers init-declarator-list[opt] ';' |
| 372 | /// [!C99] init-declarator-list ';' [TODO: warn in c99 mode] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 373 | /// [OMP] threadprivate-directive [TODO] |
| 374 | /// |
| 375 | Parser::DeclTy *Parser::ParseDeclarationOrFunctionDefinition() { |
| 376 | // Parse the common declaration-specifiers piece. |
| 377 | DeclSpec DS; |
| 378 | ParseDeclarationSpecifiers(DS); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 379 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 380 | // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };" |
| 381 | // declaration-specifiers init-declarator-list[opt] ';' |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 382 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 383 | ConsumeToken(); |
| 384 | return Actions.ParsedFreeStandingDeclSpec(CurScope, DS); |
| 385 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 386 | |
Daniel Dunbar | 246e70f | 2008-09-26 04:48:09 +0000 | [diff] [blame] | 387 | // ObjC2 allows prefix attributes on class interfaces and protocols. |
| 388 | // FIXME: This still needs better diagnostics. We should only accept |
| 389 | // attributes here, no types, etc. |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 390 | if (getLang().ObjC2 && Tok.is(tok::at)) { |
Steve Naroff | dac269b | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 391 | SourceLocation AtLoc = ConsumeToken(); // the "@" |
Daniel Dunbar | 246e70f | 2008-09-26 04:48:09 +0000 | [diff] [blame] | 392 | if (!Tok.isObjCAtKeyword(tok::objc_interface) && |
| 393 | !Tok.isObjCAtKeyword(tok::objc_protocol)) { |
| 394 | Diag(Tok, diag::err_objc_unexpected_attr); |
Chris Lattner | cb53b36 | 2007-12-27 19:57:00 +0000 | [diff] [blame] | 395 | SkipUntil(tok::semi); // FIXME: better skip? |
| 396 | return 0; |
| 397 | } |
Fariborz Jahanian | 0de2ae2 | 2008-01-02 19:17:38 +0000 | [diff] [blame] | 398 | const char *PrevSpec = 0; |
| 399 | if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec)) |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 400 | Diag(AtLoc, diag::err_invalid_decl_spec_combination) << PrevSpec; |
Daniel Dunbar | 246e70f | 2008-09-26 04:48:09 +0000 | [diff] [blame] | 401 | if (Tok.isObjCAtKeyword(tok::objc_protocol)) |
| 402 | return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes()); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 403 | return ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes()); |
Steve Naroff | dac269b | 2007-08-20 21:31:48 +0000 | [diff] [blame] | 404 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 405 | |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 406 | // If the declspec consisted only of 'extern' and we have a string |
| 407 | // literal following it, this must be a C++ linkage specifier like |
| 408 | // 'extern "C"'. |
Chris Lattner | 3c6f6a7 | 2008-01-12 07:08:43 +0000 | [diff] [blame] | 409 | if (Tok.is(tok::string_literal) && getLang().CPlusPlus && |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 410 | DS.getStorageClassSpec() == DeclSpec::SCS_extern && |
| 411 | DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier) |
| 412 | return ParseLinkage(Declarator::FileContext); |
| 413 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 414 | // Parse the first declarator. |
| 415 | Declarator DeclaratorInfo(DS, Declarator::FileContext); |
| 416 | ParseDeclarator(DeclaratorInfo); |
| 417 | // Error parsing the declarator? |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 418 | if (!DeclaratorInfo.hasName()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 419 | // If so, skip until the semi-colon or a }. |
Douglas Gregor | cb43d99 | 2008-12-01 23:03:32 +0000 | [diff] [blame] | 420 | SkipUntil(tok::r_brace, true, true); |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 421 | if (Tok.is(tok::semi)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 422 | ConsumeToken(); |
| 423 | return 0; |
| 424 | } |
| 425 | |
| 426 | // If the declarator is the start of a function definition, handle it. |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 427 | if (Tok.is(tok::equal) || // int X()= -> not a function def |
| 428 | Tok.is(tok::comma) || // int X(), -> not a function def |
| 429 | Tok.is(tok::semi) || // int X(); -> not a function def |
| 430 | Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 431 | Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def |
| 432 | (getLang().CPlusPlus && |
| 433 | Tok.is(tok::l_paren)) ) { // int X(0) -> not a function def [C++] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 434 | // FALL THROUGH. |
| 435 | } else if (DeclaratorInfo.isFunctionDeclarator() && |
Argyrios Kyrtzidis | cf28c72 | 2008-06-21 10:00:56 +0000 | [diff] [blame] | 436 | (Tok.is(tok::l_brace) || // int X() {} |
| 437 | ( !getLang().CPlusPlus && |
| 438 | isDeclarationSpecifier() ))) { // int X(f) int f; {} |
Steve Naroff | e39bfd0 | 2008-02-14 02:58:32 +0000 | [diff] [blame] | 439 | if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) { |
| 440 | Diag(Tok, diag::err_function_declared_typedef); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 441 | |
Steve Naroff | e39bfd0 | 2008-02-14 02:58:32 +0000 | [diff] [blame] | 442 | if (Tok.is(tok::l_brace)) { |
| 443 | // This recovery skips the entire function body. It would be nice |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 444 | // to simply call ParseFunctionDefintion() below, however Sema |
Steve Naroff | e39bfd0 | 2008-02-14 02:58:32 +0000 | [diff] [blame] | 445 | // assumes the declarator represents a function, not a typedef. |
| 446 | ConsumeBrace(); |
| 447 | SkipUntil(tok::r_brace, true); |
| 448 | } else { |
| 449 | SkipUntil(tok::semi); |
| 450 | } |
| 451 | return 0; |
| 452 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 453 | return ParseFunctionDefinition(DeclaratorInfo); |
| 454 | } else { |
| 455 | if (DeclaratorInfo.isFunctionDeclarator()) |
| 456 | Diag(Tok, diag::err_expected_fn_body); |
| 457 | else |
| 458 | Diag(Tok, diag::err_expected_after_declarator); |
| 459 | SkipUntil(tok::semi); |
| 460 | return 0; |
| 461 | } |
| 462 | |
| 463 | // Parse the init-declarator-list for a normal declaration. |
| 464 | return ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo); |
| 465 | } |
| 466 | |
| 467 | /// ParseFunctionDefinition - We parsed and verified that the specified |
| 468 | /// Declarator is well formed. If this is a K&R-style function, read the |
| 469 | /// parameters declaration-list, then start the compound-statement. |
| 470 | /// |
Chris Lattner | a798ebc | 2008-04-05 05:52:15 +0000 | [diff] [blame] | 471 | /// function-definition: [C99 6.9.1] |
| 472 | /// decl-specs declarator declaration-list[opt] compound-statement |
| 473 | /// [C90] function-definition: [C99 6.7.1] - implicit int result |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 474 | /// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 475 | /// [C++] function-definition: [C++ 8.4] |
| 476 | /// decl-specifier-seq[opt] declarator ctor-initializer[opt] function-body |
| 477 | /// [C++] function-definition: [C++ 8.4] |
| 478 | /// decl-specifier-seq[opt] declarator function-try-block [TODO] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 479 | /// |
| 480 | Parser::DeclTy *Parser::ParseFunctionDefinition(Declarator &D) { |
| 481 | const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0); |
| 482 | assert(FnTypeInfo.Kind == DeclaratorChunk::Function && |
| 483 | "This isn't a function declarator!"); |
| 484 | const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun; |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 485 | |
Chris Lattner | a798ebc | 2008-04-05 05:52:15 +0000 | [diff] [blame] | 486 | // If this is C90 and the declspecs were completely missing, fudge in an |
| 487 | // implicit int. We do this here because this is the only place where |
| 488 | // declaration-specifiers are completely optional in the grammar. |
Chris Lattner | d658b56 | 2008-04-05 06:32:51 +0000 | [diff] [blame] | 489 | if (getLang().ImplicitInt && D.getDeclSpec().getParsedSpecifiers() == 0) { |
Chris Lattner | a798ebc | 2008-04-05 05:52:15 +0000 | [diff] [blame] | 490 | const char *PrevSpec; |
Chris Lattner | 31c2868 | 2008-10-20 02:01:34 +0000 | [diff] [blame] | 491 | D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int, |
| 492 | D.getIdentifierLoc(), |
| 493 | PrevSpec); |
Chris Lattner | a798ebc | 2008-04-05 05:52:15 +0000 | [diff] [blame] | 494 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 495 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 496 | // If this declaration was formed with a K&R-style identifier list for the |
| 497 | // arguments, parse declarations for all of the args next. |
| 498 | // int foo(a,b) int a; float b; {} |
| 499 | if (!FTI.hasPrototype && FTI.NumArgs != 0) |
| 500 | ParseKNRParamDeclarations(D); |
| 501 | |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 502 | // We should have either an opening brace or, in a C++ constructor, |
| 503 | // we may have a colon. |
Sebastian Redl | 618e5c0 | 2008-11-24 21:45:59 +0000 | [diff] [blame] | 504 | // FIXME: In C++, we might also find the 'try' keyword. |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 505 | if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 506 | Diag(Tok, diag::err_expected_fn_body); |
| 507 | |
| 508 | // Skip over garbage, until we get to '{'. Don't eat the '{'. |
| 509 | SkipUntil(tok::l_brace, true, true); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 510 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 511 | // If we didn't find the '{', bail out. |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 512 | if (Tok.isNot(tok::l_brace)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 513 | return 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 514 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 515 | |
Chris Lattner | b652cea | 2007-10-09 17:14:05 +0000 | [diff] [blame] | 516 | // Enter a scope for the function body. |
| 517 | EnterScope(Scope::FnScope|Scope::DeclScope); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 518 | |
Chris Lattner | b652cea | 2007-10-09 17:14:05 +0000 | [diff] [blame] | 519 | // Tell the actions module that we have entered a function definition with the |
| 520 | // specified Declarator for the function. |
| 521 | DeclTy *Res = Actions.ActOnStartOfFunctionDef(CurScope, D); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 522 | |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 523 | // If we have a colon, then we're probably parsing a C++ |
| 524 | // ctor-initializer. |
| 525 | if (Tok.is(tok::colon)) |
| 526 | ParseConstructorInitializer(Res); |
| 527 | |
| 528 | SourceLocation BraceLoc = Tok.getLocation(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 529 | return ParseFunctionStatementBody(Res, BraceLoc, BraceLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | /// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides |
| 533 | /// types for a function with a K&R-style identifier list for arguments. |
| 534 | void Parser::ParseKNRParamDeclarations(Declarator &D) { |
| 535 | // We know that the top-level of this declarator is a function. |
| 536 | DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun; |
| 537 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 538 | // Enter function-declaration scope, limiting any declarators to the |
| 539 | // function prototype scope, including parameter declarators. |
Eli Friedman | 6e33dd5 | 2008-05-20 09:10:20 +0000 | [diff] [blame] | 540 | EnterScope(Scope::FnScope|Scope::DeclScope); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 541 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 542 | // Read all the argument declarations. |
| 543 | while (isDeclarationSpecifier()) { |
| 544 | SourceLocation DSStart = Tok.getLocation(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 545 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 546 | // Parse the common declaration-specifiers piece. |
| 547 | DeclSpec DS; |
| 548 | ParseDeclarationSpecifiers(DS); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 549 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 550 | // C99 6.9.1p6: 'each declaration in the declaration list shall have at |
| 551 | // least one declarator'. |
| 552 | // NOTE: GCC just makes this an ext-warn. It's not clear what it does with |
| 553 | // the declarations though. It's trivial to ignore them, really hard to do |
| 554 | // anything else with them. |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 555 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 556 | Diag(DSStart, diag::err_declaration_does_not_declare_param); |
| 557 | ConsumeToken(); |
| 558 | continue; |
| 559 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 560 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 561 | // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other |
| 562 | // than register. |
| 563 | if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified && |
| 564 | DS.getStorageClassSpec() != DeclSpec::SCS_register) { |
| 565 | Diag(DS.getStorageClassSpecLoc(), |
| 566 | diag::err_invalid_storage_class_in_func_decl); |
| 567 | DS.ClearStorageClassSpecs(); |
| 568 | } |
| 569 | if (DS.isThreadSpecified()) { |
| 570 | Diag(DS.getThreadSpecLoc(), |
| 571 | diag::err_invalid_storage_class_in_func_decl); |
| 572 | DS.ClearStorageClassSpecs(); |
| 573 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 574 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 575 | // Parse the first declarator attached to this declspec. |
| 576 | Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext); |
| 577 | ParseDeclarator(ParmDeclarator); |
| 578 | |
| 579 | // Handle the full declarator list. |
| 580 | while (1) { |
| 581 | DeclTy *AttrList; |
| 582 | // If attributes are present, parse them. |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 583 | if (Tok.is(tok::kw___attribute)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 584 | // FIXME: attach attributes too. |
| 585 | AttrList = ParseAttributes(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 586 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 587 | // Ask the actions module to compute the type for this declarator. |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 588 | Action::DeclTy *Param = |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 589 | Actions.ActOnParamDeclarator(CurScope, ParmDeclarator); |
Steve Naroff | 2bd42fa | 2007-09-10 20:51:04 +0000 | [diff] [blame] | 590 | |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 591 | if (Param && |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 592 | // A missing identifier has already been diagnosed. |
| 593 | ParmDeclarator.getIdentifier()) { |
| 594 | |
| 595 | // Scan the argument list looking for the correct param to apply this |
| 596 | // type. |
| 597 | for (unsigned i = 0; ; ++i) { |
| 598 | // C99 6.9.1p6: those declarators shall declare only identifiers from |
| 599 | // the identifier list. |
| 600 | if (i == FTI.NumArgs) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 601 | Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param) |
Chris Lattner | 6898e33 | 2008-11-19 07:51:13 +0000 | [diff] [blame] | 602 | << ParmDeclarator.getIdentifier(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 603 | break; |
| 604 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 605 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 606 | if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) { |
| 607 | // Reject redefinitions of parameters. |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 608 | if (FTI.ArgInfo[i].Param) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 609 | Diag(ParmDeclarator.getIdentifierLoc(), |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 610 | diag::err_param_redefinition) |
Chris Lattner | 6898e33 | 2008-11-19 07:51:13 +0000 | [diff] [blame] | 611 | << ParmDeclarator.getIdentifier(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 612 | } else { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 613 | FTI.ArgInfo[i].Param = Param; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 614 | } |
| 615 | break; |
| 616 | } |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | // If we don't have a comma, it is either the end of the list (a ';') or |
| 621 | // an error, bail out. |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 622 | if (Tok.isNot(tok::comma)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 623 | break; |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 624 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 625 | // Consume the comma. |
| 626 | ConsumeToken(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 627 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 628 | // Parse the next declarator. |
| 629 | ParmDeclarator.clear(); |
| 630 | ParseDeclarator(ParmDeclarator); |
| 631 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 632 | |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 633 | if (Tok.is(tok::semi)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 634 | ConsumeToken(); |
| 635 | } else { |
| 636 | Diag(Tok, diag::err_parse_error); |
| 637 | // Skip to end of block or statement |
| 638 | SkipUntil(tok::semi, true); |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 639 | if (Tok.is(tok::semi)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 640 | ConsumeToken(); |
| 641 | } |
| 642 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 643 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 644 | // Leave prototype scope. |
| 645 | ExitScope(); |
| 646 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 647 | // The actions module must verify that all arguments were declared. |
| 648 | } |
| 649 | |
| 650 | |
| 651 | /// ParseAsmStringLiteral - This is just a normal string-literal, but is not |
| 652 | /// allowed to be a wide string, and is not subject to character translation. |
| 653 | /// |
| 654 | /// [GNU] asm-string-literal: |
| 655 | /// string-literal |
| 656 | /// |
Anders Carlsson | 6a0ef4b | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 657 | Parser::ExprResult Parser::ParseAsmStringLiteral() { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 658 | if (!isTokenStringLiteral()) { |
| 659 | Diag(Tok, diag::err_expected_string_literal); |
Anders Carlsson | 6a0ef4b | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 660 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 661 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 662 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 663 | ExprResult Res = ParseStringLiteralExpression(); |
Anders Carlsson | 6a0ef4b | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 664 | if (Res.isInvalid) return true; |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 665 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 666 | // TODO: Diagnose: wide string literal in 'asm' |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 667 | |
Anders Carlsson | 6a0ef4b | 2007-11-20 19:21:03 +0000 | [diff] [blame] | 668 | return Res; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | /// ParseSimpleAsm |
| 672 | /// |
| 673 | /// [GNU] simple-asm-expr: |
| 674 | /// 'asm' '(' asm-string-literal ')' |
| 675 | /// |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 676 | Parser::ExprResult Parser::ParseSimpleAsm() { |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 677 | assert(Tok.is(tok::kw_asm) && "Not an asm!"); |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 678 | SourceLocation Loc = ConsumeToken(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 679 | |
Chris Lattner | 0007322 | 2007-10-09 17:23:58 +0000 | [diff] [blame] | 680 | if (Tok.isNot(tok::l_paren)) { |
Chris Lattner | 1ab3b96 | 2008-11-18 07:48:38 +0000 | [diff] [blame] | 681 | Diag(Tok, diag::err_expected_lparen_after) << "asm"; |
Chris Lattner | aec3a1e | 2008-05-27 23:32:43 +0000 | [diff] [blame] | 682 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 683 | } |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 684 | |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 685 | ConsumeParen(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 686 | |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 687 | ExprResult Result = ParseAsmStringLiteral(); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 688 | |
Chris Lattner | 8f5421a | 2008-10-20 07:36:58 +0000 | [diff] [blame] | 689 | if (Result.isInvalid) |
Daniel Dunbar | a80f874 | 2008-08-05 01:35:17 +0000 | [diff] [blame] | 690 | SkipUntil(tok::r_paren); |
Chris Lattner | 8f5421a | 2008-10-20 07:36:58 +0000 | [diff] [blame] | 691 | else |
Daniel Dunbar | a80f874 | 2008-08-05 01:35:17 +0000 | [diff] [blame] | 692 | MatchRHSPunctuation(tok::r_paren, Loc); |
Mike Stump | a6f0177 | 2008-06-19 19:28:49 +0000 | [diff] [blame] | 693 | |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 694 | return Result; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 695 | } |
| 696 | |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 697 | /// TryAnnotateTypeOrScopeToken - If the current token position is on a |
| 698 | /// typename (possibly qualified in C++) or a C++ scope specifier not followed |
| 699 | /// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens |
| 700 | /// with a single annotation token representing the typename or C++ scope |
| 701 | /// respectively. |
| 702 | /// This simplifies handling of C++ scope specifiers and allows efficient |
| 703 | /// backtracking without the need to re-parse and resolve nested-names and |
| 704 | /// typenames. |
Argyrios Kyrtzidis | 44802cc | 2008-11-26 21:51:07 +0000 | [diff] [blame] | 705 | /// It will mainly be called when we expect to treat identifiers as typenames |
| 706 | /// (if they are typenames). For example, in C we do not expect identifiers |
| 707 | /// inside expressions to be treated as typenames so it will not be called |
| 708 | /// for expressions in C. |
| 709 | /// The benefit for C/ObjC is that a typename will be annotated and |
| 710 | /// Actions.isTypeName will not be needed to be called again (e.g. isTypeName |
| 711 | /// will not be called twice, once to check whether we have a declaration |
| 712 | /// specifier, and another one to get the actual type inside |
| 713 | /// ParseDeclarationSpecifiers). |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 714 | void Parser::TryAnnotateTypeOrScopeToken() { |
| 715 | if (Tok.is(tok::annot_qualtypename) || Tok.is(tok::annot_cxxscope)) |
| 716 | return; |
| 717 | |
| 718 | CXXScopeSpec SS; |
Argyrios Kyrtzidis | 4bdd91c | 2008-11-26 21:41:52 +0000 | [diff] [blame] | 719 | if (getLang().CPlusPlus) |
| 720 | MaybeParseCXXScopeSpecifier(SS); |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 721 | |
| 722 | if (Tok.is(tok::identifier)) { |
| 723 | TypeTy *Ty = Actions.isTypeName(*Tok.getIdentifierInfo(), CurScope, &SS); |
| 724 | if (Ty) { |
| 725 | // This is a typename. Replace the current token in-place with an |
| 726 | // annotation type token. |
| 727 | Tok.setKind(tok::annot_qualtypename); |
| 728 | Tok.setAnnotationValue(Ty); |
| 729 | Tok.setAnnotationEndLoc(Tok.getLocation()); |
| 730 | if (SS.isNotEmpty()) // it was a C++ qualified type name. |
| 731 | Tok.setLocation(SS.getBeginLoc()); |
| 732 | |
| 733 | // In case the tokens were cached, have Preprocessor replace them with the |
| 734 | // annotation token. |
| 735 | PP.AnnotateCachedTokens(Tok); |
| 736 | return; |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | if (SS.isNotEmpty()) { |
| 741 | // A C++ scope specifier that isn't followed by a typename. |
Argyrios Kyrtzidis | 08b2c37 | 2008-11-19 15:22:16 +0000 | [diff] [blame] | 742 | // Push the current token back into the token stream (or revert it if it is |
| 743 | // cached) and use an annotation scope token for current token. |
| 744 | if (PP.isBacktrackEnabled()) |
| 745 | PP.RevertCachedTokens(1); |
| 746 | else |
| 747 | PP.EnterToken(Tok); |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 748 | Tok.setKind(tok::annot_cxxscope); |
| 749 | Tok.setAnnotationValue(SS.getScopeRep()); |
| 750 | Tok.setAnnotationRange(SS.getRange()); |
| 751 | |
| 752 | // In case the tokens were cached, have Preprocessor replace them with the |
| 753 | // annotation token. |
| 754 | PP.AnnotateCachedTokens(Tok); |
| 755 | } |
| 756 | } |
| 757 | |
| 758 | /// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only |
| 759 | /// annotates C++ scope specifiers. |
Argyrios Kyrtzidis | 4bdd91c | 2008-11-26 21:41:52 +0000 | [diff] [blame] | 760 | void Parser::TryAnnotateCXXScopeToken() { |
| 761 | assert(getLang().CPlusPlus && |
| 762 | "Call sites of this function should be guarded by checking for C++."); |
| 763 | |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 764 | if (Tok.is(tok::annot_cxxscope)) |
| 765 | return; |
| 766 | |
Argyrios Kyrtzidis | 4bdd91c | 2008-11-26 21:41:52 +0000 | [diff] [blame] | 767 | CXXScopeSpec SS; |
| 768 | if (MaybeParseCXXScopeSpecifier(SS)) { |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 769 | |
Argyrios Kyrtzidis | 08b2c37 | 2008-11-19 15:22:16 +0000 | [diff] [blame] | 770 | // Push the current token back into the token stream (or revert it if it is |
| 771 | // cached) and use an annotation scope token for current token. |
| 772 | if (PP.isBacktrackEnabled()) |
| 773 | PP.RevertCachedTokens(1); |
| 774 | else |
| 775 | PP.EnterToken(Tok); |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 776 | Tok.setKind(tok::annot_cxxscope); |
| 777 | Tok.setAnnotationValue(SS.getScopeRep()); |
| 778 | Tok.setAnnotationRange(SS.getRange()); |
| 779 | |
| 780 | // In case the tokens were cached, have Preprocessor replace them with the |
| 781 | // annotation token. |
| 782 | PP.AnnotateCachedTokens(Tok); |
| 783 | } |
| 784 | } |