blob: 78e4496a5d55946599b7998f3286a85b2126c497 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Preprocess.cpp - C Language Family Preprocessor Implementation ---===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Preprocessor interface.
11//
12//===----------------------------------------------------------------------===//
13//
14// Options to support:
15// -H - Print the name of each header file used.
16// -d[MDNI] - Dump various things.
17// -fworking-directory - #line's with preprocessor's working dir.
18// -fpreprocessed
19// -dependency-file,-M,-MM,-MF,-MG,-MP,-MT,-MQ,-MD,-MMD
20// -W*
21// -w
22//
23// Messages to emit:
24// "Multiple include guards may be useful for:\n"
25//
26//===----------------------------------------------------------------------===//
27
28#include "clang/Lex/Preprocessor.h"
29#include "clang/Lex/HeaderSearch.h"
30#include "clang/Lex/MacroInfo.h"
31#include "clang/Lex/PPCallbacks.h"
32#include "clang/Lex/Pragma.h"
33#include "clang/Lex/ScratchBuffer.h"
34#include "clang/Basic/Diagnostic.h"
35#include "clang/Basic/FileManager.h"
36#include "clang/Basic/SourceManager.h"
37#include "clang/Basic/TargetInfo.h"
38#include "llvm/ADT/SmallVector.h"
Chris Lattner97ba77c2007-07-16 06:48:38 +000039#include "llvm/Support/MemoryBuffer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000040#include <iostream>
Chris Lattner77034d32007-09-03 18:30:32 +000041#include <ctime>
Reid Spencer5f016e22007-07-11 17:01:13 +000042using namespace clang;
43
44//===----------------------------------------------------------------------===//
45
46Preprocessor::Preprocessor(Diagnostic &diags, const LangOptions &opts,
47 TargetInfo &target, SourceManager &SM,
48 HeaderSearch &Headers)
49 : Diags(diags), Features(opts), Target(target), FileMgr(Headers.getFileMgr()),
50 SourceMgr(SM), HeaderInfo(Headers), Identifiers(opts),
51 CurLexer(0), CurDirLookup(0), CurMacroExpander(0), Callbacks(0) {
52 ScratchBuf = new ScratchBuffer(SourceMgr);
Chris Lattner9594acf2007-07-15 00:25:26 +000053
Reid Spencer5f016e22007-07-11 17:01:13 +000054 // Clear stats.
55 NumDirectives = NumDefined = NumUndefined = NumPragma = 0;
56 NumIf = NumElse = NumEndif = 0;
57 NumEnteredSourceFiles = 0;
58 NumMacroExpanded = NumFnMacroExpanded = NumBuiltinMacroExpanded = 0;
59 NumFastMacroExpanded = NumTokenPaste = NumFastTokenPaste = 0;
60 MaxIncludeStackDepth = 0;
61 NumSkipped = 0;
62
63 // Default to discarding comments.
64 KeepComments = false;
65 KeepMacroComments = false;
66
67 // Macro expansion is enabled.
68 DisableMacroExpansion = false;
69 InMacroArgs = false;
Chris Lattner9594acf2007-07-15 00:25:26 +000070 NumCachedMacroExpanders = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000071
72 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
73 // This gets unpoisoned where it is allowed.
74 (Ident__VA_ARGS__ = getIdentifierInfo("__VA_ARGS__"))->setIsPoisoned();
75
Chris Lattner53b0dab2007-10-09 22:10:18 +000076 Predefines = 0;
77
Reid Spencer5f016e22007-07-11 17:01:13 +000078 // Initialize the pragma handlers.
79 PragmaHandlers = new PragmaNamespace(0);
80 RegisterBuiltinPragmas();
81
82 // Initialize builtin macros like __LINE__ and friends.
83 RegisterBuiltinMacros();
84}
85
86Preprocessor::~Preprocessor() {
87 // Free any active lexers.
88 delete CurLexer;
89
90 while (!IncludeMacroStack.empty()) {
91 delete IncludeMacroStack.back().TheLexer;
92 delete IncludeMacroStack.back().TheMacroExpander;
93 IncludeMacroStack.pop_back();
94 }
Chris Lattnercc1a8752007-10-07 08:44:20 +000095
96 // Free any macro definitions.
97 for (llvm::DenseMap<IdentifierInfo*, MacroInfo*>::iterator I =
98 Macros.begin(), E = Macros.end(); I != E; ++I) {
99 // Free the macro definition.
100 delete I->second;
101 I->second = 0;
102 I->first->setHasMacroDefinition(false);
103 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000104
Chris Lattner9594acf2007-07-15 00:25:26 +0000105 // Free any cached macro expanders.
106 for (unsigned i = 0, e = NumCachedMacroExpanders; i != e; ++i)
107 delete MacroExpanderCache[i];
108
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 // Release pragma information.
110 delete PragmaHandlers;
111
112 // Delete the scratch buffer info.
113 delete ScratchBuf;
114}
115
116PPCallbacks::~PPCallbacks() {
117}
118
119/// Diag - Forwarding function for diagnostics. This emits a diagnostic at
Chris Lattnerd2177732007-07-20 16:59:19 +0000120/// the specified Token's location, translating the token's start
Reid Spencer5f016e22007-07-11 17:01:13 +0000121/// position in the current buffer into a SourcePosition object for rendering.
122void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID) {
123 Diags.Report(Loc, DiagID);
124}
125
126void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID,
127 const std::string &Msg) {
128 Diags.Report(Loc, DiagID, &Msg, 1);
129}
130
Chris Lattnerd2177732007-07-20 16:59:19 +0000131void Preprocessor::DumpToken(const Token &Tok, bool DumpFlags) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000132 std::cerr << tok::getTokenName(Tok.getKind()) << " '"
133 << getSpelling(Tok) << "'";
134
135 if (!DumpFlags) return;
136 std::cerr << "\t";
137 if (Tok.isAtStartOfLine())
138 std::cerr << " [StartOfLine]";
139 if (Tok.hasLeadingSpace())
140 std::cerr << " [LeadingSpace]";
141 if (Tok.isExpandDisabled())
142 std::cerr << " [ExpandDisabled]";
143 if (Tok.needsCleaning()) {
144 const char *Start = SourceMgr.getCharacterData(Tok.getLocation());
145 std::cerr << " [UnClean='" << std::string(Start, Start+Tok.getLength())
146 << "']";
147 }
148}
149
150void Preprocessor::DumpMacro(const MacroInfo &MI) const {
151 std::cerr << "MACRO: ";
152 for (unsigned i = 0, e = MI.getNumTokens(); i != e; ++i) {
153 DumpToken(MI.getReplacementToken(i));
154 std::cerr << " ";
155 }
156 std::cerr << "\n";
157}
158
159void Preprocessor::PrintStats() {
160 std::cerr << "\n*** Preprocessor Stats:\n";
161 std::cerr << NumDirectives << " directives found:\n";
162 std::cerr << " " << NumDefined << " #define.\n";
163 std::cerr << " " << NumUndefined << " #undef.\n";
164 std::cerr << " #include/#include_next/#import:\n";
165 std::cerr << " " << NumEnteredSourceFiles << " source files entered.\n";
166 std::cerr << " " << MaxIncludeStackDepth << " max include stack depth\n";
167 std::cerr << " " << NumIf << " #if/#ifndef/#ifdef.\n";
168 std::cerr << " " << NumElse << " #else/#elif.\n";
169 std::cerr << " " << NumEndif << " #endif.\n";
170 std::cerr << " " << NumPragma << " #pragma.\n";
171 std::cerr << NumSkipped << " #if/#ifndef#ifdef regions skipped\n";
172
173 std::cerr << NumMacroExpanded << "/" << NumFnMacroExpanded << "/"
174 << NumBuiltinMacroExpanded << " obj/fn/builtin macros expanded, "
175 << NumFastMacroExpanded << " on the fast path.\n";
176 std::cerr << (NumFastTokenPaste+NumTokenPaste)
177 << " token paste (##) operations performed, "
178 << NumFastTokenPaste << " on the fast path.\n";
179}
180
181//===----------------------------------------------------------------------===//
182// Token Spelling
183//===----------------------------------------------------------------------===//
184
185
186/// getSpelling() - Return the 'spelling' of this token. The spelling of a
187/// token are the characters used to represent the token in the source file
188/// after trigraph expansion and escaped-newline folding. In particular, this
189/// wants to get the true, uncanonicalized, spelling of things like digraphs
190/// UCNs, etc.
Chris Lattnerd2177732007-07-20 16:59:19 +0000191std::string Preprocessor::getSpelling(const Token &Tok) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000192 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
193
194 // If this token contains nothing interesting, return it directly.
195 const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation());
196 if (!Tok.needsCleaning())
197 return std::string(TokStart, TokStart+Tok.getLength());
198
199 std::string Result;
200 Result.reserve(Tok.getLength());
201
202 // Otherwise, hard case, relex the characters into the string.
203 for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength();
204 Ptr != End; ) {
205 unsigned CharSize;
206 Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features));
207 Ptr += CharSize;
208 }
209 assert(Result.size() != unsigned(Tok.getLength()) &&
210 "NeedsCleaning flag set on something that didn't need cleaning!");
211 return Result;
212}
213
214/// getSpelling - This method is used to get the spelling of a token into a
215/// preallocated buffer, instead of as an std::string. The caller is required
216/// to allocate enough space for the token, which is guaranteed to be at least
217/// Tok.getLength() bytes long. The actual length of the token is returned.
218///
219/// Note that this method may do two possible things: it may either fill in
220/// the buffer specified with characters, or it may *change the input pointer*
221/// to point to a constant buffer with the data already in it (avoiding a
222/// copy). The caller is not allowed to modify the returned buffer pointer
223/// if an internal buffer is returned.
Chris Lattnerd2177732007-07-20 16:59:19 +0000224unsigned Preprocessor::getSpelling(const Token &Tok,
Reid Spencer5f016e22007-07-11 17:01:13 +0000225 const char *&Buffer) const {
226 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
227
228 // If this token is an identifier, just return the string from the identifier
229 // table, which is very quick.
230 if (const IdentifierInfo *II = Tok.getIdentifierInfo()) {
231 Buffer = II->getName();
Chris Lattner0f670322007-07-22 22:50:09 +0000232
233 // Return the length of the token. If the token needed cleaning, don't
234 // include the size of the newlines or trigraphs in it.
235 if (!Tok.needsCleaning())
236 return Tok.getLength();
237 else
238 return strlen(Buffer);
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 }
240
241 // Otherwise, compute the start of the token in the input lexer buffer.
242 const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation());
243
244 // If this token contains nothing interesting, return it directly.
245 if (!Tok.needsCleaning()) {
246 Buffer = TokStart;
247 return Tok.getLength();
248 }
249 // Otherwise, hard case, relex the characters into the string.
250 char *OutBuf = const_cast<char*>(Buffer);
251 for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength();
252 Ptr != End; ) {
253 unsigned CharSize;
254 *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features);
255 Ptr += CharSize;
256 }
257 assert(unsigned(OutBuf-Buffer) != Tok.getLength() &&
258 "NeedsCleaning flag set on something that didn't need cleaning!");
259
260 return OutBuf-Buffer;
261}
262
263
264/// CreateString - Plop the specified string into a scratch buffer and return a
265/// location for it. If specified, the source location provides a source
266/// location for the token.
267SourceLocation Preprocessor::
268CreateString(const char *Buf, unsigned Len, SourceLocation SLoc) {
269 if (SLoc.isValid())
270 return ScratchBuf->getToken(Buf, Len, SLoc);
271 return ScratchBuf->getToken(Buf, Len);
272}
273
274
Chris Lattner97ba77c2007-07-16 06:48:38 +0000275/// AdvanceToTokenCharacter - Given a location that specifies the start of a
276/// token, return a new location that specifies a character within the token.
277SourceLocation Preprocessor::AdvanceToTokenCharacter(SourceLocation TokStart,
278 unsigned CharNo) {
Chris Lattner9dc1f532007-07-20 16:37:10 +0000279 // If they request the first char of the token, we're trivially done. If this
280 // is a macro expansion, it doesn't make sense to point to a character within
281 // the instantiation point (the name). We could point to the source
282 // character, but without also pointing to instantiation info, this is
283 // confusing.
284 if (CharNo == 0 || TokStart.isMacroID()) return TokStart;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000285
286 // Figure out how many physical characters away the specified logical
287 // character is. This needs to take into consideration newlines and
288 // trigraphs.
Chris Lattner9dc1f532007-07-20 16:37:10 +0000289 const char *TokPtr = SourceMgr.getCharacterData(TokStart);
290 unsigned PhysOffset = 0;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000291
292 // The usual case is that tokens don't contain anything interesting. Skip
293 // over the uninteresting characters. If a token only consists of simple
294 // chars, this method is extremely fast.
295 while (CharNo && Lexer::isObviouslySimpleCharacter(*TokPtr))
Chris Lattner9dc1f532007-07-20 16:37:10 +0000296 ++TokPtr, --CharNo, ++PhysOffset;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000297
298 // If we have a character that may be a trigraph or escaped newline, create a
299 // lexer to parse it correctly.
Chris Lattner97ba77c2007-07-16 06:48:38 +0000300 if (CharNo != 0) {
301 // Create a lexer starting at this token position.
Chris Lattner25bdb512007-07-20 16:52:03 +0000302 Lexer TheLexer(TokStart, *this, TokPtr);
Chris Lattnerd2177732007-07-20 16:59:19 +0000303 Token Tok;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000304 // Skip over characters the remaining characters.
Chris Lattner9dc1f532007-07-20 16:37:10 +0000305 const char *TokStartPtr = TokPtr;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000306 for (; CharNo; --CharNo)
307 TheLexer.getAndAdvanceChar(TokPtr, Tok);
Chris Lattner9dc1f532007-07-20 16:37:10 +0000308
309 PhysOffset += TokPtr-TokStartPtr;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000310 }
Chris Lattner9dc1f532007-07-20 16:37:10 +0000311
312 return TokStart.getFileLocWithOffset(PhysOffset);
Chris Lattner97ba77c2007-07-16 06:48:38 +0000313}
314
315
Chris Lattner53b0dab2007-10-09 22:10:18 +0000316//===----------------------------------------------------------------------===//
317// Preprocessor Initialization Methods
318//===----------------------------------------------------------------------===//
319
320// Append a #define line to Buf for Macro. Macro should be of the form XXX,
321// in which case we emit "#define XXX 1" or "XXX=Y z W" in which case we emit
322// "#define XXX Y z W". To get a #define with no value, use "XXX=".
323static void DefineBuiltinMacro(std::vector<char> &Buf, const char *Macro,
324 const char *Command = "#define ") {
325 Buf.insert(Buf.end(), Command, Command+strlen(Command));
326 if (const char *Equal = strchr(Macro, '=')) {
327 // Turn the = into ' '.
328 Buf.insert(Buf.end(), Macro, Equal);
329 Buf.push_back(' ');
330 Buf.insert(Buf.end(), Equal+1, Equal+strlen(Equal));
331 } else {
332 // Push "macroname 1".
333 Buf.insert(Buf.end(), Macro, Macro+strlen(Macro));
334 Buf.push_back(' ');
335 Buf.push_back('1');
336 }
337 Buf.push_back('\n');
338}
339
340
341static void InitializePredefinedMacros(Preprocessor &PP,
342 std::vector<char> &Buf) {
343 // FIXME: Implement magic like cpp_init_builtins for things like __STDC__
344 // and __DATE__ etc.
345#if 0
346 /* __STDC__ has the value 1 under normal circumstances.
347 However, if (a) we are in a system header, (b) the option
348 stdc_0_in_system_headers is true (set by target config), and
349 (c) we are not in strictly conforming mode, then it has the
350 value 0. (b) and (c) are already checked in cpp_init_builtins. */
351 //case BT_STDC:
352 if (cpp_in_system_header (pfile))
353 number = 0;
354 else
355 number = 1;
356 break;
357#endif
358 // These should all be defined in the preprocessor according to the
359 // current language configuration.
360 DefineBuiltinMacro(Buf, "__STDC__=1");
361 //DefineBuiltinMacro(Buf, "__ASSEMBLER__=1");
362 if (PP.getLangOptions().C99 && !PP.getLangOptions().CPlusPlus)
363 DefineBuiltinMacro(Buf, "__STDC_VERSION__=199901L");
364 else if (0) // STDC94 ?
365 DefineBuiltinMacro(Buf, "__STDC_VERSION__=199409L");
366
367 DefineBuiltinMacro(Buf, "__STDC_HOSTED__=1");
368 if (PP.getLangOptions().ObjC1)
369 DefineBuiltinMacro(Buf, "__OBJC__=1");
370 if (PP.getLangOptions().ObjC2)
371 DefineBuiltinMacro(Buf, "__OBJC2__=1");
Chris Lattnerf1af9472007-10-09 22:58:09 +0000372
373 if (PP.getLangOptions().ObjC1) {
374 // FIXME: make this the right thing.
375 const char *IDTypedef = "/*typedef int id;*/\n";
376 Buf.insert(Buf.end(), IDTypedef, IDTypedef+strlen(IDTypedef));
377 }
378
Chris Lattnerd19144b2007-10-10 17:48:53 +0000379 // Add __builtin_va_list typedef.
380 {
381 const char *VAList = PP.getTargetInfo().getVAListDeclaration();
382 Buf.insert(Buf.end(), VAList, VAList+strlen(VAList));
383 Buf.push_back('\n');
384 }
Chris Lattner53b0dab2007-10-09 22:10:18 +0000385
386 // Get the target #defines.
387 PP.getTargetInfo().getTargetDefines(Buf);
388
389 // Compiler set macros.
390 DefineBuiltinMacro(Buf, "__APPLE_CC__=5250");
391 DefineBuiltinMacro(Buf, "__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__=1030");
392 DefineBuiltinMacro(Buf, "__GNUC_MINOR__=0");
393 DefineBuiltinMacro(Buf, "__GNUC_PATCHLEVEL__=1");
394 DefineBuiltinMacro(Buf, "__GNUC__=4");
395 DefineBuiltinMacro(Buf, "__GXX_ABI_VERSION=1002");
396 DefineBuiltinMacro(Buf, "__VERSION__=\"4.0.1 (Apple Computer, Inc. "
397 "build 5250)\"");
398
399 // Build configuration options.
400 DefineBuiltinMacro(Buf, "__DYNAMIC__=1");
401 DefineBuiltinMacro(Buf, "__FINITE_MATH_ONLY__=0");
402 DefineBuiltinMacro(Buf, "__NO_INLINE__=1");
403 DefineBuiltinMacro(Buf, "__PIC__=1");
404
405
406 if (PP.getLangOptions().CPlusPlus) {
407 DefineBuiltinMacro(Buf, "__DEPRECATED=1");
408 DefineBuiltinMacro(Buf, "__EXCEPTIONS=1");
409 DefineBuiltinMacro(Buf, "__GNUG__=4");
410 DefineBuiltinMacro(Buf, "__GXX_WEAK__=1");
411 DefineBuiltinMacro(Buf, "__cplusplus=1");
412 DefineBuiltinMacro(Buf, "__private_extern__=extern");
413 }
414
415 // FIXME: Should emit a #line directive here.
416}
417
418
419/// EnterMainSourceFile - Enter the specified FileID as the main source file,
420/// which implicitly adds the builting defines etc.
421void Preprocessor::EnterMainSourceFile(unsigned MainFileID) {
422 // Enter the main file source buffer.
423 EnterSourceFile(MainFileID, 0);
424
425
426 std::vector<char> PrologFile;
427 PrologFile.reserve(4080);
428
429 // Install things like __POWERPC__, __GNUC__, etc into the macro table.
430 InitializePredefinedMacros(*this, PrologFile);
431
432 // Add on the predefines from the driver.
433 PrologFile.insert(PrologFile.end(), Predefines,Predefines+strlen(Predefines));
434
435 // Memory buffer must end with a null byte!
436 PrologFile.push_back(0);
437
438 // Now that we have emitted the predefined macros, #includes, etc into
439 // PrologFile, preprocess it to populate the initial preprocessor state.
440 llvm::MemoryBuffer *SB =
441 llvm::MemoryBuffer::getMemBufferCopy(&PrologFile.front(),&PrologFile.back(),
442 "<predefines>");
443 assert(SB && "Cannot fail to create predefined source buffer");
444 unsigned FileID = SourceMgr.createFileIDForMemBuffer(SB);
445 assert(FileID && "Could not create FileID for predefines?");
446
447 // Start parsing the predefines.
448 EnterSourceFile(FileID, 0);
449}
Chris Lattner97ba77c2007-07-16 06:48:38 +0000450
Reid Spencer5f016e22007-07-11 17:01:13 +0000451//===----------------------------------------------------------------------===//
452// Source File Location Methods.
453//===----------------------------------------------------------------------===//
454
455/// LookupFile - Given a "foo" or <foo> reference, look up the indicated file,
456/// return null on failure. isAngled indicates whether the file reference is
457/// for system #include's or not (i.e. using <> instead of "").
458const FileEntry *Preprocessor::LookupFile(const char *FilenameStart,
459 const char *FilenameEnd,
460 bool isAngled,
461 const DirectoryLookup *FromDir,
462 const DirectoryLookup *&CurDir) {
463 // If the header lookup mechanism may be relative to the current file, pass in
464 // info about where the current file is.
465 const FileEntry *CurFileEnt = 0;
466 if (!FromDir) {
Chris Lattner9dc1f532007-07-20 16:37:10 +0000467 SourceLocation FileLoc = getCurrentFileLexer()->getFileLoc();
468 CurFileEnt = SourceMgr.getFileEntryForLoc(FileLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000469 }
470
471 // Do a standard file entry lookup.
472 CurDir = CurDirLookup;
473 const FileEntry *FE =
474 HeaderInfo.LookupFile(FilenameStart, FilenameEnd,
475 isAngled, FromDir, CurDir, CurFileEnt);
476 if (FE) return FE;
477
478 // Otherwise, see if this is a subframework header. If so, this is relative
479 // to one of the headers on the #include stack. Walk the list of the current
480 // headers on the #include stack and pass them to HeaderInfo.
481 if (CurLexer && !CurLexer->Is_PragmaLexer) {
Chris Lattner9dc1f532007-07-20 16:37:10 +0000482 CurFileEnt = SourceMgr.getFileEntryForLoc(CurLexer->getFileLoc());
Reid Spencer5f016e22007-07-11 17:01:13 +0000483 if ((FE = HeaderInfo.LookupSubframeworkHeader(FilenameStart, FilenameEnd,
484 CurFileEnt)))
485 return FE;
486 }
487
488 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
489 IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1];
490 if (ISEntry.TheLexer && !ISEntry.TheLexer->Is_PragmaLexer) {
Chris Lattner9dc1f532007-07-20 16:37:10 +0000491 CurFileEnt = SourceMgr.getFileEntryForLoc(ISEntry.TheLexer->getFileLoc());
Reid Spencer5f016e22007-07-11 17:01:13 +0000492 if ((FE = HeaderInfo.LookupSubframeworkHeader(FilenameStart, FilenameEnd,
493 CurFileEnt)))
494 return FE;
495 }
496 }
497
498 // Otherwise, we really couldn't find the file.
499 return 0;
500}
501
502/// isInPrimaryFile - Return true if we're in the top-level file, not in a
503/// #include.
504bool Preprocessor::isInPrimaryFile() const {
505 if (CurLexer && !CurLexer->Is_PragmaLexer)
Chris Lattner53b0dab2007-10-09 22:10:18 +0000506 return IncludeMacroStack.empty();
Reid Spencer5f016e22007-07-11 17:01:13 +0000507
508 // If there are any stacked lexers, we're in a #include.
Chris Lattner53b0dab2007-10-09 22:10:18 +0000509 assert(IncludeMacroStack[0].TheLexer &&
510 !IncludeMacroStack[0].TheLexer->Is_PragmaLexer &&
511 "Top level include stack isn't our primary lexer?");
512 for (unsigned i = 1, e = IncludeMacroStack.size(); i != e; ++i)
Reid Spencer5f016e22007-07-11 17:01:13 +0000513 if (IncludeMacroStack[i].TheLexer &&
514 !IncludeMacroStack[i].TheLexer->Is_PragmaLexer)
Chris Lattner53b0dab2007-10-09 22:10:18 +0000515 return false;
516 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000517}
518
519/// getCurrentLexer - Return the current file lexer being lexed from. Note
520/// that this ignores any potentially active macro expansions and _Pragma
521/// expansions going on at the time.
522Lexer *Preprocessor::getCurrentFileLexer() const {
523 if (CurLexer && !CurLexer->Is_PragmaLexer) return CurLexer;
524
525 // Look for a stacked lexer.
526 for (unsigned i = IncludeMacroStack.size(); i != 0; --i) {
527 Lexer *L = IncludeMacroStack[i-1].TheLexer;
528 if (L && !L->Is_PragmaLexer) // Ignore macro & _Pragma expansions.
529 return L;
530 }
531 return 0;
532}
533
534
535/// EnterSourceFile - Add a source file to the top of the include stack and
536/// start lexing tokens from it instead of the current buffer. Return true
537/// on failure.
538void Preprocessor::EnterSourceFile(unsigned FileID,
Chris Lattner53b0dab2007-10-09 22:10:18 +0000539 const DirectoryLookup *CurDir) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000540 assert(CurMacroExpander == 0 && "Cannot #include a file inside a macro!");
541 ++NumEnteredSourceFiles;
542
543 if (MaxIncludeStackDepth < IncludeMacroStack.size())
544 MaxIncludeStackDepth = IncludeMacroStack.size();
545
Chris Lattner25bdb512007-07-20 16:52:03 +0000546 Lexer *TheLexer = new Lexer(SourceLocation::getFileLoc(FileID, 0), *this);
Reid Spencer5f016e22007-07-11 17:01:13 +0000547 EnterSourceFileWithLexer(TheLexer, CurDir);
548}
549
550/// EnterSourceFile - Add a source file to the top of the include stack and
551/// start lexing tokens from it instead of the current buffer.
552void Preprocessor::EnterSourceFileWithLexer(Lexer *TheLexer,
553 const DirectoryLookup *CurDir) {
554
555 // Add the current lexer to the include stack.
556 if (CurLexer || CurMacroExpander)
557 IncludeMacroStack.push_back(IncludeStackInfo(CurLexer, CurDirLookup,
558 CurMacroExpander));
559
560 CurLexer = TheLexer;
561 CurDirLookup = CurDir;
562 CurMacroExpander = 0;
563
564 // Notify the client, if desired, that we are in a new source file.
565 if (Callbacks && !CurLexer->Is_PragmaLexer) {
566 DirectoryLookup::DirType FileType = DirectoryLookup::NormalHeaderDir;
567
568 // Get the file entry for the current file.
569 if (const FileEntry *FE =
Chris Lattner9dc1f532007-07-20 16:37:10 +0000570 SourceMgr.getFileEntryForLoc(CurLexer->getFileLoc()))
Reid Spencer5f016e22007-07-11 17:01:13 +0000571 FileType = HeaderInfo.getFileDirFlavor(FE);
572
Chris Lattner9dc1f532007-07-20 16:37:10 +0000573 Callbacks->FileChanged(CurLexer->getFileLoc(),
Reid Spencer5f016e22007-07-11 17:01:13 +0000574 PPCallbacks::EnterFile, FileType);
575 }
576}
577
578
579
580/// EnterMacro - Add a Macro to the top of the include stack and start lexing
581/// tokens from it instead of the current buffer.
Chris Lattnerd2177732007-07-20 16:59:19 +0000582void Preprocessor::EnterMacro(Token &Tok, MacroArgs *Args) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000583 IncludeMacroStack.push_back(IncludeStackInfo(CurLexer, CurDirLookup,
584 CurMacroExpander));
585 CurLexer = 0;
586 CurDirLookup = 0;
587
Chris Lattner9594acf2007-07-15 00:25:26 +0000588 if (NumCachedMacroExpanders == 0) {
589 CurMacroExpander = new MacroExpander(Tok, Args, *this);
590 } else {
591 CurMacroExpander = MacroExpanderCache[--NumCachedMacroExpanders];
592 CurMacroExpander->Init(Tok, Args);
593 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000594}
595
596/// EnterTokenStream - Add a "macro" context to the top of the include stack,
597/// which will cause the lexer to start returning the specified tokens. Note
598/// that these tokens will be re-macro-expanded when/if expansion is enabled.
599/// This method assumes that the specified stream of tokens has a permanent
600/// owner somewhere, so they do not need to be copied.
Chris Lattnerd2177732007-07-20 16:59:19 +0000601void Preprocessor::EnterTokenStream(const Token *Toks, unsigned NumToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000602 // Save our current state.
603 IncludeMacroStack.push_back(IncludeStackInfo(CurLexer, CurDirLookup,
604 CurMacroExpander));
605 CurLexer = 0;
606 CurDirLookup = 0;
607
608 // Create a macro expander to expand from the specified token stream.
Chris Lattner9594acf2007-07-15 00:25:26 +0000609 if (NumCachedMacroExpanders == 0) {
610 CurMacroExpander = new MacroExpander(Toks, NumToks, *this);
611 } else {
612 CurMacroExpander = MacroExpanderCache[--NumCachedMacroExpanders];
613 CurMacroExpander->Init(Toks, NumToks);
614 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000615}
616
617/// RemoveTopOfLexerStack - Pop the current lexer/macro exp off the top of the
618/// lexer stack. This should only be used in situations where the current
619/// state of the top-of-stack lexer is known.
620void Preprocessor::RemoveTopOfLexerStack() {
621 assert(!IncludeMacroStack.empty() && "Ran out of stack entries to load");
Chris Lattner9594acf2007-07-15 00:25:26 +0000622
623 if (CurMacroExpander) {
624 // Delete or cache the now-dead macro expander.
625 if (NumCachedMacroExpanders == MacroExpanderCacheSize)
626 delete CurMacroExpander;
627 else
628 MacroExpanderCache[NumCachedMacroExpanders++] = CurMacroExpander;
629 } else {
630 delete CurLexer;
631 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000632 CurLexer = IncludeMacroStack.back().TheLexer;
633 CurDirLookup = IncludeMacroStack.back().TheDirLookup;
634 CurMacroExpander = IncludeMacroStack.back().TheMacroExpander;
635 IncludeMacroStack.pop_back();
636}
637
638//===----------------------------------------------------------------------===//
639// Macro Expansion Handling.
640//===----------------------------------------------------------------------===//
641
Chris Lattnercc1a8752007-10-07 08:44:20 +0000642/// setMacroInfo - Specify a macro for this identifier.
643///
644void Preprocessor::setMacroInfo(IdentifierInfo *II, MacroInfo *MI) {
645 if (MI == 0) {
646 if (II->hasMacroDefinition()) {
647 Macros.erase(II);
648 II->setHasMacroDefinition(false);
649 }
650 } else {
651 Macros[II] = MI;
652 II->setHasMacroDefinition(true);
653 }
654}
655
Reid Spencer5f016e22007-07-11 17:01:13 +0000656/// RegisterBuiltinMacro - Register the specified identifier in the identifier
657/// table and mark it as a builtin macro to be expanded.
658IdentifierInfo *Preprocessor::RegisterBuiltinMacro(const char *Name) {
659 // Get the identifier.
660 IdentifierInfo *Id = getIdentifierInfo(Name);
661
662 // Mark it as being a macro that is builtin.
663 MacroInfo *MI = new MacroInfo(SourceLocation());
664 MI->setIsBuiltinMacro();
Chris Lattnercc1a8752007-10-07 08:44:20 +0000665 setMacroInfo(Id, MI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000666 return Id;
667}
668
669
670/// RegisterBuiltinMacros - Register builtin macros, such as __LINE__ with the
671/// identifier table.
672void Preprocessor::RegisterBuiltinMacros() {
673 Ident__LINE__ = RegisterBuiltinMacro("__LINE__");
674 Ident__FILE__ = RegisterBuiltinMacro("__FILE__");
675 Ident__DATE__ = RegisterBuiltinMacro("__DATE__");
676 Ident__TIME__ = RegisterBuiltinMacro("__TIME__");
677 Ident_Pragma = RegisterBuiltinMacro("_Pragma");
678
679 // GCC Extensions.
680 Ident__BASE_FILE__ = RegisterBuiltinMacro("__BASE_FILE__");
681 Ident__INCLUDE_LEVEL__ = RegisterBuiltinMacro("__INCLUDE_LEVEL__");
682 Ident__TIMESTAMP__ = RegisterBuiltinMacro("__TIMESTAMP__");
683}
684
685/// isTrivialSingleTokenExpansion - Return true if MI, which has a single token
686/// in its expansion, currently expands to that token literally.
687static bool isTrivialSingleTokenExpansion(const MacroInfo *MI,
Chris Lattnercc1a8752007-10-07 08:44:20 +0000688 const IdentifierInfo *MacroIdent,
689 Preprocessor &PP) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000690 IdentifierInfo *II = MI->getReplacementToken(0).getIdentifierInfo();
691
692 // If the token isn't an identifier, it's always literally expanded.
693 if (II == 0) return true;
694
695 // If the identifier is a macro, and if that macro is enabled, it may be
696 // expanded so it's not a trivial expansion.
Chris Lattnercc1a8752007-10-07 08:44:20 +0000697 if (II->hasMacroDefinition() && PP.getMacroInfo(II)->isEnabled() &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000698 // Fast expanding "#define X X" is ok, because X would be disabled.
699 II != MacroIdent)
700 return false;
701
702 // If this is an object-like macro invocation, it is safe to trivially expand
703 // it.
704 if (MI->isObjectLike()) return true;
705
706 // If this is a function-like macro invocation, it's safe to trivially expand
707 // as long as the identifier is not a macro argument.
708 for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end();
709 I != E; ++I)
710 if (*I == II)
711 return false; // Identifier is a macro argument.
712
713 return true;
714}
715
716
717/// isNextPPTokenLParen - Determine whether the next preprocessor token to be
718/// lexed is a '('. If so, consume the token and return true, if not, this
719/// method should have no observable side-effect on the lexed tokens.
720bool Preprocessor::isNextPPTokenLParen() {
721 // Do some quick tests for rejection cases.
722 unsigned Val;
723 if (CurLexer)
724 Val = CurLexer->isNextPPTokenLParen();
725 else
726 Val = CurMacroExpander->isNextTokenLParen();
727
728 if (Val == 2) {
Chris Lattner0ea793e2007-07-19 00:07:36 +0000729 // We have run off the end. If it's a source file we don't
730 // examine enclosing ones (C99 5.1.1.2p4). Otherwise walk up the
731 // macro stack.
732 if (CurLexer)
733 return false;
734 for (unsigned i = IncludeMacroStack.size(); i != 0; --i) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000735 IncludeStackInfo &Entry = IncludeMacroStack[i-1];
736 if (Entry.TheLexer)
737 Val = Entry.TheLexer->isNextPPTokenLParen();
738 else
739 Val = Entry.TheMacroExpander->isNextTokenLParen();
Chris Lattner0ea793e2007-07-19 00:07:36 +0000740
741 if (Val != 2)
742 break;
743
744 // Ran off the end of a source file?
745 if (Entry.TheLexer)
746 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000747 }
748 }
749
750 // Okay, if we know that the token is a '(', lex it and return. Otherwise we
751 // have found something that isn't a '(' or we found the end of the
752 // translation unit. In either case, return false.
753 if (Val != 1)
754 return false;
755
Chris Lattnerd2177732007-07-20 16:59:19 +0000756 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +0000757 LexUnexpandedToken(Tok);
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000758 assert(Tok.is(tok::l_paren) && "Error computing l-paren-ness?");
Reid Spencer5f016e22007-07-11 17:01:13 +0000759 return true;
760}
761
762/// HandleMacroExpandedIdentifier - If an identifier token is read that is to be
763/// expanded as a macro, handle it and return the next token as 'Identifier'.
Chris Lattnerd2177732007-07-20 16:59:19 +0000764bool Preprocessor::HandleMacroExpandedIdentifier(Token &Identifier,
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 MacroInfo *MI) {
766
767 // If this is a builtin macro, like __LINE__ or _Pragma, handle it specially.
768 if (MI->isBuiltinMacro()) {
769 ExpandBuiltinMacro(Identifier);
770 return false;
771 }
772
773 // If this is the first use of a target-specific macro, warn about it.
774 if (MI->isTargetSpecific()) {
775 MI->setIsTargetSpecific(false); // Don't warn on second use.
776 getTargetInfo().DiagnoseNonPortability(Identifier.getLocation(),
777 diag::port_target_macro_use);
778 }
779
780 /// Args - If this is a function-like macro expansion, this contains,
781 /// for each macro argument, the list of tokens that were provided to the
782 /// invocation.
783 MacroArgs *Args = 0;
784
785 // If this is a function-like macro, read the arguments.
786 if (MI->isFunctionLike()) {
787 // C99 6.10.3p10: If the preprocessing token immediately after the the macro
Chris Lattner2b64fdc2007-07-19 16:11:58 +0000788 // name isn't a '(', this macro should not be expanded. Otherwise, consume
789 // it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000790 if (!isNextPPTokenLParen())
791 return true;
792
793 // Remember that we are now parsing the arguments to a macro invocation.
794 // Preprocessor directives used inside macro arguments are not portable, and
795 // this enables the warning.
796 InMacroArgs = true;
797 Args = ReadFunctionLikeMacroArgs(Identifier, MI);
798
799 // Finished parsing args.
800 InMacroArgs = false;
801
802 // If there was an error parsing the arguments, bail out.
803 if (Args == 0) return false;
804
805 ++NumFnMacroExpanded;
806 } else {
807 ++NumMacroExpanded;
808 }
809
810 // Notice that this macro has been used.
811 MI->setIsUsed(true);
812
813 // If we started lexing a macro, enter the macro expansion body.
814
815 // If this macro expands to no tokens, don't bother to push it onto the
816 // expansion stack, only to take it right back off.
817 if (MI->getNumTokens() == 0) {
818 // No need for arg info.
819 if (Args) Args->destroy();
820
821 // Ignore this macro use, just return the next token in the current
822 // buffer.
823 bool HadLeadingSpace = Identifier.hasLeadingSpace();
824 bool IsAtStartOfLine = Identifier.isAtStartOfLine();
825
826 Lex(Identifier);
827
828 // If the identifier isn't on some OTHER line, inherit the leading
829 // whitespace/first-on-a-line property of this token. This handles
830 // stuff like "! XX," -> "! ," and " XX," -> " ,", when XX is
831 // empty.
832 if (!Identifier.isAtStartOfLine()) {
Chris Lattnerd2177732007-07-20 16:59:19 +0000833 if (IsAtStartOfLine) Identifier.setFlag(Token::StartOfLine);
834 if (HadLeadingSpace) Identifier.setFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000835 }
836 ++NumFastMacroExpanded;
837 return false;
838
839 } else if (MI->getNumTokens() == 1 &&
Chris Lattnercc1a8752007-10-07 08:44:20 +0000840 isTrivialSingleTokenExpansion(MI, Identifier.getIdentifierInfo(),
841 *this)){
Reid Spencer5f016e22007-07-11 17:01:13 +0000842 // Otherwise, if this macro expands into a single trivially-expanded
843 // token: expand it now. This handles common cases like
844 // "#define VAL 42".
845
846 // Propagate the isAtStartOfLine/hasLeadingSpace markers of the macro
847 // identifier to the expanded token.
848 bool isAtStartOfLine = Identifier.isAtStartOfLine();
849 bool hasLeadingSpace = Identifier.hasLeadingSpace();
850
851 // Remember where the token is instantiated.
852 SourceLocation InstantiateLoc = Identifier.getLocation();
853
854 // Replace the result token.
855 Identifier = MI->getReplacementToken(0);
856
857 // Restore the StartOfLine/LeadingSpace markers.
Chris Lattnerd2177732007-07-20 16:59:19 +0000858 Identifier.setFlagValue(Token::StartOfLine , isAtStartOfLine);
859 Identifier.setFlagValue(Token::LeadingSpace, hasLeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000860
861 // Update the tokens location to include both its logical and physical
862 // locations.
863 SourceLocation Loc =
864 SourceMgr.getInstantiationLoc(Identifier.getLocation(), InstantiateLoc);
865 Identifier.setLocation(Loc);
866
867 // If this is #define X X, we must mark the result as unexpandible.
868 if (IdentifierInfo *NewII = Identifier.getIdentifierInfo())
Chris Lattnercc1a8752007-10-07 08:44:20 +0000869 if (getMacroInfo(NewII) == MI)
Chris Lattnerd2177732007-07-20 16:59:19 +0000870 Identifier.setFlag(Token::DisableExpand);
Reid Spencer5f016e22007-07-11 17:01:13 +0000871
872 // Since this is not an identifier token, it can't be macro expanded, so
873 // we're done.
874 ++NumFastMacroExpanded;
875 return false;
876 }
877
878 // Start expanding the macro.
879 EnterMacro(Identifier, Args);
880
881 // Now that the macro is at the top of the include stack, ask the
882 // preprocessor to read the next token from it.
883 Lex(Identifier);
884 return false;
885}
886
887/// ReadFunctionLikeMacroArgs - After reading "MACRO(", this method is
888/// invoked to read all of the actual arguments specified for the macro
889/// invocation. This returns null on error.
Chris Lattnerd2177732007-07-20 16:59:19 +0000890MacroArgs *Preprocessor::ReadFunctionLikeMacroArgs(Token &MacroName,
Reid Spencer5f016e22007-07-11 17:01:13 +0000891 MacroInfo *MI) {
892 // The number of fixed arguments to parse.
893 unsigned NumFixedArgsLeft = MI->getNumArgs();
894 bool isVariadic = MI->isVariadic();
895
896 // Outer loop, while there are more arguments, keep reading them.
Chris Lattnerd2177732007-07-20 16:59:19 +0000897 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +0000898 Tok.setKind(tok::comma);
899 --NumFixedArgsLeft; // Start reading the first arg.
900
901 // ArgTokens - Build up a list of tokens that make up each argument. Each
902 // argument is separated by an EOF token. Use a SmallVector so we can avoid
903 // heap allocations in the common case.
Chris Lattnerd2177732007-07-20 16:59:19 +0000904 llvm::SmallVector<Token, 64> ArgTokens;
Reid Spencer5f016e22007-07-11 17:01:13 +0000905
906 unsigned NumActuals = 0;
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000907 while (Tok.is(tok::comma)) {
Chris Lattner2b64fdc2007-07-19 16:11:58 +0000908 // C99 6.10.3p11: Keep track of the number of l_parens we have seen. Note
909 // that we already consumed the first one.
Reid Spencer5f016e22007-07-11 17:01:13 +0000910 unsigned NumParens = 0;
911
912 while (1) {
913 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
914 // an argument value in a macro could expand to ',' or '(' or ')'.
915 LexUnexpandedToken(Tok);
916
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000917 if (Tok.is(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000918 Diag(MacroName, diag::err_unterm_macro_invoc);
919 // Do not lose the EOF. Return it to the client.
920 MacroName = Tok;
921 return 0;
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000922 } else if (Tok.is(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000923 // If we found the ) token, the macro arg list is done.
924 if (NumParens-- == 0)
925 break;
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000926 } else if (Tok.is(tok::l_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000927 ++NumParens;
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000928 } else if (Tok.is(tok::comma) && NumParens == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000929 // Comma ends this argument if there are more fixed arguments expected.
930 if (NumFixedArgsLeft)
931 break;
932
933 // If this is not a variadic macro, too many args were specified.
934 if (!isVariadic) {
935 // Emit the diagnostic at the macro name in case there is a missing ).
936 // Emitting it at the , could be far away from the macro name.
937 Diag(MacroName, diag::err_too_many_args_in_macro_invoc);
938 return 0;
939 }
940 // Otherwise, continue to add the tokens to this variable argument.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000941 } else if (Tok.is(tok::comment) && !KeepMacroComments) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000942 // If this is a comment token in the argument list and we're just in
943 // -C mode (not -CC mode), discard the comment.
944 continue;
945 }
946
947 ArgTokens.push_back(Tok);
948 }
949
950 // Empty arguments are standard in C99 and supported as an extension in
951 // other modes.
952 if (ArgTokens.empty() && !Features.C99)
953 Diag(Tok, diag::ext_empty_fnmacro_arg);
954
955 // Add a marker EOF token to the end of the token list for this argument.
Chris Lattnerd2177732007-07-20 16:59:19 +0000956 Token EOFTok;
Reid Spencer5f016e22007-07-11 17:01:13 +0000957 EOFTok.startToken();
958 EOFTok.setKind(tok::eof);
959 EOFTok.setLocation(Tok.getLocation());
960 EOFTok.setLength(0);
961 ArgTokens.push_back(EOFTok);
962 ++NumActuals;
963 --NumFixedArgsLeft;
964 };
965
966 // Okay, we either found the r_paren. Check to see if we parsed too few
967 // arguments.
968 unsigned MinArgsExpected = MI->getNumArgs();
969
970 // See MacroArgs instance var for description of this.
971 bool isVarargsElided = false;
972
973 if (NumActuals < MinArgsExpected) {
974 // There are several cases where too few arguments is ok, handle them now.
975 if (NumActuals+1 == MinArgsExpected && MI->isVariadic()) {
976 // Varargs where the named vararg parameter is missing: ok as extension.
977 // #define A(x, ...)
978 // A("blah")
979 Diag(Tok, diag::ext_missing_varargs_arg);
980
981 // Remember this occurred if this is a C99 macro invocation with at least
982 // one actual argument.
983 isVarargsElided = MI->isC99Varargs() && MI->getNumArgs() > 1;
984 } else if (MI->getNumArgs() == 1) {
985 // #define A(x)
986 // A()
987 // is ok because it is an empty argument.
988
989 // Empty arguments are standard in C99 and supported as an extension in
990 // other modes.
991 if (ArgTokens.empty() && !Features.C99)
992 Diag(Tok, diag::ext_empty_fnmacro_arg);
993 } else {
994 // Otherwise, emit the error.
995 Diag(Tok, diag::err_too_few_args_in_macro_invoc);
996 return 0;
997 }
998
999 // Add a marker EOF token to the end of the token list for this argument.
1000 SourceLocation EndLoc = Tok.getLocation();
1001 Tok.startToken();
1002 Tok.setKind(tok::eof);
1003 Tok.setLocation(EndLoc);
1004 Tok.setLength(0);
1005 ArgTokens.push_back(Tok);
1006 }
1007
1008 return MacroArgs::create(MI, &ArgTokens[0], ArgTokens.size(),isVarargsElided);
1009}
1010
1011/// ComputeDATE_TIME - Compute the current time, enter it into the specified
1012/// scratch buffer, then return DATELoc/TIMELoc locations with the position of
1013/// the identifier tokens inserted.
1014static void ComputeDATE_TIME(SourceLocation &DATELoc, SourceLocation &TIMELoc,
1015 Preprocessor &PP) {
1016 time_t TT = time(0);
1017 struct tm *TM = localtime(&TT);
1018
1019 static const char * const Months[] = {
1020 "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"
1021 };
1022
1023 char TmpBuffer[100];
1024 sprintf(TmpBuffer, "\"%s %2d %4d\"", Months[TM->tm_mon], TM->tm_mday,
1025 TM->tm_year+1900);
1026 DATELoc = PP.CreateString(TmpBuffer, strlen(TmpBuffer));
1027
1028 sprintf(TmpBuffer, "\"%02d:%02d:%02d\"", TM->tm_hour, TM->tm_min, TM->tm_sec);
1029 TIMELoc = PP.CreateString(TmpBuffer, strlen(TmpBuffer));
1030}
1031
1032/// ExpandBuiltinMacro - If an identifier token is read that is to be expanded
1033/// as a builtin macro, handle it and return the next token as 'Tok'.
Chris Lattnerd2177732007-07-20 16:59:19 +00001034void Preprocessor::ExpandBuiltinMacro(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001035 // Figure out which token this is.
1036 IdentifierInfo *II = Tok.getIdentifierInfo();
1037 assert(II && "Can't be a macro without id info!");
1038
1039 // If this is an _Pragma directive, expand it, invoke the pragma handler, then
1040 // lex the token after it.
1041 if (II == Ident_Pragma)
1042 return Handle_Pragma(Tok);
1043
1044 ++NumBuiltinMacroExpanded;
1045
1046 char TmpBuffer[100];
1047
1048 // Set up the return result.
1049 Tok.setIdentifierInfo(0);
Chris Lattnerd2177732007-07-20 16:59:19 +00001050 Tok.clearFlag(Token::NeedsCleaning);
Reid Spencer5f016e22007-07-11 17:01:13 +00001051
1052 if (II == Ident__LINE__) {
1053 // __LINE__ expands to a simple numeric value.
Chris Lattner9dc1f532007-07-20 16:37:10 +00001054 sprintf(TmpBuffer, "%u", SourceMgr.getLogicalLineNumber(Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001055 unsigned Length = strlen(TmpBuffer);
1056 Tok.setKind(tok::numeric_constant);
1057 Tok.setLength(Length);
1058 Tok.setLocation(CreateString(TmpBuffer, Length, Tok.getLocation()));
1059 } else if (II == Ident__FILE__ || II == Ident__BASE_FILE__) {
1060 SourceLocation Loc = Tok.getLocation();
1061 if (II == Ident__BASE_FILE__) {
1062 Diag(Tok, diag::ext_pp_base_file);
Chris Lattner9dc1f532007-07-20 16:37:10 +00001063 SourceLocation NextLoc = SourceMgr.getIncludeLoc(Loc);
1064 while (NextLoc.isValid()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001065 Loc = NextLoc;
Chris Lattner9dc1f532007-07-20 16:37:10 +00001066 NextLoc = SourceMgr.getIncludeLoc(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001067 }
1068 }
1069
1070 // Escape this filename. Turn '\' -> '\\' '"' -> '\"'
Chris Lattner9dc1f532007-07-20 16:37:10 +00001071 std::string FN = SourceMgr.getSourceName(SourceMgr.getLogicalLoc(Loc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001072 FN = '"' + Lexer::Stringify(FN) + '"';
1073 Tok.setKind(tok::string_literal);
1074 Tok.setLength(FN.size());
1075 Tok.setLocation(CreateString(&FN[0], FN.size(), Tok.getLocation()));
1076 } else if (II == Ident__DATE__) {
1077 if (!DATELoc.isValid())
1078 ComputeDATE_TIME(DATELoc, TIMELoc, *this);
1079 Tok.setKind(tok::string_literal);
1080 Tok.setLength(strlen("\"Mmm dd yyyy\""));
1081 Tok.setLocation(SourceMgr.getInstantiationLoc(DATELoc, Tok.getLocation()));
1082 } else if (II == Ident__TIME__) {
1083 if (!TIMELoc.isValid())
1084 ComputeDATE_TIME(DATELoc, TIMELoc, *this);
1085 Tok.setKind(tok::string_literal);
1086 Tok.setLength(strlen("\"hh:mm:ss\""));
1087 Tok.setLocation(SourceMgr.getInstantiationLoc(TIMELoc, Tok.getLocation()));
1088 } else if (II == Ident__INCLUDE_LEVEL__) {
1089 Diag(Tok, diag::ext_pp_include_level);
1090
1091 // Compute the include depth of this token.
1092 unsigned Depth = 0;
Chris Lattner9dc1f532007-07-20 16:37:10 +00001093 SourceLocation Loc = SourceMgr.getIncludeLoc(Tok.getLocation());
1094 for (; Loc.isValid(); ++Depth)
1095 Loc = SourceMgr.getIncludeLoc(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +00001096
1097 // __INCLUDE_LEVEL__ expands to a simple numeric value.
1098 sprintf(TmpBuffer, "%u", Depth);
1099 unsigned Length = strlen(TmpBuffer);
1100 Tok.setKind(tok::numeric_constant);
1101 Tok.setLength(Length);
1102 Tok.setLocation(CreateString(TmpBuffer, Length, Tok.getLocation()));
1103 } else if (II == Ident__TIMESTAMP__) {
1104 // MSVC, ICC, GCC, VisualAge C++ extension. The generated string should be
1105 // of the form "Ddd Mmm dd hh::mm::ss yyyy", which is returned by asctime.
1106 Diag(Tok, diag::ext_pp_timestamp);
1107
1108 // Get the file that we are lexing out of. If we're currently lexing from
1109 // a macro, dig into the include stack.
1110 const FileEntry *CurFile = 0;
1111 Lexer *TheLexer = getCurrentFileLexer();
1112
1113 if (TheLexer)
Chris Lattner9dc1f532007-07-20 16:37:10 +00001114 CurFile = SourceMgr.getFileEntryForLoc(TheLexer->getFileLoc());
Reid Spencer5f016e22007-07-11 17:01:13 +00001115
1116 // If this file is older than the file it depends on, emit a diagnostic.
1117 const char *Result;
1118 if (CurFile) {
1119 time_t TT = CurFile->getModificationTime();
1120 struct tm *TM = localtime(&TT);
1121 Result = asctime(TM);
1122 } else {
1123 Result = "??? ??? ?? ??:??:?? ????\n";
1124 }
1125 TmpBuffer[0] = '"';
1126 strcpy(TmpBuffer+1, Result);
1127 unsigned Len = strlen(TmpBuffer);
1128 TmpBuffer[Len-1] = '"'; // Replace the newline with a quote.
1129 Tok.setKind(tok::string_literal);
1130 Tok.setLength(Len);
1131 Tok.setLocation(CreateString(TmpBuffer, Len, Tok.getLocation()));
1132 } else {
1133 assert(0 && "Unknown identifier!");
1134 }
1135}
1136
1137//===----------------------------------------------------------------------===//
1138// Lexer Event Handling.
1139//===----------------------------------------------------------------------===//
1140
1141/// LookUpIdentifierInfo - Given a tok::identifier token, look up the
1142/// identifier information for the token and install it into the token.
Chris Lattnerd2177732007-07-20 16:59:19 +00001143IdentifierInfo *Preprocessor::LookUpIdentifierInfo(Token &Identifier,
Reid Spencer5f016e22007-07-11 17:01:13 +00001144 const char *BufPtr) {
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001145 assert(Identifier.is(tok::identifier) && "Not an identifier!");
Reid Spencer5f016e22007-07-11 17:01:13 +00001146 assert(Identifier.getIdentifierInfo() == 0 && "Identinfo already exists!");
1147
1148 // Look up this token, see if it is a macro, or if it is a language keyword.
1149 IdentifierInfo *II;
1150 if (BufPtr && !Identifier.needsCleaning()) {
1151 // No cleaning needed, just use the characters from the lexed buffer.
1152 II = getIdentifierInfo(BufPtr, BufPtr+Identifier.getLength());
1153 } else {
1154 // Cleaning needed, alloca a buffer, clean into it, then use the buffer.
Chris Lattnerc35717a2007-07-13 17:10:38 +00001155 llvm::SmallVector<char, 64> IdentifierBuffer;
1156 IdentifierBuffer.resize(Identifier.getLength());
1157 const char *TmpBuf = &IdentifierBuffer[0];
Reid Spencer5f016e22007-07-11 17:01:13 +00001158 unsigned Size = getSpelling(Identifier, TmpBuf);
1159 II = getIdentifierInfo(TmpBuf, TmpBuf+Size);
1160 }
1161 Identifier.setIdentifierInfo(II);
1162 return II;
1163}
1164
1165
1166/// HandleIdentifier - This callback is invoked when the lexer reads an
1167/// identifier. This callback looks up the identifier in the map and/or
1168/// potentially macro expands it or turns it into a named token (like 'for').
Chris Lattnerd2177732007-07-20 16:59:19 +00001169void Preprocessor::HandleIdentifier(Token &Identifier) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001170 assert(Identifier.getIdentifierInfo() &&
1171 "Can't handle identifiers without identifier info!");
1172
1173 IdentifierInfo &II = *Identifier.getIdentifierInfo();
1174
1175 // If this identifier was poisoned, and if it was not produced from a macro
1176 // expansion, emit an error.
1177 if (II.isPoisoned() && CurLexer) {
1178 if (&II != Ident__VA_ARGS__) // We warn about __VA_ARGS__ with poisoning.
1179 Diag(Identifier, diag::err_pp_used_poisoned_id);
1180 else
1181 Diag(Identifier, diag::ext_pp_bad_vaargs_use);
1182 }
1183
1184 // If this is a macro to be expanded, do it.
Chris Lattnercc1a8752007-10-07 08:44:20 +00001185 if (MacroInfo *MI = getMacroInfo(&II)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001186 if (!DisableMacroExpansion && !Identifier.isExpandDisabled()) {
1187 if (MI->isEnabled()) {
1188 if (!HandleMacroExpandedIdentifier(Identifier, MI))
1189 return;
1190 } else {
1191 // C99 6.10.3.4p2 says that a disabled macro may never again be
1192 // expanded, even if it's in a context where it could be expanded in the
1193 // future.
Chris Lattnerd2177732007-07-20 16:59:19 +00001194 Identifier.setFlag(Token::DisableExpand);
Reid Spencer5f016e22007-07-11 17:01:13 +00001195 }
1196 }
1197 } else if (II.isOtherTargetMacro() && !DisableMacroExpansion) {
1198 // If this identifier is a macro on some other target, emit a diagnostic.
1199 // This diagnosic is only emitted when macro expansion is enabled, because
1200 // the macro would not have been expanded for the other target either.
1201 II.setIsOtherTargetMacro(false); // Don't warn on second use.
1202 getTargetInfo().DiagnoseNonPortability(Identifier.getLocation(),
1203 diag::port_target_macro_use);
1204
1205 }
1206
1207 // C++ 2.11p2: If this is an alternative representation of a C++ operator,
1208 // then we act as if it is the actual operator and not the textual
1209 // representation of it.
1210 if (II.isCPlusPlusOperatorKeyword())
1211 Identifier.setIdentifierInfo(0);
1212
1213 // Change the kind of this identifier to the appropriate token kind, e.g.
1214 // turning "for" into a keyword.
1215 Identifier.setKind(II.getTokenID());
1216
1217 // If this is an extension token, diagnose its use.
1218 // FIXME: tried (unsuccesfully) to shut this up when compiling with gnu99
1219 // For now, I'm just commenting it out (while I work on attributes).
1220 if (II.isExtensionToken() && Features.C99)
1221 Diag(Identifier, diag::ext_token_used);
1222}
1223
1224/// HandleEndOfFile - This callback is invoked when the lexer hits the end of
1225/// the current file. This either returns the EOF token or pops a level off
1226/// the include stack and keeps going.
Chris Lattnerd2177732007-07-20 16:59:19 +00001227bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001228 assert(!CurMacroExpander &&
1229 "Ending a file when currently in a macro!");
1230
1231 // See if this file had a controlling macro.
1232 if (CurLexer) { // Not ending a macro, ignore it.
1233 if (const IdentifierInfo *ControllingMacro =
1234 CurLexer->MIOpt.GetControllingMacroAtEndOfFile()) {
1235 // Okay, this has a controlling macro, remember in PerFileInfo.
1236 if (const FileEntry *FE =
Chris Lattner9dc1f532007-07-20 16:37:10 +00001237 SourceMgr.getFileEntryForLoc(CurLexer->getFileLoc()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001238 HeaderInfo.SetFileControllingMacro(FE, ControllingMacro);
1239 }
1240 }
1241
1242 // If this is a #include'd file, pop it off the include stack and continue
1243 // lexing the #includer file.
1244 if (!IncludeMacroStack.empty()) {
1245 // We're done with the #included file.
1246 RemoveTopOfLexerStack();
1247
1248 // Notify the client, if desired, that we are in a new source file.
1249 if (Callbacks && !isEndOfMacro && CurLexer) {
1250 DirectoryLookup::DirType FileType = DirectoryLookup::NormalHeaderDir;
1251
1252 // Get the file entry for the current file.
1253 if (const FileEntry *FE =
Chris Lattner9dc1f532007-07-20 16:37:10 +00001254 SourceMgr.getFileEntryForLoc(CurLexer->getFileLoc()))
Reid Spencer5f016e22007-07-11 17:01:13 +00001255 FileType = HeaderInfo.getFileDirFlavor(FE);
1256
1257 Callbacks->FileChanged(CurLexer->getSourceLocation(CurLexer->BufferPtr),
1258 PPCallbacks::ExitFile, FileType);
1259 }
1260
1261 // Client should lex another token.
1262 return false;
1263 }
1264
1265 Result.startToken();
1266 CurLexer->BufferPtr = CurLexer->BufferEnd;
1267 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd);
1268 Result.setKind(tok::eof);
1269
1270 // We're done with the #included file.
1271 delete CurLexer;
1272 CurLexer = 0;
1273
1274 // This is the end of the top-level file. If the diag::pp_macro_not_used
Chris Lattnercc1a8752007-10-07 08:44:20 +00001275 // diagnostic is enabled, look for macros that have not been used.
Reid Spencer5f016e22007-07-11 17:01:13 +00001276 if (Diags.getDiagnosticLevel(diag::pp_macro_not_used) != Diagnostic::Ignored){
Chris Lattnercc1a8752007-10-07 08:44:20 +00001277 for (llvm::DenseMap<IdentifierInfo*, MacroInfo*>::iterator I =
1278 Macros.begin(), E = Macros.end(); I != E; ++I) {
1279 if (!I->second->isUsed())
1280 Diag(I->second->getDefinitionLoc(), diag::pp_macro_not_used);
Reid Spencer5f016e22007-07-11 17:01:13 +00001281 }
1282 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001283 return true;
1284}
1285
1286/// HandleEndOfMacro - This callback is invoked when the lexer hits the end of
1287/// the current macro expansion or token stream expansion.
Chris Lattnerd2177732007-07-20 16:59:19 +00001288bool Preprocessor::HandleEndOfMacro(Token &Result) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001289 assert(CurMacroExpander && !CurLexer &&
1290 "Ending a macro when currently in a #include file!");
1291
Chris Lattner9594acf2007-07-15 00:25:26 +00001292 // Delete or cache the now-dead macro expander.
1293 if (NumCachedMacroExpanders == MacroExpanderCacheSize)
1294 delete CurMacroExpander;
1295 else
1296 MacroExpanderCache[NumCachedMacroExpanders++] = CurMacroExpander;
Reid Spencer5f016e22007-07-11 17:01:13 +00001297
1298 // Handle this like a #include file being popped off the stack.
1299 CurMacroExpander = 0;
1300 return HandleEndOfFile(Result, true);
1301}
1302
1303
1304//===----------------------------------------------------------------------===//
1305// Utility Methods for Preprocessor Directive Handling.
1306//===----------------------------------------------------------------------===//
1307
1308/// DiscardUntilEndOfDirective - Read and discard all tokens remaining on the
1309/// current line until the tok::eom token is found.
1310void Preprocessor::DiscardUntilEndOfDirective() {
Chris Lattnerd2177732007-07-20 16:59:19 +00001311 Token Tmp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001312 do {
1313 LexUnexpandedToken(Tmp);
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001314 } while (Tmp.isNot(tok::eom));
Reid Spencer5f016e22007-07-11 17:01:13 +00001315}
1316
1317/// isCXXNamedOperator - Returns "true" if the token is a named operator in C++.
1318static bool isCXXNamedOperator(const std::string &Spelling) {
1319 return Spelling == "and" || Spelling == "bitand" || Spelling == "bitor" ||
1320 Spelling == "compl" || Spelling == "not" || Spelling == "not_eq" ||
1321 Spelling == "or" || Spelling == "xor";
1322}
1323
1324/// ReadMacroName - Lex and validate a macro name, which occurs after a
1325/// #define or #undef. This sets the token kind to eom and discards the rest
1326/// of the macro line if the macro name is invalid. isDefineUndef is 1 if
1327/// this is due to a a #define, 2 if #undef directive, 0 if it is something
1328/// else (e.g. #ifdef).
Chris Lattnerd2177732007-07-20 16:59:19 +00001329void Preprocessor::ReadMacroName(Token &MacroNameTok, char isDefineUndef) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001330 // Read the token, don't allow macro expansion on it.
1331 LexUnexpandedToken(MacroNameTok);
1332
1333 // Missing macro name?
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001334 if (MacroNameTok.is(tok::eom))
Reid Spencer5f016e22007-07-11 17:01:13 +00001335 return Diag(MacroNameTok, diag::err_pp_missing_macro_name);
1336
1337 IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
1338 if (II == 0) {
1339 std::string Spelling = getSpelling(MacroNameTok);
1340 if (isCXXNamedOperator(Spelling))
1341 // C++ 2.5p2: Alternative tokens behave the same as its primary token
1342 // except for their spellings.
1343 Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name, Spelling);
1344 else
1345 Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
1346 // Fall through on error.
1347 } else if (isDefineUndef && II->getPPKeywordID() == tok::pp_defined) {
1348 // Error if defining "defined": C99 6.10.8.4.
1349 Diag(MacroNameTok, diag::err_defined_macro_name);
Chris Lattner0edde552007-10-07 08:04:56 +00001350 } else if (isDefineUndef && II->hasMacroDefinition() &&
Chris Lattnercc1a8752007-10-07 08:44:20 +00001351 getMacroInfo(II)->isBuiltinMacro()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001352 // Error if defining "__LINE__" and other builtins: C99 6.10.8.4.
1353 if (isDefineUndef == 1)
1354 Diag(MacroNameTok, diag::pp_redef_builtin_macro);
1355 else
1356 Diag(MacroNameTok, diag::pp_undef_builtin_macro);
1357 } else {
1358 // Okay, we got a good identifier node. Return it.
1359 return;
1360 }
1361
1362 // Invalid macro name, read and discard the rest of the line. Then set the
1363 // token kind to tok::eom.
1364 MacroNameTok.setKind(tok::eom);
1365 return DiscardUntilEndOfDirective();
1366}
1367
1368/// CheckEndOfDirective - Ensure that the next token is a tok::eom token. If
1369/// not, emit a diagnostic and consume up until the eom.
1370void Preprocessor::CheckEndOfDirective(const char *DirType) {
Chris Lattnerd2177732007-07-20 16:59:19 +00001371 Token Tmp;
Reid Spencer5f016e22007-07-11 17:01:13 +00001372 Lex(Tmp);
1373 // There should be no tokens after the directive, but we allow them as an
1374 // extension.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001375 while (Tmp.is(tok::comment)) // Skip comments in -C mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00001376 Lex(Tmp);
1377
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001378 if (Tmp.isNot(tok::eom)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001379 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol, DirType);
1380 DiscardUntilEndOfDirective();
1381 }
1382}
1383
1384
1385
1386/// SkipExcludedConditionalBlock - We just read a #if or related directive and
1387/// decided that the subsequent tokens are in the #if'd out portion of the
1388/// file. Lex the rest of the file, until we see an #endif. If
1389/// FoundNonSkipPortion is true, then we have already emitted code for part of
1390/// this #if directive, so #else/#elif blocks should never be entered. If ElseOk
1391/// is true, then #else directives are ok, if not, then we have already seen one
1392/// so a #else directive is a duplicate. When this returns, the caller can lex
1393/// the first valid token.
1394void Preprocessor::SkipExcludedConditionalBlock(SourceLocation IfTokenLoc,
1395 bool FoundNonSkipPortion,
1396 bool FoundElse) {
1397 ++NumSkipped;
1398 assert(CurMacroExpander == 0 && CurLexer &&
1399 "Lexing a macro, not a file?");
1400
1401 CurLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
1402 FoundNonSkipPortion, FoundElse);
1403
1404 // Enter raw mode to disable identifier lookup (and thus macro expansion),
1405 // disabling warnings, etc.
1406 CurLexer->LexingRawMode = true;
Chris Lattnerd2177732007-07-20 16:59:19 +00001407 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +00001408 while (1) {
1409 CurLexer->Lex(Tok);
1410
1411 // If this is the end of the buffer, we have an error.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001412 if (Tok.is(tok::eof)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001413 // Emit errors for each unterminated conditional on the stack, including
1414 // the current one.
1415 while (!CurLexer->ConditionalStack.empty()) {
1416 Diag(CurLexer->ConditionalStack.back().IfLoc,
1417 diag::err_pp_unterminated_conditional);
1418 CurLexer->ConditionalStack.pop_back();
1419 }
1420
1421 // Just return and let the caller lex after this #include.
1422 break;
1423 }
1424
1425 // If this token is not a preprocessor directive, just skip it.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001426 if (Tok.isNot(tok::hash) || !Tok.isAtStartOfLine())
Reid Spencer5f016e22007-07-11 17:01:13 +00001427 continue;
1428
1429 // We just parsed a # character at the start of a line, so we're in
1430 // directive mode. Tell the lexer this so any newlines we see will be
1431 // converted into an EOM token (this terminates the macro).
1432 CurLexer->ParsingPreprocessorDirective = true;
1433 CurLexer->KeepCommentMode = false;
1434
1435
1436 // Read the next token, the directive flavor.
1437 LexUnexpandedToken(Tok);
1438
1439 // If this isn't an identifier directive (e.g. is "# 1\n" or "#\n", or
1440 // something bogus), skip it.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001441 if (Tok.isNot(tok::identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001442 CurLexer->ParsingPreprocessorDirective = false;
1443 // Restore comment saving mode.
1444 CurLexer->KeepCommentMode = KeepComments;
1445 continue;
1446 }
1447
1448 // If the first letter isn't i or e, it isn't intesting to us. We know that
1449 // this is safe in the face of spelling differences, because there is no way
1450 // to spell an i/e in a strange way that is another letter. Skipping this
1451 // allows us to avoid looking up the identifier info for #define/#undef and
1452 // other common directives.
1453 const char *RawCharData = SourceMgr.getCharacterData(Tok.getLocation());
1454 char FirstChar = RawCharData[0];
1455 if (FirstChar >= 'a' && FirstChar <= 'z' &&
1456 FirstChar != 'i' && FirstChar != 'e') {
1457 CurLexer->ParsingPreprocessorDirective = false;
1458 // Restore comment saving mode.
1459 CurLexer->KeepCommentMode = KeepComments;
1460 continue;
1461 }
1462
1463 // Get the identifier name without trigraphs or embedded newlines. Note
1464 // that we can't use Tok.getIdentifierInfo() because its lookup is disabled
1465 // when skipping.
1466 // TODO: could do this with zero copies in the no-clean case by using
1467 // strncmp below.
1468 char Directive[20];
1469 unsigned IdLen;
1470 if (!Tok.needsCleaning() && Tok.getLength() < 20) {
1471 IdLen = Tok.getLength();
1472 memcpy(Directive, RawCharData, IdLen);
1473 Directive[IdLen] = 0;
1474 } else {
1475 std::string DirectiveStr = getSpelling(Tok);
1476 IdLen = DirectiveStr.size();
1477 if (IdLen >= 20) {
1478 CurLexer->ParsingPreprocessorDirective = false;
1479 // Restore comment saving mode.
1480 CurLexer->KeepCommentMode = KeepComments;
1481 continue;
1482 }
1483 memcpy(Directive, &DirectiveStr[0], IdLen);
1484 Directive[IdLen] = 0;
1485 }
1486
1487 if (FirstChar == 'i' && Directive[1] == 'f') {
1488 if ((IdLen == 2) || // "if"
1489 (IdLen == 5 && !strcmp(Directive+2, "def")) || // "ifdef"
1490 (IdLen == 6 && !strcmp(Directive+2, "ndef"))) { // "ifndef"
1491 // We know the entire #if/#ifdef/#ifndef block will be skipped, don't
1492 // bother parsing the condition.
1493 DiscardUntilEndOfDirective();
1494 CurLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true,
1495 /*foundnonskip*/false,
1496 /*fnddelse*/false);
1497 }
1498 } else if (FirstChar == 'e') {
1499 if (IdLen == 5 && !strcmp(Directive+1, "ndif")) { // "endif"
1500 CheckEndOfDirective("#endif");
1501 PPConditionalInfo CondInfo;
1502 CondInfo.WasSkipping = true; // Silence bogus warning.
1503 bool InCond = CurLexer->popConditionalLevel(CondInfo);
1504 InCond = InCond; // Silence warning in no-asserts mode.
1505 assert(!InCond && "Can't be skipping if not in a conditional!");
1506
1507 // If we popped the outermost skipping block, we're done skipping!
1508 if (!CondInfo.WasSkipping)
1509 break;
1510 } else if (IdLen == 4 && !strcmp(Directive+1, "lse")) { // "else".
1511 // #else directive in a skipping conditional. If not in some other
1512 // skipping conditional, and if #else hasn't already been seen, enter it
1513 // as a non-skipping conditional.
1514 CheckEndOfDirective("#else");
1515 PPConditionalInfo &CondInfo = CurLexer->peekConditionalLevel();
1516
1517 // If this is a #else with a #else before it, report the error.
1518 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else);
1519
1520 // Note that we've seen a #else in this conditional.
1521 CondInfo.FoundElse = true;
1522
1523 // If the conditional is at the top level, and the #if block wasn't
1524 // entered, enter the #else block now.
1525 if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) {
1526 CondInfo.FoundNonSkip = true;
1527 break;
1528 }
1529 } else if (IdLen == 4 && !strcmp(Directive+1, "lif")) { // "elif".
1530 PPConditionalInfo &CondInfo = CurLexer->peekConditionalLevel();
1531
1532 bool ShouldEnter;
1533 // If this is in a skipping block or if we're already handled this #if
1534 // block, don't bother parsing the condition.
1535 if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) {
1536 DiscardUntilEndOfDirective();
1537 ShouldEnter = false;
1538 } else {
1539 // Restore the value of LexingRawMode so that identifiers are
1540 // looked up, etc, inside the #elif expression.
1541 assert(CurLexer->LexingRawMode && "We have to be skipping here!");
1542 CurLexer->LexingRawMode = false;
1543 IdentifierInfo *IfNDefMacro = 0;
1544 ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
1545 CurLexer->LexingRawMode = true;
1546 }
1547
1548 // If this is a #elif with a #else before it, report the error.
1549 if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else);
1550
1551 // If this condition is true, enter it!
1552 if (ShouldEnter) {
1553 CondInfo.FoundNonSkip = true;
1554 break;
1555 }
1556 }
1557 }
1558
1559 CurLexer->ParsingPreprocessorDirective = false;
1560 // Restore comment saving mode.
1561 CurLexer->KeepCommentMode = KeepComments;
1562 }
1563
1564 // Finally, if we are out of the conditional (saw an #endif or ran off the end
1565 // of the file, just stop skipping and return to lexing whatever came after
1566 // the #if block.
1567 CurLexer->LexingRawMode = false;
1568}
1569
1570//===----------------------------------------------------------------------===//
1571// Preprocessor Directive Handling.
1572//===----------------------------------------------------------------------===//
1573
1574/// HandleDirective - This callback is invoked when the lexer sees a # token
1575/// at the start of a line. This consumes the directive, modifies the
1576/// lexer/preprocessor state, and advances the lexer(s) so that the next token
1577/// read is the correct one.
Chris Lattnerd2177732007-07-20 16:59:19 +00001578void Preprocessor::HandleDirective(Token &Result) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001579 // FIXME: Traditional: # with whitespace before it not recognized by K&R?
1580
1581 // We just parsed a # character at the start of a line, so we're in directive
1582 // mode. Tell the lexer this so any newlines we see will be converted into an
1583 // EOM token (which terminates the directive).
1584 CurLexer->ParsingPreprocessorDirective = true;
1585
1586 ++NumDirectives;
1587
1588 // We are about to read a token. For the multiple-include optimization FA to
1589 // work, we have to remember if we had read any tokens *before* this
1590 // pp-directive.
1591 bool ReadAnyTokensBeforeDirective = CurLexer->MIOpt.getHasReadAnyTokensVal();
1592
1593 // Read the next token, the directive flavor. This isn't expanded due to
1594 // C99 6.10.3p8.
1595 LexUnexpandedToken(Result);
1596
1597 // C99 6.10.3p11: Is this preprocessor directive in macro invocation? e.g.:
1598 // #define A(x) #x
1599 // A(abc
1600 // #warning blah
1601 // def)
1602 // If so, the user is relying on non-portable behavior, emit a diagnostic.
1603 if (InMacroArgs)
1604 Diag(Result, diag::ext_embedded_directive);
1605
1606TryAgain:
1607 switch (Result.getKind()) {
1608 case tok::eom:
1609 return; // null directive.
1610 case tok::comment:
1611 // Handle stuff like "# /*foo*/ define X" in -E -C mode.
1612 LexUnexpandedToken(Result);
1613 goto TryAgain;
1614
1615 case tok::numeric_constant:
1616 // FIXME: implement # 7 line numbers!
1617 DiscardUntilEndOfDirective();
1618 return;
1619 default:
1620 IdentifierInfo *II = Result.getIdentifierInfo();
1621 if (II == 0) break; // Not an identifier.
1622
1623 // Ask what the preprocessor keyword ID is.
1624 switch (II->getPPKeywordID()) {
1625 default: break;
1626 // C99 6.10.1 - Conditional Inclusion.
1627 case tok::pp_if:
1628 return HandleIfDirective(Result, ReadAnyTokensBeforeDirective);
1629 case tok::pp_ifdef:
1630 return HandleIfdefDirective(Result, false, true/*not valid for miopt*/);
1631 case tok::pp_ifndef:
1632 return HandleIfdefDirective(Result, true, ReadAnyTokensBeforeDirective);
1633 case tok::pp_elif:
1634 return HandleElifDirective(Result);
1635 case tok::pp_else:
1636 return HandleElseDirective(Result);
1637 case tok::pp_endif:
1638 return HandleEndifDirective(Result);
1639
1640 // C99 6.10.2 - Source File Inclusion.
1641 case tok::pp_include:
1642 return HandleIncludeDirective(Result); // Handle #include.
1643
1644 // C99 6.10.3 - Macro Replacement.
1645 case tok::pp_define:
1646 return HandleDefineDirective(Result, false);
1647 case tok::pp_undef:
1648 return HandleUndefDirective(Result);
1649
1650 // C99 6.10.4 - Line Control.
1651 case tok::pp_line:
1652 // FIXME: implement #line
1653 DiscardUntilEndOfDirective();
1654 return;
1655
1656 // C99 6.10.5 - Error Directive.
1657 case tok::pp_error:
1658 return HandleUserDiagnosticDirective(Result, false);
1659
1660 // C99 6.10.6 - Pragma Directive.
1661 case tok::pp_pragma:
1662 return HandlePragmaDirective();
1663
1664 // GNU Extensions.
1665 case tok::pp_import:
1666 return HandleImportDirective(Result);
1667 case tok::pp_include_next:
1668 return HandleIncludeNextDirective(Result);
1669
1670 case tok::pp_warning:
1671 Diag(Result, diag::ext_pp_warning_directive);
1672 return HandleUserDiagnosticDirective(Result, true);
1673 case tok::pp_ident:
1674 return HandleIdentSCCSDirective(Result);
1675 case tok::pp_sccs:
1676 return HandleIdentSCCSDirective(Result);
1677 case tok::pp_assert:
1678 //isExtension = true; // FIXME: implement #assert
1679 break;
1680 case tok::pp_unassert:
1681 //isExtension = true; // FIXME: implement #unassert
1682 break;
1683
1684 // clang extensions.
1685 case tok::pp_define_target:
1686 return HandleDefineDirective(Result, true);
1687 case tok::pp_define_other_target:
1688 return HandleDefineOtherTargetDirective(Result);
1689 }
1690 break;
1691 }
1692
1693 // If we reached here, the preprocessing token is not valid!
1694 Diag(Result, diag::err_pp_invalid_directive);
1695
1696 // Read the rest of the PP line.
1697 DiscardUntilEndOfDirective();
1698
1699 // Okay, we're done parsing the directive.
1700}
1701
Chris Lattnerd2177732007-07-20 16:59:19 +00001702void Preprocessor::HandleUserDiagnosticDirective(Token &Tok,
Reid Spencer5f016e22007-07-11 17:01:13 +00001703 bool isWarning) {
1704 // Read the rest of the line raw. We do this because we don't want macros
1705 // to be expanded and we don't require that the tokens be valid preprocessing
1706 // tokens. For example, this is allowed: "#warning ` 'foo". GCC does
1707 // collapse multiple consequtive white space between tokens, but this isn't
1708 // specified by the standard.
1709 std::string Message = CurLexer->ReadToEndOfLine();
1710
1711 unsigned DiagID = isWarning ? diag::pp_hash_warning : diag::err_pp_hash_error;
1712 return Diag(Tok, DiagID, Message);
1713}
1714
1715/// HandleIdentSCCSDirective - Handle a #ident/#sccs directive.
1716///
Chris Lattnerd2177732007-07-20 16:59:19 +00001717void Preprocessor::HandleIdentSCCSDirective(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001718 // Yes, this directive is an extension.
1719 Diag(Tok, diag::ext_pp_ident_directive);
1720
1721 // Read the string argument.
Chris Lattnerd2177732007-07-20 16:59:19 +00001722 Token StrTok;
Reid Spencer5f016e22007-07-11 17:01:13 +00001723 Lex(StrTok);
1724
1725 // If the token kind isn't a string, it's a malformed directive.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001726 if (StrTok.isNot(tok::string_literal) &&
1727 StrTok.isNot(tok::wide_string_literal))
Reid Spencer5f016e22007-07-11 17:01:13 +00001728 return Diag(StrTok, diag::err_pp_malformed_ident);
1729
1730 // Verify that there is nothing after the string, other than EOM.
1731 CheckEndOfDirective("#ident");
1732
1733 if (Callbacks)
1734 Callbacks->Ident(Tok.getLocation(), getSpelling(StrTok));
1735}
1736
1737//===----------------------------------------------------------------------===//
1738// Preprocessor Include Directive Handling.
1739//===----------------------------------------------------------------------===//
1740
1741/// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully
1742/// checked and spelled filename, e.g. as an operand of #include. This returns
1743/// true if the input filename was in <>'s or false if it were in ""'s. The
1744/// caller is expected to provide a buffer that is large enough to hold the
1745/// spelling of the filename, but is also expected to handle the case when
1746/// this method decides to use a different buffer.
Chris Lattnerf1c99ac2007-07-23 04:15:27 +00001747bool Preprocessor::GetIncludeFilenameSpelling(SourceLocation Loc,
Reid Spencer5f016e22007-07-11 17:01:13 +00001748 const char *&BufStart,
1749 const char *&BufEnd) {
1750 // Get the text form of the filename.
Reid Spencer5f016e22007-07-11 17:01:13 +00001751 assert(BufStart != BufEnd && "Can't have tokens with empty spellings!");
1752
1753 // Make sure the filename is <x> or "x".
1754 bool isAngled;
1755 if (BufStart[0] == '<') {
1756 if (BufEnd[-1] != '>') {
Chris Lattnerf1c99ac2007-07-23 04:15:27 +00001757 Diag(Loc, diag::err_pp_expects_filename);
Reid Spencer5f016e22007-07-11 17:01:13 +00001758 BufStart = 0;
1759 return true;
1760 }
1761 isAngled = true;
1762 } else if (BufStart[0] == '"') {
1763 if (BufEnd[-1] != '"') {
Chris Lattnerf1c99ac2007-07-23 04:15:27 +00001764 Diag(Loc, diag::err_pp_expects_filename);
Reid Spencer5f016e22007-07-11 17:01:13 +00001765 BufStart = 0;
1766 return true;
1767 }
1768 isAngled = false;
1769 } else {
Chris Lattnerf1c99ac2007-07-23 04:15:27 +00001770 Diag(Loc, diag::err_pp_expects_filename);
Reid Spencer5f016e22007-07-11 17:01:13 +00001771 BufStart = 0;
1772 return true;
1773 }
1774
1775 // Diagnose #include "" as invalid.
1776 if (BufEnd-BufStart <= 2) {
Chris Lattnerf1c99ac2007-07-23 04:15:27 +00001777 Diag(Loc, diag::err_pp_empty_filename);
Reid Spencer5f016e22007-07-11 17:01:13 +00001778 BufStart = 0;
1779 return "";
1780 }
1781
1782 // Skip the brackets.
1783 ++BufStart;
1784 --BufEnd;
1785 return isAngled;
1786}
1787
Chris Lattner706ab502007-07-23 04:56:47 +00001788/// ConcatenateIncludeName - Handle cases where the #include name is expanded
1789/// from a macro as multiple tokens, which need to be glued together. This
1790/// occurs for code like:
1791/// #define FOO <a/b.h>
1792/// #include FOO
1793/// because in this case, "<a/b.h>" is returned as 7 tokens, not one.
1794///
1795/// This code concatenates and consumes tokens up to the '>' token. It returns
1796/// false if the > was found, otherwise it returns true if it finds and consumes
1797/// the EOM marker.
1798static bool ConcatenateIncludeName(llvm::SmallVector<char, 128> &FilenameBuffer,
1799 Preprocessor &PP) {
1800 Token CurTok;
1801
1802 PP.Lex(CurTok);
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001803 while (CurTok.isNot(tok::eom)) {
Chris Lattner706ab502007-07-23 04:56:47 +00001804 // Append the spelling of this token to the buffer. If there was a space
1805 // before it, add it now.
1806 if (CurTok.hasLeadingSpace())
1807 FilenameBuffer.push_back(' ');
1808
1809 // Get the spelling of the token, directly into FilenameBuffer if possible.
1810 unsigned PreAppendSize = FilenameBuffer.size();
1811 FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
1812
1813 const char *BufPtr = &FilenameBuffer[PreAppendSize];
1814 unsigned ActualLen = PP.getSpelling(CurTok, BufPtr);
1815
1816 // If the token was spelled somewhere else, copy it into FilenameBuffer.
1817 if (BufPtr != &FilenameBuffer[PreAppendSize])
1818 memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
1819
1820 // Resize FilenameBuffer to the correct size.
1821 if (CurTok.getLength() != ActualLen)
1822 FilenameBuffer.resize(PreAppendSize+ActualLen);
1823
1824 // If we found the '>' marker, return success.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001825 if (CurTok.is(tok::greater))
Chris Lattner706ab502007-07-23 04:56:47 +00001826 return false;
1827
1828 PP.Lex(CurTok);
1829 }
1830
1831 // If we hit the eom marker, emit an error and return true so that the caller
1832 // knows the EOM has been read.
1833 PP.Diag(CurTok.getLocation(), diag::err_pp_expects_filename);
1834 return true;
1835}
1836
Reid Spencer5f016e22007-07-11 17:01:13 +00001837/// HandleIncludeDirective - The "#include" tokens have just been read, read the
1838/// file to be included from the lexer, then include it! This is a common
1839/// routine with functionality shared between #include, #include_next and
1840/// #import.
Chris Lattnerd2177732007-07-20 16:59:19 +00001841void Preprocessor::HandleIncludeDirective(Token &IncludeTok,
Reid Spencer5f016e22007-07-11 17:01:13 +00001842 const DirectoryLookup *LookupFrom,
1843 bool isImport) {
1844
Chris Lattnerd2177732007-07-20 16:59:19 +00001845 Token FilenameTok;
Reid Spencer5f016e22007-07-11 17:01:13 +00001846 CurLexer->LexIncludeFilename(FilenameTok);
1847
Reid Spencer5f016e22007-07-11 17:01:13 +00001848 // Reserve a buffer to get the spelling.
1849 llvm::SmallVector<char, 128> FilenameBuffer;
Chris Lattner706ab502007-07-23 04:56:47 +00001850 const char *FilenameStart, *FilenameEnd;
1851
1852 switch (FilenameTok.getKind()) {
1853 case tok::eom:
1854 // If the token kind is EOM, the error has already been diagnosed.
1855 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001856
Chris Lattner706ab502007-07-23 04:56:47 +00001857 case tok::angle_string_literal:
Chris Lattnerf11ccfc2007-07-23 22:23:52 +00001858 case tok::string_literal: {
Chris Lattner706ab502007-07-23 04:56:47 +00001859 FilenameBuffer.resize(FilenameTok.getLength());
1860 FilenameStart = &FilenameBuffer[0];
1861 unsigned Len = getSpelling(FilenameTok, FilenameStart);
1862 FilenameEnd = FilenameStart+Len;
1863 break;
Chris Lattnerf11ccfc2007-07-23 22:23:52 +00001864 }
Chris Lattner706ab502007-07-23 04:56:47 +00001865
1866 case tok::less:
1867 // This could be a <foo/bar.h> file coming from a macro expansion. In this
1868 // case, glue the tokens together into FilenameBuffer and interpret those.
1869 FilenameBuffer.push_back('<');
1870 if (ConcatenateIncludeName(FilenameBuffer, *this))
1871 return; // Found <eom> but no ">"? Diagnostic already emitted.
1872 FilenameStart = &FilenameBuffer[0];
1873 FilenameEnd = &FilenameBuffer[FilenameBuffer.size()];
1874 break;
1875 default:
1876 Diag(FilenameTok.getLocation(), diag::err_pp_expects_filename);
1877 DiscardUntilEndOfDirective();
1878 return;
1879 }
1880
Chris Lattnerf1c99ac2007-07-23 04:15:27 +00001881 bool isAngled = GetIncludeFilenameSpelling(FilenameTok.getLocation(),
Reid Spencer5f016e22007-07-11 17:01:13 +00001882 FilenameStart, FilenameEnd);
1883 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1884 // error.
Chris Lattner706ab502007-07-23 04:56:47 +00001885 if (FilenameStart == 0) {
1886 DiscardUntilEndOfDirective();
Reid Spencer5f016e22007-07-11 17:01:13 +00001887 return;
Chris Lattner706ab502007-07-23 04:56:47 +00001888 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001889
1890 // Verify that there is nothing after the filename, other than EOM. Use the
1891 // preprocessor to lex this in case lexing the filename entered a macro.
1892 CheckEndOfDirective("#include");
1893
1894 // Check that we don't have infinite #include recursion.
1895 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1)
1896 return Diag(FilenameTok, diag::err_pp_include_too_deep);
1897
1898 // Search include directories.
1899 const DirectoryLookup *CurDir;
1900 const FileEntry *File = LookupFile(FilenameStart, FilenameEnd,
1901 isAngled, LookupFrom, CurDir);
1902 if (File == 0)
1903 return Diag(FilenameTok, diag::err_pp_file_not_found,
1904 std::string(FilenameStart, FilenameEnd));
1905
1906 // Ask HeaderInfo if we should enter this #include file.
1907 if (!HeaderInfo.ShouldEnterIncludeFile(File, isImport)) {
1908 // If it returns true, #including this file will have no effect.
1909 return;
1910 }
1911
1912 // Look up the file, create a File ID for it.
1913 unsigned FileID = SourceMgr.createFileID(File, FilenameTok.getLocation());
1914 if (FileID == 0)
1915 return Diag(FilenameTok, diag::err_pp_file_not_found,
1916 std::string(FilenameStart, FilenameEnd));
1917
1918 // Finally, if all is good, enter the new file!
1919 EnterSourceFile(FileID, CurDir);
1920}
1921
1922/// HandleIncludeNextDirective - Implements #include_next.
1923///
Chris Lattnerd2177732007-07-20 16:59:19 +00001924void Preprocessor::HandleIncludeNextDirective(Token &IncludeNextTok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001925 Diag(IncludeNextTok, diag::ext_pp_include_next_directive);
1926
1927 // #include_next is like #include, except that we start searching after
1928 // the current found directory. If we can't do this, issue a
1929 // diagnostic.
1930 const DirectoryLookup *Lookup = CurDirLookup;
1931 if (isInPrimaryFile()) {
1932 Lookup = 0;
1933 Diag(IncludeNextTok, diag::pp_include_next_in_primary);
1934 } else if (Lookup == 0) {
1935 Diag(IncludeNextTok, diag::pp_include_next_absolute_path);
1936 } else {
1937 // Start looking up in the next directory.
1938 ++Lookup;
1939 }
1940
1941 return HandleIncludeDirective(IncludeNextTok, Lookup);
1942}
1943
1944/// HandleImportDirective - Implements #import.
1945///
Chris Lattnerd2177732007-07-20 16:59:19 +00001946void Preprocessor::HandleImportDirective(Token &ImportTok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001947 Diag(ImportTok, diag::ext_pp_import_directive);
1948
1949 return HandleIncludeDirective(ImportTok, 0, true);
1950}
1951
1952//===----------------------------------------------------------------------===//
1953// Preprocessor Macro Directive Handling.
1954//===----------------------------------------------------------------------===//
1955
1956/// ReadMacroDefinitionArgList - The ( starting an argument list of a macro
1957/// definition has just been read. Lex the rest of the arguments and the
1958/// closing ), updating MI with what we learn. Return true if an error occurs
1959/// parsing the arg list.
1960bool Preprocessor::ReadMacroDefinitionArgList(MacroInfo *MI) {
Chris Lattner25c96482007-07-14 22:46:43 +00001961 llvm::SmallVector<IdentifierInfo*, 32> Arguments;
1962
Chris Lattnerd2177732007-07-20 16:59:19 +00001963 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +00001964 while (1) {
1965 LexUnexpandedToken(Tok);
1966 switch (Tok.getKind()) {
1967 case tok::r_paren:
1968 // Found the end of the argument list.
Chris Lattner25c96482007-07-14 22:46:43 +00001969 if (Arguments.empty()) { // #define FOO()
1970 MI->setArgumentList(Arguments.begin(), Arguments.end());
1971 return false;
1972 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001973 // Otherwise we have #define FOO(A,)
1974 Diag(Tok, diag::err_pp_expected_ident_in_arg_list);
1975 return true;
1976 case tok::ellipsis: // #define X(... -> C99 varargs
1977 // Warn if use of C99 feature in non-C99 mode.
1978 if (!Features.C99) Diag(Tok, diag::ext_variadic_macro);
1979
1980 // Lex the token after the identifier.
1981 LexUnexpandedToken(Tok);
Chris Lattner22f6bbc2007-10-09 18:02:16 +00001982 if (Tok.isNot(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001983 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1984 return true;
1985 }
1986 // Add the __VA_ARGS__ identifier as an argument.
Chris Lattner25c96482007-07-14 22:46:43 +00001987 Arguments.push_back(Ident__VA_ARGS__);
Reid Spencer5f016e22007-07-11 17:01:13 +00001988 MI->setIsC99Varargs();
Chris Lattner25c96482007-07-14 22:46:43 +00001989 MI->setArgumentList(Arguments.begin(), Arguments.end());
Reid Spencer5f016e22007-07-11 17:01:13 +00001990 return false;
1991 case tok::eom: // #define X(
1992 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1993 return true;
1994 default:
1995 // Handle keywords and identifiers here to accept things like
1996 // #define Foo(for) for.
1997 IdentifierInfo *II = Tok.getIdentifierInfo();
1998 if (II == 0) {
1999 // #define X(1
2000 Diag(Tok, diag::err_pp_invalid_tok_in_arg_list);
2001 return true;
2002 }
2003
2004 // If this is already used as an argument, it is used multiple times (e.g.
2005 // #define X(A,A.
Chris Lattner25c96482007-07-14 22:46:43 +00002006 if (std::find(Arguments.begin(), Arguments.end(), II) !=
2007 Arguments.end()) { // C99 6.10.3p6
Reid Spencer5f016e22007-07-11 17:01:13 +00002008 Diag(Tok, diag::err_pp_duplicate_name_in_arg_list, II->getName());
2009 return true;
2010 }
2011
2012 // Add the argument to the macro info.
Chris Lattner25c96482007-07-14 22:46:43 +00002013 Arguments.push_back(II);
Reid Spencer5f016e22007-07-11 17:01:13 +00002014
2015 // Lex the token after the identifier.
2016 LexUnexpandedToken(Tok);
2017
2018 switch (Tok.getKind()) {
2019 default: // #define X(A B
2020 Diag(Tok, diag::err_pp_expected_comma_in_arg_list);
2021 return true;
2022 case tok::r_paren: // #define X(A)
Chris Lattner25c96482007-07-14 22:46:43 +00002023 MI->setArgumentList(Arguments.begin(), Arguments.end());
Reid Spencer5f016e22007-07-11 17:01:13 +00002024 return false;
2025 case tok::comma: // #define X(A,
2026 break;
2027 case tok::ellipsis: // #define X(A... -> GCC extension
2028 // Diagnose extension.
2029 Diag(Tok, diag::ext_named_variadic_macro);
2030
2031 // Lex the token after the identifier.
2032 LexUnexpandedToken(Tok);
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002033 if (Tok.isNot(tok::r_paren)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002034 Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
2035 return true;
2036 }
2037
2038 MI->setIsGNUVarargs();
Chris Lattner25c96482007-07-14 22:46:43 +00002039 MI->setArgumentList(Arguments.begin(), Arguments.end());
Reid Spencer5f016e22007-07-11 17:01:13 +00002040 return false;
2041 }
2042 }
2043 }
2044}
2045
2046/// HandleDefineDirective - Implements #define. This consumes the entire macro
2047/// line then lets the caller lex the next real token. If 'isTargetSpecific' is
2048/// true, then this is a "#define_target", otherwise this is a "#define".
2049///
Chris Lattnerd2177732007-07-20 16:59:19 +00002050void Preprocessor::HandleDefineDirective(Token &DefineTok,
Reid Spencer5f016e22007-07-11 17:01:13 +00002051 bool isTargetSpecific) {
2052 ++NumDefined;
2053
Chris Lattnerd2177732007-07-20 16:59:19 +00002054 Token MacroNameTok;
Reid Spencer5f016e22007-07-11 17:01:13 +00002055 ReadMacroName(MacroNameTok, 1);
2056
2057 // Error reading macro name? If so, diagnostic already issued.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002058 if (MacroNameTok.is(tok::eom))
Reid Spencer5f016e22007-07-11 17:01:13 +00002059 return;
Chris Lattnerc215bd62007-07-14 22:11:41 +00002060
Reid Spencer5f016e22007-07-11 17:01:13 +00002061 // If we are supposed to keep comments in #defines, reenable comment saving
2062 // mode.
2063 CurLexer->KeepCommentMode = KeepMacroComments;
2064
2065 // Create the new macro.
2066 MacroInfo *MI = new MacroInfo(MacroNameTok.getLocation());
2067 if (isTargetSpecific) MI->setIsTargetSpecific();
2068
2069 // If the identifier is an 'other target' macro, clear this bit.
2070 MacroNameTok.getIdentifierInfo()->setIsOtherTargetMacro(false);
2071
2072
Chris Lattnerd2177732007-07-20 16:59:19 +00002073 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +00002074 LexUnexpandedToken(Tok);
2075
2076 // If this is a function-like macro definition, parse the argument list,
2077 // marking each of the identifiers as being used as macro arguments. Also,
2078 // check other constraints on the first token of the macro body.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002079 if (Tok.is(tok::eom)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002080 // If there is no body to this macro, we have no special handling here.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002081 } else if (Tok.is(tok::l_paren) && !Tok.hasLeadingSpace()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002082 // This is a function-like macro definition. Read the argument list.
2083 MI->setIsFunctionLike();
2084 if (ReadMacroDefinitionArgList(MI)) {
2085 // Forget about MI.
2086 delete MI;
2087 // Throw away the rest of the line.
2088 if (CurLexer->ParsingPreprocessorDirective)
2089 DiscardUntilEndOfDirective();
2090 return;
2091 }
2092
2093 // Read the first token after the arg list for down below.
2094 LexUnexpandedToken(Tok);
2095 } else if (!Tok.hasLeadingSpace()) {
2096 // C99 requires whitespace between the macro definition and the body. Emit
2097 // a diagnostic for something like "#define X+".
2098 if (Features.C99) {
2099 Diag(Tok, diag::ext_c99_whitespace_required_after_macro_name);
2100 } else {
2101 // FIXME: C90/C++ do not get this diagnostic, but it does get a similar
2102 // one in some cases!
2103 }
2104 } else {
2105 // This is a normal token with leading space. Clear the leading space
2106 // marker on the first token to get proper expansion.
Chris Lattnerd2177732007-07-20 16:59:19 +00002107 Tok.clearFlag(Token::LeadingSpace);
Reid Spencer5f016e22007-07-11 17:01:13 +00002108 }
2109
2110 // If this is a definition of a variadic C99 function-like macro, not using
2111 // the GNU named varargs extension, enabled __VA_ARGS__.
2112
2113 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
2114 // This gets unpoisoned where it is allowed.
2115 assert(Ident__VA_ARGS__->isPoisoned() && "__VA_ARGS__ should be poisoned!");
2116 if (MI->isC99Varargs())
2117 Ident__VA_ARGS__->setIsPoisoned(false);
2118
2119 // Read the rest of the macro body.
Chris Lattnerb5e240f2007-07-14 21:54:03 +00002120 if (MI->isObjectLike()) {
2121 // Object-like macros are very simple, just read their body.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002122 while (Tok.isNot(tok::eom)) {
Chris Lattnerb5e240f2007-07-14 21:54:03 +00002123 MI->AddTokenToBody(Tok);
Reid Spencer5f016e22007-07-11 17:01:13 +00002124 // Get the next token of the macro.
2125 LexUnexpandedToken(Tok);
Reid Spencer5f016e22007-07-11 17:01:13 +00002126 }
2127
Chris Lattnerb5e240f2007-07-14 21:54:03 +00002128 } else {
2129 // Otherwise, read the body of a function-like macro. This has to validate
2130 // the # (stringize) operator.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002131 while (Tok.isNot(tok::eom)) {
Chris Lattnerb5e240f2007-07-14 21:54:03 +00002132 MI->AddTokenToBody(Tok);
Reid Spencer5f016e22007-07-11 17:01:13 +00002133
Chris Lattnerb5e240f2007-07-14 21:54:03 +00002134 // Check C99 6.10.3.2p1: ensure that # operators are followed by macro
2135 // parameters in function-like macro expansions.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002136 if (Tok.isNot(tok::hash)) {
Chris Lattnerb5e240f2007-07-14 21:54:03 +00002137 // Get the next token of the macro.
2138 LexUnexpandedToken(Tok);
2139 continue;
2140 }
2141
2142 // Get the next token of the macro.
2143 LexUnexpandedToken(Tok);
2144
2145 // Not a macro arg identifier?
2146 if (!Tok.getIdentifierInfo() ||
2147 MI->getArgumentNum(Tok.getIdentifierInfo()) == -1) {
2148 Diag(Tok, diag::err_pp_stringize_not_parameter);
2149 delete MI;
2150
2151 // Disable __VA_ARGS__ again.
2152 Ident__VA_ARGS__->setIsPoisoned(true);
2153 return;
2154 }
2155
2156 // Things look ok, add the param name token to the macro.
2157 MI->AddTokenToBody(Tok);
2158
2159 // Get the next token of the macro.
2160 LexUnexpandedToken(Tok);
2161 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002162 }
2163
Chris Lattnerc215bd62007-07-14 22:11:41 +00002164
Reid Spencer5f016e22007-07-11 17:01:13 +00002165 // Disable __VA_ARGS__ again.
2166 Ident__VA_ARGS__->setIsPoisoned(true);
2167
2168 // Check that there is no paste (##) operator at the begining or end of the
2169 // replacement list.
2170 unsigned NumTokens = MI->getNumTokens();
2171 if (NumTokens != 0) {
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002172 if (MI->getReplacementToken(0).is(tok::hashhash)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002173 Diag(MI->getReplacementToken(0), diag::err_paste_at_start);
2174 delete MI;
2175 return;
2176 }
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002177 if (MI->getReplacementToken(NumTokens-1).is(tok::hashhash)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002178 Diag(MI->getReplacementToken(NumTokens-1), diag::err_paste_at_end);
2179 delete MI;
2180 return;
2181 }
2182 }
2183
2184 // If this is the primary source file, remember that this macro hasn't been
2185 // used yet.
2186 if (isInPrimaryFile())
2187 MI->setIsUsed(false);
2188
2189 // Finally, if this identifier already had a macro defined for it, verify that
2190 // the macro bodies are identical and free the old definition.
Chris Lattnercc1a8752007-10-07 08:44:20 +00002191 if (MacroInfo *OtherMI = getMacroInfo(MacroNameTok.getIdentifierInfo())) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002192 if (!OtherMI->isUsed())
2193 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used);
2194
2195 // Macros must be identical. This means all tokes and whitespace separation
2196 // must be the same. C99 6.10.3.2.
2197 if (!MI->isIdenticalTo(*OtherMI, *this)) {
2198 Diag(MI->getDefinitionLoc(), diag::ext_pp_macro_redef,
2199 MacroNameTok.getIdentifierInfo()->getName());
2200 Diag(OtherMI->getDefinitionLoc(), diag::ext_pp_macro_redef2);
2201 }
2202 delete OtherMI;
2203 }
2204
Chris Lattnercc1a8752007-10-07 08:44:20 +00002205 setMacroInfo(MacroNameTok.getIdentifierInfo(), MI);
Reid Spencer5f016e22007-07-11 17:01:13 +00002206}
2207
2208/// HandleDefineOtherTargetDirective - Implements #define_other_target.
Chris Lattnerd2177732007-07-20 16:59:19 +00002209void Preprocessor::HandleDefineOtherTargetDirective(Token &Tok) {
2210 Token MacroNameTok;
Reid Spencer5f016e22007-07-11 17:01:13 +00002211 ReadMacroName(MacroNameTok, 1);
2212
2213 // Error reading macro name? If so, diagnostic already issued.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002214 if (MacroNameTok.is(tok::eom))
Reid Spencer5f016e22007-07-11 17:01:13 +00002215 return;
2216
2217 // Check to see if this is the last token on the #undef line.
2218 CheckEndOfDirective("#define_other_target");
2219
2220 // If there is already a macro defined by this name, turn it into a
2221 // target-specific define.
Chris Lattnercc1a8752007-10-07 08:44:20 +00002222 if (MacroInfo *MI = getMacroInfo(MacroNameTok.getIdentifierInfo())) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002223 MI->setIsTargetSpecific(true);
2224 return;
2225 }
2226
2227 // Mark the identifier as being a macro on some other target.
2228 MacroNameTok.getIdentifierInfo()->setIsOtherTargetMacro();
2229}
2230
2231
2232/// HandleUndefDirective - Implements #undef.
2233///
Chris Lattnerd2177732007-07-20 16:59:19 +00002234void Preprocessor::HandleUndefDirective(Token &UndefTok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002235 ++NumUndefined;
2236
Chris Lattnerd2177732007-07-20 16:59:19 +00002237 Token MacroNameTok;
Reid Spencer5f016e22007-07-11 17:01:13 +00002238 ReadMacroName(MacroNameTok, 2);
2239
2240 // Error reading macro name? If so, diagnostic already issued.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002241 if (MacroNameTok.is(tok::eom))
Reid Spencer5f016e22007-07-11 17:01:13 +00002242 return;
2243
2244 // Check to see if this is the last token on the #undef line.
2245 CheckEndOfDirective("#undef");
2246
2247 // Okay, we finally have a valid identifier to undef.
Chris Lattnercc1a8752007-10-07 08:44:20 +00002248 MacroInfo *MI = getMacroInfo(MacroNameTok.getIdentifierInfo());
Reid Spencer5f016e22007-07-11 17:01:13 +00002249
2250 // #undef untaints an identifier if it were marked by define_other_target.
2251 MacroNameTok.getIdentifierInfo()->setIsOtherTargetMacro(false);
2252
2253 // If the macro is not defined, this is a noop undef, just return.
2254 if (MI == 0) return;
2255
2256 if (!MI->isUsed())
2257 Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used);
2258
2259 // Free macro definition.
2260 delete MI;
Chris Lattnercc1a8752007-10-07 08:44:20 +00002261 setMacroInfo(MacroNameTok.getIdentifierInfo(), 0);
Reid Spencer5f016e22007-07-11 17:01:13 +00002262}
2263
2264
2265//===----------------------------------------------------------------------===//
2266// Preprocessor Conditional Directive Handling.
2267//===----------------------------------------------------------------------===//
2268
2269/// HandleIfdefDirective - Implements the #ifdef/#ifndef directive. isIfndef is
2270/// true when this is a #ifndef directive. ReadAnyTokensBeforeDirective is true
2271/// if any tokens have been returned or pp-directives activated before this
2272/// #ifndef has been lexed.
2273///
Chris Lattnerd2177732007-07-20 16:59:19 +00002274void Preprocessor::HandleIfdefDirective(Token &Result, bool isIfndef,
Reid Spencer5f016e22007-07-11 17:01:13 +00002275 bool ReadAnyTokensBeforeDirective) {
2276 ++NumIf;
Chris Lattnerd2177732007-07-20 16:59:19 +00002277 Token DirectiveTok = Result;
Reid Spencer5f016e22007-07-11 17:01:13 +00002278
Chris Lattnerd2177732007-07-20 16:59:19 +00002279 Token MacroNameTok;
Reid Spencer5f016e22007-07-11 17:01:13 +00002280 ReadMacroName(MacroNameTok);
2281
2282 // Error reading macro name? If so, diagnostic already issued.
Chris Lattner22f6bbc2007-10-09 18:02:16 +00002283 if (MacroNameTok.is(tok::eom)) {
Chris Lattnerf37bb252007-09-24 05:14:57 +00002284 // Skip code until we get to #endif. This helps with recovery by not
2285 // emitting an error when the #endif is reached.
2286 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
2287 /*Foundnonskip*/false, /*FoundElse*/false);
Reid Spencer5f016e22007-07-11 17:01:13 +00002288 return;
Chris Lattnerf37bb252007-09-24 05:14:57 +00002289 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002290
2291 // Check to see if this is the last token on the #if[n]def line.
2292 CheckEndOfDirective(isIfndef ? "#ifndef" : "#ifdef");
2293
2294 // If the start of a top-level #ifdef, inform MIOpt.
2295 if (!ReadAnyTokensBeforeDirective &&
2296 CurLexer->getConditionalStackDepth() == 0) {
2297 assert(isIfndef && "#ifdef shouldn't reach here");
2298 CurLexer->MIOpt.EnterTopLevelIFNDEF(MacroNameTok.getIdentifierInfo());
2299 }
2300
2301 IdentifierInfo *MII = MacroNameTok.getIdentifierInfo();
Chris Lattnercc1a8752007-10-07 08:44:20 +00002302 MacroInfo *MI = getMacroInfo(MII);
Reid Spencer5f016e22007-07-11 17:01:13 +00002303
2304 // If there is a macro, process it.
2305 if (MI) {
2306 // Mark it used.
2307 MI->setIsUsed(true);
2308
2309 // If this is the first use of a target-specific macro, warn about it.
2310 if (MI->isTargetSpecific()) {
2311 MI->setIsTargetSpecific(false); // Don't warn on second use.
2312 getTargetInfo().DiagnoseNonPortability(MacroNameTok.getLocation(),
2313 diag::port_target_macro_use);
2314 }
2315 } else {
2316 // Use of a target-specific macro for some other target? If so, warn.
2317 if (MII->isOtherTargetMacro()) {
2318 MII->setIsOtherTargetMacro(false); // Don't warn on second use.
2319 getTargetInfo().DiagnoseNonPortability(MacroNameTok.getLocation(),
2320 diag::port_target_macro_use);
2321 }
2322 }
2323
2324 // Should we include the stuff contained by this directive?
2325 if (!MI == isIfndef) {
2326 // Yes, remember that we are inside a conditional, then lex the next token.
2327 CurLexer->pushConditionalLevel(DirectiveTok.getLocation(), /*wasskip*/false,
2328 /*foundnonskip*/true, /*foundelse*/false);
2329 } else {
2330 // No, skip the contents of this block and return the first token after it.
2331 SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
2332 /*Foundnonskip*/false,
2333 /*FoundElse*/false);
2334 }
2335}
2336
2337/// HandleIfDirective - Implements the #if directive.
2338///
Chris Lattnerd2177732007-07-20 16:59:19 +00002339void Preprocessor::HandleIfDirective(Token &IfToken,
Reid Spencer5f016e22007-07-11 17:01:13 +00002340 bool ReadAnyTokensBeforeDirective) {
2341 ++NumIf;
2342
2343 // Parse and evaluation the conditional expression.
2344 IdentifierInfo *IfNDefMacro = 0;
2345 bool ConditionalTrue = EvaluateDirectiveExpression(IfNDefMacro);
2346
2347 // Should we include the stuff contained by this directive?
2348 if (ConditionalTrue) {
2349 // If this condition is equivalent to #ifndef X, and if this is the first
2350 // directive seen, handle it for the multiple-include optimization.
2351 if (!ReadAnyTokensBeforeDirective &&
2352 CurLexer->getConditionalStackDepth() == 0 && IfNDefMacro)
2353 CurLexer->MIOpt.EnterTopLevelIFNDEF(IfNDefMacro);
2354
2355 // Yes, remember that we are inside a conditional, then lex the next token.
2356 CurLexer->pushConditionalLevel(IfToken.getLocation(), /*wasskip*/false,
2357 /*foundnonskip*/true, /*foundelse*/false);
2358 } else {
2359 // No, skip the contents of this block and return the first token after it.
2360 SkipExcludedConditionalBlock(IfToken.getLocation(), /*Foundnonskip*/false,
2361 /*FoundElse*/false);
2362 }
2363}
2364
2365/// HandleEndifDirective - Implements the #endif directive.
2366///
Chris Lattnerd2177732007-07-20 16:59:19 +00002367void Preprocessor::HandleEndifDirective(Token &EndifToken) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002368 ++NumEndif;
2369
2370 // Check that this is the whole directive.
2371 CheckEndOfDirective("#endif");
2372
2373 PPConditionalInfo CondInfo;
2374 if (CurLexer->popConditionalLevel(CondInfo)) {
2375 // No conditionals on the stack: this is an #endif without an #if.
2376 return Diag(EndifToken, diag::err_pp_endif_without_if);
2377 }
2378
2379 // If this the end of a top-level #endif, inform MIOpt.
2380 if (CurLexer->getConditionalStackDepth() == 0)
2381 CurLexer->MIOpt.ExitTopLevelConditional();
2382
2383 assert(!CondInfo.WasSkipping && !CurLexer->LexingRawMode &&
2384 "This code should only be reachable in the non-skipping case!");
2385}
2386
2387
Chris Lattnerd2177732007-07-20 16:59:19 +00002388void Preprocessor::HandleElseDirective(Token &Result) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002389 ++NumElse;
2390
2391 // #else directive in a non-skipping conditional... start skipping.
2392 CheckEndOfDirective("#else");
2393
2394 PPConditionalInfo CI;
2395 if (CurLexer->popConditionalLevel(CI))
2396 return Diag(Result, diag::pp_err_else_without_if);
2397
2398 // If this is a top-level #else, inform the MIOpt.
2399 if (CurLexer->getConditionalStackDepth() == 0)
2400 CurLexer->MIOpt.FoundTopLevelElse();
2401
2402 // If this is a #else with a #else before it, report the error.
2403 if (CI.FoundElse) Diag(Result, diag::pp_err_else_after_else);
2404
2405 // Finally, skip the rest of the contents of this block and return the first
2406 // token after it.
2407 return SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
2408 /*FoundElse*/true);
2409}
2410
Chris Lattnerd2177732007-07-20 16:59:19 +00002411void Preprocessor::HandleElifDirective(Token &ElifToken) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002412 ++NumElse;
2413
2414 // #elif directive in a non-skipping conditional... start skipping.
2415 // We don't care what the condition is, because we will always skip it (since
2416 // the block immediately before it was included).
2417 DiscardUntilEndOfDirective();
2418
2419 PPConditionalInfo CI;
2420 if (CurLexer->popConditionalLevel(CI))
2421 return Diag(ElifToken, diag::pp_err_elif_without_if);
2422
2423 // If this is a top-level #elif, inform the MIOpt.
2424 if (CurLexer->getConditionalStackDepth() == 0)
2425 CurLexer->MIOpt.FoundTopLevelElse();
2426
2427 // If this is a #elif with a #else before it, report the error.
2428 if (CI.FoundElse) Diag(ElifToken, diag::pp_err_elif_after_else);
2429
2430 // Finally, skip the rest of the contents of this block and return the first
2431 // token after it.
2432 return SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
2433 /*FoundElse*/CI.FoundElse);
2434}
2435