Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Preprocess.cpp - C Language Family Preprocessor Implementation ---===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the 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 Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 31 | #include "clang/Lex/Pragma.h" |
| 32 | #include "clang/Lex/ScratchBuffer.h" |
| 33 | #include "clang/Basic/Diagnostic.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 34 | #include "clang/Basic/SourceManager.h" |
| 35 | #include "clang/Basic/TargetInfo.h" |
Chris Lattner | 2db78dd | 2008-10-05 20:40:30 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/APFloat.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 38 | #include "llvm/Support/MemoryBuffer.h" |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 39 | #include "llvm/Support/Streams.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 40 | using namespace clang; |
| 41 | |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | |
Ted Kremenek | ec6c574 | 2008-04-17 21:23:07 +0000 | [diff] [blame] | 44 | PreprocessorFactory::~PreprocessorFactory() {} |
| 45 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 46 | Preprocessor::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), |
Ted Kremenek | 4b71e3e | 2008-11-19 00:44:06 +0000 | [diff] [blame] | 51 | CurPPLexer(0), CurDirLookup(0), Callbacks(0) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 52 | ScratchBuf = new ScratchBuffer(SourceMgr); |
Chris Lattner | 9594acf | 2007-07-15 00:25:26 +0000 | [diff] [blame] | 53 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 54 | // 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 Lattner | 6cfe759 | 2008-03-09 02:26:03 +0000 | [diff] [blame] | 70 | NumCachedTokenLexers = 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 71 | |
Argyrios Kyrtzidis | 03db1b3 | 2008-08-10 13:15:22 +0000 | [diff] [blame] | 72 | CachedLexPos = 0; |
| 73 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 74 | // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro. |
| 75 | // This gets unpoisoned where it is allowed. |
| 76 | (Ident__VA_ARGS__ = getIdentifierInfo("__VA_ARGS__"))->setIsPoisoned(); |
| 77 | |
| 78 | // Initialize the pragma handlers. |
| 79 | PragmaHandlers = new PragmaNamespace(0); |
| 80 | RegisterBuiltinPragmas(); |
| 81 | |
| 82 | // Initialize builtin macros like __LINE__ and friends. |
| 83 | RegisterBuiltinMacros(); |
| 84 | } |
| 85 | |
| 86 | Preprocessor::~Preprocessor() { |
Argyrios Kyrtzidis | 2174a4f | 2008-08-23 12:12:06 +0000 | [diff] [blame] | 87 | assert(BacktrackPositions.empty() && "EnableBacktrack/Backtrack imbalance!"); |
| 88 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 89 | while (!IncludeMacroStack.empty()) { |
| 90 | delete IncludeMacroStack.back().TheLexer; |
Chris Lattner | 6cfe759 | 2008-03-09 02:26:03 +0000 | [diff] [blame] | 91 | delete IncludeMacroStack.back().TheTokenLexer; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 92 | IncludeMacroStack.pop_back(); |
| 93 | } |
Chris Lattner | cc1a875 | 2007-10-07 08:44:20 +0000 | [diff] [blame] | 94 | |
| 95 | // Free any macro definitions. |
| 96 | for (llvm::DenseMap<IdentifierInfo*, MacroInfo*>::iterator I = |
| 97 | Macros.begin(), E = Macros.end(); I != E; ++I) { |
Ted Kremenek | 0ea7672 | 2008-12-15 19:56:42 +0000 | [diff] [blame] | 98 | // We don't need to free the MacroInfo objects directly. These |
| 99 | // will be released when the BumpPtrAllocator 'BP' object gets |
| 100 | // destroyed. |
Chris Lattner | cc1a875 | 2007-10-07 08:44:20 +0000 | [diff] [blame] | 101 | I->first->setHasMacroDefinition(false); |
| 102 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 103 | |
Chris Lattner | 9594acf | 2007-07-15 00:25:26 +0000 | [diff] [blame] | 104 | // Free any cached macro expanders. |
Chris Lattner | 6cfe759 | 2008-03-09 02:26:03 +0000 | [diff] [blame] | 105 | for (unsigned i = 0, e = NumCachedTokenLexers; i != e; ++i) |
| 106 | delete TokenLexerCache[i]; |
Chris Lattner | 9594acf | 2007-07-15 00:25:26 +0000 | [diff] [blame] | 107 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 108 | // Release pragma information. |
| 109 | delete PragmaHandlers; |
| 110 | |
| 111 | // Delete the scratch buffer info. |
| 112 | delete ScratchBuf; |
Chris Lattner | eb50ed8 | 2008-03-14 06:07:05 +0000 | [diff] [blame] | 113 | |
| 114 | delete Callbacks; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 115 | } |
| 116 | |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 117 | void Preprocessor::DumpToken(const Token &Tok, bool DumpFlags) const { |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 118 | llvm::cerr << tok::getTokenName(Tok.getKind()) << " '" |
| 119 | << getSpelling(Tok) << "'"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 120 | |
| 121 | if (!DumpFlags) return; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 122 | |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 123 | llvm::cerr << "\t"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 124 | if (Tok.isAtStartOfLine()) |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 125 | llvm::cerr << " [StartOfLine]"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 126 | if (Tok.hasLeadingSpace()) |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 127 | llvm::cerr << " [LeadingSpace]"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 128 | if (Tok.isExpandDisabled()) |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 129 | llvm::cerr << " [ExpandDisabled]"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 130 | if (Tok.needsCleaning()) { |
| 131 | const char *Start = SourceMgr.getCharacterData(Tok.getLocation()); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 132 | llvm::cerr << " [UnClean='" << std::string(Start, Start+Tok.getLength()) |
| 133 | << "']"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 134 | } |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 135 | |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 136 | llvm::cerr << "\tLoc=<"; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 137 | DumpLocation(Tok.getLocation()); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 138 | llvm::cerr << ">"; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | void Preprocessor::DumpLocation(SourceLocation Loc) const { |
| 142 | SourceLocation LogLoc = SourceMgr.getLogicalLoc(Loc); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 143 | llvm::cerr << SourceMgr.getSourceName(LogLoc) << ':' |
| 144 | << SourceMgr.getLineNumber(LogLoc) << ':' |
Ted Kremenek | 109949a | 2008-07-19 19:10:04 +0000 | [diff] [blame] | 145 | << SourceMgr.getColumnNumber(LogLoc); |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 146 | |
| 147 | SourceLocation PhysLoc = SourceMgr.getPhysicalLoc(Loc); |
| 148 | if (PhysLoc != LogLoc) { |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 149 | llvm::cerr << " <PhysLoc="; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 150 | DumpLocation(PhysLoc); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 151 | llvm::cerr << ">"; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 152 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | void Preprocessor::DumpMacro(const MacroInfo &MI) const { |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 156 | llvm::cerr << "MACRO: "; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 157 | for (unsigned i = 0, e = MI.getNumTokens(); i != e; ++i) { |
| 158 | DumpToken(MI.getReplacementToken(i)); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 159 | llvm::cerr << " "; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 160 | } |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 161 | llvm::cerr << "\n"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | void Preprocessor::PrintStats() { |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 165 | llvm::cerr << "\n*** Preprocessor Stats:\n"; |
| 166 | llvm::cerr << NumDirectives << " directives found:\n"; |
| 167 | llvm::cerr << " " << NumDefined << " #define.\n"; |
| 168 | llvm::cerr << " " << NumUndefined << " #undef.\n"; |
| 169 | llvm::cerr << " #include/#include_next/#import:\n"; |
| 170 | llvm::cerr << " " << NumEnteredSourceFiles << " source files entered.\n"; |
| 171 | llvm::cerr << " " << MaxIncludeStackDepth << " max include stack depth\n"; |
| 172 | llvm::cerr << " " << NumIf << " #if/#ifndef/#ifdef.\n"; |
| 173 | llvm::cerr << " " << NumElse << " #else/#elif.\n"; |
| 174 | llvm::cerr << " " << NumEndif << " #endif.\n"; |
| 175 | llvm::cerr << " " << NumPragma << " #pragma.\n"; |
| 176 | llvm::cerr << NumSkipped << " #if/#ifndef#ifdef regions skipped\n"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 177 | |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 178 | llvm::cerr << NumMacroExpanded << "/" << NumFnMacroExpanded << "/" |
| 179 | << NumBuiltinMacroExpanded << " obj/fn/builtin macros expanded, " |
| 180 | << NumFastMacroExpanded << " on the fast path.\n"; |
| 181 | llvm::cerr << (NumFastTokenPaste+NumTokenPaste) |
| 182 | << " token paste (##) operations performed, " |
| 183 | << NumFastTokenPaste << " on the fast path.\n"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | //===----------------------------------------------------------------------===// |
| 187 | // Token Spelling |
| 188 | //===----------------------------------------------------------------------===// |
| 189 | |
| 190 | |
| 191 | /// getSpelling() - Return the 'spelling' of this token. The spelling of a |
| 192 | /// token are the characters used to represent the token in the source file |
| 193 | /// after trigraph expansion and escaped-newline folding. In particular, this |
| 194 | /// wants to get the true, uncanonicalized, spelling of things like digraphs |
| 195 | /// UCNs, etc. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 196 | std::string Preprocessor::getSpelling(const Token &Tok) const { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 197 | assert((int)Tok.getLength() >= 0 && "Token character range is bogus!"); |
| 198 | |
| 199 | // If this token contains nothing interesting, return it directly. |
| 200 | const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation()); |
| 201 | if (!Tok.needsCleaning()) |
| 202 | return std::string(TokStart, TokStart+Tok.getLength()); |
| 203 | |
| 204 | std::string Result; |
| 205 | Result.reserve(Tok.getLength()); |
| 206 | |
| 207 | // Otherwise, hard case, relex the characters into the string. |
| 208 | for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength(); |
| 209 | Ptr != End; ) { |
| 210 | unsigned CharSize; |
| 211 | Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features)); |
| 212 | Ptr += CharSize; |
| 213 | } |
| 214 | assert(Result.size() != unsigned(Tok.getLength()) && |
| 215 | "NeedsCleaning flag set on something that didn't need cleaning!"); |
| 216 | return Result; |
| 217 | } |
| 218 | |
| 219 | /// getSpelling - This method is used to get the spelling of a token into a |
| 220 | /// preallocated buffer, instead of as an std::string. The caller is required |
| 221 | /// to allocate enough space for the token, which is guaranteed to be at least |
| 222 | /// Tok.getLength() bytes long. The actual length of the token is returned. |
| 223 | /// |
| 224 | /// Note that this method may do two possible things: it may either fill in |
| 225 | /// the buffer specified with characters, or it may *change the input pointer* |
| 226 | /// to point to a constant buffer with the data already in it (avoiding a |
| 227 | /// copy). The caller is not allowed to modify the returned buffer pointer |
| 228 | /// if an internal buffer is returned. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 229 | unsigned Preprocessor::getSpelling(const Token &Tok, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 230 | const char *&Buffer) const { |
| 231 | assert((int)Tok.getLength() >= 0 && "Token character range is bogus!"); |
| 232 | |
| 233 | // If this token is an identifier, just return the string from the identifier |
| 234 | // table, which is very quick. |
| 235 | if (const IdentifierInfo *II = Tok.getIdentifierInfo()) { |
| 236 | Buffer = II->getName(); |
Chris Lattner | e1dccae | 2009-01-05 19:44:41 +0000 | [diff] [blame] | 237 | return II->getLength(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 238 | } |
Ted Kremenek | b70e3da | 2009-01-08 02:47:16 +0000 | [diff] [blame] | 239 | |
| 240 | // If using PTH, try and get the spelling from the PTH file. |
| 241 | if (CurPTHLexer) { |
| 242 | // We perform the const_cast<> here because we will only have a PTHLexer |
| 243 | // when grabbing a stream of tokens from the PTH file (and thus the |
| 244 | // Preprocessor state is allowed to change). The PTHLexer can assume we are |
| 245 | // getting token spellings in the order of tokens, and thus can update |
| 246 | // its internal state so that it can quickly fetch spellings from the PTH |
| 247 | // file. |
| 248 | unsigned len = |
| 249 | const_cast<PTHLexer*>(CurPTHLexer.get())->getSpelling(Tok.getLocation(), |
| 250 | Buffer); |
| 251 | |
| 252 | // Did we find a spelling? If so return its length. Otherwise fall |
| 253 | // back to the default behavior for getting the spelling by looking at |
| 254 | // at the source code. |
| 255 | if (len) return len; |
| 256 | } |
| 257 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 258 | // Otherwise, compute the start of the token in the input lexer buffer. |
| 259 | const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation()); |
| 260 | |
| 261 | // If this token contains nothing interesting, return it directly. |
| 262 | if (!Tok.needsCleaning()) { |
| 263 | Buffer = TokStart; |
| 264 | return Tok.getLength(); |
| 265 | } |
| 266 | // Otherwise, hard case, relex the characters into the string. |
| 267 | char *OutBuf = const_cast<char*>(Buffer); |
| 268 | for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength(); |
| 269 | Ptr != End; ) { |
| 270 | unsigned CharSize; |
| 271 | *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features); |
| 272 | Ptr += CharSize; |
| 273 | } |
| 274 | assert(unsigned(OutBuf-Buffer) != Tok.getLength() && |
| 275 | "NeedsCleaning flag set on something that didn't need cleaning!"); |
| 276 | |
| 277 | return OutBuf-Buffer; |
| 278 | } |
| 279 | |
| 280 | |
| 281 | /// CreateString - Plop the specified string into a scratch buffer and return a |
| 282 | /// location for it. If specified, the source location provides a source |
| 283 | /// location for the token. |
| 284 | SourceLocation Preprocessor:: |
| 285 | CreateString(const char *Buf, unsigned Len, SourceLocation SLoc) { |
| 286 | if (SLoc.isValid()) |
| 287 | return ScratchBuf->getToken(Buf, Len, SLoc); |
| 288 | return ScratchBuf->getToken(Buf, Len); |
| 289 | } |
| 290 | |
| 291 | |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 292 | /// AdvanceToTokenCharacter - Given a location that specifies the start of a |
| 293 | /// token, return a new location that specifies a character within the token. |
| 294 | SourceLocation Preprocessor::AdvanceToTokenCharacter(SourceLocation TokStart, |
| 295 | unsigned CharNo) { |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 296 | // If they request the first char of the token, we're trivially done. If this |
| 297 | // is a macro expansion, it doesn't make sense to point to a character within |
| 298 | // the instantiation point (the name). We could point to the source |
| 299 | // character, but without also pointing to instantiation info, this is |
| 300 | // confusing. |
| 301 | if (CharNo == 0 || TokStart.isMacroID()) return TokStart; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 302 | |
| 303 | // Figure out how many physical characters away the specified logical |
| 304 | // character is. This needs to take into consideration newlines and |
| 305 | // trigraphs. |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 306 | const char *TokPtr = SourceMgr.getCharacterData(TokStart); |
| 307 | unsigned PhysOffset = 0; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 308 | |
| 309 | // The usual case is that tokens don't contain anything interesting. Skip |
| 310 | // over the uninteresting characters. If a token only consists of simple |
| 311 | // chars, this method is extremely fast. |
| 312 | while (CharNo && Lexer::isObviouslySimpleCharacter(*TokPtr)) |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 313 | ++TokPtr, --CharNo, ++PhysOffset; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 314 | |
| 315 | // If we have a character that may be a trigraph or escaped newline, create a |
| 316 | // lexer to parse it correctly. |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 317 | if (CharNo != 0) { |
| 318 | // Create a lexer starting at this token position. |
Chris Lattner | 25bdb51 | 2007-07-20 16:52:03 +0000 | [diff] [blame] | 319 | Lexer TheLexer(TokStart, *this, TokPtr); |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 320 | Token Tok; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 321 | // Skip over characters the remaining characters. |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 322 | const char *TokStartPtr = TokPtr; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 323 | for (; CharNo; --CharNo) |
| 324 | TheLexer.getAndAdvanceChar(TokPtr, Tok); |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 325 | |
| 326 | PhysOffset += TokPtr-TokStartPtr; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 327 | } |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 328 | |
| 329 | return TokStart.getFileLocWithOffset(PhysOffset); |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 333 | //===----------------------------------------------------------------------===// |
| 334 | // Preprocessor Initialization Methods |
| 335 | //===----------------------------------------------------------------------===// |
| 336 | |
| 337 | // Append a #define line to Buf for Macro. Macro should be of the form XXX, |
| 338 | // in which case we emit "#define XXX 1" or "XXX=Y z W" in which case we emit |
| 339 | // "#define XXX Y z W". To get a #define with no value, use "XXX=". |
| 340 | static void DefineBuiltinMacro(std::vector<char> &Buf, const char *Macro, |
| 341 | const char *Command = "#define ") { |
| 342 | Buf.insert(Buf.end(), Command, Command+strlen(Command)); |
| 343 | if (const char *Equal = strchr(Macro, '=')) { |
| 344 | // Turn the = into ' '. |
| 345 | Buf.insert(Buf.end(), Macro, Equal); |
| 346 | Buf.push_back(' '); |
| 347 | Buf.insert(Buf.end(), Equal+1, Equal+strlen(Equal)); |
| 348 | } else { |
| 349 | // Push "macroname 1". |
| 350 | Buf.insert(Buf.end(), Macro, Macro+strlen(Macro)); |
| 351 | Buf.push_back(' '); |
| 352 | Buf.push_back('1'); |
| 353 | } |
| 354 | Buf.push_back('\n'); |
| 355 | } |
| 356 | |
Chris Lattner | 2db78dd | 2008-10-05 20:40:30 +0000 | [diff] [blame] | 357 | /// PickFP - This is used to pick a value based on the FP semantics of the |
| 358 | /// specified FP model. |
| 359 | template <typename T> |
| 360 | static T PickFP(const llvm::fltSemantics *Sem, T IEEESingleVal, |
| 361 | T IEEEDoubleVal, T X87DoubleExtendedVal, T PPCDoubleDoubleVal) { |
| 362 | if (Sem == &llvm::APFloat::IEEEsingle) |
| 363 | return IEEESingleVal; |
| 364 | if (Sem == &llvm::APFloat::IEEEdouble) |
| 365 | return IEEEDoubleVal; |
| 366 | if (Sem == &llvm::APFloat::x87DoubleExtended) |
| 367 | return X87DoubleExtendedVal; |
| 368 | assert(Sem == &llvm::APFloat::PPCDoubleDouble); |
| 369 | return PPCDoubleDoubleVal; |
| 370 | } |
| 371 | |
| 372 | static void DefineFloatMacros(std::vector<char> &Buf, const char *Prefix, |
| 373 | const llvm::fltSemantics *Sem) { |
Chris Lattner | e9863ca | 2008-10-05 21:40:58 +0000 | [diff] [blame] | 374 | const char *DenormMin, *Epsilon, *Max, *Min; |
| 375 | DenormMin = PickFP(Sem, "1.40129846e-45F", "4.9406564584124654e-324", |
| 376 | "3.64519953188247460253e-4951L", |
| 377 | "4.94065645841246544176568792868221e-324L"); |
| 378 | int Digits = PickFP(Sem, 6, 15, 18, 31); |
| 379 | Epsilon = PickFP(Sem, "1.19209290e-7F", "2.2204460492503131e-16", |
| 380 | "1.08420217248550443401e-19L", |
| 381 | "4.94065645841246544176568792868221e-324L"); |
| 382 | int HasInifinity = 1, HasQuietNaN = 1; |
| 383 | int MantissaDigits = PickFP(Sem, 24, 53, 64, 106); |
| 384 | int Min10Exp = PickFP(Sem, -37, -307, -4931, -291); |
| 385 | int Max10Exp = PickFP(Sem, 38, 308, 4932, 308); |
| 386 | int MinExp = PickFP(Sem, -125, -1021, -16381, -968); |
| 387 | int MaxExp = PickFP(Sem, 128, 1024, 16384, 1024); |
| 388 | Min = PickFP(Sem, "1.17549435e-38F", "2.2250738585072014e-308", |
| 389 | "3.36210314311209350626e-4932L", |
| 390 | "2.00416836000897277799610805135016e-292L"); |
| 391 | Max = PickFP(Sem, "3.40282347e+38F", "1.7976931348623157e+308", |
| 392 | "1.18973149535723176502e+4932L", |
| 393 | "1.79769313486231580793728971405301e+308L"); |
Chris Lattner | 2db78dd | 2008-10-05 20:40:30 +0000 | [diff] [blame] | 394 | |
| 395 | char MacroBuf[60]; |
| 396 | sprintf(MacroBuf, "__%s_DENORM_MIN__=%s", Prefix, DenormMin); |
| 397 | DefineBuiltinMacro(Buf, MacroBuf); |
Chris Lattner | e9863ca | 2008-10-05 21:40:58 +0000 | [diff] [blame] | 398 | sprintf(MacroBuf, "__%s_DIG__=%d", Prefix, Digits); |
| 399 | DefineBuiltinMacro(Buf, MacroBuf); |
| 400 | sprintf(MacroBuf, "__%s_EPSILON__=%s", Prefix, Epsilon); |
| 401 | DefineBuiltinMacro(Buf, MacroBuf); |
| 402 | sprintf(MacroBuf, "__%s_HAS_INFINITY__=%d", Prefix, HasInifinity); |
| 403 | DefineBuiltinMacro(Buf, MacroBuf); |
| 404 | sprintf(MacroBuf, "__%s_HAS_QUIET_NAN__=%d", Prefix, HasQuietNaN); |
| 405 | DefineBuiltinMacro(Buf, MacroBuf); |
| 406 | sprintf(MacroBuf, "__%s_MANT_DIG__=%d", Prefix, MantissaDigits); |
| 407 | DefineBuiltinMacro(Buf, MacroBuf); |
| 408 | sprintf(MacroBuf, "__%s_MAX_10_EXP__=%d", Prefix, Max10Exp); |
| 409 | DefineBuiltinMacro(Buf, MacroBuf); |
| 410 | sprintf(MacroBuf, "__%s_MAX_EXP__=%d", Prefix, MaxExp); |
| 411 | DefineBuiltinMacro(Buf, MacroBuf); |
| 412 | sprintf(MacroBuf, "__%s_MAX__=%s", Prefix, Max); |
| 413 | DefineBuiltinMacro(Buf, MacroBuf); |
| 414 | sprintf(MacroBuf, "__%s_MIN_10_EXP__=(%d)", Prefix, Min10Exp); |
| 415 | DefineBuiltinMacro(Buf, MacroBuf); |
| 416 | sprintf(MacroBuf, "__%s_MIN_EXP__=(%d)", Prefix, MinExp); |
| 417 | DefineBuiltinMacro(Buf, MacroBuf); |
| 418 | sprintf(MacroBuf, "__%s_MIN__=%s", Prefix, Min); |
| 419 | DefineBuiltinMacro(Buf, MacroBuf); |
Chris Lattner | 2db78dd | 2008-10-05 20:40:30 +0000 | [diff] [blame] | 420 | } |
| 421 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 422 | |
| 423 | static void InitializePredefinedMacros(Preprocessor &PP, |
| 424 | std::vector<char> &Buf) { |
Chris Lattner | 62213d9 | 2008-10-05 19:32:22 +0000 | [diff] [blame] | 425 | // Compiler version introspection macros. |
| 426 | DefineBuiltinMacro(Buf, "__llvm__=1"); // LLVM Backend |
| 427 | DefineBuiltinMacro(Buf, "__clang__=1"); // Clang Frontend |
| 428 | |
| 429 | // Currently claim to be compatible with GCC 4.2.1-5621. |
| 430 | DefineBuiltinMacro(Buf, "__APPLE_CC__=5621"); |
| 431 | DefineBuiltinMacro(Buf, "__GNUC_MINOR__=2"); |
| 432 | DefineBuiltinMacro(Buf, "__GNUC_PATCHLEVEL__=1"); |
| 433 | DefineBuiltinMacro(Buf, "__GNUC__=4"); |
| 434 | DefineBuiltinMacro(Buf, "__GXX_ABI_VERSION=1002"); |
| 435 | DefineBuiltinMacro(Buf, "__VERSION__=\"4.2.1 (Apple Computer, Inc. " |
| 436 | "build 5621) (dot 3)\""); |
| 437 | |
| 438 | |
| 439 | // Initialize language-specific preprocessor defines. |
| 440 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 441 | // FIXME: Implement magic like cpp_init_builtins for things like __STDC__ |
| 442 | // and __DATE__ etc. |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 443 | // These should all be defined in the preprocessor according to the |
| 444 | // current language configuration. |
Steve Naroff | 7e0fbb2 | 2008-12-18 22:37:25 +0000 | [diff] [blame] | 445 | if (!PP.getLangOptions().Microsoft) |
| 446 | DefineBuiltinMacro(Buf, "__STDC__=1"); |
Daniel Dunbar | c157145 | 2008-12-01 18:55:22 +0000 | [diff] [blame] | 447 | if (PP.getLangOptions().AsmPreprocessor) |
| 448 | DefineBuiltinMacro(Buf, "__ASSEMBLER__=1"); |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 449 | if (PP.getLangOptions().C99 && !PP.getLangOptions().CPlusPlus) |
| 450 | DefineBuiltinMacro(Buf, "__STDC_VERSION__=199901L"); |
| 451 | else if (0) // STDC94 ? |
| 452 | DefineBuiltinMacro(Buf, "__STDC_VERSION__=199409L"); |
| 453 | |
| 454 | DefineBuiltinMacro(Buf, "__STDC_HOSTED__=1"); |
Daniel Dunbar | fba5cb1 | 2008-08-12 00:21:46 +0000 | [diff] [blame] | 455 | if (PP.getLangOptions().ObjC1) { |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 456 | DefineBuiltinMacro(Buf, "__OBJC__=1"); |
Daniel Dunbar | fba5cb1 | 2008-08-12 00:21:46 +0000 | [diff] [blame] | 457 | |
| 458 | if (PP.getLangOptions().getGCMode() == LangOptions::NonGC) { |
| 459 | DefineBuiltinMacro(Buf, "__weak="); |
| 460 | DefineBuiltinMacro(Buf, "__strong="); |
| 461 | } else { |
| 462 | DefineBuiltinMacro(Buf, "__weak=__attribute__((objc_gc(weak)))"); |
| 463 | DefineBuiltinMacro(Buf, "__strong=__attribute__((objc_gc(strong)))"); |
| 464 | DefineBuiltinMacro(Buf, "__OBJC_GC__=1"); |
| 465 | } |
| 466 | |
| 467 | if (PP.getLangOptions().NeXTRuntime) |
| 468 | DefineBuiltinMacro(Buf, "__NEXT_RUNTIME__=1"); |
Daniel Dunbar | fba5cb1 | 2008-08-12 00:21:46 +0000 | [diff] [blame] | 469 | } |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 470 | |
Chris Lattner | eb52b44 | 2008-10-06 07:43:09 +0000 | [diff] [blame] | 471 | // darwin_constant_cfstrings controls this. This is also dependent |
| 472 | // on other things like the runtime I believe. This is set even for C code. |
| 473 | DefineBuiltinMacro(Buf, "__CONSTANT_CFSTRINGS__=1"); |
| 474 | |
Steve Naroff | 73b17cd | 2008-05-15 21:12:10 +0000 | [diff] [blame] | 475 | if (PP.getLangOptions().ObjC2) |
| 476 | DefineBuiltinMacro(Buf, "OBJC_NEW_PROPERTIES"); |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 477 | |
Chris Lattner | 048dd94 | 2008-09-30 00:48:48 +0000 | [diff] [blame] | 478 | if (PP.getLangOptions().PascalStrings) |
| 479 | DefineBuiltinMacro(Buf, "__PASCAL_STRINGS__"); |
| 480 | |
Chris Lattner | 62213d9 | 2008-10-05 19:32:22 +0000 | [diff] [blame] | 481 | if (PP.getLangOptions().Blocks) { |
| 482 | DefineBuiltinMacro(Buf, "__block=__attribute__((__blocks__(byref)))"); |
| 483 | DefineBuiltinMacro(Buf, "__BLOCKS__=1"); |
Chris Lattner | 2b43ad9 | 2008-10-05 19:32:52 +0000 | [diff] [blame] | 484 | } |
Chris Lattner | 62213d9 | 2008-10-05 19:32:22 +0000 | [diff] [blame] | 485 | |
| 486 | if (PP.getLangOptions().CPlusPlus) { |
| 487 | DefineBuiltinMacro(Buf, "__DEPRECATED=1"); |
| 488 | DefineBuiltinMacro(Buf, "__EXCEPTIONS=1"); |
| 489 | DefineBuiltinMacro(Buf, "__GNUG__=4"); |
| 490 | DefineBuiltinMacro(Buf, "__GXX_WEAK__=1"); |
| 491 | DefineBuiltinMacro(Buf, "__cplusplus=1"); |
| 492 | DefineBuiltinMacro(Buf, "__private_extern__=extern"); |
| 493 | } |
| 494 | |
| 495 | // Filter out some microsoft extensions when trying to parse in ms-compat |
| 496 | // mode. |
| 497 | if (PP.getLangOptions().Microsoft) { |
Steve Naroff | 239f073 | 2008-12-25 14:16:32 +0000 | [diff] [blame] | 498 | DefineBuiltinMacro(Buf, "_cdecl=__cdecl"); |
Chris Lattner | 62213d9 | 2008-10-05 19:32:22 +0000 | [diff] [blame] | 499 | DefineBuiltinMacro(Buf, "__int8=char"); |
| 500 | DefineBuiltinMacro(Buf, "__int16=short"); |
| 501 | DefineBuiltinMacro(Buf, "__int32=int"); |
| 502 | DefineBuiltinMacro(Buf, "__int64=long long"); |
Chris Lattner | 62213d9 | 2008-10-05 19:32:22 +0000 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | |
| 506 | // Initialize target-specific preprocessor defines. |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 507 | const TargetInfo &TI = PP.getTargetInfo(); |
| 508 | |
| 509 | // Define type sizing macros based on the target properties. |
| 510 | assert(TI.getCharWidth() == 8 && "Only support 8-bit char so far"); |
| 511 | DefineBuiltinMacro(Buf, "__CHAR_BIT__=8"); |
| 512 | DefineBuiltinMacro(Buf, "__SCHAR_MAX__=127"); |
Chris Lattner | 2db78dd | 2008-10-05 20:40:30 +0000 | [diff] [blame] | 513 | |
| 514 | assert(TI.getWCharWidth() == 32 && "Only support 32-bit wchar so far"); |
| 515 | DefineBuiltinMacro(Buf, "__WCHAR_MAX__=2147483647"); |
| 516 | DefineBuiltinMacro(Buf, "__WCHAR_TYPE__=int"); |
| 517 | DefineBuiltinMacro(Buf, "__WINT_TYPE__=int"); |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 518 | |
| 519 | assert(TI.getShortWidth() == 16 && "Only support 16-bit short so far"); |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 520 | DefineBuiltinMacro(Buf, "__SHRT_MAX__=32767"); |
| 521 | |
Chris Lattner | 0e5d4ef | 2008-10-05 20:06:37 +0000 | [diff] [blame] | 522 | if (TI.getIntWidth() == 32) |
| 523 | DefineBuiltinMacro(Buf, "__INT_MAX__=2147483647"); |
| 524 | else if (TI.getIntWidth() == 16) |
| 525 | DefineBuiltinMacro(Buf, "__INT_MAX__=32767"); |
| 526 | else |
| 527 | assert(0 && "Unknown integer size"); |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 528 | |
| 529 | if (TI.getLongLongWidth() == 64) |
| 530 | DefineBuiltinMacro(Buf, "__LONG_LONG_MAX__=9223372036854775807LL"); |
| 531 | else if (TI.getLongLongWidth() == 32) |
| 532 | DefineBuiltinMacro(Buf, "__LONG_LONG_MAX__=2147483647L"); |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 533 | |
Chris Lattner | 0e5d4ef | 2008-10-05 20:06:37 +0000 | [diff] [blame] | 534 | if (TI.getLongWidth() == 32) |
| 535 | DefineBuiltinMacro(Buf, "__LONG_MAX__=2147483647L"); |
| 536 | else if (TI.getLongWidth() == 64) |
| 537 | DefineBuiltinMacro(Buf, "__LONG_MAX__=9223372036854775807L"); |
| 538 | else if (TI.getLongWidth() == 16) |
| 539 | DefineBuiltinMacro(Buf, "__LONG_MAX__=32767L"); |
| 540 | else |
| 541 | assert(0 && "Unknown long size"); |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 542 | char MacroBuf[60]; |
| 543 | sprintf(MacroBuf, "__INTMAX_MAX__=%lld", |
| 544 | (TI.getIntMaxType() == TargetInfo::UnsignedLongLong? |
Sanjiv Gupta | 73608a8 | 2008-10-31 10:24:31 +0000 | [diff] [blame] | 545 | (1LL << (TI.getLongLongWidth() - 1)) : |
| 546 | ((1LL << (TI.getLongLongWidth() - 2)) - 1))); |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 547 | DefineBuiltinMacro(Buf, MacroBuf); |
Chris Lattner | 0e5d4ef | 2008-10-05 20:06:37 +0000 | [diff] [blame] | 548 | |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 549 | if (TI.getIntMaxType() == TargetInfo::UnsignedLongLong) |
| 550 | DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=unsigned long long int"); |
| 551 | else if (TI.getIntMaxType() == TargetInfo::SignedLongLong) |
Chris Lattner | 0e5d4ef | 2008-10-05 20:06:37 +0000 | [diff] [blame] | 552 | DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=long long int"); |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 553 | else if (TI.getIntMaxType() == TargetInfo::UnsignedLong) |
| 554 | DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=unsigned long int"); |
| 555 | else if (TI.getIntMaxType() == TargetInfo::SignedLong) |
| 556 | DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=long int"); |
| 557 | else if (TI.getIntMaxType() == TargetInfo::UnsignedInt) |
| 558 | DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=unsigned int"); |
| 559 | else |
| 560 | DefineBuiltinMacro(Buf, "__INTMAX_TYPE__=int"); |
Chris Lattner | 0e5d4ef | 2008-10-05 20:06:37 +0000 | [diff] [blame] | 561 | |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 562 | if (TI.getUIntMaxType() == TargetInfo::UnsignedLongLong) |
| 563 | DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=unsigned long long int"); |
| 564 | else if (TI.getUIntMaxType() == TargetInfo::SignedLongLong) |
| 565 | DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=long long int"); |
| 566 | else if (TI.getUIntMaxType() == TargetInfo::UnsignedLong) |
| 567 | DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=unsigned long int"); |
| 568 | else if (TI.getUIntMaxType() == TargetInfo::SignedLong) |
| 569 | DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=long int"); |
| 570 | else if (TI.getUIntMaxType() == TargetInfo::UnsignedInt) |
| 571 | DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=unsigned int"); |
| 572 | else |
| 573 | DefineBuiltinMacro(Buf, "__UINTMAX_TYPE__=int"); |
| 574 | |
| 575 | if (TI.getPtrDiffType(0) == TargetInfo::UnsignedLongLong) |
| 576 | DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=unsigned long long int"); |
| 577 | else if (TI.getPtrDiffType(0) == TargetInfo::SignedLongLong) |
| 578 | DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=long long int"); |
| 579 | else if (TI.getPtrDiffType(0) == TargetInfo::UnsignedLong) |
| 580 | DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=unsigned long int"); |
| 581 | else if (TI.getPtrDiffType(0) == TargetInfo::SignedLong) |
| 582 | DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=long int"); |
| 583 | else if (TI.getPtrDiffType(0) == TargetInfo::UnsignedInt) |
| 584 | DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=unsigned int"); |
| 585 | else |
| 586 | DefineBuiltinMacro(Buf, "__PTRDIFF_TYPE__=int"); |
| 587 | |
| 588 | if (TI.getSizeType() == TargetInfo::UnsignedLongLong) |
| 589 | DefineBuiltinMacro(Buf, "__SIZE_TYPE__=unsigned long long int"); |
| 590 | else if (TI.getSizeType() == TargetInfo::SignedLongLong) |
| 591 | DefineBuiltinMacro(Buf, "__SIZE_TYPE__=long long int"); |
| 592 | else if (TI.getSizeType() == TargetInfo::UnsignedLong) |
| 593 | DefineBuiltinMacro(Buf, "__SIZE_TYPE__=unsigned long int"); |
| 594 | else if (TI.getSizeType() == TargetInfo::SignedLong) |
| 595 | DefineBuiltinMacro(Buf, "__SIZE_TYPE__=long int"); |
| 596 | else if (TI.getSizeType() == TargetInfo::UnsignedInt) |
| 597 | DefineBuiltinMacro(Buf, "__SIZE_TYPE__=unsigned int"); |
| 598 | else if (TI.getSizeType() == TargetInfo::SignedInt) |
| 599 | DefineBuiltinMacro(Buf, "__SIZE_TYPE__=int"); |
| 600 | else |
| 601 | DefineBuiltinMacro(Buf, "__SIZE_TYPE__=unsigned short"); |
| 602 | |
Chris Lattner | 2db78dd | 2008-10-05 20:40:30 +0000 | [diff] [blame] | 603 | DefineFloatMacros(Buf, "FLT", &TI.getFloatFormat()); |
| 604 | DefineFloatMacros(Buf, "DBL", &TI.getDoubleFormat()); |
| 605 | DefineFloatMacros(Buf, "LDBL", &TI.getLongDoubleFormat()); |
Chris Lattner | 0e5d4ef | 2008-10-05 20:06:37 +0000 | [diff] [blame] | 606 | |
Chris Lattner | 048dd94 | 2008-09-30 00:48:48 +0000 | [diff] [blame] | 607 | |
Chris Lattner | d19144b | 2007-10-10 17:48:53 +0000 | [diff] [blame] | 608 | // Add __builtin_va_list typedef. |
| 609 | { |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 610 | const char *VAList = TI.getVAListDeclaration(); |
Chris Lattner | d19144b | 2007-10-10 17:48:53 +0000 | [diff] [blame] | 611 | Buf.insert(Buf.end(), VAList, VAList+strlen(VAList)); |
| 612 | Buf.push_back('\n'); |
| 613 | } |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 614 | |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 615 | if (const char *Prefix = TI.getUserLabelPrefix()) { |
Chris Lattner | 12f0926 | 2008-10-05 21:49:27 +0000 | [diff] [blame] | 616 | sprintf(MacroBuf, "__USER_LABEL_PREFIX__=%s", Prefix); |
| 617 | DefineBuiltinMacro(Buf, MacroBuf); |
Chris Lattner | 3fdf467 | 2008-10-05 19:22:37 +0000 | [diff] [blame] | 618 | } |
| 619 | |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 620 | // Build configuration options. FIXME: these should be controlled by |
| 621 | // command line options or something. |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 622 | DefineBuiltinMacro(Buf, "__DYNAMIC__=1"); |
| 623 | DefineBuiltinMacro(Buf, "__FINITE_MATH_ONLY__=0"); |
| 624 | DefineBuiltinMacro(Buf, "__NO_INLINE__=1"); |
| 625 | DefineBuiltinMacro(Buf, "__PIC__=1"); |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 626 | |
Chris Lattner | 12f0926 | 2008-10-05 21:49:27 +0000 | [diff] [blame] | 627 | // Macros to control C99 numerics and <float.h> |
| 628 | DefineBuiltinMacro(Buf, "__FLT_EVAL_METHOD__=0"); |
| 629 | DefineBuiltinMacro(Buf, "__FLT_RADIX__=2"); |
| 630 | sprintf(MacroBuf, "__DECIMAL_DIG__=%d", |
| 631 | PickFP(&TI.getLongDoubleFormat(), -1/*FIXME*/, 17, 21, 33)); |
| 632 | DefineBuiltinMacro(Buf, MacroBuf); |
| 633 | |
Chris Lattner | 9b53316 | 2008-10-05 19:44:25 +0000 | [diff] [blame] | 634 | // Get other target #defines. |
| 635 | TI.getTargetDefines(Buf); |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 636 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 637 | // FIXME: Should emit a #line directive here. |
| 638 | } |
| 639 | |
| 640 | |
| 641 | /// EnterMainSourceFile - Enter the specified FileID as the main source file, |
Nate Begeman | 6b61602 | 2008-01-07 04:01:26 +0000 | [diff] [blame] | 642 | /// which implicitly adds the builtin defines etc. |
Ted Kremenek | 95041a2 | 2007-12-19 22:51:13 +0000 | [diff] [blame] | 643 | void Preprocessor::EnterMainSourceFile() { |
| 644 | |
| 645 | unsigned MainFileID = SourceMgr.getMainFileID(); |
| 646 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 647 | // Enter the main file source buffer. |
| 648 | EnterSourceFile(MainFileID, 0); |
| 649 | |
Chris Lattner | b283298 | 2007-11-15 19:07:47 +0000 | [diff] [blame] | 650 | // Tell the header info that the main file was entered. If the file is later |
| 651 | // #imported, it won't be re-entered. |
| 652 | if (const FileEntry *FE = |
| 653 | SourceMgr.getFileEntryForLoc(SourceLocation::getFileLoc(MainFileID, 0))) |
| 654 | HeaderInfo.IncrementIncludeCount(FE); |
| 655 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 656 | std::vector<char> PrologFile; |
| 657 | PrologFile.reserve(4080); |
| 658 | |
| 659 | // Install things like __POWERPC__, __GNUC__, etc into the macro table. |
| 660 | InitializePredefinedMacros(*this, PrologFile); |
| 661 | |
| 662 | // Add on the predefines from the driver. |
Chris Lattner | aa39197 | 2008-04-19 23:09:31 +0000 | [diff] [blame] | 663 | PrologFile.insert(PrologFile.end(), Predefines.begin(), Predefines.end()); |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 664 | |
| 665 | // Memory buffer must end with a null byte! |
| 666 | PrologFile.push_back(0); |
| 667 | |
| 668 | // Now that we have emitted the predefined macros, #includes, etc into |
| 669 | // PrologFile, preprocess it to populate the initial preprocessor state. |
| 670 | llvm::MemoryBuffer *SB = |
| 671 | llvm::MemoryBuffer::getMemBufferCopy(&PrologFile.front(),&PrologFile.back(), |
| 672 | "<predefines>"); |
| 673 | assert(SB && "Cannot fail to create predefined source buffer"); |
| 674 | unsigned FileID = SourceMgr.createFileIDForMemBuffer(SB); |
| 675 | assert(FileID && "Could not create FileID for predefines?"); |
| 676 | |
| 677 | // Start parsing the predefines. |
| 678 | EnterSourceFile(FileID, 0); |
| 679 | } |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 680 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 681 | |
| 682 | //===----------------------------------------------------------------------===// |
| 683 | // Lexer Event Handling. |
| 684 | //===----------------------------------------------------------------------===// |
| 685 | |
| 686 | /// LookUpIdentifierInfo - Given a tok::identifier token, look up the |
| 687 | /// identifier information for the token and install it into the token. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 688 | IdentifierInfo *Preprocessor::LookUpIdentifierInfo(Token &Identifier, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 689 | const char *BufPtr) { |
Chris Lattner | 22f6bbc | 2007-10-09 18:02:16 +0000 | [diff] [blame] | 690 | assert(Identifier.is(tok::identifier) && "Not an identifier!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 691 | assert(Identifier.getIdentifierInfo() == 0 && "Identinfo already exists!"); |
| 692 | |
| 693 | // Look up this token, see if it is a macro, or if it is a language keyword. |
| 694 | IdentifierInfo *II; |
| 695 | if (BufPtr && !Identifier.needsCleaning()) { |
| 696 | // No cleaning needed, just use the characters from the lexed buffer. |
| 697 | II = getIdentifierInfo(BufPtr, BufPtr+Identifier.getLength()); |
| 698 | } else { |
| 699 | // Cleaning needed, alloca a buffer, clean into it, then use the buffer. |
Chris Lattner | c35717a | 2007-07-13 17:10:38 +0000 | [diff] [blame] | 700 | llvm::SmallVector<char, 64> IdentifierBuffer; |
| 701 | IdentifierBuffer.resize(Identifier.getLength()); |
| 702 | const char *TmpBuf = &IdentifierBuffer[0]; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 703 | unsigned Size = getSpelling(Identifier, TmpBuf); |
| 704 | II = getIdentifierInfo(TmpBuf, TmpBuf+Size); |
| 705 | } |
| 706 | Identifier.setIdentifierInfo(II); |
| 707 | return II; |
| 708 | } |
| 709 | |
| 710 | |
| 711 | /// HandleIdentifier - This callback is invoked when the lexer reads an |
| 712 | /// identifier. This callback looks up the identifier in the map and/or |
| 713 | /// potentially macro expands it or turns it into a named token (like 'for'). |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 714 | void Preprocessor::HandleIdentifier(Token &Identifier) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 715 | assert(Identifier.getIdentifierInfo() && |
| 716 | "Can't handle identifiers without identifier info!"); |
| 717 | |
| 718 | IdentifierInfo &II = *Identifier.getIdentifierInfo(); |
| 719 | |
| 720 | // If this identifier was poisoned, and if it was not produced from a macro |
| 721 | // expansion, emit an error. |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 722 | if (II.isPoisoned() && CurPPLexer) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 723 | if (&II != Ident__VA_ARGS__) // We warn about __VA_ARGS__ with poisoning. |
| 724 | Diag(Identifier, diag::err_pp_used_poisoned_id); |
| 725 | else |
| 726 | Diag(Identifier, diag::ext_pp_bad_vaargs_use); |
| 727 | } |
| 728 | |
| 729 | // If this is a macro to be expanded, do it. |
Chris Lattner | cc1a875 | 2007-10-07 08:44:20 +0000 | [diff] [blame] | 730 | if (MacroInfo *MI = getMacroInfo(&II)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 731 | if (!DisableMacroExpansion && !Identifier.isExpandDisabled()) { |
| 732 | if (MI->isEnabled()) { |
| 733 | if (!HandleMacroExpandedIdentifier(Identifier, MI)) |
| 734 | return; |
| 735 | } else { |
| 736 | // C99 6.10.3.4p2 says that a disabled macro may never again be |
| 737 | // expanded, even if it's in a context where it could be expanded in the |
| 738 | // future. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 739 | Identifier.setFlag(Token::DisableExpand); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 740 | } |
| 741 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | // C++ 2.11p2: If this is an alternative representation of a C++ operator, |
| 745 | // then we act as if it is the actual operator and not the textual |
| 746 | // representation of it. |
| 747 | if (II.isCPlusPlusOperatorKeyword()) |
| 748 | Identifier.setIdentifierInfo(0); |
| 749 | |
| 750 | // Change the kind of this identifier to the appropriate token kind, e.g. |
| 751 | // turning "for" into a keyword. |
| 752 | Identifier.setKind(II.getTokenID()); |
| 753 | |
| 754 | // If this is an extension token, diagnose its use. |
Steve Naroff | b4eaf9c | 2008-09-02 18:50:17 +0000 | [diff] [blame] | 755 | // We avoid diagnosing tokens that originate from macro definitions. |
| 756 | if (II.isExtensionToken() && Features.C99 && !DisableMacroExpansion) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 757 | Diag(Identifier, diag::ext_token_used); |
| 758 | } |