blob: 54c17488c85f0d794bffa29c655ac65e68f2c3ec [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//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the 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"
Reid Spencer5f016e22007-07-11 17:01:13 +000031#include "clang/Lex/Pragma.h"
32#include "clang/Lex/ScratchBuffer.h"
33#include "clang/Basic/Diagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000034#include "clang/Basic/SourceManager.h"
35#include "clang/Basic/TargetInfo.h"
Chris Lattner2db78dd2008-10-05 20:40:30 +000036#include "llvm/ADT/APFloat.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000037#include "llvm/ADT/SmallVector.h"
Chris Lattner97ba77c2007-07-16 06:48:38 +000038#include "llvm/Support/MemoryBuffer.h"
Ted Kremenekbdd30c22008-01-14 16:44:48 +000039#include "llvm/Support/Streams.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000040using namespace clang;
41
42//===----------------------------------------------------------------------===//
43
Ted Kremenekec6c5742008-04-17 21:23:07 +000044PreprocessorFactory::~PreprocessorFactory() {}
45
Reid Spencer5f016e22007-07-11 17:01:13 +000046Preprocessor::Preprocessor(Diagnostic &diags, const LangOptions &opts,
47 TargetInfo &target, SourceManager &SM,
Ted Kremenek72b1b152009-01-15 18:47:46 +000048 HeaderSearch &Headers,
49 IdentifierInfoLookup* IILookup)
Reid Spencer5f016e22007-07-11 17:01:13 +000050 : Diags(diags), Features(opts), Target(target), FileMgr(Headers.getFileMgr()),
Ted Kremenek72b1b152009-01-15 18:47:46 +000051 SourceMgr(SM), HeaderInfo(Headers), Identifiers(opts, IILookup),
Ted Kremenek4b71e3e2008-11-19 00:44:06 +000052 CurPPLexer(0), CurDirLookup(0), Callbacks(0) {
Reid Spencer5f016e22007-07-11 17:01:13 +000053 ScratchBuf = new ScratchBuffer(SourceMgr);
Chris Lattner9594acf2007-07-15 00:25:26 +000054
Reid Spencer5f016e22007-07-11 17:01:13 +000055 // Clear stats.
56 NumDirectives = NumDefined = NumUndefined = NumPragma = 0;
57 NumIf = NumElse = NumEndif = 0;
58 NumEnteredSourceFiles = 0;
59 NumMacroExpanded = NumFnMacroExpanded = NumBuiltinMacroExpanded = 0;
60 NumFastMacroExpanded = NumTokenPaste = NumFastTokenPaste = 0;
61 MaxIncludeStackDepth = 0;
62 NumSkipped = 0;
63
64 // Default to discarding comments.
65 KeepComments = false;
66 KeepMacroComments = false;
67
68 // Macro expansion is enabled.
69 DisableMacroExpansion = false;
70 InMacroArgs = false;
Chris Lattner6cfe7592008-03-09 02:26:03 +000071 NumCachedTokenLexers = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000072
Argyrios Kyrtzidis03db1b32008-08-10 13:15:22 +000073 CachedLexPos = 0;
74
Reid Spencer5f016e22007-07-11 17:01:13 +000075 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
76 // This gets unpoisoned where it is allowed.
77 (Ident__VA_ARGS__ = getIdentifierInfo("__VA_ARGS__"))->setIsPoisoned();
78
79 // Initialize the pragma handlers.
80 PragmaHandlers = new PragmaNamespace(0);
81 RegisterBuiltinPragmas();
82
83 // Initialize builtin macros like __LINE__ and friends.
84 RegisterBuiltinMacros();
85}
86
87Preprocessor::~Preprocessor() {
Argyrios Kyrtzidis2174a4f2008-08-23 12:12:06 +000088 assert(BacktrackPositions.empty() && "EnableBacktrack/Backtrack imbalance!");
89
Reid Spencer5f016e22007-07-11 17:01:13 +000090 while (!IncludeMacroStack.empty()) {
91 delete IncludeMacroStack.back().TheLexer;
Chris Lattner6cfe7592008-03-09 02:26:03 +000092 delete IncludeMacroStack.back().TheTokenLexer;
Reid Spencer5f016e22007-07-11 17:01:13 +000093 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) {
Ted Kremenek0ea76722008-12-15 19:56:42 +000099 // We don't need to free the MacroInfo objects directly. These
100 // will be released when the BumpPtrAllocator 'BP' object gets
101 // destroyed.
Chris Lattnercc1a8752007-10-07 08:44:20 +0000102 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.
Chris Lattner6cfe7592008-03-09 02:26:03 +0000106 for (unsigned i = 0, e = NumCachedTokenLexers; i != e; ++i)
107 delete TokenLexerCache[i];
Chris Lattner9594acf2007-07-15 00:25:26 +0000108
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 // Release pragma information.
110 delete PragmaHandlers;
111
112 // Delete the scratch buffer info.
113 delete ScratchBuf;
Chris Lattnereb50ed82008-03-14 06:07:05 +0000114
115 delete Callbacks;
Reid Spencer5f016e22007-07-11 17:01:13 +0000116}
117
Chris Lattnerd2177732007-07-20 16:59:19 +0000118void Preprocessor::DumpToken(const Token &Tok, bool DumpFlags) const {
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000119 llvm::cerr << tok::getTokenName(Tok.getKind()) << " '"
120 << getSpelling(Tok) << "'";
Reid Spencer5f016e22007-07-11 17:01:13 +0000121
122 if (!DumpFlags) return;
Chris Lattnerc3d8d572007-12-09 20:31:55 +0000123
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000124 llvm::cerr << "\t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000125 if (Tok.isAtStartOfLine())
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000126 llvm::cerr << " [StartOfLine]";
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 if (Tok.hasLeadingSpace())
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000128 llvm::cerr << " [LeadingSpace]";
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 if (Tok.isExpandDisabled())
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000130 llvm::cerr << " [ExpandDisabled]";
Reid Spencer5f016e22007-07-11 17:01:13 +0000131 if (Tok.needsCleaning()) {
132 const char *Start = SourceMgr.getCharacterData(Tok.getLocation());
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000133 llvm::cerr << " [UnClean='" << std::string(Start, Start+Tok.getLength())
134 << "']";
Reid Spencer5f016e22007-07-11 17:01:13 +0000135 }
Chris Lattnerc3d8d572007-12-09 20:31:55 +0000136
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000137 llvm::cerr << "\tLoc=<";
Chris Lattnerc3d8d572007-12-09 20:31:55 +0000138 DumpLocation(Tok.getLocation());
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000139 llvm::cerr << ">";
Chris Lattnerc3d8d572007-12-09 20:31:55 +0000140}
141
142void Preprocessor::DumpLocation(SourceLocation Loc) const {
Chris Lattnerf7cf85b2009-01-16 07:36:28 +0000143 SourceLocation LogLoc = SourceMgr.getInstantiationLoc(Loc);
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000144 llvm::cerr << SourceMgr.getSourceName(LogLoc) << ':'
145 << SourceMgr.getLineNumber(LogLoc) << ':'
Ted Kremenek109949a2008-07-19 19:10:04 +0000146 << SourceMgr.getColumnNumber(LogLoc);
Chris Lattnerc3d8d572007-12-09 20:31:55 +0000147
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000148 SourceLocation SpellingLoc = SourceMgr.getSpellingLoc(Loc);
149 if (SpellingLoc != LogLoc) {
150 llvm::cerr << " <SpellingLoc=";
151 DumpLocation(SpellingLoc);
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000152 llvm::cerr << ">";
Chris Lattnerc3d8d572007-12-09 20:31:55 +0000153 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000154}
155
156void Preprocessor::DumpMacro(const MacroInfo &MI) const {
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000157 llvm::cerr << "MACRO: ";
Reid Spencer5f016e22007-07-11 17:01:13 +0000158 for (unsigned i = 0, e = MI.getNumTokens(); i != e; ++i) {
159 DumpToken(MI.getReplacementToken(i));
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000160 llvm::cerr << " ";
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 }
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000162 llvm::cerr << "\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000163}
164
165void Preprocessor::PrintStats() {
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000166 llvm::cerr << "\n*** Preprocessor Stats:\n";
167 llvm::cerr << NumDirectives << " directives found:\n";
168 llvm::cerr << " " << NumDefined << " #define.\n";
169 llvm::cerr << " " << NumUndefined << " #undef.\n";
170 llvm::cerr << " #include/#include_next/#import:\n";
171 llvm::cerr << " " << NumEnteredSourceFiles << " source files entered.\n";
172 llvm::cerr << " " << MaxIncludeStackDepth << " max include stack depth\n";
173 llvm::cerr << " " << NumIf << " #if/#ifndef/#ifdef.\n";
174 llvm::cerr << " " << NumElse << " #else/#elif.\n";
175 llvm::cerr << " " << NumEndif << " #endif.\n";
176 llvm::cerr << " " << NumPragma << " #pragma.\n";
177 llvm::cerr << NumSkipped << " #if/#ifndef#ifdef regions skipped\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000178
Ted Kremenekbdd30c22008-01-14 16:44:48 +0000179 llvm::cerr << NumMacroExpanded << "/" << NumFnMacroExpanded << "/"
180 << NumBuiltinMacroExpanded << " obj/fn/builtin macros expanded, "
181 << NumFastMacroExpanded << " on the fast path.\n";
182 llvm::cerr << (NumFastTokenPaste+NumTokenPaste)
183 << " token paste (##) operations performed, "
184 << NumFastTokenPaste << " on the fast path.\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000185}
186
187//===----------------------------------------------------------------------===//
188// Token Spelling
189//===----------------------------------------------------------------------===//
190
191
192/// getSpelling() - Return the 'spelling' of this token. The spelling of a
193/// token are the characters used to represent the token in the source file
194/// after trigraph expansion and escaped-newline folding. In particular, this
195/// wants to get the true, uncanonicalized, spelling of things like digraphs
196/// UCNs, etc.
Chris Lattnerd2177732007-07-20 16:59:19 +0000197std::string Preprocessor::getSpelling(const Token &Tok) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000198 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
Ted Kremenekf02f6f02009-01-13 22:05:50 +0000199 const char* TokStart;
200
201 if (PTH) {
Chris Lattner6b7b8402009-01-17 06:29:33 +0000202 if (unsigned Len = PTH->getSpelling(Tok.getLocation(), TokStart)) {
Ted Kremenekf02f6f02009-01-13 22:05:50 +0000203 assert(!Tok.needsCleaning());
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000204 return std::string(TokStart, TokStart+Len);
Ted Kremenekf02f6f02009-01-13 22:05:50 +0000205 }
206 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000207
208 // If this token contains nothing interesting, return it directly.
Ted Kremenekf02f6f02009-01-13 22:05:50 +0000209 TokStart = SourceMgr.getCharacterData(Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +0000210 if (!Tok.needsCleaning())
211 return std::string(TokStart, TokStart+Tok.getLength());
212
213 std::string Result;
214 Result.reserve(Tok.getLength());
215
216 // Otherwise, hard case, relex the characters into the string.
217 for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength();
218 Ptr != End; ) {
219 unsigned CharSize;
220 Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features));
221 Ptr += CharSize;
222 }
223 assert(Result.size() != unsigned(Tok.getLength()) &&
224 "NeedsCleaning flag set on something that didn't need cleaning!");
225 return Result;
226}
227
228/// getSpelling - This method is used to get the spelling of a token into a
229/// preallocated buffer, instead of as an std::string. The caller is required
230/// to allocate enough space for the token, which is guaranteed to be at least
231/// Tok.getLength() bytes long. The actual length of the token is returned.
232///
233/// Note that this method may do two possible things: it may either fill in
234/// the buffer specified with characters, or it may *change the input pointer*
235/// to point to a constant buffer with the data already in it (avoiding a
236/// copy). The caller is not allowed to modify the returned buffer pointer
237/// if an internal buffer is returned.
Chris Lattnerd2177732007-07-20 16:59:19 +0000238unsigned Preprocessor::getSpelling(const Token &Tok,
Reid Spencer5f016e22007-07-11 17:01:13 +0000239 const char *&Buffer) const {
240 assert((int)Tok.getLength() >= 0 && "Token character range is bogus!");
241
242 // If this token is an identifier, just return the string from the identifier
243 // table, which is very quick.
244 if (const IdentifierInfo *II = Tok.getIdentifierInfo()) {
245 Buffer = II->getName();
Chris Lattnere1dccae2009-01-05 19:44:41 +0000246 return II->getLength();
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 }
Ted Kremenekb70e3da2009-01-08 02:47:16 +0000248
249 // If using PTH, try and get the spelling from the PTH file.
Ted Kremenekf02f6f02009-01-13 22:05:50 +0000250 if (PTH) {
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000251 unsigned Len;
Ted Kremenekb70e3da2009-01-08 02:47:16 +0000252
Ted Kremenekf02f6f02009-01-13 22:05:50 +0000253 if (CurPTHLexer) {
Chris Lattner9938d072009-01-16 07:02:14 +0000254 Len = CurPTHLexer.get()->getSpelling(Tok.getLocation(), Buffer);
Chris Lattnerfff745e2009-01-16 07:04:11 +0000255 } else {
Chris Lattner6b7b8402009-01-17 06:29:33 +0000256 Len = PTH->getSpelling(Tok.getLocation(), Buffer);
Ted Kremenekf02f6f02009-01-13 22:05:50 +0000257 }
258
Ted Kremenekb70e3da2009-01-08 02:47:16 +0000259 // Did we find a spelling? If so return its length. Otherwise fall
260 // back to the default behavior for getting the spelling by looking at
Ted Kremenekf02f6f02009-01-13 22:05:50 +0000261 // at the source code.
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000262 if (Len)
263 return Len;
Ted Kremenekb70e3da2009-01-08 02:47:16 +0000264 }
265
Reid Spencer5f016e22007-07-11 17:01:13 +0000266 // Otherwise, compute the start of the token in the input lexer buffer.
267 const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation());
268
269 // If this token contains nothing interesting, return it directly.
270 if (!Tok.needsCleaning()) {
271 Buffer = TokStart;
272 return Tok.getLength();
273 }
274 // Otherwise, hard case, relex the characters into the string.
275 char *OutBuf = const_cast<char*>(Buffer);
276 for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength();
277 Ptr != End; ) {
278 unsigned CharSize;
279 *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features);
280 Ptr += CharSize;
281 }
282 assert(unsigned(OutBuf-Buffer) != Tok.getLength() &&
283 "NeedsCleaning flag set on something that didn't need cleaning!");
284
285 return OutBuf-Buffer;
286}
287
288
289/// CreateString - Plop the specified string into a scratch buffer and return a
290/// location for it. If specified, the source location provides a source
291/// location for the token.
292SourceLocation Preprocessor::
293CreateString(const char *Buf, unsigned Len, SourceLocation SLoc) {
294 if (SLoc.isValid())
295 return ScratchBuf->getToken(Buf, Len, SLoc);
296 return ScratchBuf->getToken(Buf, Len);
297}
298
299
Chris Lattner97ba77c2007-07-16 06:48:38 +0000300/// AdvanceToTokenCharacter - Given a location that specifies the start of a
301/// token, return a new location that specifies a character within the token.
302SourceLocation Preprocessor::AdvanceToTokenCharacter(SourceLocation TokStart,
303 unsigned CharNo) {
Chris Lattner9dc1f532007-07-20 16:37:10 +0000304 // If they request the first char of the token, we're trivially done. If this
305 // is a macro expansion, it doesn't make sense to point to a character within
306 // the instantiation point (the name). We could point to the source
307 // character, but without also pointing to instantiation info, this is
308 // confusing.
309 if (CharNo == 0 || TokStart.isMacroID()) return TokStart;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000310
Chris Lattnerf7cf85b2009-01-16 07:36:28 +0000311 // Figure out how many physical characters away the specified instantiation
Chris Lattner97ba77c2007-07-16 06:48:38 +0000312 // character is. This needs to take into consideration newlines and
313 // trigraphs.
Chris Lattner9dc1f532007-07-20 16:37:10 +0000314 const char *TokPtr = SourceMgr.getCharacterData(TokStart);
315 unsigned PhysOffset = 0;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000316
317 // The usual case is that tokens don't contain anything interesting. Skip
318 // over the uninteresting characters. If a token only consists of simple
319 // chars, this method is extremely fast.
320 while (CharNo && Lexer::isObviouslySimpleCharacter(*TokPtr))
Chris Lattner9dc1f532007-07-20 16:37:10 +0000321 ++TokPtr, --CharNo, ++PhysOffset;
Chris Lattner97ba77c2007-07-16 06:48:38 +0000322
Chris Lattner28c90ad2009-01-17 07:57:25 +0000323 // If we have a character that may be a trigraph or escaped newline, use a
Chris Lattner97ba77c2007-07-16 06:48:38 +0000324 // lexer to parse it correctly.
Chris Lattner97ba77c2007-07-16 06:48:38 +0000325 if (CharNo != 0) {
Chris Lattner97ba77c2007-07-16 06:48:38 +0000326 // Skip over characters the remaining characters.
Chris Lattner28c90ad2009-01-17 07:57:25 +0000327 for (; CharNo; --CharNo) {
328 unsigned Size;
329 Lexer::getCharAndSizeNoWarn(TokPtr, Size, Features);
330 TokPtr += Size;
331 PhysOffset += Size;
332 }
Chris Lattner97ba77c2007-07-16 06:48:38 +0000333 }
Chris Lattner9dc1f532007-07-20 16:37:10 +0000334
335 return TokStart.getFileLocWithOffset(PhysOffset);
Chris Lattner97ba77c2007-07-16 06:48:38 +0000336}
337
338
Chris Lattner53b0dab2007-10-09 22:10:18 +0000339//===----------------------------------------------------------------------===//
340// Preprocessor Initialization Methods
341//===----------------------------------------------------------------------===//
342
343// Append a #define line to Buf for Macro. Macro should be of the form XXX,
344// in which case we emit "#define XXX 1" or "XXX=Y z W" in which case we emit
345// "#define XXX Y z W". To get a #define with no value, use "XXX=".
346static void DefineBuiltinMacro(std::vector<char> &Buf, const char *Macro,
347 const char *Command = "#define ") {
348 Buf.insert(Buf.end(), Command, Command+strlen(Command));
349 if (const char *Equal = strchr(Macro, '=')) {
350 // Turn the = into ' '.
351 Buf.insert(Buf.end(), Macro, Equal);
352 Buf.push_back(' ');
353 Buf.insert(Buf.end(), Equal+1, Equal+strlen(Equal));
354 } else {
355 // Push "macroname 1".
356 Buf.insert(Buf.end(), Macro, Macro+strlen(Macro));
357 Buf.push_back(' ');
358 Buf.push_back('1');
359 }
360 Buf.push_back('\n');
361}
362
Chris Lattner2db78dd2008-10-05 20:40:30 +0000363/// PickFP - This is used to pick a value based on the FP semantics of the
364/// specified FP model.
365template <typename T>
366static T PickFP(const llvm::fltSemantics *Sem, T IEEESingleVal,
367 T IEEEDoubleVal, T X87DoubleExtendedVal, T PPCDoubleDoubleVal) {
368 if (Sem == &llvm::APFloat::IEEEsingle)
369 return IEEESingleVal;
370 if (Sem == &llvm::APFloat::IEEEdouble)
371 return IEEEDoubleVal;
372 if (Sem == &llvm::APFloat::x87DoubleExtended)
373 return X87DoubleExtendedVal;
374 assert(Sem == &llvm::APFloat::PPCDoubleDouble);
375 return PPCDoubleDoubleVal;
376}
377
378static void DefineFloatMacros(std::vector<char> &Buf, const char *Prefix,
379 const llvm::fltSemantics *Sem) {
Chris Lattnere9863ca2008-10-05 21:40:58 +0000380 const char *DenormMin, *Epsilon, *Max, *Min;
381 DenormMin = PickFP(Sem, "1.40129846e-45F", "4.9406564584124654e-324",
382 "3.64519953188247460253e-4951L",
383 "4.94065645841246544176568792868221e-324L");
384 int Digits = PickFP(Sem, 6, 15, 18, 31);
385 Epsilon = PickFP(Sem, "1.19209290e-7F", "2.2204460492503131e-16",
386 "1.08420217248550443401e-19L",
387 "4.94065645841246544176568792868221e-324L");
388 int HasInifinity = 1, HasQuietNaN = 1;
389 int MantissaDigits = PickFP(Sem, 24, 53, 64, 106);
390 int Min10Exp = PickFP(Sem, -37, -307, -4931, -291);
391 int Max10Exp = PickFP(Sem, 38, 308, 4932, 308);
392 int MinExp = PickFP(Sem, -125, -1021, -16381, -968);
393 int MaxExp = PickFP(Sem, 128, 1024, 16384, 1024);
394 Min = PickFP(Sem, "1.17549435e-38F", "2.2250738585072014e-308",
395 "3.36210314311209350626e-4932L",
396 "2.00416836000897277799610805135016e-292L");
397 Max = PickFP(Sem, "3.40282347e+38F", "1.7976931348623157e+308",
398 "1.18973149535723176502e+4932L",
399 "1.79769313486231580793728971405301e+308L");
Chris Lattner2db78dd2008-10-05 20:40:30 +0000400
401 char MacroBuf[60];
402 sprintf(MacroBuf, "__%s_DENORM_MIN__=%s", Prefix, DenormMin);
403 DefineBuiltinMacro(Buf, MacroBuf);
Chris Lattnere9863ca2008-10-05 21:40:58 +0000404 sprintf(MacroBuf, "__%s_DIG__=%d", Prefix, Digits);
405 DefineBuiltinMacro(Buf, MacroBuf);
406 sprintf(MacroBuf, "__%s_EPSILON__=%s", Prefix, Epsilon);
407 DefineBuiltinMacro(Buf, MacroBuf);
408 sprintf(MacroBuf, "__%s_HAS_INFINITY__=%d", Prefix, HasInifinity);
409 DefineBuiltinMacro(Buf, MacroBuf);
410 sprintf(MacroBuf, "__%s_HAS_QUIET_NAN__=%d", Prefix, HasQuietNaN);
411 DefineBuiltinMacro(Buf, MacroBuf);
412 sprintf(MacroBuf, "__%s_MANT_DIG__=%d", Prefix, MantissaDigits);
413 DefineBuiltinMacro(Buf, MacroBuf);
414 sprintf(MacroBuf, "__%s_MAX_10_EXP__=%d", Prefix, Max10Exp);
415 DefineBuiltinMacro(Buf, MacroBuf);
416 sprintf(MacroBuf, "__%s_MAX_EXP__=%d", Prefix, MaxExp);
417 DefineBuiltinMacro(Buf, MacroBuf);
418 sprintf(MacroBuf, "__%s_MAX__=%s", Prefix, Max);
419 DefineBuiltinMacro(Buf, MacroBuf);
420 sprintf(MacroBuf, "__%s_MIN_10_EXP__=(%d)", Prefix, Min10Exp);
421 DefineBuiltinMacro(Buf, MacroBuf);
422 sprintf(MacroBuf, "__%s_MIN_EXP__=(%d)", Prefix, MinExp);
423 DefineBuiltinMacro(Buf, MacroBuf);
424 sprintf(MacroBuf, "__%s_MIN__=%s", Prefix, Min);
425 DefineBuiltinMacro(Buf, MacroBuf);
Chris Lattner2db78dd2008-10-05 20:40:30 +0000426}
427
Chris Lattner53b0dab2007-10-09 22:10:18 +0000428
429static void InitializePredefinedMacros(Preprocessor &PP,
430 std::vector<char> &Buf) {
Chris Lattner62213d92008-10-05 19:32:22 +0000431 // Compiler version introspection macros.
432 DefineBuiltinMacro(Buf, "__llvm__=1"); // LLVM Backend
433 DefineBuiltinMacro(Buf, "__clang__=1"); // Clang Frontend
434
435 // Currently claim to be compatible with GCC 4.2.1-5621.
436 DefineBuiltinMacro(Buf, "__APPLE_CC__=5621");
437 DefineBuiltinMacro(Buf, "__GNUC_MINOR__=2");
438 DefineBuiltinMacro(Buf, "__GNUC_PATCHLEVEL__=1");
439 DefineBuiltinMacro(Buf, "__GNUC__=4");
440 DefineBuiltinMacro(Buf, "__GXX_ABI_VERSION=1002");
441 DefineBuiltinMacro(Buf, "__VERSION__=\"4.2.1 (Apple Computer, Inc. "
442 "build 5621) (dot 3)\"");
443
444
445 // Initialize language-specific preprocessor defines.
446
Chris Lattner53b0dab2007-10-09 22:10:18 +0000447 // FIXME: Implement magic like cpp_init_builtins for things like __STDC__
448 // and __DATE__ etc.
Chris Lattner53b0dab2007-10-09 22:10:18 +0000449 // These should all be defined in the preprocessor according to the
450 // current language configuration.
Steve Naroff7e0fbb22008-12-18 22:37:25 +0000451 if (!PP.getLangOptions().Microsoft)
452 DefineBuiltinMacro(Buf, "__STDC__=1");
Daniel Dunbarc1571452008-12-01 18:55:22 +0000453 if (PP.getLangOptions().AsmPreprocessor)
454 DefineBuiltinMacro(Buf, "__ASSEMBLER__=1");
Chris Lattner53b0dab2007-10-09 22:10:18 +0000455 if (PP.getLangOptions().C99 && !PP.getLangOptions().CPlusPlus)
456 DefineBuiltinMacro(Buf, "__STDC_VERSION__=199901L");
457 else if (0) // STDC94 ?
458 DefineBuiltinMacro(Buf, "__STDC_VERSION__=199409L");
459
460 DefineBuiltinMacro(Buf, "__STDC_HOSTED__=1");
Daniel Dunbarfba5cb12008-08-12 00:21:46 +0000461 if (PP.getLangOptions().ObjC1) {
Chris Lattner53b0dab2007-10-09 22:10:18 +0000462 DefineBuiltinMacro(Buf, "__OBJC__=1");
Daniel Dunbarfba5cb12008-08-12 00:21:46 +0000463
464 if (PP.getLangOptions().getGCMode() == LangOptions::NonGC) {
465 DefineBuiltinMacro(Buf, "__weak=");
466 DefineBuiltinMacro(Buf, "__strong=");
467 } else {
468 DefineBuiltinMacro(Buf, "__weak=__attribute__((objc_gc(weak)))");
469 DefineBuiltinMacro(Buf, "__strong=__attribute__((objc_gc(strong)))");
470 DefineBuiltinMacro(Buf, "__OBJC_GC__=1");
471 }
472
473 if (PP.getLangOptions().NeXTRuntime)
474 DefineBuiltinMacro(Buf, "__NEXT_RUNTIME__=1");
Daniel Dunbarfba5cb12008-08-12 00:21:46 +0000475 }
Chris Lattner9b533162008-10-05 19:44:25 +0000476
Chris Lattnereb52b442008-10-06 07:43:09 +0000477 // darwin_constant_cfstrings controls this. This is also dependent
478 // on other things like the runtime I believe. This is set even for C code.
479 DefineBuiltinMacro(Buf, "__CONSTANT_CFSTRINGS__=1");
480
Steve Naroff73b17cd2008-05-15 21:12:10 +0000481 if (PP.getLangOptions().ObjC2)
482 DefineBuiltinMacro(Buf, "OBJC_NEW_PROPERTIES");
Steve Naroff8ee529b2007-10-31 18:42:27 +0000483
Chris Lattner048dd942008-09-30 00:48:48 +0000484 if (PP.getLangOptions().PascalStrings)
485 DefineBuiltinMacro(Buf, "__PASCAL_STRINGS__");
486
Chris Lattner62213d92008-10-05 19:32:22 +0000487 if (PP.getLangOptions().Blocks) {
488 DefineBuiltinMacro(Buf, "__block=__attribute__((__blocks__(byref)))");
489 DefineBuiltinMacro(Buf, "__BLOCKS__=1");
Chris Lattner2b43ad92008-10-05 19:32:52 +0000490 }
Chris Lattner62213d92008-10-05 19:32:22 +0000491
492 if (PP.getLangOptions().CPlusPlus) {
493 DefineBuiltinMacro(Buf, "__DEPRECATED=1");
494 DefineBuiltinMacro(Buf, "__EXCEPTIONS=1");
495 DefineBuiltinMacro(Buf, "__GNUG__=4");
496 DefineBuiltinMacro(Buf, "__GXX_WEAK__=1");
497 DefineBuiltinMacro(Buf, "__cplusplus=1");
498 DefineBuiltinMacro(Buf, "__private_extern__=extern");
499 }
500
501 // Filter out some microsoft extensions when trying to parse in ms-compat
502 // mode.
503 if (PP.getLangOptions().Microsoft) {
Steve Naroff239f0732008-12-25 14:16:32 +0000504 DefineBuiltinMacro(Buf, "_cdecl=__cdecl");
Chris Lattner62213d92008-10-05 19:32:22 +0000505 DefineBuiltinMacro(Buf, "__int8=char");
506 DefineBuiltinMacro(Buf, "__int16=short");
507 DefineBuiltinMacro(Buf, "__int32=int");
508 DefineBuiltinMacro(Buf, "__int64=long long");
Chris Lattner62213d92008-10-05 19:32:22 +0000509 }
510
511
512 // Initialize target-specific preprocessor defines.
Chris Lattner9b533162008-10-05 19:44:25 +0000513 const TargetInfo &TI = PP.getTargetInfo();
514
515 // Define type sizing macros based on the target properties.
516 assert(TI.getCharWidth() == 8 && "Only support 8-bit char so far");
517 DefineBuiltinMacro(Buf, "__CHAR_BIT__=8");
518 DefineBuiltinMacro(Buf, "__SCHAR_MAX__=127");
Chris Lattner2db78dd2008-10-05 20:40:30 +0000519
520 assert(TI.getWCharWidth() == 32 && "Only support 32-bit wchar so far");
521 DefineBuiltinMacro(Buf, "__WCHAR_MAX__=2147483647");
522 DefineBuiltinMacro(Buf, "__WCHAR_TYPE__=int");
523 DefineBuiltinMacro(Buf, "__WINT_TYPE__=int");
Chris Lattner9b533162008-10-05 19:44:25 +0000524
525 assert(TI.getShortWidth() == 16 && "Only support 16-bit short so far");
Chris Lattner9b533162008-10-05 19:44:25 +0000526 DefineBuiltinMacro(Buf, "__SHRT_MAX__=32767");
527
Chris Lattner0e5d4ef2008-10-05 20:06:37 +0000528 if (TI.getIntWidth() == 32)
529 DefineBuiltinMacro(Buf, "__INT_MAX__=2147483647");
530 else if (TI.getIntWidth() == 16)
531 DefineBuiltinMacro(Buf, "__INT_MAX__=32767");
532 else
533 assert(0 && "Unknown integer size");
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000534
535 if (TI.getLongLongWidth() == 64)
536 DefineBuiltinMacro(Buf, "__LONG_LONG_MAX__=9223372036854775807LL");
537 else if (TI.getLongLongWidth() == 32)
538 DefineBuiltinMacro(Buf, "__LONG_LONG_MAX__=2147483647L");
Chris Lattner9b533162008-10-05 19:44:25 +0000539
Chris Lattner0e5d4ef2008-10-05 20:06:37 +0000540 if (TI.getLongWidth() == 32)
541 DefineBuiltinMacro(Buf, "__LONG_MAX__=2147483647L");
542 else if (TI.getLongWidth() == 64)
543 DefineBuiltinMacro(Buf, "__LONG_MAX__=9223372036854775807L");
544 else if (TI.getLongWidth() == 16)
545 DefineBuiltinMacro(Buf, "__LONG_MAX__=32767L");
546 else
547 assert(0 && "Unknown long size");
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000548 char MacroBuf[60];
549 sprintf(MacroBuf, "__INTMAX_MAX__=%lld",
550 (TI.getIntMaxType() == TargetInfo::UnsignedLongLong?
Sanjiv Gupta73608a82008-10-31 10:24:31 +0000551 (1LL << (TI.getLongLongWidth() - 1)) :
552 ((1LL << (TI.getLongLongWidth() - 2)) - 1)));
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000553 DefineBuiltinMacro(Buf, MacroBuf);
Chris Lattner0e5d4ef2008-10-05 20:06:37 +0000554
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000555 if (TI.getIntMaxType() == TargetInfo::UnsignedLongLong)
556 DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=unsigned long long int");
557 else if (TI.getIntMaxType() == TargetInfo::SignedLongLong)
Chris Lattner0e5d4ef2008-10-05 20:06:37 +0000558 DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=long long int");
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000559 else if (TI.getIntMaxType() == TargetInfo::UnsignedLong)
560 DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=unsigned long int");
561 else if (TI.getIntMaxType() == TargetInfo::SignedLong)
562 DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=long int");
563 else if (TI.getIntMaxType() == TargetInfo::UnsignedInt)
564 DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=unsigned int");
565 else
566 DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=int");
Chris Lattner0e5d4ef2008-10-05 20:06:37 +0000567
Sanjiv Gupta31fc07d2008-10-31 09:52:39 +0000568 if (TI.getUIntMaxType() == TargetInfo::UnsignedLongLong)
569 DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=unsigned long long int");
570 else if (TI.getUIntMaxType() == TargetInfo::SignedLongLong)
571 DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=long long int");
572 else if (TI.getUIntMaxType() == TargetInfo::UnsignedLong)
573 DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=unsigned long int");
574 else if (TI.getUIntMaxType() == TargetInfo::SignedLong)
575 DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=long int");
576 else if (TI.getUIntMaxType() == TargetInfo::UnsignedInt)
577 DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=unsigned int");
578 else
579 DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=int");
580
581 if (TI.getPtrDiffType(0) == TargetInfo::UnsignedLongLong)
582 DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=unsigned long long int");
583 else if (TI.getPtrDiffType(0) == TargetInfo::SignedLongLong)
584 DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=long long int");
585 else if (TI.getPtrDiffType(0) == TargetInfo::UnsignedLong)
586 DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=unsigned long int");
587 else if (TI.getPtrDiffType(0) == TargetInfo::SignedLong)
588 DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=long int");
589 else if (TI.getPtrDiffType(0) == TargetInfo::UnsignedInt)
590 DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=unsigned int");
591 else
592 DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=int");
593
594 if (TI.getSizeType() == TargetInfo::UnsignedLongLong)
595 DefineBuiltinMacro(Buf, "__SIZE_TYPE__=unsigned long long int");
596 else if (TI.getSizeType() == TargetInfo::SignedLongLong)
597 DefineBuiltinMacro(Buf, "__SIZE_TYPE__=long long int");
598 else if (TI.getSizeType() == TargetInfo::UnsignedLong)
599 DefineBuiltinMacro(Buf, "__SIZE_TYPE__=unsigned long int");
600 else if (TI.getSizeType() == TargetInfo::SignedLong)
601 DefineBuiltinMacro(Buf, "__SIZE_TYPE__=long int");
602 else if (TI.getSizeType() == TargetInfo::UnsignedInt)
603 DefineBuiltinMacro(Buf, "__SIZE_TYPE__=unsigned int");
604 else if (TI.getSizeType() == TargetInfo::SignedInt)
605 DefineBuiltinMacro(Buf, "__SIZE_TYPE__=int");
606 else
607 DefineBuiltinMacro(Buf, "__SIZE_TYPE__=unsigned short");
608
Chris Lattner2db78dd2008-10-05 20:40:30 +0000609 DefineFloatMacros(Buf, "FLT", &TI.getFloatFormat());
610 DefineFloatMacros(Buf, "DBL", &TI.getDoubleFormat());
611 DefineFloatMacros(Buf, "LDBL", &TI.getLongDoubleFormat());
Chris Lattner0e5d4ef2008-10-05 20:06:37 +0000612
Chris Lattner048dd942008-09-30 00:48:48 +0000613
Chris Lattnerd19144b2007-10-10 17:48:53 +0000614 // Add __builtin_va_list typedef.
615 {
Chris Lattner9b533162008-10-05 19:44:25 +0000616 const char *VAList = TI.getVAListDeclaration();
Chris Lattnerd19144b2007-10-10 17:48:53 +0000617 Buf.insert(Buf.end(), VAList, VAList+strlen(VAList));
618 Buf.push_back('\n');
619 }
Chris Lattner53b0dab2007-10-09 22:10:18 +0000620
Chris Lattner9b533162008-10-05 19:44:25 +0000621 if (const char *Prefix = TI.getUserLabelPrefix()) {
Chris Lattner12f09262008-10-05 21:49:27 +0000622 sprintf(MacroBuf, "__USER_LABEL_PREFIX__=%s", Prefix);
623 DefineBuiltinMacro(Buf, MacroBuf);
Chris Lattner3fdf4672008-10-05 19:22:37 +0000624 }
625
Chris Lattner9b533162008-10-05 19:44:25 +0000626 // Build configuration options. FIXME: these should be controlled by
627 // command line options or something.
Chris Lattner53b0dab2007-10-09 22:10:18 +0000628 DefineBuiltinMacro(Buf, "__DYNAMIC__=1");
629 DefineBuiltinMacro(Buf, "__FINITE_MATH_ONLY__=0");
630 DefineBuiltinMacro(Buf, "__NO_INLINE__=1");
631 DefineBuiltinMacro(Buf, "__PIC__=1");
Chris Lattner9b533162008-10-05 19:44:25 +0000632
Chris Lattner12f09262008-10-05 21:49:27 +0000633 // Macros to control C99 numerics and <float.h>
634 DefineBuiltinMacro(Buf, "__FLT_EVAL_METHOD__=0");
635 DefineBuiltinMacro(Buf, "__FLT_RADIX__=2");
636 sprintf(MacroBuf, "__DECIMAL_DIG__=%d",
637 PickFP(&TI.getLongDoubleFormat(), -1/*FIXME*/, 17, 21, 33));
638 DefineBuiltinMacro(Buf, MacroBuf);
639
Chris Lattner9b533162008-10-05 19:44:25 +0000640 // Get other target #defines.
641 TI.getTargetDefines(Buf);
Chris Lattner53b0dab2007-10-09 22:10:18 +0000642
Chris Lattner53b0dab2007-10-09 22:10:18 +0000643 // FIXME: Should emit a #line directive here.
644}
645
646
647/// EnterMainSourceFile - Enter the specified FileID as the main source file,
Nate Begeman6b616022008-01-07 04:01:26 +0000648/// which implicitly adds the builtin defines etc.
Ted Kremenek95041a22007-12-19 22:51:13 +0000649void Preprocessor::EnterMainSourceFile() {
650
Chris Lattner2b2453a2009-01-17 06:22:33 +0000651 FileID MainFileID = SourceMgr.getMainFileID();
Ted Kremenek95041a22007-12-19 22:51:13 +0000652
Chris Lattner53b0dab2007-10-09 22:10:18 +0000653 // Enter the main file source buffer.
654 EnterSourceFile(MainFileID, 0);
655
Chris Lattnerb2832982007-11-15 19:07:47 +0000656 // Tell the header info that the main file was entered. If the file is later
657 // #imported, it won't be re-entered.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000658 if (const FileEntry *FE = SourceMgr.getFileEntryForID(MainFileID))
Chris Lattnerb2832982007-11-15 19:07:47 +0000659 HeaderInfo.IncrementIncludeCount(FE);
660
Chris Lattner53b0dab2007-10-09 22:10:18 +0000661 std::vector<char> PrologFile;
662 PrologFile.reserve(4080);
663
664 // Install things like __POWERPC__, __GNUC__, etc into the macro table.
665 InitializePredefinedMacros(*this, PrologFile);
666
667 // Add on the predefines from the driver.
Chris Lattneraa391972008-04-19 23:09:31 +0000668 PrologFile.insert(PrologFile.end(), Predefines.begin(), Predefines.end());
Chris Lattner53b0dab2007-10-09 22:10:18 +0000669
670 // Memory buffer must end with a null byte!
671 PrologFile.push_back(0);
672
673 // Now that we have emitted the predefined macros, #includes, etc into
674 // PrologFile, preprocess it to populate the initial preprocessor state.
675 llvm::MemoryBuffer *SB =
676 llvm::MemoryBuffer::getMemBufferCopy(&PrologFile.front(),&PrologFile.back(),
677 "<predefines>");
678 assert(SB && "Cannot fail to create predefined source buffer");
Chris Lattner2b2453a2009-01-17 06:22:33 +0000679 FileID FID = SourceMgr.createFileIDForMemBuffer(SB);
680 assert(!FID.isInvalid() && "Could not create FileID for predefines?");
Chris Lattner53b0dab2007-10-09 22:10:18 +0000681
682 // Start parsing the predefines.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000683 EnterSourceFile(FID, 0);
Chris Lattner53b0dab2007-10-09 22:10:18 +0000684}
Chris Lattner97ba77c2007-07-16 06:48:38 +0000685
Reid Spencer5f016e22007-07-11 17:01:13 +0000686
687//===----------------------------------------------------------------------===//
688// Lexer Event Handling.
689//===----------------------------------------------------------------------===//
690
691/// LookUpIdentifierInfo - Given a tok::identifier token, look up the
692/// identifier information for the token and install it into the token.
Chris Lattnerd2177732007-07-20 16:59:19 +0000693IdentifierInfo *Preprocessor::LookUpIdentifierInfo(Token &Identifier,
Reid Spencer5f016e22007-07-11 17:01:13 +0000694 const char *BufPtr) {
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000695 assert(Identifier.is(tok::identifier) && "Not an identifier!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000696 assert(Identifier.getIdentifierInfo() == 0 && "Identinfo already exists!");
697
698 // Look up this token, see if it is a macro, or if it is a language keyword.
699 IdentifierInfo *II;
700 if (BufPtr && !Identifier.needsCleaning()) {
701 // No cleaning needed, just use the characters from the lexed buffer.
702 II = getIdentifierInfo(BufPtr, BufPtr+Identifier.getLength());
703 } else {
704 // Cleaning needed, alloca a buffer, clean into it, then use the buffer.
Chris Lattnerc35717a2007-07-13 17:10:38 +0000705 llvm::SmallVector<char, 64> IdentifierBuffer;
706 IdentifierBuffer.resize(Identifier.getLength());
707 const char *TmpBuf = &IdentifierBuffer[0];
Reid Spencer5f016e22007-07-11 17:01:13 +0000708 unsigned Size = getSpelling(Identifier, TmpBuf);
709 II = getIdentifierInfo(TmpBuf, TmpBuf+Size);
710 }
711 Identifier.setIdentifierInfo(II);
712 return II;
713}
714
715
716/// HandleIdentifier - This callback is invoked when the lexer reads an
717/// identifier. This callback looks up the identifier in the map and/or
718/// potentially macro expands it or turns it into a named token (like 'for').
Chris Lattnerd2177732007-07-20 16:59:19 +0000719void Preprocessor::HandleIdentifier(Token &Identifier) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000720 assert(Identifier.getIdentifierInfo() &&
721 "Can't handle identifiers without identifier info!");
722
723 IdentifierInfo &II = *Identifier.getIdentifierInfo();
724
725 // If this identifier was poisoned, and if it was not produced from a macro
726 // expansion, emit an error.
Ted Kremenek1a531572008-11-19 22:43:49 +0000727 if (II.isPoisoned() && CurPPLexer) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 if (&II != Ident__VA_ARGS__) // We warn about __VA_ARGS__ with poisoning.
729 Diag(Identifier, diag::err_pp_used_poisoned_id);
730 else
731 Diag(Identifier, diag::ext_pp_bad_vaargs_use);
732 }
733
734 // If this is a macro to be expanded, do it.
Chris Lattnercc1a8752007-10-07 08:44:20 +0000735 if (MacroInfo *MI = getMacroInfo(&II)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000736 if (!DisableMacroExpansion && !Identifier.isExpandDisabled()) {
737 if (MI->isEnabled()) {
738 if (!HandleMacroExpandedIdentifier(Identifier, MI))
739 return;
740 } else {
741 // C99 6.10.3.4p2 says that a disabled macro may never again be
742 // expanded, even if it's in a context where it could be expanded in the
743 // future.
Chris Lattnerd2177732007-07-20 16:59:19 +0000744 Identifier.setFlag(Token::DisableExpand);
Reid Spencer5f016e22007-07-11 17:01:13 +0000745 }
746 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000747 }
748
749 // C++ 2.11p2: If this is an alternative representation of a C++ operator,
750 // then we act as if it is the actual operator and not the textual
751 // representation of it.
752 if (II.isCPlusPlusOperatorKeyword())
753 Identifier.setIdentifierInfo(0);
754
755 // Change the kind of this identifier to the appropriate token kind, e.g.
756 // turning "for" into a keyword.
757 Identifier.setKind(II.getTokenID());
758
759 // If this is an extension token, diagnose its use.
Steve Naroffb4eaf9c2008-09-02 18:50:17 +0000760 // We avoid diagnosing tokens that originate from macro definitions.
761 if (II.isExtensionToken() && Features.C99 && !DisableMacroExpansion)
Reid Spencer5f016e22007-07-11 17:01:13 +0000762 Diag(Identifier, diag::ext_token_used);
763}