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" |
| 36 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 37 | #include "llvm/Support/MemoryBuffer.h" |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 38 | #include "llvm/Support/Streams.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 39 | using namespace clang; |
| 40 | |
| 41 | //===----------------------------------------------------------------------===// |
| 42 | |
Ted Kremenek | ec6c574 | 2008-04-17 21:23:07 +0000 | [diff] [blame] | 43 | PreprocessorFactory::~PreprocessorFactory() {} |
| 44 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 45 | Preprocessor::Preprocessor(Diagnostic &diags, const LangOptions &opts, |
| 46 | TargetInfo &target, SourceManager &SM, |
| 47 | HeaderSearch &Headers) |
| 48 | : Diags(diags), Features(opts), Target(target), FileMgr(Headers.getFileMgr()), |
| 49 | SourceMgr(SM), HeaderInfo(Headers), Identifiers(opts), |
Chris Lattner | 6cfe759 | 2008-03-09 02:26:03 +0000 | [diff] [blame] | 50 | CurLexer(0), CurDirLookup(0), CurTokenLexer(0), Callbacks(0) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 51 | ScratchBuf = new ScratchBuffer(SourceMgr); |
Chris Lattner | 9594acf | 2007-07-15 00:25:26 +0000 | [diff] [blame] | 52 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 53 | // Clear stats. |
| 54 | NumDirectives = NumDefined = NumUndefined = NumPragma = 0; |
| 55 | NumIf = NumElse = NumEndif = 0; |
| 56 | NumEnteredSourceFiles = 0; |
| 57 | NumMacroExpanded = NumFnMacroExpanded = NumBuiltinMacroExpanded = 0; |
| 58 | NumFastMacroExpanded = NumTokenPaste = NumFastTokenPaste = 0; |
| 59 | MaxIncludeStackDepth = 0; |
| 60 | NumSkipped = 0; |
| 61 | |
| 62 | // Default to discarding comments. |
| 63 | KeepComments = false; |
| 64 | KeepMacroComments = false; |
| 65 | |
| 66 | // Macro expansion is enabled. |
| 67 | DisableMacroExpansion = false; |
| 68 | InMacroArgs = false; |
Chris Lattner | 6cfe759 | 2008-03-09 02:26:03 +0000 | [diff] [blame] | 69 | NumCachedTokenLexers = 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 70 | |
Argyrios Kyrtzidis | 03db1b3 | 2008-08-10 13:15:22 +0000 | [diff] [blame] | 71 | CacheTokens = false; |
| 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 | // Free any active lexers. |
| 90 | delete CurLexer; |
| 91 | |
| 92 | while (!IncludeMacroStack.empty()) { |
| 93 | delete IncludeMacroStack.back().TheLexer; |
Chris Lattner | 6cfe759 | 2008-03-09 02:26:03 +0000 | [diff] [blame] | 94 | delete IncludeMacroStack.back().TheTokenLexer; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 95 | IncludeMacroStack.pop_back(); |
| 96 | } |
Chris Lattner | cc1a875 | 2007-10-07 08:44:20 +0000 | [diff] [blame] | 97 | |
| 98 | // Free any macro definitions. |
| 99 | for (llvm::DenseMap<IdentifierInfo*, MacroInfo*>::iterator I = |
| 100 | Macros.begin(), E = Macros.end(); I != E; ++I) { |
| 101 | // Free the macro definition. |
| 102 | delete I->second; |
| 103 | I->second = 0; |
| 104 | I->first->setHasMacroDefinition(false); |
| 105 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 106 | |
Chris Lattner | 9594acf | 2007-07-15 00:25:26 +0000 | [diff] [blame] | 107 | // Free any cached macro expanders. |
Chris Lattner | 6cfe759 | 2008-03-09 02:26:03 +0000 | [diff] [blame] | 108 | for (unsigned i = 0, e = NumCachedTokenLexers; i != e; ++i) |
| 109 | delete TokenLexerCache[i]; |
Chris Lattner | 9594acf | 2007-07-15 00:25:26 +0000 | [diff] [blame] | 110 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 111 | // Release pragma information. |
| 112 | delete PragmaHandlers; |
| 113 | |
| 114 | // Delete the scratch buffer info. |
| 115 | delete ScratchBuf; |
Chris Lattner | eb50ed8 | 2008-03-14 06:07:05 +0000 | [diff] [blame] | 116 | |
| 117 | delete Callbacks; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 120 | /// Diag - Forwarding function for diagnostics. This emits a diagnostic at |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 121 | /// the specified Token's location, translating the token's start |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 122 | /// position in the current buffer into a SourcePosition object for rendering. |
| 123 | void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID) { |
Ted Kremenek | 9c728dc | 2007-12-12 22:39:36 +0000 | [diff] [blame] | 124 | Diags.Report(getFullLoc(Loc), DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID, |
| 128 | const std::string &Msg) { |
Ted Kremenek | 9c728dc | 2007-12-12 22:39:36 +0000 | [diff] [blame] | 129 | Diags.Report(getFullLoc(Loc), DiagID, &Msg, 1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Chris Lattner | 8ed3044 | 2008-05-05 06:45:50 +0000 | [diff] [blame] | 132 | void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID, |
| 133 | const std::string &Msg, |
| 134 | const SourceRange &R1, const SourceRange &R2) { |
| 135 | SourceRange R[] = {R1, R2}; |
| 136 | Diags.Report(getFullLoc(Loc), DiagID, &Msg, 1, R, 2); |
| 137 | } |
| 138 | |
| 139 | |
| 140 | void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID, |
| 141 | const SourceRange &R) { |
| 142 | Diags.Report(getFullLoc(Loc), DiagID, 0, 0, &R, 1); |
| 143 | } |
| 144 | |
| 145 | void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID, |
| 146 | const SourceRange &R1, const SourceRange &R2) { |
| 147 | SourceRange R[] = {R1, R2}; |
| 148 | Diags.Report(getFullLoc(Loc), DiagID, 0, 0, R, 2); |
| 149 | } |
| 150 | |
| 151 | |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 152 | void Preprocessor::DumpToken(const Token &Tok, bool DumpFlags) const { |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 153 | llvm::cerr << tok::getTokenName(Tok.getKind()) << " '" |
| 154 | << getSpelling(Tok) << "'"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 155 | |
| 156 | if (!DumpFlags) return; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 157 | |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 158 | llvm::cerr << "\t"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 159 | if (Tok.isAtStartOfLine()) |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 160 | llvm::cerr << " [StartOfLine]"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 161 | if (Tok.hasLeadingSpace()) |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 162 | llvm::cerr << " [LeadingSpace]"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 163 | if (Tok.isExpandDisabled()) |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 164 | llvm::cerr << " [ExpandDisabled]"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 165 | if (Tok.needsCleaning()) { |
| 166 | const char *Start = SourceMgr.getCharacterData(Tok.getLocation()); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 167 | llvm::cerr << " [UnClean='" << std::string(Start, Start+Tok.getLength()) |
| 168 | << "']"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 169 | } |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 170 | |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 171 | llvm::cerr << "\tLoc=<"; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 172 | DumpLocation(Tok.getLocation()); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 173 | llvm::cerr << ">"; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | void Preprocessor::DumpLocation(SourceLocation Loc) const { |
| 177 | SourceLocation LogLoc = SourceMgr.getLogicalLoc(Loc); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 178 | llvm::cerr << SourceMgr.getSourceName(LogLoc) << ':' |
| 179 | << SourceMgr.getLineNumber(LogLoc) << ':' |
Ted Kremenek | 109949a | 2008-07-19 19:10:04 +0000 | [diff] [blame] | 180 | << SourceMgr.getColumnNumber(LogLoc); |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 181 | |
| 182 | SourceLocation PhysLoc = SourceMgr.getPhysicalLoc(Loc); |
| 183 | if (PhysLoc != LogLoc) { |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 184 | llvm::cerr << " <PhysLoc="; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 185 | DumpLocation(PhysLoc); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 186 | llvm::cerr << ">"; |
Chris Lattner | c3d8d57 | 2007-12-09 20:31:55 +0000 | [diff] [blame] | 187 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | void Preprocessor::DumpMacro(const MacroInfo &MI) const { |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 191 | llvm::cerr << "MACRO: "; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 192 | for (unsigned i = 0, e = MI.getNumTokens(); i != e; ++i) { |
| 193 | DumpToken(MI.getReplacementToken(i)); |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 194 | llvm::cerr << " "; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 195 | } |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 196 | llvm::cerr << "\n"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | void Preprocessor::PrintStats() { |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 200 | llvm::cerr << "\n*** Preprocessor Stats:\n"; |
| 201 | llvm::cerr << NumDirectives << " directives found:\n"; |
| 202 | llvm::cerr << " " << NumDefined << " #define.\n"; |
| 203 | llvm::cerr << " " << NumUndefined << " #undef.\n"; |
| 204 | llvm::cerr << " #include/#include_next/#import:\n"; |
| 205 | llvm::cerr << " " << NumEnteredSourceFiles << " source files entered.\n"; |
| 206 | llvm::cerr << " " << MaxIncludeStackDepth << " max include stack depth\n"; |
| 207 | llvm::cerr << " " << NumIf << " #if/#ifndef/#ifdef.\n"; |
| 208 | llvm::cerr << " " << NumElse << " #else/#elif.\n"; |
| 209 | llvm::cerr << " " << NumEndif << " #endif.\n"; |
| 210 | llvm::cerr << " " << NumPragma << " #pragma.\n"; |
| 211 | llvm::cerr << NumSkipped << " #if/#ifndef#ifdef regions skipped\n"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 212 | |
Ted Kremenek | bdd30c2 | 2008-01-14 16:44:48 +0000 | [diff] [blame] | 213 | llvm::cerr << NumMacroExpanded << "/" << NumFnMacroExpanded << "/" |
| 214 | << NumBuiltinMacroExpanded << " obj/fn/builtin macros expanded, " |
| 215 | << NumFastMacroExpanded << " on the fast path.\n"; |
| 216 | llvm::cerr << (NumFastTokenPaste+NumTokenPaste) |
| 217 | << " token paste (##) operations performed, " |
| 218 | << NumFastTokenPaste << " on the fast path.\n"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | //===----------------------------------------------------------------------===// |
| 222 | // Token Spelling |
| 223 | //===----------------------------------------------------------------------===// |
| 224 | |
| 225 | |
| 226 | /// getSpelling() - Return the 'spelling' of this token. The spelling of a |
| 227 | /// token are the characters used to represent the token in the source file |
| 228 | /// after trigraph expansion and escaped-newline folding. In particular, this |
| 229 | /// wants to get the true, uncanonicalized, spelling of things like digraphs |
| 230 | /// UCNs, etc. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 231 | std::string Preprocessor::getSpelling(const Token &Tok) const { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 232 | assert((int)Tok.getLength() >= 0 && "Token character range is bogus!"); |
| 233 | |
| 234 | // If this token contains nothing interesting, return it directly. |
| 235 | const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation()); |
| 236 | if (!Tok.needsCleaning()) |
| 237 | return std::string(TokStart, TokStart+Tok.getLength()); |
| 238 | |
| 239 | std::string Result; |
| 240 | Result.reserve(Tok.getLength()); |
| 241 | |
| 242 | // Otherwise, hard case, relex the characters into the string. |
| 243 | for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength(); |
| 244 | Ptr != End; ) { |
| 245 | unsigned CharSize; |
| 246 | Result.push_back(Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features)); |
| 247 | Ptr += CharSize; |
| 248 | } |
| 249 | assert(Result.size() != unsigned(Tok.getLength()) && |
| 250 | "NeedsCleaning flag set on something that didn't need cleaning!"); |
| 251 | return Result; |
| 252 | } |
| 253 | |
| 254 | /// getSpelling - This method is used to get the spelling of a token into a |
| 255 | /// preallocated buffer, instead of as an std::string. The caller is required |
| 256 | /// to allocate enough space for the token, which is guaranteed to be at least |
| 257 | /// Tok.getLength() bytes long. The actual length of the token is returned. |
| 258 | /// |
| 259 | /// Note that this method may do two possible things: it may either fill in |
| 260 | /// the buffer specified with characters, or it may *change the input pointer* |
| 261 | /// to point to a constant buffer with the data already in it (avoiding a |
| 262 | /// copy). The caller is not allowed to modify the returned buffer pointer |
| 263 | /// if an internal buffer is returned. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 264 | unsigned Preprocessor::getSpelling(const Token &Tok, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 265 | const char *&Buffer) const { |
| 266 | assert((int)Tok.getLength() >= 0 && "Token character range is bogus!"); |
| 267 | |
| 268 | // If this token is an identifier, just return the string from the identifier |
| 269 | // table, which is very quick. |
| 270 | if (const IdentifierInfo *II = Tok.getIdentifierInfo()) { |
| 271 | Buffer = II->getName(); |
Chris Lattner | 0f67032 | 2007-07-22 22:50:09 +0000 | [diff] [blame] | 272 | |
| 273 | // Return the length of the token. If the token needed cleaning, don't |
| 274 | // include the size of the newlines or trigraphs in it. |
| 275 | if (!Tok.needsCleaning()) |
| 276 | return Tok.getLength(); |
| 277 | else |
| 278 | return strlen(Buffer); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | // Otherwise, compute the start of the token in the input lexer buffer. |
| 282 | const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation()); |
| 283 | |
| 284 | // If this token contains nothing interesting, return it directly. |
| 285 | if (!Tok.needsCleaning()) { |
| 286 | Buffer = TokStart; |
| 287 | return Tok.getLength(); |
| 288 | } |
| 289 | // Otherwise, hard case, relex the characters into the string. |
| 290 | char *OutBuf = const_cast<char*>(Buffer); |
| 291 | for (const char *Ptr = TokStart, *End = TokStart+Tok.getLength(); |
| 292 | Ptr != End; ) { |
| 293 | unsigned CharSize; |
| 294 | *OutBuf++ = Lexer::getCharAndSizeNoWarn(Ptr, CharSize, Features); |
| 295 | Ptr += CharSize; |
| 296 | } |
| 297 | assert(unsigned(OutBuf-Buffer) != Tok.getLength() && |
| 298 | "NeedsCleaning flag set on something that didn't need cleaning!"); |
| 299 | |
| 300 | return OutBuf-Buffer; |
| 301 | } |
| 302 | |
| 303 | |
| 304 | /// CreateString - Plop the specified string into a scratch buffer and return a |
| 305 | /// location for it. If specified, the source location provides a source |
| 306 | /// location for the token. |
| 307 | SourceLocation Preprocessor:: |
| 308 | CreateString(const char *Buf, unsigned Len, SourceLocation SLoc) { |
| 309 | if (SLoc.isValid()) |
| 310 | return ScratchBuf->getToken(Buf, Len, SLoc); |
| 311 | return ScratchBuf->getToken(Buf, Len); |
| 312 | } |
| 313 | |
| 314 | |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 315 | /// AdvanceToTokenCharacter - Given a location that specifies the start of a |
| 316 | /// token, return a new location that specifies a character within the token. |
| 317 | SourceLocation Preprocessor::AdvanceToTokenCharacter(SourceLocation TokStart, |
| 318 | unsigned CharNo) { |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 319 | // If they request the first char of the token, we're trivially done. If this |
| 320 | // is a macro expansion, it doesn't make sense to point to a character within |
| 321 | // the instantiation point (the name). We could point to the source |
| 322 | // character, but without also pointing to instantiation info, this is |
| 323 | // confusing. |
| 324 | if (CharNo == 0 || TokStart.isMacroID()) return TokStart; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 325 | |
| 326 | // Figure out how many physical characters away the specified logical |
| 327 | // character is. This needs to take into consideration newlines and |
| 328 | // trigraphs. |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 329 | const char *TokPtr = SourceMgr.getCharacterData(TokStart); |
| 330 | unsigned PhysOffset = 0; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 331 | |
| 332 | // The usual case is that tokens don't contain anything interesting. Skip |
| 333 | // over the uninteresting characters. If a token only consists of simple |
| 334 | // chars, this method is extremely fast. |
| 335 | while (CharNo && Lexer::isObviouslySimpleCharacter(*TokPtr)) |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 336 | ++TokPtr, --CharNo, ++PhysOffset; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 337 | |
| 338 | // If we have a character that may be a trigraph or escaped newline, create a |
| 339 | // lexer to parse it correctly. |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 340 | if (CharNo != 0) { |
| 341 | // Create a lexer starting at this token position. |
Chris Lattner | 25bdb51 | 2007-07-20 16:52:03 +0000 | [diff] [blame] | 342 | Lexer TheLexer(TokStart, *this, TokPtr); |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 343 | Token Tok; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 344 | // Skip over characters the remaining characters. |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 345 | const char *TokStartPtr = TokPtr; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 346 | for (; CharNo; --CharNo) |
| 347 | TheLexer.getAndAdvanceChar(TokPtr, Tok); |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 348 | |
| 349 | PhysOffset += TokPtr-TokStartPtr; |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 350 | } |
Chris Lattner | 9dc1f53 | 2007-07-20 16:37:10 +0000 | [diff] [blame] | 351 | |
| 352 | return TokStart.getFileLocWithOffset(PhysOffset); |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 356 | //===----------------------------------------------------------------------===// |
| 357 | // Preprocessor Initialization Methods |
| 358 | //===----------------------------------------------------------------------===// |
| 359 | |
| 360 | // Append a #define line to Buf for Macro. Macro should be of the form XXX, |
| 361 | // in which case we emit "#define XXX 1" or "XXX=Y z W" in which case we emit |
| 362 | // "#define XXX Y z W". To get a #define with no value, use "XXX=". |
| 363 | static void DefineBuiltinMacro(std::vector<char> &Buf, const char *Macro, |
| 364 | const char *Command = "#define ") { |
| 365 | Buf.insert(Buf.end(), Command, Command+strlen(Command)); |
| 366 | if (const char *Equal = strchr(Macro, '=')) { |
| 367 | // Turn the = into ' '. |
| 368 | Buf.insert(Buf.end(), Macro, Equal); |
| 369 | Buf.push_back(' '); |
| 370 | Buf.insert(Buf.end(), Equal+1, Equal+strlen(Equal)); |
| 371 | } else { |
| 372 | // Push "macroname 1". |
| 373 | Buf.insert(Buf.end(), Macro, Macro+strlen(Macro)); |
| 374 | Buf.push_back(' '); |
| 375 | Buf.push_back('1'); |
| 376 | } |
| 377 | Buf.push_back('\n'); |
| 378 | } |
| 379 | |
| 380 | |
| 381 | static void InitializePredefinedMacros(Preprocessor &PP, |
| 382 | std::vector<char> &Buf) { |
| 383 | // FIXME: Implement magic like cpp_init_builtins for things like __STDC__ |
| 384 | // and __DATE__ etc. |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 385 | // These should all be defined in the preprocessor according to the |
| 386 | // current language configuration. |
| 387 | DefineBuiltinMacro(Buf, "__STDC__=1"); |
| 388 | //DefineBuiltinMacro(Buf, "__ASSEMBLER__=1"); |
| 389 | if (PP.getLangOptions().C99 && !PP.getLangOptions().CPlusPlus) |
| 390 | DefineBuiltinMacro(Buf, "__STDC_VERSION__=199901L"); |
| 391 | else if (0) // STDC94 ? |
| 392 | DefineBuiltinMacro(Buf, "__STDC_VERSION__=199409L"); |
| 393 | |
| 394 | DefineBuiltinMacro(Buf, "__STDC_HOSTED__=1"); |
Daniel Dunbar | fba5cb1 | 2008-08-12 00:21:46 +0000 | [diff] [blame] | 395 | if (PP.getLangOptions().ObjC1) { |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 396 | DefineBuiltinMacro(Buf, "__OBJC__=1"); |
Daniel Dunbar | fba5cb1 | 2008-08-12 00:21:46 +0000 | [diff] [blame] | 397 | |
| 398 | if (PP.getLangOptions().getGCMode() == LangOptions::NonGC) { |
| 399 | DefineBuiltinMacro(Buf, "__weak="); |
| 400 | DefineBuiltinMacro(Buf, "__strong="); |
| 401 | } else { |
| 402 | DefineBuiltinMacro(Buf, "__weak=__attribute__((objc_gc(weak)))"); |
| 403 | DefineBuiltinMacro(Buf, "__strong=__attribute__((objc_gc(strong)))"); |
| 404 | DefineBuiltinMacro(Buf, "__OBJC_GC__=1"); |
| 405 | } |
| 406 | |
| 407 | if (PP.getLangOptions().NeXTRuntime) |
| 408 | DefineBuiltinMacro(Buf, "__NEXT_RUNTIME__=1"); |
| 409 | |
| 410 | // darwin_constant_cfstrings controls this. This is also dependent |
| 411 | // on other things like the runtime I believe. |
| 412 | DefineBuiltinMacro(Buf, "__CONSTANT_CFSTRINGS__=1"); |
| 413 | } |
Steve Naroff | 73b17cd | 2008-05-15 21:12:10 +0000 | [diff] [blame] | 414 | if (PP.getLangOptions().ObjC2) |
| 415 | DefineBuiltinMacro(Buf, "OBJC_NEW_PROPERTIES"); |
Steve Naroff | 8ee529b | 2007-10-31 18:42:27 +0000 | [diff] [blame] | 416 | |
Chris Lattner | d19144b | 2007-10-10 17:48:53 +0000 | [diff] [blame] | 417 | // Add __builtin_va_list typedef. |
| 418 | { |
| 419 | const char *VAList = PP.getTargetInfo().getVAListDeclaration(); |
| 420 | Buf.insert(Buf.end(), VAList, VAList+strlen(VAList)); |
| 421 | Buf.push_back('\n'); |
| 422 | } |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 423 | |
| 424 | // Get the target #defines. |
| 425 | PP.getTargetInfo().getTargetDefines(Buf); |
Chris Lattner | d86522a | 2008-06-26 17:26:01 +0000 | [diff] [blame] | 426 | |
| 427 | DefineBuiltinMacro(Buf, "__llvm__=1"); // LLVM Backend |
| 428 | DefineBuiltinMacro(Buf, "__clang__=1"); // Clang Frontend |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 429 | |
| 430 | // Compiler set macros. |
Chris Lattner | 71af229 | 2008-09-30 00:46:39 +0000 | [diff] [blame^] | 431 | // Claim to be GCC 4.2.1-5621 |
Daniel Dunbar | 38a67c9 | 2008-09-26 01:13:13 +0000 | [diff] [blame] | 432 | DefineBuiltinMacro(Buf, "__APPLE_CC__=5621"); |
Daniel Dunbar | 38a67c9 | 2008-09-26 01:13:13 +0000 | [diff] [blame] | 433 | DefineBuiltinMacro(Buf, "__GNUC_MINOR__=2"); |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 434 | DefineBuiltinMacro(Buf, "__GNUC_PATCHLEVEL__=1"); |
| 435 | DefineBuiltinMacro(Buf, "__GNUC__=4"); |
| 436 | DefineBuiltinMacro(Buf, "__GXX_ABI_VERSION=1002"); |
Daniel Dunbar | 38a67c9 | 2008-09-26 01:13:13 +0000 | [diff] [blame] | 437 | DefineBuiltinMacro(Buf, "__VERSION__=\"4.2.1 (Apple Computer, Inc. " |
| 438 | "build 5621) (dot 3)\""); |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 439 | |
| 440 | // Build configuration options. |
| 441 | DefineBuiltinMacro(Buf, "__DYNAMIC__=1"); |
| 442 | DefineBuiltinMacro(Buf, "__FINITE_MATH_ONLY__=0"); |
| 443 | DefineBuiltinMacro(Buf, "__NO_INLINE__=1"); |
| 444 | DefineBuiltinMacro(Buf, "__PIC__=1"); |
| 445 | |
| 446 | |
| 447 | if (PP.getLangOptions().CPlusPlus) { |
| 448 | DefineBuiltinMacro(Buf, "__DEPRECATED=1"); |
| 449 | DefineBuiltinMacro(Buf, "__EXCEPTIONS=1"); |
| 450 | DefineBuiltinMacro(Buf, "__GNUG__=4"); |
| 451 | DefineBuiltinMacro(Buf, "__GXX_WEAK__=1"); |
| 452 | DefineBuiltinMacro(Buf, "__cplusplus=1"); |
| 453 | DefineBuiltinMacro(Buf, "__private_extern__=extern"); |
| 454 | } |
Steve Naroff | d62701b | 2008-02-07 03:50:06 +0000 | [diff] [blame] | 455 | if (PP.getLangOptions().Microsoft) { |
| 456 | DefineBuiltinMacro(Buf, "__stdcall="); |
| 457 | DefineBuiltinMacro(Buf, "__cdecl="); |
| 458 | DefineBuiltinMacro(Buf, "_cdecl="); |
| 459 | DefineBuiltinMacro(Buf, "__ptr64="); |
Steve Naroff | b746ce8 | 2008-02-07 23:24:32 +0000 | [diff] [blame] | 460 | DefineBuiltinMacro(Buf, "__w64="); |
Steve Naroff | d62701b | 2008-02-07 03:50:06 +0000 | [diff] [blame] | 461 | DefineBuiltinMacro(Buf, "__forceinline="); |
Steve Naroff | 419154d | 2008-02-07 15:26:07 +0000 | [diff] [blame] | 462 | DefineBuiltinMacro(Buf, "__int8=char"); |
| 463 | DefineBuiltinMacro(Buf, "__int16=short"); |
| 464 | DefineBuiltinMacro(Buf, "__int32=int"); |
Chris Lattner | 9880ba9 | 2008-02-10 21:12:45 +0000 | [diff] [blame] | 465 | DefineBuiltinMacro(Buf, "__int64=long long"); |
Steve Naroff | 705b5b5 | 2008-02-11 22:29:58 +0000 | [diff] [blame] | 466 | DefineBuiltinMacro(Buf, "__declspec(X)="); |
Steve Naroff | d62701b | 2008-02-07 03:50:06 +0000 | [diff] [blame] | 467 | } |
Steve Naroff | b4eaf9c | 2008-09-02 18:50:17 +0000 | [diff] [blame] | 468 | // Directly modeled after the attribute-based implementation in GCC. |
Steve Naroff | dca6d6e | 2008-09-23 21:28:24 +0000 | [diff] [blame] | 469 | if (PP.getLangOptions().Blocks) { |
Steve Naroff | b4eaf9c | 2008-09-02 18:50:17 +0000 | [diff] [blame] | 470 | DefineBuiltinMacro(Buf, "__block=__attribute__((__blocks__(byref)))"); |
Steve Naroff | dca6d6e | 2008-09-23 21:28:24 +0000 | [diff] [blame] | 471 | DefineBuiltinMacro(Buf, "__BLOCKS__=1"); |
| 472 | } else |
Steve Naroff | b4eaf9c | 2008-09-02 18:50:17 +0000 | [diff] [blame] | 473 | // This allows "__block int unusedVar;" even when blocks are disabled. |
| 474 | // This is modeled after GCC's handling of __strong/__weak. |
| 475 | DefineBuiltinMacro(Buf, "__block="); |
| 476 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 477 | // FIXME: Should emit a #line directive here. |
| 478 | } |
| 479 | |
| 480 | |
| 481 | /// EnterMainSourceFile - Enter the specified FileID as the main source file, |
Nate Begeman | 6b61602 | 2008-01-07 04:01:26 +0000 | [diff] [blame] | 482 | /// which implicitly adds the builtin defines etc. |
Ted Kremenek | 95041a2 | 2007-12-19 22:51:13 +0000 | [diff] [blame] | 483 | void Preprocessor::EnterMainSourceFile() { |
| 484 | |
| 485 | unsigned MainFileID = SourceMgr.getMainFileID(); |
| 486 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 487 | // Enter the main file source buffer. |
| 488 | EnterSourceFile(MainFileID, 0); |
| 489 | |
Chris Lattner | b283298 | 2007-11-15 19:07:47 +0000 | [diff] [blame] | 490 | // Tell the header info that the main file was entered. If the file is later |
| 491 | // #imported, it won't be re-entered. |
| 492 | if (const FileEntry *FE = |
| 493 | SourceMgr.getFileEntryForLoc(SourceLocation::getFileLoc(MainFileID, 0))) |
| 494 | HeaderInfo.IncrementIncludeCount(FE); |
| 495 | |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 496 | std::vector<char> PrologFile; |
| 497 | PrologFile.reserve(4080); |
| 498 | |
| 499 | // Install things like __POWERPC__, __GNUC__, etc into the macro table. |
| 500 | InitializePredefinedMacros(*this, PrologFile); |
| 501 | |
| 502 | // Add on the predefines from the driver. |
Chris Lattner | aa39197 | 2008-04-19 23:09:31 +0000 | [diff] [blame] | 503 | PrologFile.insert(PrologFile.end(), Predefines.begin(), Predefines.end()); |
Chris Lattner | 53b0dab | 2007-10-09 22:10:18 +0000 | [diff] [blame] | 504 | |
| 505 | // Memory buffer must end with a null byte! |
| 506 | PrologFile.push_back(0); |
| 507 | |
| 508 | // Now that we have emitted the predefined macros, #includes, etc into |
| 509 | // PrologFile, preprocess it to populate the initial preprocessor state. |
| 510 | llvm::MemoryBuffer *SB = |
| 511 | llvm::MemoryBuffer::getMemBufferCopy(&PrologFile.front(),&PrologFile.back(), |
| 512 | "<predefines>"); |
| 513 | assert(SB && "Cannot fail to create predefined source buffer"); |
| 514 | unsigned FileID = SourceMgr.createFileIDForMemBuffer(SB); |
| 515 | assert(FileID && "Could not create FileID for predefines?"); |
| 516 | |
| 517 | // Start parsing the predefines. |
| 518 | EnterSourceFile(FileID, 0); |
| 519 | } |
Chris Lattner | 97ba77c | 2007-07-16 06:48:38 +0000 | [diff] [blame] | 520 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 521 | |
| 522 | //===----------------------------------------------------------------------===// |
| 523 | // Lexer Event Handling. |
| 524 | //===----------------------------------------------------------------------===// |
| 525 | |
| 526 | /// LookUpIdentifierInfo - Given a tok::identifier token, look up the |
| 527 | /// identifier information for the token and install it into the token. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 528 | IdentifierInfo *Preprocessor::LookUpIdentifierInfo(Token &Identifier, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 529 | const char *BufPtr) { |
Chris Lattner | 22f6bbc | 2007-10-09 18:02:16 +0000 | [diff] [blame] | 530 | assert(Identifier.is(tok::identifier) && "Not an identifier!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 531 | assert(Identifier.getIdentifierInfo() == 0 && "Identinfo already exists!"); |
| 532 | |
| 533 | // Look up this token, see if it is a macro, or if it is a language keyword. |
| 534 | IdentifierInfo *II; |
| 535 | if (BufPtr && !Identifier.needsCleaning()) { |
| 536 | // No cleaning needed, just use the characters from the lexed buffer. |
| 537 | II = getIdentifierInfo(BufPtr, BufPtr+Identifier.getLength()); |
| 538 | } else { |
| 539 | // Cleaning needed, alloca a buffer, clean into it, then use the buffer. |
Chris Lattner | c35717a | 2007-07-13 17:10:38 +0000 | [diff] [blame] | 540 | llvm::SmallVector<char, 64> IdentifierBuffer; |
| 541 | IdentifierBuffer.resize(Identifier.getLength()); |
| 542 | const char *TmpBuf = &IdentifierBuffer[0]; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 543 | unsigned Size = getSpelling(Identifier, TmpBuf); |
| 544 | II = getIdentifierInfo(TmpBuf, TmpBuf+Size); |
| 545 | } |
| 546 | Identifier.setIdentifierInfo(II); |
| 547 | return II; |
| 548 | } |
| 549 | |
| 550 | |
| 551 | /// HandleIdentifier - This callback is invoked when the lexer reads an |
| 552 | /// identifier. This callback looks up the identifier in the map and/or |
| 553 | /// 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] | 554 | void Preprocessor::HandleIdentifier(Token &Identifier) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 555 | assert(Identifier.getIdentifierInfo() && |
| 556 | "Can't handle identifiers without identifier info!"); |
| 557 | |
| 558 | IdentifierInfo &II = *Identifier.getIdentifierInfo(); |
| 559 | |
| 560 | // If this identifier was poisoned, and if it was not produced from a macro |
| 561 | // expansion, emit an error. |
| 562 | if (II.isPoisoned() && CurLexer) { |
| 563 | if (&II != Ident__VA_ARGS__) // We warn about __VA_ARGS__ with poisoning. |
| 564 | Diag(Identifier, diag::err_pp_used_poisoned_id); |
| 565 | else |
| 566 | Diag(Identifier, diag::ext_pp_bad_vaargs_use); |
| 567 | } |
| 568 | |
| 569 | // If this is a macro to be expanded, do it. |
Chris Lattner | cc1a875 | 2007-10-07 08:44:20 +0000 | [diff] [blame] | 570 | if (MacroInfo *MI = getMacroInfo(&II)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 571 | if (!DisableMacroExpansion && !Identifier.isExpandDisabled()) { |
| 572 | if (MI->isEnabled()) { |
| 573 | if (!HandleMacroExpandedIdentifier(Identifier, MI)) |
| 574 | return; |
| 575 | } else { |
| 576 | // C99 6.10.3.4p2 says that a disabled macro may never again be |
| 577 | // expanded, even if it's in a context where it could be expanded in the |
| 578 | // future. |
Chris Lattner | d217773 | 2007-07-20 16:59:19 +0000 | [diff] [blame] | 579 | Identifier.setFlag(Token::DisableExpand); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 580 | } |
| 581 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | // C++ 2.11p2: If this is an alternative representation of a C++ operator, |
| 585 | // then we act as if it is the actual operator and not the textual |
| 586 | // representation of it. |
| 587 | if (II.isCPlusPlusOperatorKeyword()) |
| 588 | Identifier.setIdentifierInfo(0); |
| 589 | |
| 590 | // Change the kind of this identifier to the appropriate token kind, e.g. |
| 591 | // turning "for" into a keyword. |
| 592 | Identifier.setKind(II.getTokenID()); |
| 593 | |
| 594 | // If this is an extension token, diagnose its use. |
Steve Naroff | b4eaf9c | 2008-09-02 18:50:17 +0000 | [diff] [blame] | 595 | // We avoid diagnosing tokens that originate from macro definitions. |
| 596 | if (II.isExtensionToken() && Features.C99 && !DisableMacroExpansion) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 597 | Diag(Identifier, diag::ext_token_used); |
| 598 | } |