Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1 | //===--- MacroExpansion.cpp - Top level Macro Expansion -------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the top level handling of macro expasion for the |
| 11 | // preprocessor. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Lex/Preprocessor.h" |
| 16 | #include "MacroArgs.h" |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 17 | #include "clang/Basic/FileManager.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 18 | #include "clang/Basic/SourceManager.h" |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 19 | #include "clang/Basic/TargetInfo.h" |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 20 | #include "clang/Lex/CodeCompletionHandler.h" |
| 21 | #include "clang/Lex/ExternalPreprocessorSource.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 22 | #include "clang/Lex/LexDiagnostic.h" |
| 23 | #include "clang/Lex/MacroInfo.h" |
| 24 | #include "llvm/ADT/STLExtras.h" |
Andy Gibbs | 02a1768 | 2012-11-17 19:15:38 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallString.h" |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/StringSwitch.h" |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 27 | #include "llvm/Config/llvm-config.h" |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 28 | #include "llvm/Support/ErrorHandling.h" |
Dmitri Gribenko | 33d054b | 2012-09-24 20:56:28 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Format.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 30 | #include "llvm/Support/raw_ostream.h" |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 31 | #include <cstdio> |
| 32 | #include <ctime> |
| 33 | using namespace clang; |
| 34 | |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 35 | MacroInfo *Preprocessor::getMacroInfoHistory(IdentifierInfo *II) const { |
| 36 | assert(II->hadMacroDefinition() && "Identifier has not been not a macro!"); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 37 | |
| 38 | macro_iterator Pos = Macros.find(II); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 39 | assert(Pos != Macros.end() && "Identifier macro info is missing!"); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 40 | return Pos->second; |
| 41 | } |
| 42 | |
| 43 | /// setMacroInfo - Specify a macro for this identifier. |
| 44 | /// |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 45 | void Preprocessor::setMacroInfo(IdentifierInfo *II, MacroInfo *MI) { |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 46 | assert(MI && "MacroInfo should be non-zero!"); |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 47 | assert(MI->getUndefLoc().isInvalid() && |
| 48 | "Undefined macros cannot be registered"); |
| 49 | |
| 50 | MacroInfo *&StoredMI = Macros[II]; |
| 51 | MI->setPreviousDefinition(StoredMI); |
| 52 | StoredMI = MI; |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 53 | II->setHasMacroDefinition(MI->getUndefLoc().isInvalid()); |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 54 | if (II->isFromAST()) |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 55 | II->setChangedSinceDeserialization(); |
| 56 | } |
| 57 | |
Douglas Gregor | 3ab50fe | 2012-10-11 17:41:54 +0000 | [diff] [blame] | 58 | void Preprocessor::addLoadedMacroInfo(IdentifierInfo *II, MacroInfo *MI, |
| 59 | MacroInfo *Hint) { |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 60 | assert(MI && "Missing macro?"); |
| 61 | assert(MI->isFromAST() && "Macro is not from an AST?"); |
| 62 | assert(!MI->getPreviousDefinition() && "Macro already in chain?"); |
| 63 | |
| 64 | MacroInfo *&StoredMI = Macros[II]; |
| 65 | |
| 66 | // Easy case: this is the first macro definition for this macro. |
| 67 | if (!StoredMI) { |
| 68 | StoredMI = MI; |
| 69 | |
| 70 | if (MI->isDefined()) |
| 71 | II->setHasMacroDefinition(true); |
| 72 | return; |
| 73 | } |
| 74 | |
| 75 | // If this macro is a definition and this identifier has been neither |
| 76 | // defined nor undef'd in the current translation unit, add this macro |
| 77 | // to the end of the chain of definitions. |
| 78 | if (MI->isDefined() && StoredMI->isFromAST()) { |
| 79 | // Simple case: if this is the first actual definition, just put it at |
| 80 | // th beginning. |
| 81 | if (!StoredMI->isDefined()) { |
| 82 | MI->setPreviousDefinition(StoredMI); |
| 83 | StoredMI = MI; |
| 84 | |
| 85 | II->setHasMacroDefinition(true); |
| 86 | return; |
| 87 | } |
| 88 | |
| 89 | // Find the end of the definition chain. |
Douglas Gregor | 54c8a40 | 2012-10-12 00:16:50 +0000 | [diff] [blame] | 90 | MacroInfo *Prev; |
| 91 | MacroInfo *PrevPrev = StoredMI; |
Douglas Gregor | e8219a6 | 2012-10-11 21:07:39 +0000 | [diff] [blame] | 92 | bool Ambiguous = StoredMI->isAmbiguous(); |
| 93 | bool MatchedOther = false; |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 94 | do { |
Douglas Gregor | 54c8a40 | 2012-10-12 00:16:50 +0000 | [diff] [blame] | 95 | Prev = PrevPrev; |
| 96 | |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 97 | // If the macros are not identical, we have an ambiguity. |
Douglas Gregor | e8219a6 | 2012-10-11 21:07:39 +0000 | [diff] [blame] | 98 | if (!Prev->isIdenticalTo(*MI, *this)) { |
| 99 | if (!Ambiguous) { |
| 100 | Ambiguous = true; |
| 101 | StoredMI->setAmbiguous(true); |
| 102 | } |
| 103 | } else { |
| 104 | MatchedOther = true; |
| 105 | } |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 106 | } while ((PrevPrev = Prev->getPreviousDefinition()) && |
| 107 | PrevPrev->isDefined()); |
| 108 | |
Douglas Gregor | e8219a6 | 2012-10-11 21:07:39 +0000 | [diff] [blame] | 109 | // If there are ambiguous definitions, and we didn't match any other |
| 110 | // definition, then mark us as ambiguous. |
| 111 | if (Ambiguous && !MatchedOther) |
| 112 | MI->setAmbiguous(true); |
Douglas Gregor | 7097be9 | 2012-10-11 00:48:48 +0000 | [diff] [blame] | 113 | |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 114 | // Wire this macro information into the chain. |
| 115 | MI->setPreviousDefinition(Prev->getPreviousDefinition()); |
| 116 | Prev->setPreviousDefinition(MI); |
| 117 | return; |
| 118 | } |
| 119 | |
| 120 | // The macro is not a definition; put it at the end of the list. |
Douglas Gregor | 3ab50fe | 2012-10-11 17:41:54 +0000 | [diff] [blame] | 121 | MacroInfo *Prev = Hint? Hint : StoredMI; |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 122 | while (Prev->getPreviousDefinition()) |
| 123 | Prev = Prev->getPreviousDefinition(); |
| 124 | Prev->setPreviousDefinition(MI); |
| 125 | } |
| 126 | |
| 127 | void Preprocessor::makeLoadedMacroInfoVisible(IdentifierInfo *II, |
| 128 | MacroInfo *MI) { |
| 129 | assert(MI->isFromAST() && "Macro must be from the AST"); |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 130 | |
| 131 | MacroInfo *&StoredMI = Macros[II]; |
| 132 | if (StoredMI == MI) { |
| 133 | // Easy case: this is the first macro anyway. |
Douglas Gregor | 54c8a40 | 2012-10-12 00:16:50 +0000 | [diff] [blame] | 134 | II->setHasMacroDefinition(MI->isDefined()); |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 135 | return; |
| 136 | } |
| 137 | |
| 138 | // Go find the macro and pull it out of the list. |
Douglas Gregor | 54c8a40 | 2012-10-12 00:16:50 +0000 | [diff] [blame] | 139 | // FIXME: Yes, this is O(N), and making a pile of macros visible or hidden |
| 140 | // would be quadratic, but it's extremely rare. |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 141 | MacroInfo *Prev = StoredMI; |
| 142 | while (Prev->getPreviousDefinition() != MI) |
| 143 | Prev = Prev->getPreviousDefinition(); |
| 144 | Prev->setPreviousDefinition(MI->getPreviousDefinition()); |
Douglas Gregor | 54c8a40 | 2012-10-12 00:16:50 +0000 | [diff] [blame] | 145 | MI->setPreviousDefinition(0); |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 146 | |
| 147 | // Add the macro back to the list. |
| 148 | addLoadedMacroInfo(II, MI); |
Douglas Gregor | 54c8a40 | 2012-10-12 00:16:50 +0000 | [diff] [blame] | 149 | |
| 150 | II->setHasMacroDefinition(StoredMI->isDefined()); |
| 151 | if (II->isFromAST()) |
| 152 | II->setChangedSinceDeserialization(); |
Douglas Gregor | 6c6c54a | 2012-10-11 00:46:49 +0000 | [diff] [blame] | 153 | } |
| 154 | |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 155 | /// \brief Undefine a macro for this identifier. |
| 156 | void Preprocessor::clearMacroInfo(IdentifierInfo *II) { |
| 157 | assert(II->hasMacroDefinition() && "Macro is not defined!"); |
| 158 | assert(Macros[II]->getUndefLoc().isValid() && "Macro is still defined!"); |
| 159 | II->setHasMacroDefinition(false); |
| 160 | if (II->isFromAST()) |
| 161 | II->setChangedSinceDeserialization(); |
| 162 | } |
| 163 | |
| 164 | /// RegisterBuiltinMacro - Register the specified identifier in the identifier |
| 165 | /// table and mark it as a builtin macro to be expanded. |
| 166 | static IdentifierInfo *RegisterBuiltinMacro(Preprocessor &PP, const char *Name){ |
| 167 | // Get the identifier. |
| 168 | IdentifierInfo *Id = PP.getIdentifierInfo(Name); |
| 169 | |
| 170 | // Mark it as being a macro that is builtin. |
| 171 | MacroInfo *MI = PP.AllocateMacroInfo(SourceLocation()); |
| 172 | MI->setIsBuiltinMacro(); |
| 173 | PP.setMacroInfo(Id, MI); |
| 174 | return Id; |
| 175 | } |
| 176 | |
| 177 | |
| 178 | /// RegisterBuiltinMacros - Register builtin macros, such as __LINE__ with the |
| 179 | /// identifier table. |
| 180 | void Preprocessor::RegisterBuiltinMacros() { |
| 181 | Ident__LINE__ = RegisterBuiltinMacro(*this, "__LINE__"); |
| 182 | Ident__FILE__ = RegisterBuiltinMacro(*this, "__FILE__"); |
| 183 | Ident__DATE__ = RegisterBuiltinMacro(*this, "__DATE__"); |
| 184 | Ident__TIME__ = RegisterBuiltinMacro(*this, "__TIME__"); |
| 185 | Ident__COUNTER__ = RegisterBuiltinMacro(*this, "__COUNTER__"); |
| 186 | Ident_Pragma = RegisterBuiltinMacro(*this, "_Pragma"); |
| 187 | |
| 188 | // GCC Extensions. |
| 189 | Ident__BASE_FILE__ = RegisterBuiltinMacro(*this, "__BASE_FILE__"); |
| 190 | Ident__INCLUDE_LEVEL__ = RegisterBuiltinMacro(*this, "__INCLUDE_LEVEL__"); |
| 191 | Ident__TIMESTAMP__ = RegisterBuiltinMacro(*this, "__TIMESTAMP__"); |
| 192 | |
| 193 | // Clang Extensions. |
| 194 | Ident__has_feature = RegisterBuiltinMacro(*this, "__has_feature"); |
| 195 | Ident__has_extension = RegisterBuiltinMacro(*this, "__has_extension"); |
| 196 | Ident__has_builtin = RegisterBuiltinMacro(*this, "__has_builtin"); |
| 197 | Ident__has_attribute = RegisterBuiltinMacro(*this, "__has_attribute"); |
| 198 | Ident__has_include = RegisterBuiltinMacro(*this, "__has_include"); |
| 199 | Ident__has_include_next = RegisterBuiltinMacro(*this, "__has_include_next"); |
| 200 | Ident__has_warning = RegisterBuiltinMacro(*this, "__has_warning"); |
| 201 | |
Douglas Gregor | b09de51 | 2012-09-25 15:44:52 +0000 | [diff] [blame] | 202 | // Modules. |
| 203 | if (LangOpts.Modules) { |
| 204 | Ident__building_module = RegisterBuiltinMacro(*this, "__building_module"); |
| 205 | |
| 206 | // __MODULE__ |
| 207 | if (!LangOpts.CurrentModule.empty()) |
| 208 | Ident__MODULE__ = RegisterBuiltinMacro(*this, "__MODULE__"); |
| 209 | else |
| 210 | Ident__MODULE__ = 0; |
| 211 | } else { |
| 212 | Ident__building_module = 0; |
| 213 | Ident__MODULE__ = 0; |
| 214 | } |
| 215 | |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 216 | // Microsoft Extensions. |
| 217 | if (LangOpts.MicrosoftExt) |
| 218 | Ident__pragma = RegisterBuiltinMacro(*this, "__pragma"); |
| 219 | else |
| 220 | Ident__pragma = 0; |
| 221 | } |
| 222 | |
| 223 | /// isTrivialSingleTokenExpansion - Return true if MI, which has a single token |
| 224 | /// in its expansion, currently expands to that token literally. |
| 225 | static bool isTrivialSingleTokenExpansion(const MacroInfo *MI, |
| 226 | const IdentifierInfo *MacroIdent, |
| 227 | Preprocessor &PP) { |
| 228 | IdentifierInfo *II = MI->getReplacementToken(0).getIdentifierInfo(); |
| 229 | |
| 230 | // If the token isn't an identifier, it's always literally expanded. |
| 231 | if (II == 0) return true; |
| 232 | |
| 233 | // If the information about this identifier is out of date, update it from |
| 234 | // the external source. |
| 235 | if (II->isOutOfDate()) |
| 236 | PP.getExternalSource()->updateOutOfDateIdentifier(*II); |
| 237 | |
| 238 | // If the identifier is a macro, and if that macro is enabled, it may be |
| 239 | // expanded so it's not a trivial expansion. |
| 240 | if (II->hasMacroDefinition() && PP.getMacroInfo(II)->isEnabled() && |
| 241 | // Fast expanding "#define X X" is ok, because X would be disabled. |
| 242 | II != MacroIdent) |
| 243 | return false; |
| 244 | |
| 245 | // If this is an object-like macro invocation, it is safe to trivially expand |
| 246 | // it. |
| 247 | if (MI->isObjectLike()) return true; |
| 248 | |
| 249 | // If this is a function-like macro invocation, it's safe to trivially expand |
| 250 | // as long as the identifier is not a macro argument. |
| 251 | for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end(); |
| 252 | I != E; ++I) |
| 253 | if (*I == II) |
| 254 | return false; // Identifier is a macro argument. |
| 255 | |
| 256 | return true; |
| 257 | } |
| 258 | |
| 259 | |
| 260 | /// isNextPPTokenLParen - Determine whether the next preprocessor token to be |
| 261 | /// lexed is a '('. If so, consume the token and return true, if not, this |
| 262 | /// method should have no observable side-effect on the lexed tokens. |
| 263 | bool Preprocessor::isNextPPTokenLParen() { |
| 264 | // Do some quick tests for rejection cases. |
| 265 | unsigned Val; |
| 266 | if (CurLexer) |
| 267 | Val = CurLexer->isNextPPTokenLParen(); |
| 268 | else if (CurPTHLexer) |
| 269 | Val = CurPTHLexer->isNextPPTokenLParen(); |
| 270 | else |
| 271 | Val = CurTokenLexer->isNextTokenLParen(); |
| 272 | |
| 273 | if (Val == 2) { |
| 274 | // We have run off the end. If it's a source file we don't |
| 275 | // examine enclosing ones (C99 5.1.1.2p4). Otherwise walk up the |
| 276 | // macro stack. |
| 277 | if (CurPPLexer) |
| 278 | return false; |
| 279 | for (unsigned i = IncludeMacroStack.size(); i != 0; --i) { |
| 280 | IncludeStackInfo &Entry = IncludeMacroStack[i-1]; |
| 281 | if (Entry.TheLexer) |
| 282 | Val = Entry.TheLexer->isNextPPTokenLParen(); |
| 283 | else if (Entry.ThePTHLexer) |
| 284 | Val = Entry.ThePTHLexer->isNextPPTokenLParen(); |
| 285 | else |
| 286 | Val = Entry.TheTokenLexer->isNextTokenLParen(); |
| 287 | |
| 288 | if (Val != 2) |
| 289 | break; |
| 290 | |
| 291 | // Ran off the end of a source file? |
| 292 | if (Entry.ThePPLexer) |
| 293 | return false; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | // Okay, if we know that the token is a '(', lex it and return. Otherwise we |
| 298 | // have found something that isn't a '(' or we found the end of the |
| 299 | // translation unit. In either case, return false. |
| 300 | return Val == 1; |
| 301 | } |
| 302 | |
| 303 | /// HandleMacroExpandedIdentifier - If an identifier token is read that is to be |
| 304 | /// expanded as a macro, handle it and return the next token as 'Identifier'. |
| 305 | bool Preprocessor::HandleMacroExpandedIdentifier(Token &Identifier, |
| 306 | MacroInfo *MI) { |
| 307 | // If this is a macro expansion in the "#if !defined(x)" line for the file, |
| 308 | // then the macro could expand to different things in other contexts, we need |
| 309 | // to disable the optimization in this case. |
| 310 | if (CurPPLexer) CurPPLexer->MIOpt.ExpandedMacro(); |
| 311 | |
| 312 | // If this is a builtin macro, like __LINE__ or _Pragma, handle it specially. |
| 313 | if (MI->isBuiltinMacro()) { |
| 314 | if (Callbacks) Callbacks->MacroExpands(Identifier, MI, |
| 315 | Identifier.getLocation()); |
| 316 | ExpandBuiltinMacro(Identifier); |
| 317 | return false; |
| 318 | } |
| 319 | |
| 320 | /// Args - If this is a function-like macro expansion, this contains, |
| 321 | /// for each macro argument, the list of tokens that were provided to the |
| 322 | /// invocation. |
| 323 | MacroArgs *Args = 0; |
| 324 | |
| 325 | // Remember where the end of the expansion occurred. For an object-like |
| 326 | // macro, this is the identifier. For a function-like macro, this is the ')'. |
| 327 | SourceLocation ExpansionEnd = Identifier.getLocation(); |
| 328 | |
| 329 | // If this is a function-like macro, read the arguments. |
| 330 | if (MI->isFunctionLike()) { |
| 331 | // C99 6.10.3p10: If the preprocessing token immediately after the macro |
| 332 | // name isn't a '(', this macro should not be expanded. |
| 333 | if (!isNextPPTokenLParen()) |
| 334 | return true; |
| 335 | |
| 336 | // Remember that we are now parsing the arguments to a macro invocation. |
| 337 | // Preprocessor directives used inside macro arguments are not portable, and |
| 338 | // this enables the warning. |
| 339 | InMacroArgs = true; |
| 340 | Args = ReadFunctionLikeMacroArgs(Identifier, MI, ExpansionEnd); |
| 341 | |
| 342 | // Finished parsing args. |
| 343 | InMacroArgs = false; |
| 344 | |
| 345 | // If there was an error parsing the arguments, bail out. |
| 346 | if (Args == 0) return false; |
| 347 | |
| 348 | ++NumFnMacroExpanded; |
| 349 | } else { |
| 350 | ++NumMacroExpanded; |
| 351 | } |
| 352 | |
| 353 | // Notice that this macro has been used. |
| 354 | markMacroAsUsed(MI); |
| 355 | |
| 356 | // Remember where the token is expanded. |
| 357 | SourceLocation ExpandLoc = Identifier.getLocation(); |
| 358 | SourceRange ExpansionRange(ExpandLoc, ExpansionEnd); |
| 359 | |
| 360 | if (Callbacks) { |
| 361 | if (InMacroArgs) { |
| 362 | // We can have macro expansion inside a conditional directive while |
| 363 | // reading the function macro arguments. To ensure, in that case, that |
| 364 | // MacroExpands callbacks still happen in source order, queue this |
| 365 | // callback to have it happen after the function macro callback. |
| 366 | DelayedMacroExpandsCallbacks.push_back( |
| 367 | MacroExpandsInfo(Identifier, MI, ExpansionRange)); |
| 368 | } else { |
| 369 | Callbacks->MacroExpands(Identifier, MI, ExpansionRange); |
| 370 | if (!DelayedMacroExpandsCallbacks.empty()) { |
| 371 | for (unsigned i=0, e = DelayedMacroExpandsCallbacks.size(); i!=e; ++i) { |
| 372 | MacroExpandsInfo &Info = DelayedMacroExpandsCallbacks[i]; |
| 373 | Callbacks->MacroExpands(Info.Tok, Info.MI, Info.Range); |
| 374 | } |
| 375 | DelayedMacroExpandsCallbacks.clear(); |
| 376 | } |
| 377 | } |
| 378 | } |
Douglas Gregor | e8219a6 | 2012-10-11 21:07:39 +0000 | [diff] [blame] | 379 | |
| 380 | // If the macro definition is ambiguous, complain. |
| 381 | if (MI->isAmbiguous()) { |
| 382 | Diag(Identifier, diag::warn_pp_ambiguous_macro) |
| 383 | << Identifier.getIdentifierInfo(); |
| 384 | Diag(MI->getDefinitionLoc(), diag::note_pp_ambiguous_macro_chosen) |
| 385 | << Identifier.getIdentifierInfo(); |
| 386 | for (MacroInfo *PrevMI = MI->getPreviousDefinition(); |
| 387 | PrevMI && PrevMI->isDefined(); |
| 388 | PrevMI = PrevMI->getPreviousDefinition()) { |
| 389 | if (PrevMI->isAmbiguous()) { |
| 390 | Diag(PrevMI->getDefinitionLoc(), diag::note_pp_ambiguous_macro_other) |
| 391 | << Identifier.getIdentifierInfo(); |
| 392 | } |
| 393 | } |
| 394 | } |
| 395 | |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 396 | // If we started lexing a macro, enter the macro expansion body. |
| 397 | |
| 398 | // If this macro expands to no tokens, don't bother to push it onto the |
| 399 | // expansion stack, only to take it right back off. |
| 400 | if (MI->getNumTokens() == 0) { |
| 401 | // No need for arg info. |
| 402 | if (Args) Args->destroy(*this); |
| 403 | |
| 404 | // Ignore this macro use, just return the next token in the current |
| 405 | // buffer. |
| 406 | bool HadLeadingSpace = Identifier.hasLeadingSpace(); |
| 407 | bool IsAtStartOfLine = Identifier.isAtStartOfLine(); |
| 408 | |
| 409 | Lex(Identifier); |
| 410 | |
| 411 | // If the identifier isn't on some OTHER line, inherit the leading |
| 412 | // whitespace/first-on-a-line property of this token. This handles |
| 413 | // stuff like "! XX," -> "! ," and " XX," -> " ,", when XX is |
| 414 | // empty. |
| 415 | if (!Identifier.isAtStartOfLine()) { |
| 416 | if (IsAtStartOfLine) Identifier.setFlag(Token::StartOfLine); |
| 417 | if (HadLeadingSpace) Identifier.setFlag(Token::LeadingSpace); |
| 418 | } |
| 419 | Identifier.setFlag(Token::LeadingEmptyMacro); |
| 420 | ++NumFastMacroExpanded; |
| 421 | return false; |
| 422 | |
| 423 | } else if (MI->getNumTokens() == 1 && |
| 424 | isTrivialSingleTokenExpansion(MI, Identifier.getIdentifierInfo(), |
| 425 | *this)) { |
| 426 | // Otherwise, if this macro expands into a single trivially-expanded |
| 427 | // token: expand it now. This handles common cases like |
| 428 | // "#define VAL 42". |
| 429 | |
| 430 | // No need for arg info. |
| 431 | if (Args) Args->destroy(*this); |
| 432 | |
| 433 | // Propagate the isAtStartOfLine/hasLeadingSpace markers of the macro |
| 434 | // identifier to the expanded token. |
| 435 | bool isAtStartOfLine = Identifier.isAtStartOfLine(); |
| 436 | bool hasLeadingSpace = Identifier.hasLeadingSpace(); |
| 437 | |
| 438 | // Replace the result token. |
| 439 | Identifier = MI->getReplacementToken(0); |
| 440 | |
| 441 | // Restore the StartOfLine/LeadingSpace markers. |
| 442 | Identifier.setFlagValue(Token::StartOfLine , isAtStartOfLine); |
| 443 | Identifier.setFlagValue(Token::LeadingSpace, hasLeadingSpace); |
| 444 | |
| 445 | // Update the tokens location to include both its expansion and physical |
| 446 | // locations. |
| 447 | SourceLocation Loc = |
| 448 | SourceMgr.createExpansionLoc(Identifier.getLocation(), ExpandLoc, |
| 449 | ExpansionEnd,Identifier.getLength()); |
| 450 | Identifier.setLocation(Loc); |
| 451 | |
| 452 | // If this is a disabled macro or #define X X, we must mark the result as |
| 453 | // unexpandable. |
| 454 | if (IdentifierInfo *NewII = Identifier.getIdentifierInfo()) { |
| 455 | if (MacroInfo *NewMI = getMacroInfo(NewII)) |
| 456 | if (!NewMI->isEnabled() || NewMI == MI) { |
| 457 | Identifier.setFlag(Token::DisableExpand); |
| 458 | Diag(Identifier, diag::pp_disabled_macro_expansion); |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | // Since this is not an identifier token, it can't be macro expanded, so |
| 463 | // we're done. |
| 464 | ++NumFastMacroExpanded; |
| 465 | return false; |
| 466 | } |
| 467 | |
| 468 | // Start expanding the macro. |
| 469 | EnterMacro(Identifier, ExpansionEnd, MI, Args); |
| 470 | |
| 471 | // Now that the macro is at the top of the include stack, ask the |
| 472 | // preprocessor to read the next token from it. |
| 473 | Lex(Identifier); |
| 474 | return false; |
| 475 | } |
| 476 | |
| 477 | /// ReadFunctionLikeMacroArgs - After reading "MACRO" and knowing that the next |
| 478 | /// token is the '(' of the macro, this method is invoked to read all of the |
| 479 | /// actual arguments specified for the macro invocation. This returns null on |
| 480 | /// error. |
| 481 | MacroArgs *Preprocessor::ReadFunctionLikeMacroArgs(Token &MacroName, |
| 482 | MacroInfo *MI, |
| 483 | SourceLocation &MacroEnd) { |
| 484 | // The number of fixed arguments to parse. |
| 485 | unsigned NumFixedArgsLeft = MI->getNumArgs(); |
| 486 | bool isVariadic = MI->isVariadic(); |
| 487 | |
| 488 | // Outer loop, while there are more arguments, keep reading them. |
| 489 | Token Tok; |
| 490 | |
| 491 | // Read arguments as unexpanded tokens. This avoids issues, e.g., where |
| 492 | // an argument value in a macro could expand to ',' or '(' or ')'. |
| 493 | LexUnexpandedToken(Tok); |
| 494 | assert(Tok.is(tok::l_paren) && "Error computing l-paren-ness?"); |
| 495 | |
| 496 | // ArgTokens - Build up a list of tokens that make up each argument. Each |
| 497 | // argument is separated by an EOF token. Use a SmallVector so we can avoid |
| 498 | // heap allocations in the common case. |
| 499 | SmallVector<Token, 64> ArgTokens; |
Argyrios Kyrtzidis | cd0fd18 | 2012-12-21 01:17:20 +0000 | [diff] [blame^] | 500 | bool ContainsCodeCompletionTok = false; |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 501 | |
| 502 | unsigned NumActuals = 0; |
| 503 | while (Tok.isNot(tok::r_paren)) { |
Argyrios Kyrtzidis | cd0fd18 | 2012-12-21 01:17:20 +0000 | [diff] [blame^] | 504 | if (ContainsCodeCompletionTok && (Tok.is(tok::eof) || Tok.is(tok::eod))) |
| 505 | break; |
| 506 | |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 507 | assert((Tok.is(tok::l_paren) || Tok.is(tok::comma)) && |
| 508 | "only expect argument separators here"); |
| 509 | |
| 510 | unsigned ArgTokenStart = ArgTokens.size(); |
| 511 | SourceLocation ArgStartLoc = Tok.getLocation(); |
| 512 | |
| 513 | // C99 6.10.3p11: Keep track of the number of l_parens we have seen. Note |
| 514 | // that we already consumed the first one. |
| 515 | unsigned NumParens = 0; |
| 516 | |
| 517 | while (1) { |
| 518 | // Read arguments as unexpanded tokens. This avoids issues, e.g., where |
| 519 | // an argument value in a macro could expand to ',' or '(' or ')'. |
| 520 | LexUnexpandedToken(Tok); |
| 521 | |
| 522 | if (Tok.is(tok::eof) || Tok.is(tok::eod)) { // "#if f(<eof>" & "#if f(\n" |
Argyrios Kyrtzidis | cd0fd18 | 2012-12-21 01:17:20 +0000 | [diff] [blame^] | 523 | if (!ContainsCodeCompletionTok) { |
| 524 | Diag(MacroName, diag::err_unterm_macro_invoc); |
| 525 | Diag(MI->getDefinitionLoc(), diag::note_macro_here) |
| 526 | << MacroName.getIdentifierInfo(); |
| 527 | // Do not lose the EOF/EOD. Return it to the client. |
| 528 | MacroName = Tok; |
| 529 | return 0; |
| 530 | } else { |
| 531 | break; |
| 532 | } |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 533 | } else if (Tok.is(tok::r_paren)) { |
| 534 | // If we found the ) token, the macro arg list is done. |
| 535 | if (NumParens-- == 0) { |
| 536 | MacroEnd = Tok.getLocation(); |
| 537 | break; |
| 538 | } |
| 539 | } else if (Tok.is(tok::l_paren)) { |
| 540 | ++NumParens; |
Nico Weber | 93dec51 | 2012-09-26 08:19:01 +0000 | [diff] [blame] | 541 | } else if (Tok.is(tok::comma) && NumParens == 0) { |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 542 | // Comma ends this argument if there are more fixed arguments expected. |
| 543 | // However, if this is a variadic macro, and this is part of the |
| 544 | // variadic part, then the comma is just an argument token. |
| 545 | if (!isVariadic) break; |
| 546 | if (NumFixedArgsLeft > 1) |
| 547 | break; |
| 548 | } else if (Tok.is(tok::comment) && !KeepMacroComments) { |
| 549 | // If this is a comment token in the argument list and we're just in |
| 550 | // -C mode (not -CC mode), discard the comment. |
| 551 | continue; |
| 552 | } else if (Tok.getIdentifierInfo() != 0) { |
| 553 | // Reading macro arguments can cause macros that we are currently |
| 554 | // expanding from to be popped off the expansion stack. Doing so causes |
| 555 | // them to be reenabled for expansion. Here we record whether any |
| 556 | // identifiers we lex as macro arguments correspond to disabled macros. |
| 557 | // If so, we mark the token as noexpand. This is a subtle aspect of |
| 558 | // C99 6.10.3.4p2. |
| 559 | if (MacroInfo *MI = getMacroInfo(Tok.getIdentifierInfo())) |
| 560 | if (!MI->isEnabled()) |
| 561 | Tok.setFlag(Token::DisableExpand); |
| 562 | } else if (Tok.is(tok::code_completion)) { |
Argyrios Kyrtzidis | cd0fd18 | 2012-12-21 01:17:20 +0000 | [diff] [blame^] | 563 | ContainsCodeCompletionTok = true; |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 564 | if (CodeComplete) |
| 565 | CodeComplete->CodeCompleteMacroArgument(MacroName.getIdentifierInfo(), |
| 566 | MI, NumActuals); |
| 567 | // Don't mark that we reached the code-completion point because the |
| 568 | // parser is going to handle the token and there will be another |
| 569 | // code-completion callback. |
| 570 | } |
| 571 | |
| 572 | ArgTokens.push_back(Tok); |
| 573 | } |
| 574 | |
| 575 | // If this was an empty argument list foo(), don't add this as an empty |
| 576 | // argument. |
| 577 | if (ArgTokens.empty() && Tok.getKind() == tok::r_paren) |
| 578 | break; |
| 579 | |
| 580 | // If this is not a variadic macro, and too many args were specified, emit |
| 581 | // an error. |
| 582 | if (!isVariadic && NumFixedArgsLeft == 0) { |
| 583 | if (ArgTokens.size() != ArgTokenStart) |
| 584 | ArgStartLoc = ArgTokens[ArgTokenStart].getLocation(); |
| 585 | |
Argyrios Kyrtzidis | cd0fd18 | 2012-12-21 01:17:20 +0000 | [diff] [blame^] | 586 | if (!ContainsCodeCompletionTok) { |
| 587 | // Emit the diagnostic at the macro name in case there is a missing ). |
| 588 | // Emitting it at the , could be far away from the macro name. |
| 589 | Diag(ArgStartLoc, diag::err_too_many_args_in_macro_invoc); |
| 590 | Diag(MI->getDefinitionLoc(), diag::note_macro_here) |
| 591 | << MacroName.getIdentifierInfo(); |
| 592 | return 0; |
| 593 | } |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | // Empty arguments are standard in C99 and C++0x, and are supported as an extension in |
| 597 | // other modes. |
| 598 | if (ArgTokens.size() == ArgTokenStart && !LangOpts.C99) |
| 599 | Diag(Tok, LangOpts.CPlusPlus0x ? |
| 600 | diag::warn_cxx98_compat_empty_fnmacro_arg : |
| 601 | diag::ext_empty_fnmacro_arg); |
| 602 | |
| 603 | // Add a marker EOF token to the end of the token list for this argument. |
| 604 | Token EOFTok; |
| 605 | EOFTok.startToken(); |
| 606 | EOFTok.setKind(tok::eof); |
| 607 | EOFTok.setLocation(Tok.getLocation()); |
| 608 | EOFTok.setLength(0); |
| 609 | ArgTokens.push_back(EOFTok); |
| 610 | ++NumActuals; |
| 611 | assert(NumFixedArgsLeft != 0 && "Too many arguments parsed"); |
| 612 | --NumFixedArgsLeft; |
| 613 | } |
| 614 | |
| 615 | // Okay, we either found the r_paren. Check to see if we parsed too few |
| 616 | // arguments. |
| 617 | unsigned MinArgsExpected = MI->getNumArgs(); |
| 618 | |
| 619 | // See MacroArgs instance var for description of this. |
| 620 | bool isVarargsElided = false; |
| 621 | |
| 622 | if (NumActuals < MinArgsExpected) { |
| 623 | // There are several cases where too few arguments is ok, handle them now. |
| 624 | if (NumActuals == 0 && MinArgsExpected == 1) { |
| 625 | // #define A(X) or #define A(...) ---> A() |
| 626 | |
| 627 | // If there is exactly one argument, and that argument is missing, |
| 628 | // then we have an empty "()" argument empty list. This is fine, even if |
| 629 | // the macro expects one argument (the argument is just empty). |
| 630 | isVarargsElided = MI->isVariadic(); |
| 631 | } else if (MI->isVariadic() && |
| 632 | (NumActuals+1 == MinArgsExpected || // A(x, ...) -> A(X) |
| 633 | (NumActuals == 0 && MinArgsExpected == 2))) {// A(x,...) -> A() |
| 634 | // Varargs where the named vararg parameter is missing: OK as extension. |
| 635 | // #define A(x, ...) |
| 636 | // A("blah") |
Eli Friedman | 4fa4b48 | 2012-11-14 02:18:46 +0000 | [diff] [blame] | 637 | // |
| 638 | // If the macro contains the comma pasting extension, the diagnostic |
| 639 | // is suppressed; we know we'll get another diagnostic later. |
| 640 | if (!MI->hasCommaPasting()) { |
| 641 | Diag(Tok, diag::ext_missing_varargs_arg); |
| 642 | Diag(MI->getDefinitionLoc(), diag::note_macro_here) |
| 643 | << MacroName.getIdentifierInfo(); |
| 644 | } |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 645 | |
| 646 | // Remember this occurred, allowing us to elide the comma when used for |
| 647 | // cases like: |
| 648 | // #define A(x, foo...) blah(a, ## foo) |
| 649 | // #define B(x, ...) blah(a, ## __VA_ARGS__) |
| 650 | // #define C(...) blah(a, ## __VA_ARGS__) |
| 651 | // A(x) B(x) C() |
| 652 | isVarargsElided = true; |
Argyrios Kyrtzidis | cd0fd18 | 2012-12-21 01:17:20 +0000 | [diff] [blame^] | 653 | } else if (!ContainsCodeCompletionTok) { |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 654 | // Otherwise, emit the error. |
| 655 | Diag(Tok, diag::err_too_few_args_in_macro_invoc); |
Argyrios Kyrtzidis | 0ee8de7 | 2012-12-14 18:53:47 +0000 | [diff] [blame] | 656 | Diag(MI->getDefinitionLoc(), diag::note_macro_here) |
| 657 | << MacroName.getIdentifierInfo(); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | // Add a marker EOF token to the end of the token list for this argument. |
| 662 | SourceLocation EndLoc = Tok.getLocation(); |
| 663 | Tok.startToken(); |
| 664 | Tok.setKind(tok::eof); |
| 665 | Tok.setLocation(EndLoc); |
| 666 | Tok.setLength(0); |
| 667 | ArgTokens.push_back(Tok); |
| 668 | |
| 669 | // If we expect two arguments, add both as empty. |
| 670 | if (NumActuals == 0 && MinArgsExpected == 2) |
| 671 | ArgTokens.push_back(Tok); |
| 672 | |
Argyrios Kyrtzidis | cd0fd18 | 2012-12-21 01:17:20 +0000 | [diff] [blame^] | 673 | } else if (NumActuals > MinArgsExpected && !MI->isVariadic() && |
| 674 | !ContainsCodeCompletionTok) { |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 675 | // Emit the diagnostic at the macro name in case there is a missing ). |
| 676 | // Emitting it at the , could be far away from the macro name. |
| 677 | Diag(MacroName, diag::err_too_many_args_in_macro_invoc); |
Argyrios Kyrtzidis | 0ee8de7 | 2012-12-14 18:53:47 +0000 | [diff] [blame] | 678 | Diag(MI->getDefinitionLoc(), diag::note_macro_here) |
| 679 | << MacroName.getIdentifierInfo(); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 680 | return 0; |
| 681 | } |
| 682 | |
| 683 | return MacroArgs::create(MI, ArgTokens, isVarargsElided, *this); |
| 684 | } |
| 685 | |
| 686 | /// \brief Keeps macro expanded tokens for TokenLexers. |
| 687 | // |
| 688 | /// Works like a stack; a TokenLexer adds the macro expanded tokens that is |
| 689 | /// going to lex in the cache and when it finishes the tokens are removed |
| 690 | /// from the end of the cache. |
| 691 | Token *Preprocessor::cacheMacroExpandedTokens(TokenLexer *tokLexer, |
| 692 | ArrayRef<Token> tokens) { |
| 693 | assert(tokLexer); |
| 694 | if (tokens.empty()) |
| 695 | return 0; |
| 696 | |
| 697 | size_t newIndex = MacroExpandedTokens.size(); |
| 698 | bool cacheNeedsToGrow = tokens.size() > |
| 699 | MacroExpandedTokens.capacity()-MacroExpandedTokens.size(); |
| 700 | MacroExpandedTokens.append(tokens.begin(), tokens.end()); |
| 701 | |
| 702 | if (cacheNeedsToGrow) { |
| 703 | // Go through all the TokenLexers whose 'Tokens' pointer points in the |
| 704 | // buffer and update the pointers to the (potential) new buffer array. |
| 705 | for (unsigned i = 0, e = MacroExpandingLexersStack.size(); i != e; ++i) { |
| 706 | TokenLexer *prevLexer; |
| 707 | size_t tokIndex; |
| 708 | llvm::tie(prevLexer, tokIndex) = MacroExpandingLexersStack[i]; |
| 709 | prevLexer->Tokens = MacroExpandedTokens.data() + tokIndex; |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex)); |
| 714 | return MacroExpandedTokens.data() + newIndex; |
| 715 | } |
| 716 | |
| 717 | void Preprocessor::removeCachedMacroExpandedTokensOfLastLexer() { |
| 718 | assert(!MacroExpandingLexersStack.empty()); |
| 719 | size_t tokIndex = MacroExpandingLexersStack.back().second; |
| 720 | assert(tokIndex < MacroExpandedTokens.size()); |
| 721 | // Pop the cached macro expanded tokens from the end. |
| 722 | MacroExpandedTokens.resize(tokIndex); |
| 723 | MacroExpandingLexersStack.pop_back(); |
| 724 | } |
| 725 | |
| 726 | /// ComputeDATE_TIME - Compute the current time, enter it into the specified |
| 727 | /// scratch buffer, then return DATELoc/TIMELoc locations with the position of |
| 728 | /// the identifier tokens inserted. |
| 729 | static void ComputeDATE_TIME(SourceLocation &DATELoc, SourceLocation &TIMELoc, |
| 730 | Preprocessor &PP) { |
| 731 | time_t TT = time(0); |
| 732 | struct tm *TM = localtime(&TT); |
| 733 | |
| 734 | static const char * const Months[] = { |
| 735 | "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" |
| 736 | }; |
| 737 | |
Dmitri Gribenko | 33d054b | 2012-09-24 20:56:28 +0000 | [diff] [blame] | 738 | { |
| 739 | SmallString<32> TmpBuffer; |
| 740 | llvm::raw_svector_ostream TmpStream(TmpBuffer); |
| 741 | TmpStream << llvm::format("\"%s %2d %4d\"", Months[TM->tm_mon], |
| 742 | TM->tm_mday, TM->tm_year + 1900); |
Dmitri Gribenko | 33d054b | 2012-09-24 20:56:28 +0000 | [diff] [blame] | 743 | Token TmpTok; |
| 744 | TmpTok.startToken(); |
Dmitri Gribenko | 374b383 | 2012-09-24 21:07:17 +0000 | [diff] [blame] | 745 | PP.CreateString(TmpStream.str(), TmpTok); |
Dmitri Gribenko | 33d054b | 2012-09-24 20:56:28 +0000 | [diff] [blame] | 746 | DATELoc = TmpTok.getLocation(); |
| 747 | } |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 748 | |
Dmitri Gribenko | 33d054b | 2012-09-24 20:56:28 +0000 | [diff] [blame] | 749 | { |
| 750 | SmallString<32> TmpBuffer; |
| 751 | llvm::raw_svector_ostream TmpStream(TmpBuffer); |
| 752 | TmpStream << llvm::format("\"%02d:%02d:%02d\"", |
| 753 | TM->tm_hour, TM->tm_min, TM->tm_sec); |
Dmitri Gribenko | 33d054b | 2012-09-24 20:56:28 +0000 | [diff] [blame] | 754 | Token TmpTok; |
| 755 | TmpTok.startToken(); |
Dmitri Gribenko | 374b383 | 2012-09-24 21:07:17 +0000 | [diff] [blame] | 756 | PP.CreateString(TmpStream.str(), TmpTok); |
Dmitri Gribenko | 33d054b | 2012-09-24 20:56:28 +0000 | [diff] [blame] | 757 | TIMELoc = TmpTok.getLocation(); |
| 758 | } |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 759 | } |
| 760 | |
| 761 | |
| 762 | /// HasFeature - Return true if we recognize and implement the feature |
| 763 | /// specified by the identifier as a standard language feature. |
| 764 | static bool HasFeature(const Preprocessor &PP, const IdentifierInfo *II) { |
| 765 | const LangOptions &LangOpts = PP.getLangOpts(); |
| 766 | StringRef Feature = II->getName(); |
| 767 | |
| 768 | // Normalize the feature name, __foo__ becomes foo. |
| 769 | if (Feature.startswith("__") && Feature.endswith("__") && Feature.size() >= 4) |
| 770 | Feature = Feature.substr(2, Feature.size() - 4); |
| 771 | |
| 772 | return llvm::StringSwitch<bool>(Feature) |
Richard Smith | ca1b62a | 2012-11-05 21:48:12 +0000 | [diff] [blame] | 773 | .Case("address_sanitizer", LangOpts.SanitizeAddress) |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 774 | .Case("attribute_analyzer_noreturn", true) |
| 775 | .Case("attribute_availability", true) |
| 776 | .Case("attribute_availability_with_message", true) |
| 777 | .Case("attribute_cf_returns_not_retained", true) |
| 778 | .Case("attribute_cf_returns_retained", true) |
| 779 | .Case("attribute_deprecated_with_message", true) |
| 780 | .Case("attribute_ext_vector_type", true) |
| 781 | .Case("attribute_ns_returns_not_retained", true) |
| 782 | .Case("attribute_ns_returns_retained", true) |
| 783 | .Case("attribute_ns_consumes_self", true) |
| 784 | .Case("attribute_ns_consumed", true) |
| 785 | .Case("attribute_cf_consumed", true) |
| 786 | .Case("attribute_objc_ivar_unused", true) |
| 787 | .Case("attribute_objc_method_family", true) |
| 788 | .Case("attribute_overloadable", true) |
| 789 | .Case("attribute_unavailable_with_message", true) |
| 790 | .Case("attribute_unused_on_fields", true) |
| 791 | .Case("blocks", LangOpts.Blocks) |
| 792 | .Case("cxx_exceptions", LangOpts.Exceptions) |
| 793 | .Case("cxx_rtti", LangOpts.RTTI) |
| 794 | .Case("enumerator_attributes", true) |
Evgeniy Stepanov | 5c70ef4 | 2012-12-20 12:03:13 +0000 | [diff] [blame] | 795 | .Case("memory_sanitizer", LangOpts.SanitizeMemory) |
Dmitry Vyukov | 728e212 | 2012-12-17 08:52:05 +0000 | [diff] [blame] | 796 | .Case("thread_sanitizer", LangOpts.SanitizeThread) |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 797 | // Objective-C features |
| 798 | .Case("objc_arr", LangOpts.ObjCAutoRefCount) // FIXME: REMOVE? |
| 799 | .Case("objc_arc", LangOpts.ObjCAutoRefCount) |
| 800 | .Case("objc_arc_weak", LangOpts.ObjCARCWeak) |
| 801 | .Case("objc_default_synthesize_properties", LangOpts.ObjC2) |
| 802 | .Case("objc_fixed_enum", LangOpts.ObjC2) |
| 803 | .Case("objc_instancetype", LangOpts.ObjC2) |
| 804 | .Case("objc_modules", LangOpts.ObjC2 && LangOpts.Modules) |
| 805 | .Case("objc_nonfragile_abi", LangOpts.ObjCRuntime.isNonFragile()) |
| 806 | .Case("objc_weak_class", LangOpts.ObjCRuntime.hasWeakClassImport()) |
| 807 | .Case("ownership_holds", true) |
| 808 | .Case("ownership_returns", true) |
| 809 | .Case("ownership_takes", true) |
| 810 | .Case("objc_bool", true) |
| 811 | .Case("objc_subscripting", LangOpts.ObjCRuntime.isNonFragile()) |
| 812 | .Case("objc_array_literals", LangOpts.ObjC2) |
| 813 | .Case("objc_dictionary_literals", LangOpts.ObjC2) |
| 814 | .Case("objc_boxed_expressions", LangOpts.ObjC2) |
| 815 | .Case("arc_cf_code_audited", true) |
| 816 | // C11 features |
| 817 | .Case("c_alignas", LangOpts.C11) |
| 818 | .Case("c_atomic", LangOpts.C11) |
| 819 | .Case("c_generic_selections", LangOpts.C11) |
| 820 | .Case("c_static_assert", LangOpts.C11) |
| 821 | // C++11 features |
| 822 | .Case("cxx_access_control_sfinae", LangOpts.CPlusPlus0x) |
| 823 | .Case("cxx_alias_templates", LangOpts.CPlusPlus0x) |
| 824 | .Case("cxx_alignas", LangOpts.CPlusPlus0x) |
| 825 | .Case("cxx_atomic", LangOpts.CPlusPlus0x) |
| 826 | .Case("cxx_attributes", LangOpts.CPlusPlus0x) |
| 827 | .Case("cxx_auto_type", LangOpts.CPlusPlus0x) |
| 828 | .Case("cxx_constexpr", LangOpts.CPlusPlus0x) |
| 829 | .Case("cxx_decltype", LangOpts.CPlusPlus0x) |
| 830 | .Case("cxx_decltype_incomplete_return_types", LangOpts.CPlusPlus0x) |
| 831 | .Case("cxx_default_function_template_args", LangOpts.CPlusPlus0x) |
| 832 | .Case("cxx_defaulted_functions", LangOpts.CPlusPlus0x) |
| 833 | .Case("cxx_delegating_constructors", LangOpts.CPlusPlus0x) |
| 834 | .Case("cxx_deleted_functions", LangOpts.CPlusPlus0x) |
| 835 | .Case("cxx_explicit_conversions", LangOpts.CPlusPlus0x) |
| 836 | .Case("cxx_generalized_initializers", LangOpts.CPlusPlus0x) |
| 837 | .Case("cxx_implicit_moves", LangOpts.CPlusPlus0x) |
| 838 | //.Case("cxx_inheriting_constructors", false) |
| 839 | .Case("cxx_inline_namespaces", LangOpts.CPlusPlus0x) |
| 840 | .Case("cxx_lambdas", LangOpts.CPlusPlus0x) |
| 841 | .Case("cxx_local_type_template_args", LangOpts.CPlusPlus0x) |
| 842 | .Case("cxx_nonstatic_member_init", LangOpts.CPlusPlus0x) |
| 843 | .Case("cxx_noexcept", LangOpts.CPlusPlus0x) |
| 844 | .Case("cxx_nullptr", LangOpts.CPlusPlus0x) |
| 845 | .Case("cxx_override_control", LangOpts.CPlusPlus0x) |
| 846 | .Case("cxx_range_for", LangOpts.CPlusPlus0x) |
| 847 | .Case("cxx_raw_string_literals", LangOpts.CPlusPlus0x) |
| 848 | .Case("cxx_reference_qualified_functions", LangOpts.CPlusPlus0x) |
| 849 | .Case("cxx_rvalue_references", LangOpts.CPlusPlus0x) |
| 850 | .Case("cxx_strong_enums", LangOpts.CPlusPlus0x) |
| 851 | .Case("cxx_static_assert", LangOpts.CPlusPlus0x) |
| 852 | .Case("cxx_trailing_return", LangOpts.CPlusPlus0x) |
| 853 | .Case("cxx_unicode_literals", LangOpts.CPlusPlus0x) |
| 854 | .Case("cxx_unrestricted_unions", LangOpts.CPlusPlus0x) |
| 855 | .Case("cxx_user_literals", LangOpts.CPlusPlus0x) |
| 856 | .Case("cxx_variadic_templates", LangOpts.CPlusPlus0x) |
| 857 | // Type traits |
| 858 | .Case("has_nothrow_assign", LangOpts.CPlusPlus) |
| 859 | .Case("has_nothrow_copy", LangOpts.CPlusPlus) |
| 860 | .Case("has_nothrow_constructor", LangOpts.CPlusPlus) |
| 861 | .Case("has_trivial_assign", LangOpts.CPlusPlus) |
| 862 | .Case("has_trivial_copy", LangOpts.CPlusPlus) |
| 863 | .Case("has_trivial_constructor", LangOpts.CPlusPlus) |
| 864 | .Case("has_trivial_destructor", LangOpts.CPlusPlus) |
| 865 | .Case("has_virtual_destructor", LangOpts.CPlusPlus) |
| 866 | .Case("is_abstract", LangOpts.CPlusPlus) |
| 867 | .Case("is_base_of", LangOpts.CPlusPlus) |
| 868 | .Case("is_class", LangOpts.CPlusPlus) |
| 869 | .Case("is_convertible_to", LangOpts.CPlusPlus) |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 870 | .Case("is_empty", LangOpts.CPlusPlus) |
| 871 | .Case("is_enum", LangOpts.CPlusPlus) |
| 872 | .Case("is_final", LangOpts.CPlusPlus) |
| 873 | .Case("is_literal", LangOpts.CPlusPlus) |
| 874 | .Case("is_standard_layout", LangOpts.CPlusPlus) |
| 875 | .Case("is_pod", LangOpts.CPlusPlus) |
| 876 | .Case("is_polymorphic", LangOpts.CPlusPlus) |
| 877 | .Case("is_trivial", LangOpts.CPlusPlus) |
| 878 | .Case("is_trivially_assignable", LangOpts.CPlusPlus) |
| 879 | .Case("is_trivially_constructible", LangOpts.CPlusPlus) |
| 880 | .Case("is_trivially_copyable", LangOpts.CPlusPlus) |
| 881 | .Case("is_union", LangOpts.CPlusPlus) |
| 882 | .Case("modules", LangOpts.Modules) |
| 883 | .Case("tls", PP.getTargetInfo().isTLSSupported()) |
| 884 | .Case("underlying_type", LangOpts.CPlusPlus) |
| 885 | .Default(false); |
| 886 | } |
| 887 | |
| 888 | /// HasExtension - Return true if we recognize and implement the feature |
| 889 | /// specified by the identifier, either as an extension or a standard language |
| 890 | /// feature. |
| 891 | static bool HasExtension(const Preprocessor &PP, const IdentifierInfo *II) { |
| 892 | if (HasFeature(PP, II)) |
| 893 | return true; |
| 894 | |
| 895 | // If the use of an extension results in an error diagnostic, extensions are |
| 896 | // effectively unavailable, so just return false here. |
| 897 | if (PP.getDiagnostics().getExtensionHandlingBehavior() == |
| 898 | DiagnosticsEngine::Ext_Error) |
| 899 | return false; |
| 900 | |
| 901 | const LangOptions &LangOpts = PP.getLangOpts(); |
| 902 | StringRef Extension = II->getName(); |
| 903 | |
| 904 | // Normalize the extension name, __foo__ becomes foo. |
| 905 | if (Extension.startswith("__") && Extension.endswith("__") && |
| 906 | Extension.size() >= 4) |
| 907 | Extension = Extension.substr(2, Extension.size() - 4); |
| 908 | |
| 909 | // Because we inherit the feature list from HasFeature, this string switch |
| 910 | // must be less restrictive than HasFeature's. |
| 911 | return llvm::StringSwitch<bool>(Extension) |
| 912 | // C11 features supported by other languages as extensions. |
| 913 | .Case("c_alignas", true) |
| 914 | .Case("c_atomic", true) |
| 915 | .Case("c_generic_selections", true) |
| 916 | .Case("c_static_assert", true) |
| 917 | // C++0x features supported by other languages as extensions. |
| 918 | .Case("cxx_atomic", LangOpts.CPlusPlus) |
| 919 | .Case("cxx_deleted_functions", LangOpts.CPlusPlus) |
| 920 | .Case("cxx_explicit_conversions", LangOpts.CPlusPlus) |
| 921 | .Case("cxx_inline_namespaces", LangOpts.CPlusPlus) |
| 922 | .Case("cxx_local_type_template_args", LangOpts.CPlusPlus) |
| 923 | .Case("cxx_nonstatic_member_init", LangOpts.CPlusPlus) |
| 924 | .Case("cxx_override_control", LangOpts.CPlusPlus) |
| 925 | .Case("cxx_range_for", LangOpts.CPlusPlus) |
| 926 | .Case("cxx_reference_qualified_functions", LangOpts.CPlusPlus) |
| 927 | .Case("cxx_rvalue_references", LangOpts.CPlusPlus) |
| 928 | .Default(false); |
| 929 | } |
| 930 | |
| 931 | /// HasAttribute - Return true if we recognize and implement the attribute |
| 932 | /// specified by the given identifier. |
| 933 | static bool HasAttribute(const IdentifierInfo *II) { |
| 934 | StringRef Name = II->getName(); |
| 935 | // Normalize the attribute name, __foo__ becomes foo. |
| 936 | if (Name.startswith("__") && Name.endswith("__") && Name.size() >= 4) |
| 937 | Name = Name.substr(2, Name.size() - 4); |
| 938 | |
| 939 | // FIXME: Do we need to handle namespaces here? |
| 940 | return llvm::StringSwitch<bool>(Name) |
| 941 | #include "clang/Lex/AttrSpellings.inc" |
| 942 | .Default(false); |
| 943 | } |
| 944 | |
| 945 | /// EvaluateHasIncludeCommon - Process a '__has_include("path")' |
| 946 | /// or '__has_include_next("path")' expression. |
| 947 | /// Returns true if successful. |
| 948 | static bool EvaluateHasIncludeCommon(Token &Tok, |
| 949 | IdentifierInfo *II, Preprocessor &PP, |
| 950 | const DirectoryLookup *LookupFrom) { |
Richard Trieu | 97bc3d5 | 2012-10-22 20:28:48 +0000 | [diff] [blame] | 951 | // Save the location of the current token. If a '(' is later found, use |
| 952 | // that location. If no, use the end of this location instead. |
| 953 | SourceLocation LParenLoc = Tok.getLocation(); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 954 | |
| 955 | // Get '('. |
| 956 | PP.LexNonComment(Tok); |
| 957 | |
| 958 | // Ensure we have a '('. |
| 959 | if (Tok.isNot(tok::l_paren)) { |
Richard Trieu | 97bc3d5 | 2012-10-22 20:28:48 +0000 | [diff] [blame] | 960 | // No '(', use end of last token. |
| 961 | LParenLoc = PP.getLocForEndOfToken(LParenLoc); |
| 962 | PP.Diag(LParenLoc, diag::err_pp_missing_lparen) << II->getName(); |
| 963 | // If the next token looks like a filename or the start of one, |
| 964 | // assume it is and process it as such. |
| 965 | if (!Tok.is(tok::angle_string_literal) && !Tok.is(tok::string_literal) && |
| 966 | !Tok.is(tok::less)) |
| 967 | return false; |
| 968 | } else { |
| 969 | // Save '(' location for possible missing ')' message. |
| 970 | LParenLoc = Tok.getLocation(); |
| 971 | |
| 972 | // Get the file name. |
| 973 | PP.getCurrentLexer()->LexIncludeFilename(Tok); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 974 | } |
| 975 | |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 976 | // Reserve a buffer to get the spelling. |
| 977 | SmallString<128> FilenameBuffer; |
| 978 | StringRef Filename; |
| 979 | SourceLocation EndLoc; |
| 980 | |
| 981 | switch (Tok.getKind()) { |
| 982 | case tok::eod: |
| 983 | // If the token kind is EOD, the error has already been diagnosed. |
| 984 | return false; |
| 985 | |
| 986 | case tok::angle_string_literal: |
| 987 | case tok::string_literal: { |
| 988 | bool Invalid = false; |
| 989 | Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid); |
| 990 | if (Invalid) |
| 991 | return false; |
| 992 | break; |
| 993 | } |
| 994 | |
| 995 | case tok::less: |
| 996 | // This could be a <foo/bar.h> file coming from a macro expansion. In this |
| 997 | // case, glue the tokens together into FilenameBuffer and interpret those. |
| 998 | FilenameBuffer.push_back('<'); |
Richard Trieu | 97bc3d5 | 2012-10-22 20:28:48 +0000 | [diff] [blame] | 999 | if (PP.ConcatenateIncludeName(FilenameBuffer, EndLoc)) { |
| 1000 | // Let the caller know a <eod> was found by changing the Token kind. |
| 1001 | Tok.setKind(tok::eod); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1002 | return false; // Found <eod> but no ">"? Diagnostic already emitted. |
Richard Trieu | 97bc3d5 | 2012-10-22 20:28:48 +0000 | [diff] [blame] | 1003 | } |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1004 | Filename = FilenameBuffer.str(); |
| 1005 | break; |
| 1006 | default: |
| 1007 | PP.Diag(Tok.getLocation(), diag::err_pp_expects_filename); |
| 1008 | return false; |
| 1009 | } |
| 1010 | |
Richard Trieu | 97bc3d5 | 2012-10-22 20:28:48 +0000 | [diff] [blame] | 1011 | SourceLocation FilenameLoc = Tok.getLocation(); |
| 1012 | |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1013 | // Get ')'. |
| 1014 | PP.LexNonComment(Tok); |
| 1015 | |
| 1016 | // Ensure we have a trailing ). |
| 1017 | if (Tok.isNot(tok::r_paren)) { |
Richard Trieu | 97bc3d5 | 2012-10-22 20:28:48 +0000 | [diff] [blame] | 1018 | PP.Diag(PP.getLocForEndOfToken(FilenameLoc), diag::err_pp_missing_rparen) |
| 1019 | << II->getName(); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1020 | PP.Diag(LParenLoc, diag::note_matching) << "("; |
| 1021 | return false; |
| 1022 | } |
| 1023 | |
| 1024 | bool isAngled = PP.GetIncludeFilenameSpelling(Tok.getLocation(), Filename); |
| 1025 | // If GetIncludeFilenameSpelling set the start ptr to null, there was an |
| 1026 | // error. |
| 1027 | if (Filename.empty()) |
| 1028 | return false; |
| 1029 | |
| 1030 | // Search include directories. |
| 1031 | const DirectoryLookup *CurDir; |
| 1032 | const FileEntry *File = |
| 1033 | PP.LookupFile(Filename, isAngled, LookupFrom, CurDir, NULL, NULL, NULL); |
| 1034 | |
| 1035 | // Get the result value. A result of true means the file exists. |
| 1036 | return File != 0; |
| 1037 | } |
| 1038 | |
| 1039 | /// EvaluateHasInclude - Process a '__has_include("path")' expression. |
| 1040 | /// Returns true if successful. |
| 1041 | static bool EvaluateHasInclude(Token &Tok, IdentifierInfo *II, |
| 1042 | Preprocessor &PP) { |
| 1043 | return EvaluateHasIncludeCommon(Tok, II, PP, NULL); |
| 1044 | } |
| 1045 | |
| 1046 | /// EvaluateHasIncludeNext - Process '__has_include_next("path")' expression. |
| 1047 | /// Returns true if successful. |
| 1048 | static bool EvaluateHasIncludeNext(Token &Tok, |
| 1049 | IdentifierInfo *II, Preprocessor &PP) { |
| 1050 | // __has_include_next is like __has_include, except that we start |
| 1051 | // searching after the current found directory. If we can't do this, |
| 1052 | // issue a diagnostic. |
| 1053 | const DirectoryLookup *Lookup = PP.GetCurDirLookup(); |
| 1054 | if (PP.isInPrimaryFile()) { |
| 1055 | Lookup = 0; |
| 1056 | PP.Diag(Tok, diag::pp_include_next_in_primary); |
| 1057 | } else if (Lookup == 0) { |
| 1058 | PP.Diag(Tok, diag::pp_include_next_absolute_path); |
| 1059 | } else { |
| 1060 | // Start looking up in the next directory. |
| 1061 | ++Lookup; |
| 1062 | } |
| 1063 | |
| 1064 | return EvaluateHasIncludeCommon(Tok, II, PP, Lookup); |
| 1065 | } |
| 1066 | |
Douglas Gregor | b09de51 | 2012-09-25 15:44:52 +0000 | [diff] [blame] | 1067 | /// \brief Process __building_module(identifier) expression. |
| 1068 | /// \returns true if we are building the named module, false otherwise. |
| 1069 | static bool EvaluateBuildingModule(Token &Tok, |
| 1070 | IdentifierInfo *II, Preprocessor &PP) { |
| 1071 | // Get '('. |
| 1072 | PP.LexNonComment(Tok); |
| 1073 | |
| 1074 | // Ensure we have a '('. |
| 1075 | if (Tok.isNot(tok::l_paren)) { |
| 1076 | PP.Diag(Tok.getLocation(), diag::err_pp_missing_lparen) << II->getName(); |
| 1077 | return false; |
| 1078 | } |
| 1079 | |
| 1080 | // Save '(' location for possible missing ')' message. |
| 1081 | SourceLocation LParenLoc = Tok.getLocation(); |
| 1082 | |
| 1083 | // Get the module name. |
| 1084 | PP.LexNonComment(Tok); |
| 1085 | |
| 1086 | // Ensure that we have an identifier. |
| 1087 | if (Tok.isNot(tok::identifier)) { |
| 1088 | PP.Diag(Tok.getLocation(), diag::err_expected_id_building_module); |
| 1089 | return false; |
| 1090 | } |
| 1091 | |
| 1092 | bool Result |
| 1093 | = Tok.getIdentifierInfo()->getName() == PP.getLangOpts().CurrentModule; |
| 1094 | |
| 1095 | // Get ')'. |
| 1096 | PP.LexNonComment(Tok); |
| 1097 | |
| 1098 | // Ensure we have a trailing ). |
| 1099 | if (Tok.isNot(tok::r_paren)) { |
| 1100 | PP.Diag(Tok.getLocation(), diag::err_pp_missing_rparen) << II->getName(); |
| 1101 | PP.Diag(LParenLoc, diag::note_matching) << "("; |
| 1102 | return false; |
| 1103 | } |
| 1104 | |
| 1105 | return Result; |
| 1106 | } |
| 1107 | |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1108 | /// ExpandBuiltinMacro - If an identifier token is read that is to be expanded |
| 1109 | /// as a builtin macro, handle it and return the next token as 'Tok'. |
| 1110 | void Preprocessor::ExpandBuiltinMacro(Token &Tok) { |
| 1111 | // Figure out which token this is. |
| 1112 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
| 1113 | assert(II && "Can't be a macro without id info!"); |
| 1114 | |
| 1115 | // If this is an _Pragma or Microsoft __pragma directive, expand it, |
| 1116 | // invoke the pragma handler, then lex the token after it. |
| 1117 | if (II == Ident_Pragma) |
| 1118 | return Handle_Pragma(Tok); |
| 1119 | else if (II == Ident__pragma) // in non-MS mode this is null |
| 1120 | return HandleMicrosoft__pragma(Tok); |
| 1121 | |
| 1122 | ++NumBuiltinMacroExpanded; |
| 1123 | |
| 1124 | SmallString<128> TmpBuffer; |
| 1125 | llvm::raw_svector_ostream OS(TmpBuffer); |
| 1126 | |
| 1127 | // Set up the return result. |
| 1128 | Tok.setIdentifierInfo(0); |
| 1129 | Tok.clearFlag(Token::NeedsCleaning); |
| 1130 | |
| 1131 | if (II == Ident__LINE__) { |
| 1132 | // C99 6.10.8: "__LINE__: The presumed line number (within the current |
| 1133 | // source file) of the current source line (an integer constant)". This can |
| 1134 | // be affected by #line. |
| 1135 | SourceLocation Loc = Tok.getLocation(); |
| 1136 | |
| 1137 | // Advance to the location of the first _, this might not be the first byte |
| 1138 | // of the token if it starts with an escaped newline. |
| 1139 | Loc = AdvanceToTokenCharacter(Loc, 0); |
| 1140 | |
| 1141 | // One wrinkle here is that GCC expands __LINE__ to location of the *end* of |
| 1142 | // a macro expansion. This doesn't matter for object-like macros, but |
| 1143 | // can matter for a function-like macro that expands to contain __LINE__. |
| 1144 | // Skip down through expansion points until we find a file loc for the |
| 1145 | // end of the expansion history. |
| 1146 | Loc = SourceMgr.getExpansionRange(Loc).second; |
| 1147 | PresumedLoc PLoc = SourceMgr.getPresumedLoc(Loc); |
| 1148 | |
| 1149 | // __LINE__ expands to a simple numeric value. |
| 1150 | OS << (PLoc.isValid()? PLoc.getLine() : 1); |
| 1151 | Tok.setKind(tok::numeric_constant); |
| 1152 | } else if (II == Ident__FILE__ || II == Ident__BASE_FILE__) { |
| 1153 | // C99 6.10.8: "__FILE__: The presumed name of the current source file (a |
| 1154 | // character string literal)". This can be affected by #line. |
| 1155 | PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation()); |
| 1156 | |
| 1157 | // __BASE_FILE__ is a GNU extension that returns the top of the presumed |
| 1158 | // #include stack instead of the current file. |
| 1159 | if (II == Ident__BASE_FILE__ && PLoc.isValid()) { |
| 1160 | SourceLocation NextLoc = PLoc.getIncludeLoc(); |
| 1161 | while (NextLoc.isValid()) { |
| 1162 | PLoc = SourceMgr.getPresumedLoc(NextLoc); |
| 1163 | if (PLoc.isInvalid()) |
| 1164 | break; |
| 1165 | |
| 1166 | NextLoc = PLoc.getIncludeLoc(); |
| 1167 | } |
| 1168 | } |
| 1169 | |
| 1170 | // Escape this filename. Turn '\' -> '\\' '"' -> '\"' |
| 1171 | SmallString<128> FN; |
| 1172 | if (PLoc.isValid()) { |
| 1173 | FN += PLoc.getFilename(); |
| 1174 | Lexer::Stringify(FN); |
| 1175 | OS << '"' << FN.str() << '"'; |
| 1176 | } |
| 1177 | Tok.setKind(tok::string_literal); |
| 1178 | } else if (II == Ident__DATE__) { |
| 1179 | if (!DATELoc.isValid()) |
| 1180 | ComputeDATE_TIME(DATELoc, TIMELoc, *this); |
| 1181 | Tok.setKind(tok::string_literal); |
| 1182 | Tok.setLength(strlen("\"Mmm dd yyyy\"")); |
| 1183 | Tok.setLocation(SourceMgr.createExpansionLoc(DATELoc, Tok.getLocation(), |
| 1184 | Tok.getLocation(), |
| 1185 | Tok.getLength())); |
| 1186 | return; |
| 1187 | } else if (II == Ident__TIME__) { |
| 1188 | if (!TIMELoc.isValid()) |
| 1189 | ComputeDATE_TIME(DATELoc, TIMELoc, *this); |
| 1190 | Tok.setKind(tok::string_literal); |
| 1191 | Tok.setLength(strlen("\"hh:mm:ss\"")); |
| 1192 | Tok.setLocation(SourceMgr.createExpansionLoc(TIMELoc, Tok.getLocation(), |
| 1193 | Tok.getLocation(), |
| 1194 | Tok.getLength())); |
| 1195 | return; |
| 1196 | } else if (II == Ident__INCLUDE_LEVEL__) { |
| 1197 | // Compute the presumed include depth of this token. This can be affected |
| 1198 | // by GNU line markers. |
| 1199 | unsigned Depth = 0; |
| 1200 | |
| 1201 | PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation()); |
| 1202 | if (PLoc.isValid()) { |
| 1203 | PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc()); |
| 1204 | for (; PLoc.isValid(); ++Depth) |
| 1205 | PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc()); |
| 1206 | } |
| 1207 | |
| 1208 | // __INCLUDE_LEVEL__ expands to a simple numeric value. |
| 1209 | OS << Depth; |
| 1210 | Tok.setKind(tok::numeric_constant); |
| 1211 | } else if (II == Ident__TIMESTAMP__) { |
| 1212 | // MSVC, ICC, GCC, VisualAge C++ extension. The generated string should be |
| 1213 | // of the form "Ddd Mmm dd hh::mm::ss yyyy", which is returned by asctime. |
| 1214 | |
| 1215 | // Get the file that we are lexing out of. If we're currently lexing from |
| 1216 | // a macro, dig into the include stack. |
| 1217 | const FileEntry *CurFile = 0; |
| 1218 | PreprocessorLexer *TheLexer = getCurrentFileLexer(); |
| 1219 | |
| 1220 | if (TheLexer) |
| 1221 | CurFile = SourceMgr.getFileEntryForID(TheLexer->getFileID()); |
| 1222 | |
| 1223 | const char *Result; |
| 1224 | if (CurFile) { |
| 1225 | time_t TT = CurFile->getModificationTime(); |
| 1226 | struct tm *TM = localtime(&TT); |
| 1227 | Result = asctime(TM); |
| 1228 | } else { |
| 1229 | Result = "??? ??? ?? ??:??:?? ????\n"; |
| 1230 | } |
| 1231 | // Surround the string with " and strip the trailing newline. |
| 1232 | OS << '"' << StringRef(Result, strlen(Result)-1) << '"'; |
| 1233 | Tok.setKind(tok::string_literal); |
| 1234 | } else if (II == Ident__COUNTER__) { |
| 1235 | // __COUNTER__ expands to a simple numeric value. |
| 1236 | OS << CounterValue++; |
| 1237 | Tok.setKind(tok::numeric_constant); |
| 1238 | } else if (II == Ident__has_feature || |
| 1239 | II == Ident__has_extension || |
| 1240 | II == Ident__has_builtin || |
| 1241 | II == Ident__has_attribute) { |
| 1242 | // The argument to these builtins should be a parenthesized identifier. |
| 1243 | SourceLocation StartLoc = Tok.getLocation(); |
| 1244 | |
| 1245 | bool IsValid = false; |
| 1246 | IdentifierInfo *FeatureII = 0; |
| 1247 | |
| 1248 | // Read the '('. |
Andy Gibbs | 3f03b58 | 2012-11-17 19:18:27 +0000 | [diff] [blame] | 1249 | LexUnexpandedToken(Tok); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1250 | if (Tok.is(tok::l_paren)) { |
| 1251 | // Read the identifier |
Andy Gibbs | 3f03b58 | 2012-11-17 19:18:27 +0000 | [diff] [blame] | 1252 | LexUnexpandedToken(Tok); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1253 | if (Tok.is(tok::identifier) || Tok.is(tok::kw_const)) { |
| 1254 | FeatureII = Tok.getIdentifierInfo(); |
| 1255 | |
| 1256 | // Read the ')'. |
Andy Gibbs | 3f03b58 | 2012-11-17 19:18:27 +0000 | [diff] [blame] | 1257 | LexUnexpandedToken(Tok); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1258 | if (Tok.is(tok::r_paren)) |
| 1259 | IsValid = true; |
| 1260 | } |
| 1261 | } |
| 1262 | |
| 1263 | bool Value = false; |
| 1264 | if (!IsValid) |
| 1265 | Diag(StartLoc, diag::err_feature_check_malformed); |
| 1266 | else if (II == Ident__has_builtin) { |
| 1267 | // Check for a builtin is trivial. |
| 1268 | Value = FeatureII->getBuiltinID() != 0; |
| 1269 | } else if (II == Ident__has_attribute) |
| 1270 | Value = HasAttribute(FeatureII); |
| 1271 | else if (II == Ident__has_extension) |
| 1272 | Value = HasExtension(*this, FeatureII); |
| 1273 | else { |
| 1274 | assert(II == Ident__has_feature && "Must be feature check"); |
| 1275 | Value = HasFeature(*this, FeatureII); |
| 1276 | } |
| 1277 | |
| 1278 | OS << (int)Value; |
| 1279 | if (IsValid) |
| 1280 | Tok.setKind(tok::numeric_constant); |
| 1281 | } else if (II == Ident__has_include || |
| 1282 | II == Ident__has_include_next) { |
| 1283 | // The argument to these two builtins should be a parenthesized |
| 1284 | // file name string literal using angle brackets (<>) or |
| 1285 | // double-quotes (""). |
| 1286 | bool Value; |
| 1287 | if (II == Ident__has_include) |
| 1288 | Value = EvaluateHasInclude(Tok, II, *this); |
| 1289 | else |
| 1290 | Value = EvaluateHasIncludeNext(Tok, II, *this); |
| 1291 | OS << (int)Value; |
Richard Trieu | 97bc3d5 | 2012-10-22 20:28:48 +0000 | [diff] [blame] | 1292 | if (Tok.is(tok::r_paren)) |
| 1293 | Tok.setKind(tok::numeric_constant); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1294 | } else if (II == Ident__has_warning) { |
| 1295 | // The argument should be a parenthesized string literal. |
| 1296 | // The argument to these builtins should be a parenthesized identifier. |
| 1297 | SourceLocation StartLoc = Tok.getLocation(); |
| 1298 | bool IsValid = false; |
| 1299 | bool Value = false; |
| 1300 | // Read the '('. |
Andy Gibbs | 02a1768 | 2012-11-17 19:15:38 +0000 | [diff] [blame] | 1301 | LexUnexpandedToken(Tok); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1302 | do { |
Andy Gibbs | 02a1768 | 2012-11-17 19:15:38 +0000 | [diff] [blame] | 1303 | if (Tok.isNot(tok::l_paren)) { |
| 1304 | Diag(StartLoc, diag::err_warning_check_malformed); |
| 1305 | break; |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1306 | } |
Andy Gibbs | 02a1768 | 2012-11-17 19:15:38 +0000 | [diff] [blame] | 1307 | |
| 1308 | LexUnexpandedToken(Tok); |
| 1309 | std::string WarningName; |
| 1310 | SourceLocation StrStartLoc = Tok.getLocation(); |
Andy Gibbs | 97f8461 | 2012-11-17 19:16:52 +0000 | [diff] [blame] | 1311 | if (!FinishLexStringLiteral(Tok, WarningName, "'__has_warning'", |
| 1312 | /*MacroExpansion=*/false)) { |
Andy Gibbs | 02a1768 | 2012-11-17 19:15:38 +0000 | [diff] [blame] | 1313 | // Eat tokens until ')'. |
Andy Gibbs | 6d534d4 | 2012-11-17 22:17:28 +0000 | [diff] [blame] | 1314 | while (Tok.isNot(tok::r_paren) && Tok.isNot(tok::eod) && |
| 1315 | Tok.isNot(tok::eof)) |
Andy Gibbs | 02a1768 | 2012-11-17 19:15:38 +0000 | [diff] [blame] | 1316 | LexUnexpandedToken(Tok); |
| 1317 | break; |
| 1318 | } |
| 1319 | |
| 1320 | // Is the end a ')'? |
| 1321 | if (!(IsValid = Tok.is(tok::r_paren))) { |
| 1322 | Diag(StartLoc, diag::err_warning_check_malformed); |
| 1323 | break; |
| 1324 | } |
| 1325 | |
| 1326 | if (WarningName.size() < 3 || WarningName[0] != '-' || |
| 1327 | WarningName[1] != 'W') { |
| 1328 | Diag(StrStartLoc, diag::warn_has_warning_invalid_option); |
| 1329 | break; |
| 1330 | } |
| 1331 | |
| 1332 | // Finally, check if the warning flags maps to a diagnostic group. |
| 1333 | // We construct a SmallVector here to talk to getDiagnosticIDs(). |
| 1334 | // Although we don't use the result, this isn't a hot path, and not |
| 1335 | // worth special casing. |
| 1336 | llvm::SmallVector<diag::kind, 10> Diags; |
| 1337 | Value = !getDiagnostics().getDiagnosticIDs()-> |
| 1338 | getDiagnosticsInGroup(WarningName.substr(2), Diags); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1339 | } while (false); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1340 | |
| 1341 | OS << (int)Value; |
Andy Gibbs | b9971ba | 2012-11-17 19:14:53 +0000 | [diff] [blame] | 1342 | if (IsValid) |
| 1343 | Tok.setKind(tok::numeric_constant); |
Douglas Gregor | b09de51 | 2012-09-25 15:44:52 +0000 | [diff] [blame] | 1344 | } else if (II == Ident__building_module) { |
| 1345 | // The argument to this builtin should be an identifier. The |
| 1346 | // builtin evaluates to 1 when that identifier names the module we are |
| 1347 | // currently building. |
| 1348 | OS << (int)EvaluateBuildingModule(Tok, II, *this); |
| 1349 | Tok.setKind(tok::numeric_constant); |
| 1350 | } else if (II == Ident__MODULE__) { |
| 1351 | // The current module as an identifier. |
| 1352 | OS << getLangOpts().CurrentModule; |
| 1353 | IdentifierInfo *ModuleII = getIdentifierInfo(getLangOpts().CurrentModule); |
| 1354 | Tok.setIdentifierInfo(ModuleII); |
| 1355 | Tok.setKind(ModuleII->getTokenID()); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1356 | } else { |
| 1357 | llvm_unreachable("Unknown identifier!"); |
| 1358 | } |
Dmitri Gribenko | 374b383 | 2012-09-24 21:07:17 +0000 | [diff] [blame] | 1359 | CreateString(OS.str(), Tok, Tok.getLocation(), Tok.getLocation()); |
Joao Matos | 3e1ec72 | 2012-08-31 21:34:27 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
| 1362 | void Preprocessor::markMacroAsUsed(MacroInfo *MI) { |
| 1363 | // If the 'used' status changed, and the macro requires 'unused' warning, |
| 1364 | // remove its SourceLocation from the warn-for-unused-macro locations. |
| 1365 | if (MI->isWarnIfUnused() && !MI->isUsed()) |
| 1366 | WarnUnusedMacroLocs.erase(MI->getDefinitionLoc()); |
| 1367 | MI->setIsUsed(true); |
| 1368 | } |