blob: 8a5498828e3bd4032d2919250fe496b0742b50e1 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001//===--- Parser.cpp - C Language Family Parser ----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-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 Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Parser interfaces.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/Parser.h"
Daniel Dunbarcc7b1602008-08-11 03:45:03 +000015#include "clang/Basic/Diagnostic.h"
Chris Lattner4b009652007-07-25 00:24:17 +000016#include "clang/Parse/DeclSpec.h"
17#include "clang/Parse/Scope.h"
Chris Lattnerdaa5c002008-10-20 06:45:43 +000018#include "ExtensionRAIIObject.h"
Daniel Dunbar47f99c92008-10-04 19:21:03 +000019#include "ParsePragma.h"
Chris Lattner4b009652007-07-25 00:24:17 +000020using namespace clang;
21
22Parser::Parser(Preprocessor &pp, Action &actions)
23 : PP(pp), Actions(actions), Diags(PP.getDiagnostics()) {
24 Tok.setKind(tok::eof);
25 CurScope = 0;
26 NumCachedScopes = 0;
27 ParenCount = BracketCount = BraceCount = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +000028 ObjCImpDecl = 0;
Daniel Dunbar47f99c92008-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
Argiris Kirtzidis9d784332008-06-24 22:12:16 +000036 // Instantiate a LexedMethodsForTopClass for all the non-nested classes.
37 PushTopClassStack();
Chris Lattner4b009652007-07-25 00:24:17 +000038}
39
40/// Out-of-line virtual destructor to provide home for Action class.
41Action::~Action() {}
42
43
Chris Lattner9943e982008-11-22 00:59:29 +000044DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
Chris Lattnerf006a222008-11-18 07:48:38 +000045 return Diags.Report(FullSourceLoc(Loc,PP.getSourceManager()), DiagID);
46}
47
Chris Lattner9943e982008-11-22 00:59:29 +000048DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) {
Chris Lattnerf006a222008-11-18 07:48:38 +000049 return Diag(Tok.getLocation(), DiagID);
Chris Lattner4b009652007-07-25 00:24:17 +000050}
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.
57SourceLocation Parser::MatchRHSPunctuation(tok::TokenKind RHSTok,
58 SourceLocation LHSLoc) {
Mike Stumpeda58eb2008-06-19 19:28:49 +000059
Chris Lattner17a5fb62007-10-09 17:23:58 +000060 if (Tok.is(RHSTok))
Chris Lattner4b009652007-07-25 00:24:17 +000061 return ConsumeAnyToken();
Mike Stumpeda58eb2008-06-19 19:28:49 +000062
Chris Lattner4b009652007-07-25 00:24:17 +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;
71 case tok::greater: LHSName = "<"; DID = diag::err_expected_greater; break;
72 }
73 Diag(Tok, DID);
Chris Lattner921342c2008-11-23 23:17:07 +000074 Diag(LHSLoc, diag::note_matching) << LHSName;
Chris Lattner4b009652007-07-25 00:24:17 +000075 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.
85bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
86 const char *Msg, tok::TokenKind SkipToTok) {
Chris Lattner17a5fb62007-10-09 17:23:58 +000087 if (Tok.is(ExpectedTok)) {
Chris Lattner4b009652007-07-25 00:24:17 +000088 ConsumeAnyToken();
89 return false;
90 }
Mike Stumpeda58eb2008-06-19 19:28:49 +000091
Chris Lattnerf006a222008-11-18 07:48:38 +000092 Diag(Tok, DiagID) << Msg;
Chris Lattner4b009652007-07-25 00:24:17 +000093 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
103/// it (unless DontConsume is true). Because we cannot guarantee that the
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 Stumpeda58eb2008-06-19 19:28:49 +0000107///
Chris Lattner4b009652007-07-25 00:24:17 +0000108/// If SkipUntil finds the specified token, it returns true, otherwise it
Mike Stumpeda58eb2008-06-19 19:28:49 +0000109/// returns false.
Chris Lattner4b009652007-07-25 00:24:17 +0000110bool 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 Lattner17a5fb62007-10-09 17:23:58 +0000118 if (Tok.is(Toks[i])) {
Chris Lattner4b009652007-07-25 00:24:17 +0000119 if (DontConsume) {
120 // Noop, don't consume the token.
121 } else {
122 ConsumeAnyToken();
123 }
124 return true;
125 }
126 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000127
Chris Lattner4b009652007-07-25 00:24:17 +0000128 switch (Tok.getKind()) {
129 case tok::eof:
130 // Ran out of tokens.
131 return false;
Mike Stumpeda58eb2008-06-19 19:28:49 +0000132
Chris Lattner4b009652007-07-25 00:24:17 +0000133 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 Stumpeda58eb2008-06-19 19:28:49 +0000148
Chris Lattner4b009652007-07-25 00:24:17 +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:
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 Stumpeda58eb2008-06-19 19:28:49 +0000169
Chris Lattner4b009652007-07-25 00:24:17 +0000170 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 Stumpeda58eb2008-06-19 19:28:49 +0000184 }
Chris Lattner4b009652007-07-25 00:24:17 +0000185}
186
187//===----------------------------------------------------------------------===//
188// Scope manipulation
189//===----------------------------------------------------------------------===//
190
191/// EnterScope - Start a new scope.
192void Parser::EnterScope(unsigned ScopeFlags) {
193 if (NumCachedScopes) {
194 Scope *N = ScopeCache[--NumCachedScopes];
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.
203void Parser::ExitScope() {
204 assert(CurScope && "Scope imbalance!");
205
Chris Lattner62231492007-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 Naroff9637a9b2007-10-09 22:01:59 +0000209 Actions.ActOnPopScope(Tok.getLocation(), CurScope);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000210
Chris Lattner4b009652007-07-25 00:24:17 +0000211 Scope *OldScope = CurScope;
212 CurScope = OldScope->getParent();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000213
Chris Lattner4b009652007-07-25 00:24:17 +0000214 if (NumCachedScopes == ScopeCacheSize)
215 delete OldScope;
216 else
217 ScopeCache[NumCachedScopes++] = OldScope;
218}
219
220
221
222
223//===----------------------------------------------------------------------===//
224// C99 6.9: External Definitions.
225//===----------------------------------------------------------------------===//
226
227Parser::~Parser() {
228 // If we still have scopes active, delete the scope tree.
229 delete CurScope;
Mike Stumpeda58eb2008-06-19 19:28:49 +0000230
Chris Lattner4b009652007-07-25 00:24:17 +0000231 // Free the scope cache.
232 for (unsigned i = 0, e = NumCachedScopes; i != e; ++i)
233 delete ScopeCache[i];
Daniel Dunbar47f99c92008-10-04 19:21:03 +0000234
235 // Remove the pragma handlers we installed.
236 PP.RemovePragmaHandler(0, PackHandler);
237 delete PackHandler;
Chris Lattner4b009652007-07-25 00:24:17 +0000238}
239
240/// Initialize - Warm up the parser.
241///
242void Parser::Initialize() {
243 // Prime the lexer look-ahead.
244 ConsumeToken();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000245
Chris Lattnera7549902007-08-26 06:24:45 +0000246 // Create the translation unit scope. Install it as the current scope.
Chris Lattner4b009652007-07-25 00:24:17 +0000247 assert(CurScope == 0 && "A scope is already active?");
Chris Lattnera7549902007-08-26 06:24:45 +0000248 EnterScope(Scope::DeclScope);
Steve Naroff9637a9b2007-10-09 22:01:59 +0000249 Actions.ActOnTranslationUnitScope(Tok.getLocation(), CurScope);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000250
Chris Lattner17a5fb62007-10-09 17:23:58 +0000251 if (Tok.is(tok::eof) &&
Chris Lattner7bdc85d2007-08-25 05:47:03 +0000252 !getLang().CPlusPlus) // Empty source file is an extension in C
Chris Lattner4b009652007-07-25 00:24:17 +0000253 Diag(Tok, diag::ext_empty_source_file);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000254
Chris Lattner32352462007-08-29 22:54:08 +0000255 // Initialization for Objective-C context sensitive keywords recognition.
Ted Kremenek42730c52008-01-07 19:49:32 +0000256 // Referenced in Parser::ParseObjCTypeQualifierList.
Chris Lattner32352462007-08-29 22:54:08 +0000257 if (getLang().ObjC1) {
Ted Kremenek42730c52008-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 Lattner32352462007-08-29 22:54:08 +0000264 }
Daniel Dunbar4837ae72008-08-14 22:04:54 +0000265
266 Ident_super = &PP.getIdentifierTable().get("super");
Chris Lattner4b009652007-07-25 00:24:17 +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 Naroffca44ffd2007-11-29 23:05:20 +0000271bool Parser::ParseTopLevelDecl(DeclTy*& Result) {
272 Result = 0;
Chris Lattnerc1aea812008-08-23 03:19:52 +0000273 if (Tok.is(tok::eof)) {
274 Actions.ActOnEndOfTranslationUnit();
275 return true;
276 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000277
Steve Naroffca44ffd2007-11-29 23:05:20 +0000278 Result = ParseExternalDeclaration();
Chris Lattner4b009652007-07-25 00:24:17 +0000279 return false;
280}
281
Chris Lattner4b009652007-07-25 00:24:17 +0000282/// ParseTranslationUnit:
283/// translation-unit: [C99 6.9]
Mike Stumpeda58eb2008-06-19 19:28:49 +0000284/// external-declaration
285/// translation-unit external-declaration
Chris Lattner4b009652007-07-25 00:24:17 +0000286void Parser::ParseTranslationUnit() {
Chris Lattnerbd0f8f52008-08-23 02:06:50 +0000287 Initialize(); // pushes a scope.
Mike Stumpeda58eb2008-06-19 19:28:49 +0000288
Steve Naroffca44ffd2007-11-29 23:05:20 +0000289 DeclTy *Res;
290 while (!ParseTopLevelDecl(Res))
Chris Lattner4b009652007-07-25 00:24:17 +0000291 /*parse them all*/;
Chris Lattnerf7df4d12008-08-23 02:00:52 +0000292
293 ExitScope();
294 assert(CurScope == 0 && "Scope imbalance!");
Chris Lattner4b009652007-07-25 00:24:17 +0000295}
296
297/// ParseExternalDeclaration:
Chris Lattnereb54a362008-12-08 21:59:01 +0000298///
Douglas Gregor61818c52008-11-21 16:10:08 +0000299/// external-declaration: [C99 6.9], declaration: [C++ dcl.dcl]
Chris Lattner06f4e752007-08-10 20:57:02 +0000300/// function-definition
301/// declaration
Chris Lattner4b009652007-07-25 00:24:17 +0000302/// [EXT] ';'
303/// [GNU] asm-definition
Chris Lattner06f4e752007-08-10 20:57:02 +0000304/// [GNU] __extension__ external-declaration
Chris Lattner4b009652007-07-25 00:24:17 +0000305/// [OBJC] objc-class-definition
306/// [OBJC] objc-class-declaration
307/// [OBJC] objc-alias-declaration
308/// [OBJC] objc-protocol-definition
309/// [OBJC] objc-method-definition
310/// [OBJC] @end
Douglas Gregor61818c52008-11-21 16:10:08 +0000311/// [C++] linkage-specification
Chris Lattner4b009652007-07-25 00:24:17 +0000312/// [GNU] asm-definition:
313/// simple-asm-expr ';'
314///
315Parser::DeclTy *Parser::ParseExternalDeclaration() {
316 switch (Tok.getKind()) {
317 case tok::semi:
318 Diag(Tok, diag::ext_top_level_semi);
319 ConsumeToken();
320 // TODO: Invoke action for top-level semicolon.
321 return 0;
Chris Lattnereb54a362008-12-08 21:59:01 +0000322 case tok::r_brace:
323 Diag(Tok, diag::err_expected_external_declaration);
324 ConsumeBrace();
325 return 0;
326 case tok::eof:
327 Diag(Tok, diag::err_expected_external_declaration);
328 return 0;
Chris Lattner06f4e752007-08-10 20:57:02 +0000329 case tok::kw___extension__: {
Chris Lattnerdaa5c002008-10-20 06:45:43 +0000330 // __extension__ silences extension warnings in the subexpression.
331 ExtensionRAIIObject O(Diags); // Use RAII to do this.
Chris Lattner658e6872008-10-20 06:51:33 +0000332 ConsumeToken();
Chris Lattnerdaa5c002008-10-20 06:45:43 +0000333 return ParseExternalDeclaration();
Chris Lattner06f4e752007-08-10 20:57:02 +0000334 }
Anders Carlsson4f7f4412008-02-08 00:33:21 +0000335 case tok::kw_asm: {
336 ExprResult Result = ParseSimpleAsm();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000337
Anders Carlssonf41100b2008-02-08 00:23:11 +0000338 ExpectAndConsume(tok::semi, diag::err_expected_semi_after,
339 "top-level asm block");
Anders Carlsson4f7f4412008-02-08 00:33:21 +0000340
341 if (!Result.isInvalid)
342 return Actions.ActOnFileScopeAsmDecl(Tok.getLocation(), Result.Val);
Chris Lattnerb36c3652008-05-27 23:32:43 +0000343 return 0;
Anders Carlsson4f7f4412008-02-08 00:33:21 +0000344 }
Chris Lattner4b009652007-07-25 00:24:17 +0000345 case tok::at:
346 // @ is not a legal token unless objc is enabled, no need to check.
Steve Narofffaed3bf2007-09-10 20:51:04 +0000347 return ParseObjCAtDirectives();
Chris Lattner4b009652007-07-25 00:24:17 +0000348 case tok::minus:
Chris Lattner4b009652007-07-25 00:24:17 +0000349 case tok::plus:
Fariborz Jahaniane6f59f12007-11-10 16:31:34 +0000350 if (getLang().ObjC1)
Steve Naroff18c83382007-11-13 23:01:27 +0000351 return ParseObjCMethodDefinition();
Fariborz Jahaniane6f59f12007-11-10 16:31:34 +0000352 else {
Chris Lattner4b009652007-07-25 00:24:17 +0000353 Diag(Tok, diag::err_expected_external_declaration);
354 ConsumeToken();
355 }
356 return 0;
Chris Lattnerf7b2e552007-08-25 06:57:03 +0000357 case tok::kw_namespace:
Chris Lattner4b009652007-07-25 00:24:17 +0000358 case tok::kw_typedef:
Douglas Gregorb3bec712008-12-01 23:54:00 +0000359 case tok::kw_template:
360 case tok::kw_export: // As in 'export template'
Chris Lattner9c135722007-08-25 18:15:16 +0000361 // A function definition cannot start with a these keywords.
Chris Lattner4b009652007-07-25 00:24:17 +0000362 return ParseDeclaration(Declarator::FileContext);
Chris Lattnereb54a362008-12-08 21:59:01 +0000363
Chris Lattner4b009652007-07-25 00:24:17 +0000364 default:
365 // We can't tell whether this is a function-definition or declaration yet.
366 return ParseDeclarationOrFunctionDefinition();
367 }
368}
369
370/// ParseDeclarationOrFunctionDefinition - Parse either a function-definition or
371/// a declaration. We can't tell which we have until we read up to the
372/// compound-statement in function-definition.
373///
374/// function-definition: [C99 6.9.1]
Chris Lattnera15e9d22008-04-05 05:52:15 +0000375/// decl-specs declarator declaration-list[opt] compound-statement
376/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpeda58eb2008-06-19 19:28:49 +0000377/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Chris Lattnera15e9d22008-04-05 05:52:15 +0000378///
Chris Lattner4b009652007-07-25 00:24:17 +0000379/// declaration: [C99 6.7]
Chris Lattneraac973e2007-08-22 06:06:56 +0000380/// declaration-specifiers init-declarator-list[opt] ';'
381/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode]
Chris Lattner4b009652007-07-25 00:24:17 +0000382/// [OMP] threadprivate-directive [TODO]
383///
384Parser::DeclTy *Parser::ParseDeclarationOrFunctionDefinition() {
385 // Parse the common declaration-specifiers piece.
386 DeclSpec DS;
387 ParseDeclarationSpecifiers(DS);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000388
Chris Lattner4b009652007-07-25 00:24:17 +0000389 // C99 6.7.2.3p6: Handle "struct-or-union identifier;", "enum { X };"
390 // declaration-specifiers init-declarator-list[opt] ';'
Chris Lattner17a5fb62007-10-09 17:23:58 +0000391 if (Tok.is(tok::semi)) {
Chris Lattner4b009652007-07-25 00:24:17 +0000392 ConsumeToken();
393 return Actions.ParsedFreeStandingDeclSpec(CurScope, DS);
394 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000395
Daniel Dunbar28680d12008-09-26 04:48:09 +0000396 // ObjC2 allows prefix attributes on class interfaces and protocols.
397 // FIXME: This still needs better diagnostics. We should only accept
398 // attributes here, no types, etc.
Chris Lattner17a5fb62007-10-09 17:23:58 +0000399 if (getLang().ObjC2 && Tok.is(tok::at)) {
Steve Narofffb367882007-08-20 21:31:48 +0000400 SourceLocation AtLoc = ConsumeToken(); // the "@"
Daniel Dunbar28680d12008-09-26 04:48:09 +0000401 if (!Tok.isObjCAtKeyword(tok::objc_interface) &&
402 !Tok.isObjCAtKeyword(tok::objc_protocol)) {
403 Diag(Tok, diag::err_objc_unexpected_attr);
Chris Lattner847f5c12007-12-27 19:57:00 +0000404 SkipUntil(tok::semi); // FIXME: better skip?
405 return 0;
406 }
Fariborz Jahanianf9c0a0d2008-01-02 19:17:38 +0000407 const char *PrevSpec = 0;
408 if (DS.SetTypeSpecType(DeclSpec::TST_unspecified, AtLoc, PrevSpec))
Chris Lattnerf006a222008-11-18 07:48:38 +0000409 Diag(AtLoc, diag::err_invalid_decl_spec_combination) << PrevSpec;
Daniel Dunbar28680d12008-09-26 04:48:09 +0000410 if (Tok.isObjCAtKeyword(tok::objc_protocol))
411 return ParseObjCAtProtocolDeclaration(AtLoc, DS.getAttributes());
Mike Stumpeda58eb2008-06-19 19:28:49 +0000412 return ParseObjCAtInterfaceDeclaration(AtLoc, DS.getAttributes());
Steve Narofffb367882007-08-20 21:31:48 +0000413 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000414
Chris Lattner806a5f52008-01-12 07:05:38 +0000415 // If the declspec consisted only of 'extern' and we have a string
416 // literal following it, this must be a C++ linkage specifier like
417 // 'extern "C"'.
Chris Lattner1b5c9f72008-01-12 07:08:43 +0000418 if (Tok.is(tok::string_literal) && getLang().CPlusPlus &&
Chris Lattner806a5f52008-01-12 07:05:38 +0000419 DS.getStorageClassSpec() == DeclSpec::SCS_extern &&
420 DS.getParsedSpecifiers() == DeclSpec::PQ_StorageClassSpecifier)
421 return ParseLinkage(Declarator::FileContext);
422
Chris Lattner4b009652007-07-25 00:24:17 +0000423 // Parse the first declarator.
424 Declarator DeclaratorInfo(DS, Declarator::FileContext);
425 ParseDeclarator(DeclaratorInfo);
426 // Error parsing the declarator?
Douglas Gregor6704b312008-11-17 22:58:34 +0000427 if (!DeclaratorInfo.hasName()) {
Chris Lattner4b009652007-07-25 00:24:17 +0000428 // If so, skip until the semi-colon or a }.
Douglas Gregor6f730612008-12-01 23:03:32 +0000429 SkipUntil(tok::r_brace, true, true);
Chris Lattner17a5fb62007-10-09 17:23:58 +0000430 if (Tok.is(tok::semi))
Chris Lattner4b009652007-07-25 00:24:17 +0000431 ConsumeToken();
432 return 0;
433 }
434
435 // If the declarator is the start of a function definition, handle it.
Chris Lattner17a5fb62007-10-09 17:23:58 +0000436 if (Tok.is(tok::equal) || // int X()= -> not a function def
437 Tok.is(tok::comma) || // int X(), -> not a function def
438 Tok.is(tok::semi) || // int X(); -> not a function def
439 Tok.is(tok::kw_asm) || // int X() __asm__ -> not a function def
Argiris Kirtzidis9e55d462008-10-06 17:10:33 +0000440 Tok.is(tok::kw___attribute) || // int X() __attr__ -> not a function def
441 (getLang().CPlusPlus &&
442 Tok.is(tok::l_paren)) ) { // int X(0) -> not a function def [C++]
Chris Lattner4b009652007-07-25 00:24:17 +0000443 // FALL THROUGH.
444 } else if (DeclaratorInfo.isFunctionDeclarator() &&
Argiris Kirtzidisd1346a52008-06-21 10:00:56 +0000445 (Tok.is(tok::l_brace) || // int X() {}
446 ( !getLang().CPlusPlus &&
447 isDeclarationSpecifier() ))) { // int X(f) int f; {}
Steve Naroff83298852008-02-14 02:58:32 +0000448 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) {
449 Diag(Tok, diag::err_function_declared_typedef);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000450
Steve Naroff83298852008-02-14 02:58:32 +0000451 if (Tok.is(tok::l_brace)) {
452 // This recovery skips the entire function body. It would be nice
Douglas Gregordd861062008-12-05 18:15:24 +0000453 // to simply call ParseFunctionDefinition() below, however Sema
Steve Naroff83298852008-02-14 02:58:32 +0000454 // assumes the declarator represents a function, not a typedef.
455 ConsumeBrace();
456 SkipUntil(tok::r_brace, true);
457 } else {
458 SkipUntil(tok::semi);
459 }
460 return 0;
461 }
Chris Lattner4b009652007-07-25 00:24:17 +0000462 return ParseFunctionDefinition(DeclaratorInfo);
463 } else {
464 if (DeclaratorInfo.isFunctionDeclarator())
465 Diag(Tok, diag::err_expected_fn_body);
466 else
467 Diag(Tok, diag::err_expected_after_declarator);
468 SkipUntil(tok::semi);
469 return 0;
470 }
471
472 // Parse the init-declarator-list for a normal declaration.
473 return ParseInitDeclaratorListAfterFirstDeclarator(DeclaratorInfo);
474}
475
476/// ParseFunctionDefinition - We parsed and verified that the specified
477/// Declarator is well formed. If this is a K&R-style function, read the
478/// parameters declaration-list, then start the compound-statement.
479///
Chris Lattnera15e9d22008-04-05 05:52:15 +0000480/// function-definition: [C99 6.9.1]
481/// decl-specs declarator declaration-list[opt] compound-statement
482/// [C90] function-definition: [C99 6.7.1] - implicit int result
Mike Stumpeda58eb2008-06-19 19:28:49 +0000483/// [C90] decl-specs[opt] declarator declaration-list[opt] compound-statement
Douglas Gregora65e8dd2008-11-05 04:29:56 +0000484/// [C++] function-definition: [C++ 8.4]
485/// decl-specifier-seq[opt] declarator ctor-initializer[opt] function-body
486/// [C++] function-definition: [C++ 8.4]
487/// decl-specifier-seq[opt] declarator function-try-block [TODO]
Chris Lattner4b009652007-07-25 00:24:17 +0000488///
489Parser::DeclTy *Parser::ParseFunctionDefinition(Declarator &D) {
490 const DeclaratorChunk &FnTypeInfo = D.getTypeObject(0);
491 assert(FnTypeInfo.Kind == DeclaratorChunk::Function &&
492 "This isn't a function declarator!");
493 const DeclaratorChunk::FunctionTypeInfo &FTI = FnTypeInfo.Fun;
Mike Stumpeda58eb2008-06-19 19:28:49 +0000494
Chris Lattnera15e9d22008-04-05 05:52:15 +0000495 // If this is C90 and the declspecs were completely missing, fudge in an
496 // implicit int. We do this here because this is the only place where
497 // declaration-specifiers are completely optional in the grammar.
Chris Lattner6ab935b2008-04-05 06:32:51 +0000498 if (getLang().ImplicitInt && D.getDeclSpec().getParsedSpecifiers() == 0) {
Chris Lattnera15e9d22008-04-05 05:52:15 +0000499 const char *PrevSpec;
Chris Lattner509fc802008-10-20 02:01:34 +0000500 D.getMutableDeclSpec().SetTypeSpecType(DeclSpec::TST_int,
501 D.getIdentifierLoc(),
502 PrevSpec);
Chris Lattnera15e9d22008-04-05 05:52:15 +0000503 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000504
Chris Lattner4b009652007-07-25 00:24:17 +0000505 // If this declaration was formed with a K&R-style identifier list for the
506 // arguments, parse declarations for all of the args next.
507 // int foo(a,b) int a; float b; {}
508 if (!FTI.hasPrototype && FTI.NumArgs != 0)
509 ParseKNRParamDeclarations(D);
510
Douglas Gregora65e8dd2008-11-05 04:29:56 +0000511 // We should have either an opening brace or, in a C++ constructor,
512 // we may have a colon.
Sebastian Redlf22270b2008-11-24 21:45:59 +0000513 // FIXME: In C++, we might also find the 'try' keyword.
Douglas Gregora65e8dd2008-11-05 04:29:56 +0000514 if (Tok.isNot(tok::l_brace) && Tok.isNot(tok::colon)) {
Chris Lattner4b009652007-07-25 00:24:17 +0000515 Diag(Tok, diag::err_expected_fn_body);
516
517 // Skip over garbage, until we get to '{'. Don't eat the '{'.
518 SkipUntil(tok::l_brace, true, true);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000519
Chris Lattner4b009652007-07-25 00:24:17 +0000520 // If we didn't find the '{', bail out.
Chris Lattner17a5fb62007-10-09 17:23:58 +0000521 if (Tok.isNot(tok::l_brace))
Chris Lattner4b009652007-07-25 00:24:17 +0000522 return 0;
Chris Lattner4b009652007-07-25 00:24:17 +0000523 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000524
Chris Lattnerea148702007-10-09 17:14:05 +0000525 // Enter a scope for the function body.
526 EnterScope(Scope::FnScope|Scope::DeclScope);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000527
Chris Lattnerea148702007-10-09 17:14:05 +0000528 // Tell the actions module that we have entered a function definition with the
529 // specified Declarator for the function.
530 DeclTy *Res = Actions.ActOnStartOfFunctionDef(CurScope, D);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000531
Douglas Gregora65e8dd2008-11-05 04:29:56 +0000532 // If we have a colon, then we're probably parsing a C++
533 // ctor-initializer.
534 if (Tok.is(tok::colon))
535 ParseConstructorInitializer(Res);
536
537 SourceLocation BraceLoc = Tok.getLocation();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000538 return ParseFunctionStatementBody(Res, BraceLoc, BraceLoc);
Chris Lattner4b009652007-07-25 00:24:17 +0000539}
540
541/// ParseKNRParamDeclarations - Parse 'declaration-list[opt]' which provides
542/// types for a function with a K&R-style identifier list for arguments.
543void Parser::ParseKNRParamDeclarations(Declarator &D) {
544 // We know that the top-level of this declarator is a function.
545 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
546
Chris Lattner3e254fb2008-04-08 04:40:51 +0000547 // Enter function-declaration scope, limiting any declarators to the
548 // function prototype scope, including parameter declarators.
Eli Friedman30165752008-05-20 09:10:20 +0000549 EnterScope(Scope::FnScope|Scope::DeclScope);
Chris Lattner3e254fb2008-04-08 04:40:51 +0000550
Chris Lattner4b009652007-07-25 00:24:17 +0000551 // Read all the argument declarations.
552 while (isDeclarationSpecifier()) {
553 SourceLocation DSStart = Tok.getLocation();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000554
Chris Lattner4b009652007-07-25 00:24:17 +0000555 // Parse the common declaration-specifiers piece.
556 DeclSpec DS;
557 ParseDeclarationSpecifiers(DS);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000558
Chris Lattner4b009652007-07-25 00:24:17 +0000559 // C99 6.9.1p6: 'each declaration in the declaration list shall have at
560 // least one declarator'.
561 // NOTE: GCC just makes this an ext-warn. It's not clear what it does with
562 // the declarations though. It's trivial to ignore them, really hard to do
563 // anything else with them.
Chris Lattner17a5fb62007-10-09 17:23:58 +0000564 if (Tok.is(tok::semi)) {
Chris Lattner4b009652007-07-25 00:24:17 +0000565 Diag(DSStart, diag::err_declaration_does_not_declare_param);
566 ConsumeToken();
567 continue;
568 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000569
Chris Lattner4b009652007-07-25 00:24:17 +0000570 // C99 6.9.1p6: Declarations shall contain no storage-class specifiers other
571 // than register.
572 if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
573 DS.getStorageClassSpec() != DeclSpec::SCS_register) {
574 Diag(DS.getStorageClassSpecLoc(),
575 diag::err_invalid_storage_class_in_func_decl);
576 DS.ClearStorageClassSpecs();
577 }
578 if (DS.isThreadSpecified()) {
579 Diag(DS.getThreadSpecLoc(),
580 diag::err_invalid_storage_class_in_func_decl);
581 DS.ClearStorageClassSpecs();
582 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000583
Chris Lattner4b009652007-07-25 00:24:17 +0000584 // Parse the first declarator attached to this declspec.
585 Declarator ParmDeclarator(DS, Declarator::KNRTypeListContext);
586 ParseDeclarator(ParmDeclarator);
587
588 // Handle the full declarator list.
589 while (1) {
590 DeclTy *AttrList;
591 // If attributes are present, parse them.
Chris Lattner17a5fb62007-10-09 17:23:58 +0000592 if (Tok.is(tok::kw___attribute))
Chris Lattner4b009652007-07-25 00:24:17 +0000593 // FIXME: attach attributes too.
594 AttrList = ParseAttributes();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000595
Chris Lattner4b009652007-07-25 00:24:17 +0000596 // Ask the actions module to compute the type for this declarator.
Mike Stumpeda58eb2008-06-19 19:28:49 +0000597 Action::DeclTy *Param =
Chris Lattner3e254fb2008-04-08 04:40:51 +0000598 Actions.ActOnParamDeclarator(CurScope, ParmDeclarator);
Steve Narofffaed3bf2007-09-10 20:51:04 +0000599
Mike Stumpeda58eb2008-06-19 19:28:49 +0000600 if (Param &&
Chris Lattner4b009652007-07-25 00:24:17 +0000601 // A missing identifier has already been diagnosed.
602 ParmDeclarator.getIdentifier()) {
603
604 // Scan the argument list looking for the correct param to apply this
605 // type.
606 for (unsigned i = 0; ; ++i) {
607 // C99 6.9.1p6: those declarators shall declare only identifiers from
608 // the identifier list.
609 if (i == FTI.NumArgs) {
Chris Lattnerf006a222008-11-18 07:48:38 +0000610 Diag(ParmDeclarator.getIdentifierLoc(), diag::err_no_matching_param)
Chris Lattnerb12ef862008-11-19 07:51:13 +0000611 << ParmDeclarator.getIdentifier();
Chris Lattner4b009652007-07-25 00:24:17 +0000612 break;
613 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000614
Chris Lattner4b009652007-07-25 00:24:17 +0000615 if (FTI.ArgInfo[i].Ident == ParmDeclarator.getIdentifier()) {
616 // Reject redefinitions of parameters.
Chris Lattner3e254fb2008-04-08 04:40:51 +0000617 if (FTI.ArgInfo[i].Param) {
Chris Lattner4b009652007-07-25 00:24:17 +0000618 Diag(ParmDeclarator.getIdentifierLoc(),
Chris Lattnerf006a222008-11-18 07:48:38 +0000619 diag::err_param_redefinition)
Chris Lattnerb12ef862008-11-19 07:51:13 +0000620 << ParmDeclarator.getIdentifier();
Chris Lattner4b009652007-07-25 00:24:17 +0000621 } else {
Chris Lattner3e254fb2008-04-08 04:40:51 +0000622 FTI.ArgInfo[i].Param = Param;
Chris Lattner4b009652007-07-25 00:24:17 +0000623 }
624 break;
625 }
626 }
627 }
628
629 // If we don't have a comma, it is either the end of the list (a ';') or
630 // an error, bail out.
Chris Lattner17a5fb62007-10-09 17:23:58 +0000631 if (Tok.isNot(tok::comma))
Chris Lattner4b009652007-07-25 00:24:17 +0000632 break;
Mike Stumpeda58eb2008-06-19 19:28:49 +0000633
Chris Lattner4b009652007-07-25 00:24:17 +0000634 // Consume the comma.
635 ConsumeToken();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000636
Chris Lattner4b009652007-07-25 00:24:17 +0000637 // Parse the next declarator.
638 ParmDeclarator.clear();
639 ParseDeclarator(ParmDeclarator);
640 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000641
Chris Lattner17a5fb62007-10-09 17:23:58 +0000642 if (Tok.is(tok::semi)) {
Chris Lattner4b009652007-07-25 00:24:17 +0000643 ConsumeToken();
644 } else {
645 Diag(Tok, diag::err_parse_error);
646 // Skip to end of block or statement
647 SkipUntil(tok::semi, true);
Chris Lattner17a5fb62007-10-09 17:23:58 +0000648 if (Tok.is(tok::semi))
Chris Lattner4b009652007-07-25 00:24:17 +0000649 ConsumeToken();
650 }
651 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000652
Chris Lattner3e254fb2008-04-08 04:40:51 +0000653 // Leave prototype scope.
654 ExitScope();
655
Chris Lattner4b009652007-07-25 00:24:17 +0000656 // The actions module must verify that all arguments were declared.
657}
658
659
660/// ParseAsmStringLiteral - This is just a normal string-literal, but is not
661/// allowed to be a wide string, and is not subject to character translation.
662///
663/// [GNU] asm-string-literal:
664/// string-literal
665///
Anders Carlsson076c1112007-11-20 19:21:03 +0000666Parser::ExprResult Parser::ParseAsmStringLiteral() {
Chris Lattner4b009652007-07-25 00:24:17 +0000667 if (!isTokenStringLiteral()) {
668 Diag(Tok, diag::err_expected_string_literal);
Anders Carlsson076c1112007-11-20 19:21:03 +0000669 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000670 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000671
Chris Lattner4b009652007-07-25 00:24:17 +0000672 ExprResult Res = ParseStringLiteralExpression();
Anders Carlsson076c1112007-11-20 19:21:03 +0000673 if (Res.isInvalid) return true;
Mike Stumpeda58eb2008-06-19 19:28:49 +0000674
Chris Lattner4b009652007-07-25 00:24:17 +0000675 // TODO: Diagnose: wide string literal in 'asm'
Mike Stumpeda58eb2008-06-19 19:28:49 +0000676
Anders Carlsson076c1112007-11-20 19:21:03 +0000677 return Res;
Chris Lattner4b009652007-07-25 00:24:17 +0000678}
679
680/// ParseSimpleAsm
681///
682/// [GNU] simple-asm-expr:
683/// 'asm' '(' asm-string-literal ')'
684///
Anders Carlsson4f7f4412008-02-08 00:33:21 +0000685Parser::ExprResult Parser::ParseSimpleAsm() {
Chris Lattner17a5fb62007-10-09 17:23:58 +0000686 assert(Tok.is(tok::kw_asm) && "Not an asm!");
Anders Carlsson4f7f4412008-02-08 00:33:21 +0000687 SourceLocation Loc = ConsumeToken();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000688
Chris Lattner17a5fb62007-10-09 17:23:58 +0000689 if (Tok.isNot(tok::l_paren)) {
Chris Lattnerf006a222008-11-18 07:48:38 +0000690 Diag(Tok, diag::err_expected_lparen_after) << "asm";
Chris Lattnerb36c3652008-05-27 23:32:43 +0000691 return true;
Chris Lattner4b009652007-07-25 00:24:17 +0000692 }
Mike Stumpeda58eb2008-06-19 19:28:49 +0000693
Anders Carlsson4f7f4412008-02-08 00:33:21 +0000694 ConsumeParen();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000695
Anders Carlsson4f7f4412008-02-08 00:33:21 +0000696 ExprResult Result = ParseAsmStringLiteral();
Mike Stumpeda58eb2008-06-19 19:28:49 +0000697
Chris Lattner17be6aa2008-10-20 07:36:58 +0000698 if (Result.isInvalid)
Daniel Dunbarc3540ff2008-08-05 01:35:17 +0000699 SkipUntil(tok::r_paren);
Chris Lattner17be6aa2008-10-20 07:36:58 +0000700 else
Daniel Dunbarc3540ff2008-08-05 01:35:17 +0000701 MatchRHSPunctuation(tok::r_paren, Loc);
Mike Stumpeda58eb2008-06-19 19:28:49 +0000702
Anders Carlsson4f7f4412008-02-08 00:33:21 +0000703 return Result;
Chris Lattner4b009652007-07-25 00:24:17 +0000704}
705
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +0000706/// TryAnnotateTypeOrScopeToken - If the current token position is on a
707/// typename (possibly qualified in C++) or a C++ scope specifier not followed
708/// by a typename, TryAnnotateTypeOrScopeToken will replace one or more tokens
709/// with a single annotation token representing the typename or C++ scope
710/// respectively.
711/// This simplifies handling of C++ scope specifiers and allows efficient
712/// backtracking without the need to re-parse and resolve nested-names and
713/// typenames.
Argiris Kirtzidisfc332322008-11-26 21:51:07 +0000714/// It will mainly be called when we expect to treat identifiers as typenames
715/// (if they are typenames). For example, in C we do not expect identifiers
716/// inside expressions to be treated as typenames so it will not be called
717/// for expressions in C.
718/// The benefit for C/ObjC is that a typename will be annotated and
719/// Actions.isTypeName will not be needed to be called again (e.g. isTypeName
720/// will not be called twice, once to check whether we have a declaration
721/// specifier, and another one to get the actual type inside
722/// ParseDeclarationSpecifiers).
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +0000723void Parser::TryAnnotateTypeOrScopeToken() {
724 if (Tok.is(tok::annot_qualtypename) || Tok.is(tok::annot_cxxscope))
725 return;
726
727 CXXScopeSpec SS;
Argiris Kirtzidis91c80dc2008-11-26 21:41:52 +0000728 if (getLang().CPlusPlus)
729 MaybeParseCXXScopeSpecifier(SS);
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +0000730
731 if (Tok.is(tok::identifier)) {
732 TypeTy *Ty = Actions.isTypeName(*Tok.getIdentifierInfo(), CurScope, &SS);
733 if (Ty) {
734 // This is a typename. Replace the current token in-place with an
735 // annotation type token.
736 Tok.setKind(tok::annot_qualtypename);
737 Tok.setAnnotationValue(Ty);
738 Tok.setAnnotationEndLoc(Tok.getLocation());
739 if (SS.isNotEmpty()) // it was a C++ qualified type name.
740 Tok.setLocation(SS.getBeginLoc());
741
742 // In case the tokens were cached, have Preprocessor replace them with the
743 // annotation token.
744 PP.AnnotateCachedTokens(Tok);
745 return;
746 }
747 }
748
749 if (SS.isNotEmpty()) {
750 // A C++ scope specifier that isn't followed by a typename.
Argiris Kirtzidis4c642e12008-11-19 15:22:16 +0000751 // Push the current token back into the token stream (or revert it if it is
752 // cached) and use an annotation scope token for current token.
753 if (PP.isBacktrackEnabled())
754 PP.RevertCachedTokens(1);
755 else
756 PP.EnterToken(Tok);
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +0000757 Tok.setKind(tok::annot_cxxscope);
758 Tok.setAnnotationValue(SS.getScopeRep());
759 Tok.setAnnotationRange(SS.getRange());
760
761 // In case the tokens were cached, have Preprocessor replace them with the
762 // annotation token.
763 PP.AnnotateCachedTokens(Tok);
764 }
765}
766
767/// TryAnnotateScopeToken - Like TryAnnotateTypeOrScopeToken but only
768/// annotates C++ scope specifiers.
Argiris Kirtzidis91c80dc2008-11-26 21:41:52 +0000769void Parser::TryAnnotateCXXScopeToken() {
770 assert(getLang().CPlusPlus &&
771 "Call sites of this function should be guarded by checking for C++.");
772
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +0000773 if (Tok.is(tok::annot_cxxscope))
774 return;
775
Argiris Kirtzidis91c80dc2008-11-26 21:41:52 +0000776 CXXScopeSpec SS;
777 if (MaybeParseCXXScopeSpecifier(SS)) {
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +0000778
Argiris Kirtzidis4c642e12008-11-19 15:22:16 +0000779 // Push the current token back into the token stream (or revert it if it is
780 // cached) and use an annotation scope token for current token.
781 if (PP.isBacktrackEnabled())
782 PP.RevertCachedTokens(1);
783 else
784 PP.EnterToken(Tok);
Argiris Kirtzidis311db8c2008-11-08 16:45:02 +0000785 Tok.setKind(tok::annot_cxxscope);
786 Tok.setAnnotationValue(SS.getScopeRep());
787 Tok.setAnnotationRange(SS.getRange());
788
789 // In case the tokens were cached, have Preprocessor replace them with the
790 // annotation token.
791 PP.AnnotateCachedTokens(Tok);
792 }
793}