Chris Lattner | 8962015 | 2008-03-09 03:13:06 +0000 | [diff] [blame] | 1 | //===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===// |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 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 | //===----------------------------------------------------------------------===// |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 9 | /// |
| 10 | /// \file |
| 11 | /// \brief Implements # directive processing for the Preprocessor. |
| 12 | /// |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Lex/Preprocessor.h" |
Chris Lattner | 710bb87 | 2009-11-30 04:18:44 +0000 | [diff] [blame] | 16 | #include "clang/Basic/FileManager.h" |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 17 | #include "clang/Basic/SourceManager.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 18 | #include "clang/Lex/CodeCompletionHandler.h" |
| 19 | #include "clang/Lex/HeaderSearch.h" |
| 20 | #include "clang/Lex/LexDiagnostic.h" |
| 21 | #include "clang/Lex/LiteralSupport.h" |
| 22 | #include "clang/Lex/MacroInfo.h" |
| 23 | #include "clang/Lex/ModuleLoader.h" |
| 24 | #include "clang/Lex/Pragma.h" |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/APInt.h" |
Douglas Gregor | 41e115a | 2011-11-30 18:02:36 +0000 | [diff] [blame] | 26 | #include "llvm/Support/ErrorHandling.h" |
Aaron Ballman | 6ce0000 | 2013-01-16 19:32:21 +0000 | [diff] [blame] | 27 | #include "llvm/Support/SaveAndRestore.h" |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 28 | using namespace clang; |
| 29 | |
| 30 | //===----------------------------------------------------------------------===// |
| 31 | // Utility Methods for Preprocessor Directive Handling. |
| 32 | //===----------------------------------------------------------------------===// |
| 33 | |
Chris Lattner | c0a585d | 2010-08-17 15:55:45 +0000 | [diff] [blame] | 34 | MacroInfo *Preprocessor::AllocateMacroInfo() { |
Ted Kremenek | c8456f8 | 2010-10-19 22:15:20 +0000 | [diff] [blame] | 35 | MacroInfoChain *MIChain; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 36 | |
Ted Kremenek | c8456f8 | 2010-10-19 22:15:20 +0000 | [diff] [blame] | 37 | if (MICache) { |
| 38 | MIChain = MICache; |
| 39 | MICache = MICache->Next; |
Ted Kremenek | 1f1e4bd | 2010-10-19 18:16:54 +0000 | [diff] [blame] | 40 | } |
Ted Kremenek | c8456f8 | 2010-10-19 22:15:20 +0000 | [diff] [blame] | 41 | else { |
| 42 | MIChain = BP.Allocate<MacroInfoChain>(); |
| 43 | } |
| 44 | |
| 45 | MIChain->Next = MIChainHead; |
| 46 | MIChain->Prev = 0; |
| 47 | if (MIChainHead) |
| 48 | MIChainHead->Prev = MIChain; |
| 49 | MIChainHead = MIChain; |
| 50 | |
| 51 | return &(MIChain->MI); |
Chris Lattner | c0a585d | 2010-08-17 15:55:45 +0000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | MacroInfo *Preprocessor::AllocateMacroInfo(SourceLocation L) { |
| 55 | MacroInfo *MI = AllocateMacroInfo(); |
Ted Kremenek | 6c7ea11 | 2008-12-15 19:56:42 +0000 | [diff] [blame] | 56 | new (MI) MacroInfo(L); |
| 57 | return MI; |
| 58 | } |
| 59 | |
Argyrios Kyrtzidis | 4f32da1 | 2013-03-22 21:12:51 +0000 | [diff] [blame] | 60 | MacroInfo *Preprocessor::AllocateDeserializedMacroInfo(SourceLocation L, |
| 61 | unsigned SubModuleID) { |
| 62 | LLVM_STATIC_ASSERT(llvm::AlignOf<MacroInfo>::Alignment >= sizeof(SubModuleID), |
| 63 | "alignment for MacroInfo is less than the ID"); |
| 64 | MacroInfo *MI = |
| 65 | (MacroInfo*)BP.Allocate(sizeof(MacroInfo) + sizeof(SubModuleID), |
| 66 | llvm::AlignOf<MacroInfo>::Alignment); |
| 67 | new (MI) MacroInfo(L); |
| 68 | MI->FromASTFile = true; |
| 69 | MI->setOwningModuleID(SubModuleID); |
| 70 | return MI; |
| 71 | } |
| 72 | |
Argyrios Kyrtzidis | b6210df | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 73 | DefMacroDirective * |
| 74 | Preprocessor::AllocateDefMacroDirective(MacroInfo *MI, SourceLocation Loc, |
| 75 | bool isImported) { |
| 76 | DefMacroDirective *MD = BP.Allocate<DefMacroDirective>(); |
| 77 | new (MD) DefMacroDirective(MI, Loc, isImported); |
| 78 | return MD; |
| 79 | } |
| 80 | |
| 81 | UndefMacroDirective * |
| 82 | Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) { |
| 83 | UndefMacroDirective *MD = BP.Allocate<UndefMacroDirective>(); |
| 84 | new (MD) UndefMacroDirective(UndefLoc); |
| 85 | return MD; |
| 86 | } |
| 87 | |
| 88 | VisibilityMacroDirective * |
| 89 | Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc, |
| 90 | bool isPublic) { |
| 91 | VisibilityMacroDirective *MD = BP.Allocate<VisibilityMacroDirective>(); |
| 92 | new (MD) VisibilityMacroDirective(Loc, isPublic); |
Argyrios Kyrtzidis | 09c9e81 | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 93 | return MD; |
Chris Lattner | c0a585d | 2010-08-17 15:55:45 +0000 | [diff] [blame] | 94 | } |
| 95 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 96 | /// \brief Release the specified MacroInfo to be reused for allocating |
| 97 | /// new MacroInfo objects. |
Chris Lattner | 66b67d2 | 2010-08-18 16:08:51 +0000 | [diff] [blame] | 98 | void Preprocessor::ReleaseMacroInfo(MacroInfo *MI) { |
Ted Kremenek | c8456f8 | 2010-10-19 22:15:20 +0000 | [diff] [blame] | 99 | MacroInfoChain *MIChain = (MacroInfoChain*) MI; |
| 100 | if (MacroInfoChain *Prev = MIChain->Prev) { |
| 101 | MacroInfoChain *Next = MIChain->Next; |
| 102 | Prev->Next = Next; |
| 103 | if (Next) |
| 104 | Next->Prev = Prev; |
| 105 | } |
| 106 | else { |
| 107 | assert(MIChainHead == MIChain); |
| 108 | MIChainHead = MIChain->Next; |
| 109 | MIChainHead->Prev = 0; |
| 110 | } |
| 111 | MIChain->Next = MICache; |
| 112 | MICache = MIChain; |
Chris Lattner | 666f7a4 | 2009-02-20 22:19:20 +0000 | [diff] [blame] | 113 | |
Ted Kremenek | c8456f8 | 2010-10-19 22:15:20 +0000 | [diff] [blame] | 114 | MI->Destroy(); |
| 115 | } |
Chris Lattner | 666f7a4 | 2009-02-20 22:19:20 +0000 | [diff] [blame] | 116 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 117 | /// \brief Read and discard all tokens remaining on the current line until |
| 118 | /// the tok::eod token is found. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 119 | void Preprocessor::DiscardUntilEndOfDirective() { |
| 120 | Token Tmp; |
| 121 | do { |
| 122 | LexUnexpandedToken(Tmp); |
Peter Collingbourne | f29ce97 | 2011-02-22 13:49:06 +0000 | [diff] [blame] | 123 | assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens"); |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 124 | } while (Tmp.isNot(tok::eod)); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 125 | } |
| 126 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 127 | /// \brief Lex and validate a macro name, which occurs after a |
| 128 | /// \#define or \#undef. |
| 129 | /// |
| 130 | /// This sets the token kind to eod and discards the rest |
| 131 | /// of the macro line if the macro name is invalid. \p isDefineUndef is 1 if |
| 132 | /// this is due to a a \#define, 2 if \#undef directive, 0 if it is something |
| 133 | /// else (e.g. \#ifdef). |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 134 | void Preprocessor::ReadMacroName(Token &MacroNameTok, char isDefineUndef) { |
| 135 | // Read the token, don't allow macro expansion on it. |
| 136 | LexUnexpandedToken(MacroNameTok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 137 | |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 138 | if (MacroNameTok.is(tok::code_completion)) { |
| 139 | if (CodeComplete) |
| 140 | CodeComplete->CodeCompleteMacroName(isDefineUndef == 1); |
Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 141 | setCodeCompletionReached(); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 142 | LexUnexpandedToken(MacroNameTok); |
Douglas Gregor | 1278510 | 2010-08-24 20:21:13 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 145 | // Missing macro name? |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 146 | if (MacroNameTok.is(tok::eod)) { |
Chris Lattner | 907dfe9 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 147 | Diag(MacroNameTok, diag::err_pp_missing_macro_name); |
| 148 | return; |
| 149 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 150 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 151 | IdentifierInfo *II = MacroNameTok.getIdentifierInfo(); |
| 152 | if (II == 0) { |
Douglas Gregor | dc970f0 | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 153 | bool Invalid = false; |
| 154 | std::string Spelling = getSpelling(MacroNameTok, &Invalid); |
| 155 | if (Invalid) |
| 156 | return; |
Nico Weber | 2e68620 | 2012-02-29 22:54:43 +0000 | [diff] [blame] | 157 | |
Chris Lattner | 77c76ae | 2008-12-13 20:12:40 +0000 | [diff] [blame] | 158 | const IdentifierInfo &Info = Identifiers.get(Spelling); |
Nico Weber | 2e68620 | 2012-02-29 22:54:43 +0000 | [diff] [blame] | 159 | |
| 160 | // Allow #defining |and| and friends in microsoft mode. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 161 | if (Info.isCPlusPlusOperatorKeyword() && getLangOpts().MicrosoftMode) { |
Nico Weber | 2e68620 | 2012-02-29 22:54:43 +0000 | [diff] [blame] | 162 | MacroNameTok.setIdentifierInfo(getIdentifierInfo(Spelling)); |
| 163 | return; |
| 164 | } |
| 165 | |
Chris Lattner | 77c76ae | 2008-12-13 20:12:40 +0000 | [diff] [blame] | 166 | if (Info.isCPlusPlusOperatorKeyword()) |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 167 | // C++ 2.5p2: Alternative tokens behave the same as its primary token |
| 168 | // except for their spellings. |
Chris Lattner | 97b8e84 | 2008-11-18 08:02:48 +0000 | [diff] [blame] | 169 | Diag(MacroNameTok, diag::err_pp_operator_used_as_macro_name) << Spelling; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 170 | else |
| 171 | Diag(MacroNameTok, diag::err_pp_macro_not_identifier); |
| 172 | // Fall through on error. |
| 173 | } else if (isDefineUndef && II->getPPKeywordID() == tok::pp_defined) { |
Richard Smith | 7b24254 | 2013-03-06 00:46:00 +0000 | [diff] [blame] | 174 | // Error if defining "defined": C99 6.10.8/4, C++ [cpp.predefined]p4. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 175 | Diag(MacroNameTok, diag::err_defined_macro_name); |
Richard Smith | 7b24254 | 2013-03-06 00:46:00 +0000 | [diff] [blame] | 176 | } else if (isDefineUndef == 2 && II->hasMacroDefinition() && |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 177 | getMacroInfo(II)->isBuiltinMacro()) { |
Richard Smith | 7b24254 | 2013-03-06 00:46:00 +0000 | [diff] [blame] | 178 | // Warn if undefining "__LINE__" and other builtins, per C99 6.10.8/4 |
| 179 | // and C++ [cpp.predefined]p4], but allow it as an extension. |
| 180 | Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro); |
| 181 | return; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 182 | } else { |
| 183 | // Okay, we got a good identifier node. Return it. |
| 184 | return; |
| 185 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 186 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 187 | // Invalid macro name, read and discard the rest of the line. Then set the |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 188 | // token kind to tok::eod. |
| 189 | MacroNameTok.setKind(tok::eod); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 190 | return DiscardUntilEndOfDirective(); |
| 191 | } |
| 192 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 193 | /// \brief Ensure that the next token is a tok::eod token. |
| 194 | /// |
| 195 | /// If not, emit a diagnostic and consume up until the eod. If EnableMacros is |
Chris Lattner | 0003c27 | 2009-04-17 23:30:53 +0000 | [diff] [blame] | 196 | /// true, then we consider macros that expand to zero tokens as being ok. |
| 197 | void Preprocessor::CheckEndOfDirective(const char *DirType, bool EnableMacros) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 198 | Token Tmp; |
Chris Lattner | 0003c27 | 2009-04-17 23:30:53 +0000 | [diff] [blame] | 199 | // Lex unexpanded tokens for most directives: macros might expand to zero |
| 200 | // tokens, causing us to miss diagnosing invalid lines. Some directives (like |
| 201 | // #line) allow empty macros. |
| 202 | if (EnableMacros) |
| 203 | Lex(Tmp); |
| 204 | else |
| 205 | LexUnexpandedToken(Tmp); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 206 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 207 | // There should be no tokens after the directive, but we allow them as an |
| 208 | // extension. |
| 209 | while (Tmp.is(tok::comment)) // Skip comments in -C mode. |
| 210 | LexUnexpandedToken(Tmp); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 211 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 212 | if (Tmp.isNot(tok::eod)) { |
Chris Lattner | 825676a | 2009-04-14 05:15:20 +0000 | [diff] [blame] | 213 | // Add a fixit in GNU/C99/C++ mode. Don't offer a fixit for strict-C89, |
Peter Collingbourne | 2c9f966 | 2011-02-22 13:49:00 +0000 | [diff] [blame] | 214 | // or if this is a macro-style preprocessing directive, because it is more |
| 215 | // trouble than it is worth to insert /**/ and check that there is no /**/ |
| 216 | // in the range also. |
Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 217 | FixItHint Hint; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 218 | if ((LangOpts.GNUMode || LangOpts.C99 || LangOpts.CPlusPlus) && |
Peter Collingbourne | 2c9f966 | 2011-02-22 13:49:00 +0000 | [diff] [blame] | 219 | !CurTokenLexer) |
Douglas Gregor | a771f46 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 220 | Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//"); |
| 221 | Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 222 | DiscardUntilEndOfDirective(); |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | |
| 227 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 228 | /// SkipExcludedConditionalBlock - We just read a \#if or related directive and |
| 229 | /// decided that the subsequent tokens are in the \#if'd out portion of the |
| 230 | /// file. Lex the rest of the file, until we see an \#endif. If |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 231 | /// FoundNonSkipPortion is true, then we have already emitted code for part of |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 232 | /// this \#if directive, so \#else/\#elif blocks should never be entered. |
| 233 | /// If ElseOk is true, then \#else directives are ok, if not, then we have |
| 234 | /// already seen one so a \#else directive is a duplicate. When this returns, |
| 235 | /// the caller can lex the first valid token. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 236 | void Preprocessor::SkipExcludedConditionalBlock(SourceLocation IfTokenLoc, |
| 237 | bool FoundNonSkipPortion, |
Argyrios Kyrtzidis | 18bcfd5 | 2011-09-27 17:32:05 +0000 | [diff] [blame] | 238 | bool FoundElse, |
| 239 | SourceLocation ElseLoc) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 240 | ++NumSkipped; |
Ted Kremenek | 6b73291 | 2008-11-18 01:04:47 +0000 | [diff] [blame] | 241 | assert(CurTokenLexer == 0 && CurPPLexer && "Lexing a macro, not a file?"); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 242 | |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 243 | CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false, |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 244 | FoundNonSkipPortion, FoundElse); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 245 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 246 | if (CurPTHLexer) { |
| 247 | PTHSkipExcludedConditionalBlock(); |
| 248 | return; |
| 249 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 250 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 251 | // Enter raw mode to disable identifier lookup (and thus macro expansion), |
| 252 | // disabling warnings, etc. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 253 | CurPPLexer->LexingRawMode = true; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 254 | Token Tok; |
| 255 | while (1) { |
Chris Lattner | f406b24 | 2010-01-18 22:33:01 +0000 | [diff] [blame] | 256 | CurLexer->Lex(Tok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 257 | |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 258 | if (Tok.is(tok::code_completion)) { |
| 259 | if (CodeComplete) |
| 260 | CodeComplete->CodeCompleteInConditionalExclusion(); |
Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 261 | setCodeCompletionReached(); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 262 | continue; |
| 263 | } |
| 264 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 265 | // If this is the end of the buffer, we have an error. |
| 266 | if (Tok.is(tok::eof)) { |
| 267 | // Emit errors for each unterminated conditional on the stack, including |
| 268 | // the current one. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 269 | while (!CurPPLexer->ConditionalStack.empty()) { |
Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 270 | if (CurLexer->getFileLoc() != CodeCompletionFileLoc) |
Douglas Gregor | 02690ba | 2010-08-12 17:04:55 +0000 | [diff] [blame] | 271 | Diag(CurPPLexer->ConditionalStack.back().IfLoc, |
| 272 | diag::err_pp_unterminated_conditional); |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 273 | CurPPLexer->ConditionalStack.pop_back(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 276 | // Just return and let the caller lex after this #include. |
| 277 | break; |
| 278 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 279 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 280 | // If this token is not a preprocessor directive, just skip it. |
| 281 | if (Tok.isNot(tok::hash) || !Tok.isAtStartOfLine()) |
| 282 | continue; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 283 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 284 | // We just parsed a # character at the start of a line, so we're in |
| 285 | // directive mode. Tell the lexer this so any newlines we see will be |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 286 | // converted into an EOD token (this terminates the macro). |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 287 | CurPPLexer->ParsingPreprocessorDirective = true; |
Jordan Rose | 176057b | 2013-02-22 00:32:00 +0000 | [diff] [blame] | 288 | if (CurLexer) CurLexer->SetKeepWhitespaceMode(false); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 289 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 290 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 291 | // Read the next token, the directive flavor. |
| 292 | LexUnexpandedToken(Tok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 293 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 294 | // If this isn't an identifier directive (e.g. is "# 1\n" or "#\n", or |
| 295 | // something bogus), skip it. |
Abramo Bagnara | ea4f7c7 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 296 | if (Tok.isNot(tok::raw_identifier)) { |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 297 | CurPPLexer->ParsingPreprocessorDirective = false; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 298 | // Restore comment saving mode. |
Jordan Rose | cb8a1ac | 2013-02-21 18:53:19 +0000 | [diff] [blame] | 299 | if (CurLexer) CurLexer->resetExtendedTokenMode(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 300 | continue; |
| 301 | } |
| 302 | |
| 303 | // If the first letter isn't i or e, it isn't intesting to us. We know that |
| 304 | // this is safe in the face of spelling differences, because there is no way |
| 305 | // to spell an i/e in a strange way that is another letter. Skipping this |
| 306 | // allows us to avoid looking up the identifier info for #define/#undef and |
| 307 | // other common directives. |
Abramo Bagnara | ea4f7c7 | 2010-12-22 08:23:18 +0000 | [diff] [blame] | 308 | const char *RawCharData = Tok.getRawIdentifierData(); |
| 309 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 310 | char FirstChar = RawCharData[0]; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 311 | if (FirstChar >= 'a' && FirstChar <= 'z' && |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 312 | FirstChar != 'i' && FirstChar != 'e') { |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 313 | CurPPLexer->ParsingPreprocessorDirective = false; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 314 | // Restore comment saving mode. |
Jordan Rose | cb8a1ac | 2013-02-21 18:53:19 +0000 | [diff] [blame] | 315 | if (CurLexer) CurLexer->resetExtendedTokenMode(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 316 | continue; |
| 317 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 318 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 319 | // Get the identifier name without trigraphs or embedded newlines. Note |
| 320 | // that we can't use Tok.getIdentifierInfo() because its lookup is disabled |
| 321 | // when skipping. |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 322 | char DirectiveBuf[20]; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 323 | StringRef Directive; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 324 | if (!Tok.needsCleaning() && Tok.getLength() < 20) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 325 | Directive = StringRef(RawCharData, Tok.getLength()); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 326 | } else { |
| 327 | std::string DirectiveStr = getSpelling(Tok); |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 328 | unsigned IdLen = DirectiveStr.size(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 329 | if (IdLen >= 20) { |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 330 | CurPPLexer->ParsingPreprocessorDirective = false; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 331 | // Restore comment saving mode. |
Jordan Rose | cb8a1ac | 2013-02-21 18:53:19 +0000 | [diff] [blame] | 332 | if (CurLexer) CurLexer->resetExtendedTokenMode(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 333 | continue; |
| 334 | } |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 335 | memcpy(DirectiveBuf, &DirectiveStr[0], IdLen); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 336 | Directive = StringRef(DirectiveBuf, IdLen); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 337 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 338 | |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 339 | if (Directive.startswith("if")) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 340 | StringRef Sub = Directive.substr(2); |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 341 | if (Sub.empty() || // "if" |
| 342 | Sub == "def" || // "ifdef" |
| 343 | Sub == "ndef") { // "ifndef" |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 344 | // We know the entire #if/#ifdef/#ifndef block will be skipped, don't |
| 345 | // bother parsing the condition. |
| 346 | DiscardUntilEndOfDirective(); |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 347 | CurPPLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true, |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 348 | /*foundnonskip*/false, |
Chandler Carruth | 540960f | 2011-01-03 17:40:17 +0000 | [diff] [blame] | 349 | /*foundelse*/false); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 350 | } |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 351 | } else if (Directive[0] == 'e') { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 352 | StringRef Sub = Directive.substr(1); |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 353 | if (Sub == "ndif") { // "endif" |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 354 | PPConditionalInfo CondInfo; |
| 355 | CondInfo.WasSkipping = true; // Silence bogus warning. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 356 | bool InCond = CurPPLexer->popConditionalLevel(CondInfo); |
Jeffrey Yasskin | b332153 | 2010-12-23 01:01:28 +0000 | [diff] [blame] | 357 | (void)InCond; // Silence warning in no-asserts mode. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 358 | assert(!InCond && "Can't be skipping if not in a conditional!"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 359 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 360 | // If we popped the outermost skipping block, we're done skipping! |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 361 | if (!CondInfo.WasSkipping) { |
Richard Smith | 87d8fb9 | 2012-06-24 23:56:26 +0000 | [diff] [blame] | 362 | // Restore the value of LexingRawMode so that trailing comments |
| 363 | // are handled correctly, if we've reached the outermost block. |
| 364 | CurPPLexer->LexingRawMode = false; |
Richard Smith | d012457 | 2012-06-21 00:35:03 +0000 | [diff] [blame] | 365 | CheckEndOfDirective("endif"); |
Richard Smith | 87d8fb9 | 2012-06-24 23:56:26 +0000 | [diff] [blame] | 366 | CurPPLexer->LexingRawMode = true; |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 367 | if (Callbacks) |
| 368 | Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 369 | break; |
Richard Smith | d012457 | 2012-06-21 00:35:03 +0000 | [diff] [blame] | 370 | } else { |
| 371 | DiscardUntilEndOfDirective(); |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 372 | } |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 373 | } else if (Sub == "lse") { // "else". |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 374 | // #else directive in a skipping conditional. If not in some other |
| 375 | // skipping conditional, and if #else hasn't already been seen, enter it |
| 376 | // as a non-skipping conditional. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 377 | PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 378 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 379 | // If this is a #else with a #else before it, report the error. |
| 380 | if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 381 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 382 | // Note that we've seen a #else in this conditional. |
| 383 | CondInfo.FoundElse = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 384 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 385 | // If the conditional is at the top level, and the #if block wasn't |
| 386 | // entered, enter the #else block now. |
| 387 | if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) { |
| 388 | CondInfo.FoundNonSkip = true; |
Richard Smith | 87d8fb9 | 2012-06-24 23:56:26 +0000 | [diff] [blame] | 389 | // Restore the value of LexingRawMode so that trailing comments |
| 390 | // are handled correctly. |
| 391 | CurPPLexer->LexingRawMode = false; |
Argyrios Kyrtzidis | 627c14a | 2011-05-21 04:26:04 +0000 | [diff] [blame] | 392 | CheckEndOfDirective("else"); |
Richard Smith | 87d8fb9 | 2012-06-24 23:56:26 +0000 | [diff] [blame] | 393 | CurPPLexer->LexingRawMode = true; |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 394 | if (Callbacks) |
| 395 | Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 396 | break; |
Argyrios Kyrtzidis | 627c14a | 2011-05-21 04:26:04 +0000 | [diff] [blame] | 397 | } else { |
| 398 | DiscardUntilEndOfDirective(); // C99 6.10p4. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 399 | } |
Benjamin Kramer | 14488464 | 2009-12-31 13:32:38 +0000 | [diff] [blame] | 400 | } else if (Sub == "lif") { // "elif". |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 401 | PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 402 | |
| 403 | bool ShouldEnter; |
Chandler Carruth | 540960f | 2011-01-03 17:40:17 +0000 | [diff] [blame] | 404 | const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 405 | // If this is in a skipping block or if we're already handled this #if |
| 406 | // block, don't bother parsing the condition. |
| 407 | if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) { |
| 408 | DiscardUntilEndOfDirective(); |
| 409 | ShouldEnter = false; |
| 410 | } else { |
| 411 | // Restore the value of LexingRawMode so that identifiers are |
| 412 | // looked up, etc, inside the #elif expression. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 413 | assert(CurPPLexer->LexingRawMode && "We have to be skipping here!"); |
| 414 | CurPPLexer->LexingRawMode = false; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 415 | IdentifierInfo *IfNDefMacro = 0; |
| 416 | ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro); |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 417 | CurPPLexer->LexingRawMode = true; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 418 | } |
Chandler Carruth | 540960f | 2011-01-03 17:40:17 +0000 | [diff] [blame] | 419 | const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 420 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 421 | // If this is a #elif with a #else before it, report the error. |
| 422 | if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 423 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 424 | // If this condition is true, enter it! |
| 425 | if (ShouldEnter) { |
| 426 | CondInfo.FoundNonSkip = true; |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 427 | if (Callbacks) |
| 428 | Callbacks->Elif(Tok.getLocation(), |
| 429 | SourceRange(ConditionalBegin, ConditionalEnd), |
| 430 | CondInfo.IfLoc); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 431 | break; |
| 432 | } |
| 433 | } |
| 434 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 435 | |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 436 | CurPPLexer->ParsingPreprocessorDirective = false; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 437 | // Restore comment saving mode. |
Jordan Rose | cb8a1ac | 2013-02-21 18:53:19 +0000 | [diff] [blame] | 438 | if (CurLexer) CurLexer->resetExtendedTokenMode(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | // Finally, if we are out of the conditional (saw an #endif or ran off the end |
| 442 | // of the file, just stop skipping and return to lexing whatever came after |
| 443 | // the #if block. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 444 | CurPPLexer->LexingRawMode = false; |
Argyrios Kyrtzidis | 18bcfd5 | 2011-09-27 17:32:05 +0000 | [diff] [blame] | 445 | |
| 446 | if (Callbacks) { |
| 447 | SourceLocation BeginLoc = ElseLoc.isValid() ? ElseLoc : IfTokenLoc; |
| 448 | Callbacks->SourceRangeSkipped(SourceRange(BeginLoc, Tok.getLocation())); |
| 449 | } |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 450 | } |
| 451 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 452 | void Preprocessor::PTHSkipExcludedConditionalBlock() { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 453 | |
| 454 | while (1) { |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 455 | assert(CurPTHLexer); |
| 456 | assert(CurPTHLexer->LexingRawMode == false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 457 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 458 | // Skip to the next '#else', '#elif', or #endif. |
| 459 | if (CurPTHLexer->SkipBlock()) { |
| 460 | // We have reached an #endif. Both the '#' and 'endif' tokens |
| 461 | // have been consumed by the PTHLexer. Just pop off the condition level. |
| 462 | PPConditionalInfo CondInfo; |
| 463 | bool InCond = CurPTHLexer->popConditionalLevel(CondInfo); |
Jeffrey Yasskin | b332153 | 2010-12-23 01:01:28 +0000 | [diff] [blame] | 464 | (void)InCond; // Silence warning in no-asserts mode. |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 465 | assert(!InCond && "Can't be skipping if not in a conditional!"); |
| 466 | break; |
| 467 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 468 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 469 | // We have reached a '#else' or '#elif'. Lex the next token to get |
| 470 | // the directive flavor. |
| 471 | Token Tok; |
| 472 | LexUnexpandedToken(Tok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 473 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 474 | // We can actually look up the IdentifierInfo here since we aren't in |
| 475 | // raw mode. |
| 476 | tok::PPKeywordKind K = Tok.getIdentifierInfo()->getPPKeywordID(); |
| 477 | |
| 478 | if (K == tok::pp_else) { |
| 479 | // #else: Enter the else condition. We aren't in a nested condition |
| 480 | // since we skip those. We're always in the one matching the last |
| 481 | // blocked we skipped. |
| 482 | PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel(); |
| 483 | // Note that we've seen a #else in this conditional. |
| 484 | CondInfo.FoundElse = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 485 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 486 | // If the #if block wasn't entered then enter the #else block now. |
| 487 | if (!CondInfo.FoundNonSkip) { |
| 488 | CondInfo.FoundNonSkip = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 489 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 490 | // Scan until the eod token. |
Ted Kremenek | 1b18ad2 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 491 | CurPTHLexer->ParsingPreprocessorDirective = true; |
Daniel Dunbar | 2cba6be | 2009-04-13 17:57:49 +0000 | [diff] [blame] | 492 | DiscardUntilEndOfDirective(); |
Ted Kremenek | 1b18ad2 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 493 | CurPTHLexer->ParsingPreprocessorDirective = false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 494 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 495 | break; |
| 496 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 497 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 498 | // Otherwise skip this block. |
| 499 | continue; |
| 500 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 501 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 502 | assert(K == tok::pp_elif); |
| 503 | PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel(); |
| 504 | |
| 505 | // If this is a #elif with a #else before it, report the error. |
| 506 | if (CondInfo.FoundElse) |
| 507 | Diag(Tok, diag::pp_err_elif_after_else); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 508 | |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 509 | // If this is in a skipping block or if we're already handled this #if |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 510 | // block, don't bother parsing the condition. We just skip this block. |
Ted Kremenek | 56572ab | 2008-12-12 18:34:08 +0000 | [diff] [blame] | 511 | if (CondInfo.FoundNonSkip) |
| 512 | continue; |
| 513 | |
| 514 | // Evaluate the condition of the #elif. |
| 515 | IdentifierInfo *IfNDefMacro = 0; |
| 516 | CurPTHLexer->ParsingPreprocessorDirective = true; |
| 517 | bool ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro); |
| 518 | CurPTHLexer->ParsingPreprocessorDirective = false; |
| 519 | |
| 520 | // If this condition is true, enter it! |
| 521 | if (ShouldEnter) { |
| 522 | CondInfo.FoundNonSkip = true; |
| 523 | break; |
| 524 | } |
| 525 | |
| 526 | // Otherwise, skip this block and go to the next one. |
| 527 | continue; |
| 528 | } |
| 529 | } |
| 530 | |
Chandler Carruth | 3cc331a | 2011-03-16 18:34:36 +0000 | [diff] [blame] | 531 | const FileEntry *Preprocessor::LookupFile( |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 532 | StringRef Filename, |
Chandler Carruth | 3cc331a | 2011-03-16 18:34:36 +0000 | [diff] [blame] | 533 | bool isAngled, |
| 534 | const DirectoryLookup *FromDir, |
| 535 | const DirectoryLookup *&CurDir, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 536 | SmallVectorImpl<char> *SearchPath, |
Douglas Gregor | 97eec24 | 2011-09-15 22:00:41 +0000 | [diff] [blame] | 537 | SmallVectorImpl<char> *RelativePath, |
Douglas Gregor | de3ef50 | 2011-11-30 23:21:26 +0000 | [diff] [blame] | 538 | Module **SuggestedModule, |
Douglas Gregor | 8ad31c2 | 2011-11-20 17:46:46 +0000 | [diff] [blame] | 539 | bool SkipCache) { |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 540 | // If the header lookup mechanism may be relative to the current file, pass in |
| 541 | // info about where the current file is. |
Douglas Gregor | 618e64a | 2010-08-08 07:49:23 +0000 | [diff] [blame] | 542 | const FileEntry *CurFileEnt = 0; |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 543 | if (!FromDir) { |
Chris Lattner | d32480d | 2009-01-17 06:22:33 +0000 | [diff] [blame] | 544 | FileID FID = getCurrentFileLexer()->getFileID(); |
Douglas Gregor | 618e64a | 2010-08-08 07:49:23 +0000 | [diff] [blame] | 545 | CurFileEnt = SourceMgr.getFileEntryForID(FID); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 546 | |
Chris Lattner | 022923a | 2009-02-04 19:45:07 +0000 | [diff] [blame] | 547 | // If there is no file entry associated with this file, it must be the |
| 548 | // predefines buffer. Any other file is not lexed with a normal lexer, so |
Douglas Gregor | 618e64a | 2010-08-08 07:49:23 +0000 | [diff] [blame] | 549 | // it won't be scanned for preprocessor directives. If we have the |
| 550 | // predefines buffer, resolve #include references (which come from the |
| 551 | // -include command line argument) as if they came from the main file, this |
| 552 | // affects file lookup etc. |
| 553 | if (CurFileEnt == 0) { |
Chris Lattner | 022923a | 2009-02-04 19:45:07 +0000 | [diff] [blame] | 554 | FID = SourceMgr.getMainFileID(); |
| 555 | CurFileEnt = SourceMgr.getFileEntryForID(FID); |
| 556 | } |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 557 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 558 | |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 559 | // Do a standard file entry lookup. |
| 560 | CurDir = CurDirLookup; |
Chandler Carruth | 3cc331a | 2011-03-16 18:34:36 +0000 | [diff] [blame] | 561 | const FileEntry *FE = HeaderInfo.LookupFile( |
Manuel Klimek | 0c69fd2 | 2011-04-26 21:50:03 +0000 | [diff] [blame] | 562 | Filename, isAngled, FromDir, CurDir, CurFileEnt, |
Douglas Gregor | 8ad31c2 | 2011-11-20 17:46:46 +0000 | [diff] [blame] | 563 | SearchPath, RelativePath, SuggestedModule, SkipCache); |
Chris Lattner | fde8535 | 2010-01-22 00:14:44 +0000 | [diff] [blame] | 564 | if (FE) return FE; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 565 | |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 566 | // Otherwise, see if this is a subframework header. If so, this is relative |
| 567 | // to one of the headers on the #include stack. Walk the list of the current |
| 568 | // headers on the #include stack and pass them to HeaderInfo. |
Ted Kremenek | 6bc5f3e | 2008-11-20 16:19:53 +0000 | [diff] [blame] | 569 | if (IsFileLexer()) { |
Ted Kremenek | 4524521 | 2008-11-19 21:57:25 +0000 | [diff] [blame] | 570 | if ((CurFileEnt = SourceMgr.getFileEntryForID(CurPPLexer->getFileID()))) |
Chandler Carruth | 3cc331a | 2011-03-16 18:34:36 +0000 | [diff] [blame] | 571 | if ((FE = HeaderInfo.LookupSubframeworkHeader(Filename, CurFileEnt, |
Douglas Gregor | f5f9452 | 2013-02-08 00:10:48 +0000 | [diff] [blame] | 572 | SearchPath, RelativePath, |
| 573 | SuggestedModule))) |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 574 | return FE; |
| 575 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 576 | |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 577 | for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) { |
| 578 | IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1]; |
Ted Kremenek | 6bc5f3e | 2008-11-20 16:19:53 +0000 | [diff] [blame] | 579 | if (IsFileLexer(ISEntry)) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 580 | if ((CurFileEnt = |
Ted Kremenek | 4524521 | 2008-11-19 21:57:25 +0000 | [diff] [blame] | 581 | SourceMgr.getFileEntryForID(ISEntry.ThePPLexer->getFileID()))) |
Manuel Klimek | 0c69fd2 | 2011-04-26 21:50:03 +0000 | [diff] [blame] | 582 | if ((FE = HeaderInfo.LookupSubframeworkHeader( |
Douglas Gregor | f5f9452 | 2013-02-08 00:10:48 +0000 | [diff] [blame] | 583 | Filename, CurFileEnt, SearchPath, RelativePath, |
| 584 | SuggestedModule))) |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 585 | return FE; |
| 586 | } |
| 587 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 588 | |
Chris Lattner | f7ad82d | 2008-03-09 04:17:44 +0000 | [diff] [blame] | 589 | // Otherwise, we really couldn't find the file. |
| 590 | return 0; |
| 591 | } |
| 592 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 593 | |
| 594 | //===----------------------------------------------------------------------===// |
| 595 | // Preprocessor Directive Handling. |
| 596 | //===----------------------------------------------------------------------===// |
| 597 | |
David Blaikie | d532124 | 2012-06-06 18:52:13 +0000 | [diff] [blame] | 598 | class Preprocessor::ResetMacroExpansionHelper { |
| 599 | public: |
| 600 | ResetMacroExpansionHelper(Preprocessor *pp) |
| 601 | : PP(pp), save(pp->DisableMacroExpansion) { |
| 602 | if (pp->MacroExpansionInDirectivesOverride) |
| 603 | pp->DisableMacroExpansion = false; |
| 604 | } |
| 605 | ~ResetMacroExpansionHelper() { |
| 606 | PP->DisableMacroExpansion = save; |
| 607 | } |
| 608 | private: |
| 609 | Preprocessor *PP; |
| 610 | bool save; |
| 611 | }; |
| 612 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 613 | /// HandleDirective - This callback is invoked when the lexer sees a # token |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 614 | /// at the start of a line. This consumes the directive, modifies the |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 615 | /// lexer/preprocessor state, and advances the lexer(s) so that the next token |
| 616 | /// read is the correct one. |
| 617 | void Preprocessor::HandleDirective(Token &Result) { |
| 618 | // FIXME: Traditional: # with whitespace before it not recognized by K&R? |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 619 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 620 | // We just parsed a # character at the start of a line, so we're in directive |
| 621 | // mode. Tell the lexer this so any newlines we see will be converted into an |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 622 | // EOD token (which terminates the directive). |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 623 | CurPPLexer->ParsingPreprocessorDirective = true; |
Jordan Rose | cb8a1ac | 2013-02-21 18:53:19 +0000 | [diff] [blame] | 624 | if (CurLexer) CurLexer->SetKeepWhitespaceMode(false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 625 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 626 | ++NumDirectives; |
Kovarththanan Rajaratnam | ba2c652 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 627 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 628 | // We are about to read a token. For the multiple-include optimization FA to |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 629 | // work, we have to remember if we had read any tokens *before* this |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 630 | // pp-directive. |
Chris Lattner | 8cf1f93 | 2009-12-14 04:54:40 +0000 | [diff] [blame] | 631 | bool ReadAnyTokensBeforeDirective =CurPPLexer->MIOpt.getHasReadAnyTokensVal(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 632 | |
Chris Lattner | 2d17ab7 | 2009-03-18 21:00:25 +0000 | [diff] [blame] | 633 | // Save the '#' token in case we need to return it later. |
| 634 | Token SavedHash = Result; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 635 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 636 | // Read the next token, the directive flavor. This isn't expanded due to |
| 637 | // C99 6.10.3p8. |
| 638 | LexUnexpandedToken(Result); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 639 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 640 | // C99 6.10.3p11: Is this preprocessor directive in macro invocation? e.g.: |
| 641 | // #define A(x) #x |
| 642 | // A(abc |
| 643 | // #warning blah |
| 644 | // def) |
Richard Smith | eb3ce7c | 2011-12-16 22:50:01 +0000 | [diff] [blame] | 645 | // If so, the user is relying on undefined behavior, emit a diagnostic. Do |
| 646 | // not support this for #include-like directives, since that can result in |
| 647 | // terrible diagnostics, and does not work in GCC. |
| 648 | if (InMacroArgs) { |
| 649 | if (IdentifierInfo *II = Result.getIdentifierInfo()) { |
| 650 | switch (II->getPPKeywordID()) { |
| 651 | case tok::pp_include: |
| 652 | case tok::pp_import: |
| 653 | case tok::pp_include_next: |
| 654 | case tok::pp___include_macros: |
| 655 | Diag(Result, diag::err_embedded_include) << II->getName(); |
| 656 | DiscardUntilEndOfDirective(); |
| 657 | return; |
| 658 | default: |
| 659 | break; |
| 660 | } |
| 661 | } |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 662 | Diag(Result, diag::ext_embedded_directive); |
Richard Smith | eb3ce7c | 2011-12-16 22:50:01 +0000 | [diff] [blame] | 663 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 664 | |
David Blaikie | d532124 | 2012-06-06 18:52:13 +0000 | [diff] [blame] | 665 | // Temporarily enable macro expansion if set so |
| 666 | // and reset to previous state when returning from this function. |
| 667 | ResetMacroExpansionHelper helper(this); |
| 668 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 669 | switch (Result.getKind()) { |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 670 | case tok::eod: |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 671 | return; // null directive. |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 672 | case tok::code_completion: |
| 673 | if (CodeComplete) |
| 674 | CodeComplete->CodeCompleteDirective( |
| 675 | CurPPLexer->getConditionalStackDepth() > 0); |
Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 676 | setCodeCompletionReached(); |
Douglas Gregor | 3a7ad25 | 2010-08-24 19:08:16 +0000 | [diff] [blame] | 677 | return; |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 678 | case tok::numeric_constant: // # 7 GNU line marker directive. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 679 | if (getLangOpts().AsmPreprocessor) |
Chris Lattner | 5eb8ae2 | 2009-03-18 20:41:10 +0000 | [diff] [blame] | 680 | break; // # 4 is not a preprocessor directive in .S files. |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 681 | return HandleDigitDirective(Result); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 682 | default: |
| 683 | IdentifierInfo *II = Result.getIdentifierInfo(); |
| 684 | if (II == 0) break; // Not an identifier. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 685 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 686 | // Ask what the preprocessor keyword ID is. |
| 687 | switch (II->getPPKeywordID()) { |
| 688 | default: break; |
| 689 | // C99 6.10.1 - Conditional Inclusion. |
| 690 | case tok::pp_if: |
| 691 | return HandleIfDirective(Result, ReadAnyTokensBeforeDirective); |
| 692 | case tok::pp_ifdef: |
| 693 | return HandleIfdefDirective(Result, false, true/*not valid for miopt*/); |
| 694 | case tok::pp_ifndef: |
| 695 | return HandleIfdefDirective(Result, true, ReadAnyTokensBeforeDirective); |
| 696 | case tok::pp_elif: |
| 697 | return HandleElifDirective(Result); |
| 698 | case tok::pp_else: |
| 699 | return HandleElseDirective(Result); |
| 700 | case tok::pp_endif: |
| 701 | return HandleEndifDirective(Result); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 702 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 703 | // C99 6.10.2 - Source File Inclusion. |
| 704 | case tok::pp_include: |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 705 | // Handle #include. |
| 706 | return HandleIncludeDirective(SavedHash.getLocation(), Result); |
Chris Lattner | 14a7f39 | 2009-04-08 18:24:34 +0000 | [diff] [blame] | 707 | case tok::pp___include_macros: |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 708 | // Handle -imacros. |
| 709 | return HandleIncludeMacrosDirective(SavedHash.getLocation(), Result); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 710 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 711 | // C99 6.10.3 - Macro Replacement. |
| 712 | case tok::pp_define: |
| 713 | return HandleDefineDirective(Result); |
| 714 | case tok::pp_undef: |
| 715 | return HandleUndefDirective(Result); |
| 716 | |
| 717 | // C99 6.10.4 - Line Control. |
| 718 | case tok::pp_line: |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 719 | return HandleLineDirective(Result); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 720 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 721 | // C99 6.10.5 - Error Directive. |
| 722 | case tok::pp_error: |
| 723 | return HandleUserDiagnosticDirective(Result, false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 724 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 725 | // C99 6.10.6 - Pragma Directive. |
| 726 | case tok::pp_pragma: |
Douglas Gregor | c7d6576 | 2010-09-09 22:45:38 +0000 | [diff] [blame] | 727 | return HandlePragmaDirective(PIK_HashPragma); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 728 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 729 | // GNU Extensions. |
| 730 | case tok::pp_import: |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 731 | return HandleImportDirective(SavedHash.getLocation(), Result); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 732 | case tok::pp_include_next: |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 733 | return HandleIncludeNextDirective(SavedHash.getLocation(), Result); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 734 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 735 | case tok::pp_warning: |
| 736 | Diag(Result, diag::ext_pp_warning_directive); |
| 737 | return HandleUserDiagnosticDirective(Result, true); |
| 738 | case tok::pp_ident: |
| 739 | return HandleIdentSCCSDirective(Result); |
| 740 | case tok::pp_sccs: |
| 741 | return HandleIdentSCCSDirective(Result); |
| 742 | case tok::pp_assert: |
| 743 | //isExtension = true; // FIXME: implement #assert |
| 744 | break; |
| 745 | case tok::pp_unassert: |
| 746 | //isExtension = true; // FIXME: implement #unassert |
| 747 | break; |
Douglas Gregor | 4a69c2e | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 748 | |
Douglas Gregor | 663b48f | 2012-01-03 19:48:16 +0000 | [diff] [blame] | 749 | case tok::pp___public_macro: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 750 | if (getLangOpts().Modules) |
Douglas Gregor | 0bf886d | 2012-01-03 18:24:14 +0000 | [diff] [blame] | 751 | return HandleMacroPublicDirective(Result); |
| 752 | break; |
| 753 | |
Douglas Gregor | 663b48f | 2012-01-03 19:48:16 +0000 | [diff] [blame] | 754 | case tok::pp___private_macro: |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 755 | if (getLangOpts().Modules) |
Douglas Gregor | 0bf886d | 2012-01-03 18:24:14 +0000 | [diff] [blame] | 756 | return HandleMacroPrivateDirective(Result); |
| 757 | break; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 758 | } |
| 759 | break; |
| 760 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 761 | |
Chris Lattner | 2d17ab7 | 2009-03-18 21:00:25 +0000 | [diff] [blame] | 762 | // If this is a .S file, treat unknown # directives as non-preprocessor |
| 763 | // directives. This is important because # may be a comment or introduce |
| 764 | // various pseudo-ops. Just return the # token and push back the following |
| 765 | // token to be lexed next time. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 766 | if (getLangOpts().AsmPreprocessor) { |
Daniel Dunbar | 48b4d1e | 2009-07-13 21:48:50 +0000 | [diff] [blame] | 767 | Token *Toks = new Token[2]; |
Chris Lattner | 2d17ab7 | 2009-03-18 21:00:25 +0000 | [diff] [blame] | 768 | // Return the # and the token after it. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 769 | Toks[0] = SavedHash; |
Chris Lattner | 2d17ab7 | 2009-03-18 21:00:25 +0000 | [diff] [blame] | 770 | Toks[1] = Result; |
Chris Lattner | 56f64c1 | 2011-01-06 05:01:51 +0000 | [diff] [blame] | 771 | |
| 772 | // If the second token is a hashhash token, then we need to translate it to |
| 773 | // unknown so the token lexer doesn't try to perform token pasting. |
| 774 | if (Result.is(tok::hashhash)) |
| 775 | Toks[1].setKind(tok::unknown); |
| 776 | |
Chris Lattner | 2d17ab7 | 2009-03-18 21:00:25 +0000 | [diff] [blame] | 777 | // Enter this token stream so that we re-lex the tokens. Make sure to |
| 778 | // enable macro expansion, in case the token after the # is an identifier |
| 779 | // that is expanded. |
| 780 | EnterTokenStream(Toks, 2, false, true); |
| 781 | return; |
| 782 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 783 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 784 | // If we reached here, the preprocessing token is not valid! |
| 785 | Diag(Result, diag::err_pp_invalid_directive); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 786 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 787 | // Read the rest of the PP line. |
| 788 | DiscardUntilEndOfDirective(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 789 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 790 | // Okay, we're done parsing the directive. |
| 791 | } |
| 792 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 793 | /// GetLineValue - Convert a numeric token into an unsigned value, emitting |
| 794 | /// Diagnostic DiagID if it is invalid, and returning the value in Val. |
| 795 | static bool GetLineValue(Token &DigitTok, unsigned &Val, |
| 796 | unsigned DiagID, Preprocessor &PP) { |
| 797 | if (DigitTok.isNot(tok::numeric_constant)) { |
| 798 | PP.Diag(DigitTok, DiagID); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 799 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 800 | if (DigitTok.isNot(tok::eod)) |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 801 | PP.DiscardUntilEndOfDirective(); |
| 802 | return true; |
| 803 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 804 | |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 805 | SmallString<64> IntegerBuffer; |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 806 | IntegerBuffer.resize(DigitTok.getLength()); |
| 807 | const char *DigitTokBegin = &IntegerBuffer[0]; |
Douglas Gregor | dc970f0 | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 808 | bool Invalid = false; |
| 809 | unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid); |
| 810 | if (Invalid) |
| 811 | return true; |
| 812 | |
Chris Lattner | d66f172 | 2009-04-18 18:35:15 +0000 | [diff] [blame] | 813 | // Verify that we have a simple digit-sequence, and compute the value. This |
| 814 | // is always a simple digit string computed in decimal, so we do this manually |
| 815 | // here. |
| 816 | Val = 0; |
| 817 | for (unsigned i = 0; i != ActualLength; ++i) { |
Jordan Rose | a7d0384 | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 818 | if (!isDigit(DigitTokBegin[i])) { |
Chris Lattner | d66f172 | 2009-04-18 18:35:15 +0000 | [diff] [blame] | 819 | PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i), |
| 820 | diag::err_pp_line_digit_sequence); |
| 821 | PP.DiscardUntilEndOfDirective(); |
| 822 | return true; |
| 823 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 824 | |
Chris Lattner | d66f172 | 2009-04-18 18:35:15 +0000 | [diff] [blame] | 825 | unsigned NextVal = Val*10+(DigitTokBegin[i]-'0'); |
| 826 | if (NextVal < Val) { // overflow. |
| 827 | PP.Diag(DigitTok, DiagID); |
| 828 | PP.DiscardUntilEndOfDirective(); |
| 829 | return true; |
| 830 | } |
| 831 | Val = NextVal; |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 832 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 833 | |
Fariborz Jahanian | 0638c15 | 2012-06-26 21:19:20 +0000 | [diff] [blame] | 834 | if (DigitTokBegin[0] == '0' && Val) |
Chris Lattner | d66f172 | 2009-04-18 18:35:15 +0000 | [diff] [blame] | 835 | PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 836 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 837 | return false; |
| 838 | } |
| 839 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 840 | /// \brief Handle a \#line directive: C99 6.10.4. |
| 841 | /// |
| 842 | /// The two acceptable forms are: |
| 843 | /// \verbatim |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 844 | /// # line digit-sequence |
| 845 | /// # line digit-sequence "s-char-sequence" |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 846 | /// \endverbatim |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 847 | void Preprocessor::HandleLineDirective(Token &Tok) { |
| 848 | // Read the line # and string argument. Per C99 6.10.4p5, these tokens are |
| 849 | // expanded. |
| 850 | Token DigitTok; |
| 851 | Lex(DigitTok); |
| 852 | |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 853 | // Validate the number and convert it to an unsigned. |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 854 | unsigned LineNo; |
Chris Lattner | d66f172 | 2009-04-18 18:35:15 +0000 | [diff] [blame] | 855 | if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this)) |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 856 | return; |
Fariborz Jahanian | 0638c15 | 2012-06-26 21:19:20 +0000 | [diff] [blame] | 857 | |
| 858 | if (LineNo == 0) |
| 859 | Diag(DigitTok, diag::ext_pp_line_zero); |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 860 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 861 | // Enforce C99 6.10.4p3: "The digit sequence shall not specify ... a |
| 862 | // number greater than 2147483647". C90 requires that the line # be <= 32767. |
Eli Friedman | 192e034 | 2011-10-10 23:35:28 +0000 | [diff] [blame] | 863 | unsigned LineLimit = 32768U; |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 864 | if (LangOpts.C99 || LangOpts.CPlusPlus11) |
Eli Friedman | 192e034 | 2011-10-10 23:35:28 +0000 | [diff] [blame] | 865 | LineLimit = 2147483648U; |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 866 | if (LineNo >= LineLimit) |
| 867 | Diag(DigitTok, diag::ext_pp_line_too_big) << LineLimit; |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 868 | else if (LangOpts.CPlusPlus11 && LineNo >= 32768U) |
Richard Smith | acd4d3d | 2011-10-15 01:18:56 +0000 | [diff] [blame] | 869 | Diag(DigitTok, diag::warn_cxx98_compat_pp_line_too_big); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 870 | |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 871 | int FilenameID = -1; |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 872 | Token StrTok; |
| 873 | Lex(StrTok); |
| 874 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 875 | // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a |
| 876 | // string followed by eod. |
| 877 | if (StrTok.is(tok::eod)) |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 878 | ; // ok |
| 879 | else if (StrTok.isNot(tok::string_literal)) { |
| 880 | Diag(StrTok, diag::err_pp_line_invalid_filename); |
Richard Smith | d67aea2 | 2012-03-06 03:21:47 +0000 | [diff] [blame] | 881 | return DiscardUntilEndOfDirective(); |
| 882 | } else if (StrTok.hasUDSuffix()) { |
| 883 | Diag(StrTok, diag::err_invalid_string_udl); |
| 884 | return DiscardUntilEndOfDirective(); |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 885 | } else { |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 886 | // Parse and validate the string, converting it into a unique ID. |
| 887 | StringLiteralParser Literal(&StrTok, 1, *this); |
Douglas Gregor | fb65e59 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 888 | assert(Literal.isAscii() && "Didn't allow wide strings in"); |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 889 | if (Literal.hadError) |
| 890 | return DiscardUntilEndOfDirective(); |
| 891 | if (Literal.Pascal) { |
| 892 | Diag(StrTok, diag::err_pp_linemarker_invalid_filename); |
| 893 | return DiscardUntilEndOfDirective(); |
| 894 | } |
Jay Foad | 9a6b098 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 895 | FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 896 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 897 | // Verify that there is nothing after the string, other than EOD. Because |
Chris Lattner | 0003c27 | 2009-04-17 23:30:53 +0000 | [diff] [blame] | 898 | // of C99 6.10.4p5, macros that expand to empty tokens are ok. |
| 899 | CheckEndOfDirective("line", true); |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 900 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 901 | |
Chris Lattner | 1eaa70a | 2009-02-03 21:52:55 +0000 | [diff] [blame] | 902 | SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 903 | |
Chris Lattner | 839150e | 2009-03-27 17:13:49 +0000 | [diff] [blame] | 904 | if (Callbacks) |
Chris Lattner | c745cec | 2010-04-14 04:28:50 +0000 | [diff] [blame] | 905 | Callbacks->FileChanged(CurPPLexer->getSourceLocation(), |
| 906 | PPCallbacks::RenameFile, |
Chris Lattner | 839150e | 2009-03-27 17:13:49 +0000 | [diff] [blame] | 907 | SrcMgr::C_User); |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 908 | } |
| 909 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 910 | /// ReadLineMarkerFlags - Parse and validate any flags at the end of a GNU line |
| 911 | /// marker directive. |
| 912 | static bool ReadLineMarkerFlags(bool &IsFileEntry, bool &IsFileExit, |
| 913 | bool &IsSystemHeader, bool &IsExternCHeader, |
| 914 | Preprocessor &PP) { |
| 915 | unsigned FlagVal; |
| 916 | Token FlagTok; |
| 917 | PP.Lex(FlagTok); |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 918 | if (FlagTok.is(tok::eod)) return false; |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 919 | if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP)) |
| 920 | return true; |
| 921 | |
| 922 | if (FlagVal == 1) { |
| 923 | IsFileEntry = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 924 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 925 | PP.Lex(FlagTok); |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 926 | if (FlagTok.is(tok::eod)) return false; |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 927 | if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP)) |
| 928 | return true; |
| 929 | } else if (FlagVal == 2) { |
| 930 | IsFileExit = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 931 | |
Chris Lattner | 1c96778 | 2009-02-04 06:25:26 +0000 | [diff] [blame] | 932 | SourceManager &SM = PP.getSourceManager(); |
| 933 | // If we are leaving the current presumed file, check to make sure the |
| 934 | // presumed include stack isn't empty! |
| 935 | FileID CurFileID = |
Chandler Carruth | c7ca521 | 2011-07-25 20:52:32 +0000 | [diff] [blame] | 936 | SM.getDecomposedExpansionLoc(FlagTok.getLocation()).first; |
Chris Lattner | 1c96778 | 2009-02-04 06:25:26 +0000 | [diff] [blame] | 937 | PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation()); |
Douglas Gregor | 453b012 | 2010-11-12 07:15:47 +0000 | [diff] [blame] | 938 | if (PLoc.isInvalid()) |
| 939 | return true; |
| 940 | |
Chris Lattner | 1c96778 | 2009-02-04 06:25:26 +0000 | [diff] [blame] | 941 | // If there is no include loc (main file) or if the include loc is in a |
| 942 | // different physical file, then we aren't in a "1" line marker flag region. |
| 943 | SourceLocation IncLoc = PLoc.getIncludeLoc(); |
| 944 | if (IncLoc.isInvalid() || |
Chandler Carruth | c7ca521 | 2011-07-25 20:52:32 +0000 | [diff] [blame] | 945 | SM.getDecomposedExpansionLoc(IncLoc).first != CurFileID) { |
Chris Lattner | 1c96778 | 2009-02-04 06:25:26 +0000 | [diff] [blame] | 946 | PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_pop); |
| 947 | PP.DiscardUntilEndOfDirective(); |
| 948 | return true; |
| 949 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 950 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 951 | PP.Lex(FlagTok); |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 952 | if (FlagTok.is(tok::eod)) return false; |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 953 | if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP)) |
| 954 | return true; |
| 955 | } |
| 956 | |
| 957 | // We must have 3 if there are still flags. |
| 958 | if (FlagVal != 3) { |
| 959 | PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag); |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 960 | PP.DiscardUntilEndOfDirective(); |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 961 | return true; |
| 962 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 963 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 964 | IsSystemHeader = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 965 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 966 | PP.Lex(FlagTok); |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 967 | if (FlagTok.is(tok::eod)) return false; |
Chris Lattner | 0a1a8d8 | 2009-02-04 05:21:58 +0000 | [diff] [blame] | 968 | if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP)) |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 969 | return true; |
| 970 | |
| 971 | // We must have 4 if there is yet another flag. |
| 972 | if (FlagVal != 4) { |
| 973 | PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag); |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 974 | PP.DiscardUntilEndOfDirective(); |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 975 | return true; |
| 976 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 977 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 978 | IsExternCHeader = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 979 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 980 | PP.Lex(FlagTok); |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 981 | if (FlagTok.is(tok::eod)) return false; |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 982 | |
| 983 | // There are no more valid flags here. |
| 984 | PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag); |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 985 | PP.DiscardUntilEndOfDirective(); |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 986 | return true; |
| 987 | } |
| 988 | |
| 989 | /// HandleDigitDirective - Handle a GNU line marker directive, whose syntax is |
| 990 | /// one of the following forms: |
| 991 | /// |
| 992 | /// # 42 |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 993 | /// # 42 "file" ('1' | '2')? |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 994 | /// # 42 "file" ('1' | '2')? '3' '4'? |
| 995 | /// |
| 996 | void Preprocessor::HandleDigitDirective(Token &DigitTok) { |
| 997 | // Validate the number and convert it to an unsigned. GNU does not have a |
| 998 | // line # limit other than it fit in 32-bits. |
| 999 | unsigned LineNo; |
| 1000 | if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer, |
| 1001 | *this)) |
| 1002 | return; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1003 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 1004 | Token StrTok; |
| 1005 | Lex(StrTok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1006 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 1007 | bool IsFileEntry = false, IsFileExit = false; |
| 1008 | bool IsSystemHeader = false, IsExternCHeader = false; |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 1009 | int FilenameID = -1; |
| 1010 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1011 | // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a |
| 1012 | // string followed by eod. |
| 1013 | if (StrTok.is(tok::eod)) |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 1014 | ; // ok |
| 1015 | else if (StrTok.isNot(tok::string_literal)) { |
| 1016 | Diag(StrTok, diag::err_pp_linemarker_invalid_filename); |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 1017 | return DiscardUntilEndOfDirective(); |
Richard Smith | d67aea2 | 2012-03-06 03:21:47 +0000 | [diff] [blame] | 1018 | } else if (StrTok.hasUDSuffix()) { |
| 1019 | Diag(StrTok, diag::err_invalid_string_udl); |
| 1020 | return DiscardUntilEndOfDirective(); |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 1021 | } else { |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 1022 | // Parse and validate the string, converting it into a unique ID. |
| 1023 | StringLiteralParser Literal(&StrTok, 1, *this); |
Douglas Gregor | fb65e59 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1024 | assert(Literal.isAscii() && "Didn't allow wide strings in"); |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 1025 | if (Literal.hadError) |
| 1026 | return DiscardUntilEndOfDirective(); |
| 1027 | if (Literal.Pascal) { |
| 1028 | Diag(StrTok, diag::err_pp_linemarker_invalid_filename); |
| 1029 | return DiscardUntilEndOfDirective(); |
| 1030 | } |
Jay Foad | 9a6b098 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 1031 | FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1032 | |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 1033 | // If a filename was present, read any flags that are present. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1034 | if (ReadLineMarkerFlags(IsFileEntry, IsFileExit, |
Chris Lattner | b5fba6f | 2009-01-26 07:57:50 +0000 | [diff] [blame] | 1035 | IsSystemHeader, IsExternCHeader, *this)) |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 1036 | return; |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 1037 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1038 | |
Chris Lattner | 0a1a8d8 | 2009-02-04 05:21:58 +0000 | [diff] [blame] | 1039 | // Create a line note with this information. |
| 1040 | SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1041 | IsFileEntry, IsFileExit, |
Chris Lattner | 0a1a8d8 | 2009-02-04 05:21:58 +0000 | [diff] [blame] | 1042 | IsSystemHeader, IsExternCHeader); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1043 | |
Chris Lattner | 839150e | 2009-03-27 17:13:49 +0000 | [diff] [blame] | 1044 | // If the preprocessor has callbacks installed, notify them of the #line |
| 1045 | // change. This is used so that the line marker comes out in -E mode for |
| 1046 | // example. |
| 1047 | if (Callbacks) { |
| 1048 | PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile; |
| 1049 | if (IsFileEntry) |
| 1050 | Reason = PPCallbacks::EnterFile; |
| 1051 | else if (IsFileExit) |
| 1052 | Reason = PPCallbacks::ExitFile; |
| 1053 | SrcMgr::CharacteristicKind FileKind = SrcMgr::C_User; |
| 1054 | if (IsExternCHeader) |
| 1055 | FileKind = SrcMgr::C_ExternCSystem; |
| 1056 | else if (IsSystemHeader) |
| 1057 | FileKind = SrcMgr::C_System; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1058 | |
Chris Lattner | c745cec | 2010-04-14 04:28:50 +0000 | [diff] [blame] | 1059 | Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind); |
Chris Lattner | 839150e | 2009-03-27 17:13:49 +0000 | [diff] [blame] | 1060 | } |
Chris Lattner | 76e6896 | 2009-01-26 06:19:46 +0000 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | |
Chris Lattner | 38d7fd2 | 2009-01-26 05:30:54 +0000 | [diff] [blame] | 1064 | /// HandleUserDiagnosticDirective - Handle a #warning or #error directive. |
| 1065 | /// |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1066 | void Preprocessor::HandleUserDiagnosticDirective(Token &Tok, |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1067 | bool isWarning) { |
Chris Lattner | 38d7fd2 | 2009-01-26 05:30:54 +0000 | [diff] [blame] | 1068 | // PTH doesn't emit #warning or #error directives. |
| 1069 | if (CurPTHLexer) |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 1070 | return CurPTHLexer->DiscardToEndOfLine(); |
| 1071 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1072 | // Read the rest of the line raw. We do this because we don't want macros |
| 1073 | // to be expanded and we don't require that the tokens be valid preprocessing |
| 1074 | // tokens. For example, this is allowed: "#warning ` 'foo". GCC does |
| 1075 | // collapse multiple consequtive white space between tokens, but this isn't |
| 1076 | // specified by the standard. |
Benjamin Kramer | e5fbc6c | 2012-05-18 19:32:16 +0000 | [diff] [blame] | 1077 | SmallString<128> Message; |
| 1078 | CurLexer->ReadToEndOfLine(&Message); |
Ted Kremenek | 7f4bd16 | 2012-02-02 00:16:13 +0000 | [diff] [blame] | 1079 | |
| 1080 | // Find the first non-whitespace character, so that we can make the |
| 1081 | // diagnostic more succinct. |
Benjamin Kramer | e5fbc6c | 2012-05-18 19:32:16 +0000 | [diff] [blame] | 1082 | StringRef Msg = Message.str().ltrim(" "); |
| 1083 | |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 1084 | if (isWarning) |
Ted Kremenek | 7f4bd16 | 2012-02-02 00:16:13 +0000 | [diff] [blame] | 1085 | Diag(Tok, diag::pp_hash_warning) << Msg; |
Chris Lattner | 100c65e | 2009-01-26 05:29:08 +0000 | [diff] [blame] | 1086 | else |
Ted Kremenek | 7f4bd16 | 2012-02-02 00:16:13 +0000 | [diff] [blame] | 1087 | Diag(Tok, diag::err_pp_hash_error) << Msg; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | /// HandleIdentSCCSDirective - Handle a #ident/#sccs directive. |
| 1091 | /// |
| 1092 | void Preprocessor::HandleIdentSCCSDirective(Token &Tok) { |
| 1093 | // Yes, this directive is an extension. |
| 1094 | Diag(Tok, diag::ext_pp_ident_directive); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1095 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1096 | // Read the string argument. |
| 1097 | Token StrTok; |
| 1098 | Lex(StrTok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1099 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1100 | // If the token kind isn't a string, it's a malformed directive. |
| 1101 | if (StrTok.isNot(tok::string_literal) && |
Chris Lattner | 907dfe9 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 1102 | StrTok.isNot(tok::wide_string_literal)) { |
| 1103 | Diag(StrTok, diag::err_pp_malformed_ident); |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1104 | if (StrTok.isNot(tok::eod)) |
Chris Lattner | 38d7fd2 | 2009-01-26 05:30:54 +0000 | [diff] [blame] | 1105 | DiscardUntilEndOfDirective(); |
Chris Lattner | 907dfe9 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 1106 | return; |
| 1107 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1108 | |
Richard Smith | d67aea2 | 2012-03-06 03:21:47 +0000 | [diff] [blame] | 1109 | if (StrTok.hasUDSuffix()) { |
| 1110 | Diag(StrTok, diag::err_invalid_string_udl); |
| 1111 | return DiscardUntilEndOfDirective(); |
| 1112 | } |
| 1113 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1114 | // Verify that there is nothing after the string, other than EOD. |
Chris Lattner | ce2ab6f | 2009-04-14 05:07:49 +0000 | [diff] [blame] | 1115 | CheckEndOfDirective("ident"); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1116 | |
Douglas Gregor | dc970f0 | 2010-03-16 22:30:13 +0000 | [diff] [blame] | 1117 | if (Callbacks) { |
| 1118 | bool Invalid = false; |
| 1119 | std::string Str = getSpelling(StrTok, &Invalid); |
| 1120 | if (!Invalid) |
| 1121 | Callbacks->Ident(Tok.getLocation(), Str); |
| 1122 | } |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1123 | } |
| 1124 | |
Douglas Gregor | 0bf886d | 2012-01-03 18:24:14 +0000 | [diff] [blame] | 1125 | /// \brief Handle a #public directive. |
| 1126 | void Preprocessor::HandleMacroPublicDirective(Token &Tok) { |
Douglas Gregor | 4a69c2e | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 1127 | Token MacroNameTok; |
| 1128 | ReadMacroName(MacroNameTok, 2); |
| 1129 | |
| 1130 | // Error reading macro name? If so, diagnostic already issued. |
| 1131 | if (MacroNameTok.is(tok::eod)) |
| 1132 | return; |
| 1133 | |
Douglas Gregor | 663b48f | 2012-01-03 19:48:16 +0000 | [diff] [blame] | 1134 | // Check to see if this is the last token on the #__public_macro line. |
| 1135 | CheckEndOfDirective("__public_macro"); |
Douglas Gregor | 4a69c2e | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 1136 | |
Argyrios Kyrtzidis | eb663da | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1137 | IdentifierInfo *II = MacroNameTok.getIdentifierInfo(); |
Douglas Gregor | 4a69c2e | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 1138 | // Okay, we finally have a valid identifier to undef. |
Argyrios Kyrtzidis | eb663da | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1139 | MacroDirective *MD = getMacroDirective(II); |
Douglas Gregor | 4a69c2e | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 1140 | |
| 1141 | // If the macro is not defined, this is an error. |
Argyrios Kyrtzidis | 09c9e81 | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 1142 | if (MD == 0) { |
Argyrios Kyrtzidis | eb663da | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1143 | Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II; |
Douglas Gregor | 4a69c2e | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 1144 | return; |
| 1145 | } |
| 1146 | |
| 1147 | // Note that this macro has now been exported. |
Argyrios Kyrtzidis | b6210df | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 1148 | appendMacroDirective(II, AllocateVisibilityMacroDirective( |
| 1149 | MacroNameTok.getLocation(), /*IsPublic=*/true)); |
Douglas Gregor | ebf0049 | 2011-10-17 15:32:29 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Douglas Gregor | 0bf886d | 2012-01-03 18:24:14 +0000 | [diff] [blame] | 1152 | /// \brief Handle a #private directive. |
Douglas Gregor | ebf0049 | 2011-10-17 15:32:29 +0000 | [diff] [blame] | 1153 | void Preprocessor::HandleMacroPrivateDirective(Token &Tok) { |
| 1154 | Token MacroNameTok; |
| 1155 | ReadMacroName(MacroNameTok, 2); |
| 1156 | |
| 1157 | // Error reading macro name? If so, diagnostic already issued. |
| 1158 | if (MacroNameTok.is(tok::eod)) |
| 1159 | return; |
| 1160 | |
Douglas Gregor | 663b48f | 2012-01-03 19:48:16 +0000 | [diff] [blame] | 1161 | // Check to see if this is the last token on the #__private_macro line. |
| 1162 | CheckEndOfDirective("__private_macro"); |
Douglas Gregor | ebf0049 | 2011-10-17 15:32:29 +0000 | [diff] [blame] | 1163 | |
Argyrios Kyrtzidis | eb663da | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1164 | IdentifierInfo *II = MacroNameTok.getIdentifierInfo(); |
Douglas Gregor | ebf0049 | 2011-10-17 15:32:29 +0000 | [diff] [blame] | 1165 | // Okay, we finally have a valid identifier to undef. |
Argyrios Kyrtzidis | eb663da | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1166 | MacroDirective *MD = getMacroDirective(II); |
Douglas Gregor | ebf0049 | 2011-10-17 15:32:29 +0000 | [diff] [blame] | 1167 | |
| 1168 | // If the macro is not defined, this is an error. |
Argyrios Kyrtzidis | 09c9e81 | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 1169 | if (MD == 0) { |
Argyrios Kyrtzidis | eb663da | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1170 | Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II; |
Douglas Gregor | ebf0049 | 2011-10-17 15:32:29 +0000 | [diff] [blame] | 1171 | return; |
| 1172 | } |
| 1173 | |
| 1174 | // Note that this macro has now been marked private. |
Argyrios Kyrtzidis | b6210df | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 1175 | appendMacroDirective(II, AllocateVisibilityMacroDirective( |
| 1176 | MacroNameTok.getLocation(), /*IsPublic=*/false)); |
Douglas Gregor | 4a69c2e | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 1177 | } |
| 1178 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1179 | //===----------------------------------------------------------------------===// |
| 1180 | // Preprocessor Include Directive Handling. |
| 1181 | //===----------------------------------------------------------------------===// |
| 1182 | |
| 1183 | /// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 1184 | /// checked and spelled filename, e.g. as an operand of \#include. This returns |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1185 | /// true if the input filename was in <>'s or false if it were in ""'s. The |
| 1186 | /// caller is expected to provide a buffer that is large enough to hold the |
| 1187 | /// spelling of the filename, but is also expected to handle the case when |
| 1188 | /// this method decides to use a different buffer. |
| 1189 | bool Preprocessor::GetIncludeFilenameSpelling(SourceLocation Loc, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1190 | StringRef &Buffer) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1191 | // Get the text form of the filename. |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1192 | assert(!Buffer.empty() && "Can't have tokens with empty spellings!"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1193 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1194 | // Make sure the filename is <x> or "x". |
| 1195 | bool isAngled; |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1196 | if (Buffer[0] == '<') { |
| 1197 | if (Buffer.back() != '>') { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1198 | Diag(Loc, diag::err_pp_expects_filename); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1199 | Buffer = StringRef(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1200 | return true; |
| 1201 | } |
| 1202 | isAngled = true; |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1203 | } else if (Buffer[0] == '"') { |
| 1204 | if (Buffer.back() != '"') { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1205 | Diag(Loc, diag::err_pp_expects_filename); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1206 | Buffer = StringRef(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1207 | return true; |
| 1208 | } |
| 1209 | isAngled = false; |
| 1210 | } else { |
| 1211 | Diag(Loc, diag::err_pp_expects_filename); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1212 | Buffer = StringRef(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1213 | return true; |
| 1214 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1215 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1216 | // Diagnose #include "" as invalid. |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1217 | if (Buffer.size() <= 2) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1218 | Diag(Loc, diag::err_pp_empty_filename); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1219 | Buffer = StringRef(); |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1220 | return true; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1221 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1222 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1223 | // Skip the brackets. |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1224 | Buffer = Buffer.substr(1, Buffer.size()-2); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1225 | return isAngled; |
| 1226 | } |
| 1227 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 1228 | /// \brief Handle cases where the \#include name is expanded from a macro |
| 1229 | /// as multiple tokens, which need to be glued together. |
| 1230 | /// |
| 1231 | /// This occurs for code like: |
| 1232 | /// \code |
| 1233 | /// \#define FOO <a/b.h> |
| 1234 | /// \#include FOO |
| 1235 | /// \endcode |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1236 | /// because in this case, "<a/b.h>" is returned as 7 tokens, not one. |
| 1237 | /// |
| 1238 | /// This code concatenates and consumes tokens up to the '>' token. It returns |
| 1239 | /// false if the > was found, otherwise it returns true if it finds and consumes |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1240 | /// the EOD marker. |
John Thompson | b535352 | 2009-10-30 13:49:06 +0000 | [diff] [blame] | 1241 | bool Preprocessor::ConcatenateIncludeName( |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 1242 | SmallString<128> &FilenameBuffer, |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1243 | SourceLocation &End) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1244 | Token CurTok; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1245 | |
John Thompson | b535352 | 2009-10-30 13:49:06 +0000 | [diff] [blame] | 1246 | Lex(CurTok); |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1247 | while (CurTok.isNot(tok::eod)) { |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1248 | End = CurTok.getLocation(); |
| 1249 | |
Douglas Gregor | 9c7bd2f | 2010-12-09 23:35:36 +0000 | [diff] [blame] | 1250 | // FIXME: Provide code completion for #includes. |
| 1251 | if (CurTok.is(tok::code_completion)) { |
Argyrios Kyrtzidis | 5cec2ae | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 1252 | setCodeCompletionReached(); |
Douglas Gregor | 9c7bd2f | 2010-12-09 23:35:36 +0000 | [diff] [blame] | 1253 | Lex(CurTok); |
| 1254 | continue; |
| 1255 | } |
| 1256 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1257 | // Append the spelling of this token to the buffer. If there was a space |
| 1258 | // before it, add it now. |
| 1259 | if (CurTok.hasLeadingSpace()) |
| 1260 | FilenameBuffer.push_back(' '); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1261 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1262 | // Get the spelling of the token, directly into FilenameBuffer if possible. |
| 1263 | unsigned PreAppendSize = FilenameBuffer.size(); |
| 1264 | FilenameBuffer.resize(PreAppendSize+CurTok.getLength()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1265 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1266 | const char *BufPtr = &FilenameBuffer[PreAppendSize]; |
John Thompson | b535352 | 2009-10-30 13:49:06 +0000 | [diff] [blame] | 1267 | unsigned ActualLen = getSpelling(CurTok, BufPtr); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1268 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1269 | // If the token was spelled somewhere else, copy it into FilenameBuffer. |
| 1270 | if (BufPtr != &FilenameBuffer[PreAppendSize]) |
| 1271 | memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1272 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1273 | // Resize FilenameBuffer to the correct size. |
| 1274 | if (CurTok.getLength() != ActualLen) |
| 1275 | FilenameBuffer.resize(PreAppendSize+ActualLen); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1276 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1277 | // If we found the '>' marker, return success. |
| 1278 | if (CurTok.is(tok::greater)) |
| 1279 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1280 | |
John Thompson | b535352 | 2009-10-30 13:49:06 +0000 | [diff] [blame] | 1281 | Lex(CurTok); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1282 | } |
| 1283 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1284 | // If we hit the eod marker, emit an error and return true so that the caller |
| 1285 | // knows the EOD has been read. |
John Thompson | b535352 | 2009-10-30 13:49:06 +0000 | [diff] [blame] | 1286 | Diag(CurTok.getLocation(), diag::err_pp_expects_filename); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1287 | return true; |
| 1288 | } |
| 1289 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 1290 | /// HandleIncludeDirective - The "\#include" tokens have just been read, read |
| 1291 | /// the file to be included from the lexer, then include it! This is a common |
| 1292 | /// routine with functionality shared between \#include, \#include_next and |
| 1293 | /// \#import. LookupFrom is set when this is a \#include_next directive, it |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1294 | /// specifies the file to start searching from. |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1295 | void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc, |
| 1296 | Token &IncludeTok, |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1297 | const DirectoryLookup *LookupFrom, |
| 1298 | bool isImport) { |
| 1299 | |
| 1300 | Token FilenameTok; |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 1301 | CurPPLexer->LexIncludeFilename(FilenameTok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1302 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1303 | // Reserve a buffer to get the spelling. |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 1304 | SmallString<128> FilenameBuffer; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1305 | StringRef Filename; |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1306 | SourceLocation End; |
Douglas Gregor | 41e115a | 2011-11-30 18:02:36 +0000 | [diff] [blame] | 1307 | SourceLocation CharEnd; // the end of this directive, in characters |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1308 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1309 | switch (FilenameTok.getKind()) { |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1310 | case tok::eod: |
| 1311 | // If the token kind is EOD, the error has already been diagnosed. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1312 | return; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1313 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1314 | case tok::angle_string_literal: |
Benjamin Kramer | 0a1abd4 | 2010-02-27 13:44:12 +0000 | [diff] [blame] | 1315 | case tok::string_literal: |
| 1316 | Filename = getSpelling(FilenameTok, FilenameBuffer); |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1317 | End = FilenameTok.getLocation(); |
Argyrios Kyrtzidis | 2edbc86 | 2012-11-01 17:52:58 +0000 | [diff] [blame] | 1318 | CharEnd = End.getLocWithOffset(FilenameTok.getLength()); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1319 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1320 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1321 | case tok::less: |
| 1322 | // This could be a <foo/bar.h> file coming from a macro expansion. In this |
| 1323 | // case, glue the tokens together into FilenameBuffer and interpret those. |
| 1324 | FilenameBuffer.push_back('<'); |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1325 | if (ConcatenateIncludeName(FilenameBuffer, End)) |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1326 | return; // Found <eod> but no ">"? Diagnostic already emitted. |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1327 | Filename = FilenameBuffer.str(); |
Argyrios Kyrtzidis | 2edbc86 | 2012-11-01 17:52:58 +0000 | [diff] [blame] | 1328 | CharEnd = End.getLocWithOffset(1); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1329 | break; |
| 1330 | default: |
| 1331 | Diag(FilenameTok.getLocation(), diag::err_pp_expects_filename); |
| 1332 | DiscardUntilEndOfDirective(); |
| 1333 | return; |
| 1334 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1335 | |
Argyrios Kyrtzidis | 19d78b7 | 2012-09-29 01:06:10 +0000 | [diff] [blame] | 1336 | CharSourceRange FilenameRange |
| 1337 | = CharSourceRange::getCharRange(FilenameTok.getLocation(), CharEnd); |
Aaron Ballman | 611306e | 2012-03-02 22:51:54 +0000 | [diff] [blame] | 1338 | StringRef OriginalFilename = Filename; |
Kovarththanan Rajaratnam | ba2c652 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1339 | bool isAngled = |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1340 | GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1341 | // If GetIncludeFilenameSpelling set the start ptr to null, there was an |
| 1342 | // error. |
Chris Lattner | d081f8c | 2010-01-10 01:35:12 +0000 | [diff] [blame] | 1343 | if (Filename.empty()) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1344 | DiscardUntilEndOfDirective(); |
| 1345 | return; |
| 1346 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1347 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1348 | // Verify that there is nothing after the filename, other than EOD. Note that |
Chris Lattner | b40289b | 2009-04-17 23:56:52 +0000 | [diff] [blame] | 1349 | // we allow macros that expand to nothing after the filename, because this |
| 1350 | // falls into the category of "#include pp-tokens new-line" specified in |
| 1351 | // C99 6.10.2p4. |
Daniel Dunbar | 2c422dc9 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1352 | CheckEndOfDirective(IncludeTok.getIdentifierInfo()->getNameStart(), true); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1353 | |
| 1354 | // Check that we don't have infinite #include recursion. |
Chris Lattner | 907dfe9 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 1355 | if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) { |
| 1356 | Diag(FilenameTok, diag::err_pp_include_too_deep); |
| 1357 | return; |
| 1358 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1359 | |
John McCall | 32f5fe1 | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 1360 | // Complain about attempts to #include files in an audit pragma. |
| 1361 | if (PragmaARCCFCodeAuditedLoc.isValid()) { |
| 1362 | Diag(HashLoc, diag::err_pp_include_in_arc_cf_code_audited); |
| 1363 | Diag(PragmaARCCFCodeAuditedLoc, diag::note_pragma_entered_here); |
| 1364 | |
| 1365 | // Immediately leave the pragma. |
| 1366 | PragmaARCCFCodeAuditedLoc = SourceLocation(); |
| 1367 | } |
| 1368 | |
Aaron Ballman | 611306e | 2012-03-02 22:51:54 +0000 | [diff] [blame] | 1369 | if (HeaderInfo.HasIncludeAliasMap()) { |
| 1370 | // Map the filename with the brackets still attached. If the name doesn't |
| 1371 | // map to anything, fall back on the filename we've already gotten the |
| 1372 | // spelling for. |
| 1373 | StringRef NewName = HeaderInfo.MapHeaderToIncludeAlias(OriginalFilename); |
| 1374 | if (!NewName.empty()) |
| 1375 | Filename = NewName; |
| 1376 | } |
| 1377 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1378 | // Search include directories. |
| 1379 | const DirectoryLookup *CurDir; |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 1380 | SmallString<1024> SearchPath; |
| 1381 | SmallString<1024> RelativePath; |
Chandler Carruth | 3cc331a | 2011-03-16 18:34:36 +0000 | [diff] [blame] | 1382 | // We get the raw path only if we have 'Callbacks' to which we later pass |
| 1383 | // the path. |
Douglas Gregor | de3ef50 | 2011-11-30 23:21:26 +0000 | [diff] [blame] | 1384 | Module *SuggestedModule = 0; |
Chandler Carruth | 3cc331a | 2011-03-16 18:34:36 +0000 | [diff] [blame] | 1385 | const FileEntry *File = LookupFile( |
Manuel Klimek | 0c69fd2 | 2011-04-26 21:50:03 +0000 | [diff] [blame] | 1386 | Filename, isAngled, LookupFrom, CurDir, |
Douglas Gregor | 97eec24 | 2011-09-15 22:00:41 +0000 | [diff] [blame] | 1387 | Callbacks ? &SearchPath : NULL, Callbacks ? &RelativePath : NULL, |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1388 | getLangOpts().Modules? &SuggestedModule : 0); |
Kovarththanan Rajaratnam | ba2c652 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 1389 | |
Douglas Gregor | 11729f0 | 2011-11-30 18:12:06 +0000 | [diff] [blame] | 1390 | if (Callbacks) { |
| 1391 | if (!File) { |
| 1392 | // Give the clients a chance to recover. |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 1393 | SmallString<128> RecoveryPath; |
Douglas Gregor | 11729f0 | 2011-11-30 18:12:06 +0000 | [diff] [blame] | 1394 | if (Callbacks->FileNotFound(Filename, RecoveryPath)) { |
| 1395 | if (const DirectoryEntry *DE = FileMgr.getDirectory(RecoveryPath)) { |
| 1396 | // Add the recovery path to the list of search paths. |
Daniel Dunbar | ae4feb6 | 2013-01-25 01:50:28 +0000 | [diff] [blame] | 1397 | DirectoryLookup DL(DE, SrcMgr::C_User, false); |
Douglas Gregor | 11729f0 | 2011-11-30 18:12:06 +0000 | [diff] [blame] | 1398 | HeaderInfo.AddSearchPath(DL, isAngled); |
| 1399 | |
| 1400 | // Try the lookup again, skipping the cache. |
| 1401 | File = LookupFile(Filename, isAngled, LookupFrom, CurDir, 0, 0, |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1402 | getLangOpts().Modules? &SuggestedModule : 0, |
Douglas Gregor | 11729f0 | 2011-11-30 18:12:06 +0000 | [diff] [blame] | 1403 | /*SkipCache*/true); |
| 1404 | } |
| 1405 | } |
| 1406 | } |
| 1407 | |
Argyrios Kyrtzidis | 19d78b7 | 2012-09-29 01:06:10 +0000 | [diff] [blame] | 1408 | if (!SuggestedModule) { |
| 1409 | // Notify the callback object that we've seen an inclusion directive. |
| 1410 | Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled, |
| 1411 | FilenameRange, File, |
| 1412 | SearchPath, RelativePath, |
| 1413 | /*ImportedModule=*/0); |
| 1414 | } |
Douglas Gregor | 11729f0 | 2011-11-30 18:12:06 +0000 | [diff] [blame] | 1415 | } |
| 1416 | |
| 1417 | if (File == 0) { |
Aaron Ballman | 8f94ac6 | 2012-07-17 23:19:16 +0000 | [diff] [blame] | 1418 | if (!SuppressIncludeNotFoundError) { |
| 1419 | // If the file could not be located and it was included via angle |
| 1420 | // brackets, we can attempt a lookup as though it were a quoted path to |
| 1421 | // provide the user with a possible fixit. |
| 1422 | if (isAngled) { |
| 1423 | File = LookupFile(Filename, false, LookupFrom, CurDir, |
| 1424 | Callbacks ? &SearchPath : 0, |
| 1425 | Callbacks ? &RelativePath : 0, |
| 1426 | getLangOpts().Modules ? &SuggestedModule : 0); |
| 1427 | if (File) { |
| 1428 | SourceRange Range(FilenameTok.getLocation(), CharEnd); |
| 1429 | Diag(FilenameTok, diag::err_pp_file_not_found_not_fatal) << |
| 1430 | Filename << |
| 1431 | FixItHint::CreateReplacement(Range, "\"" + Filename.str() + "\""); |
| 1432 | } |
| 1433 | } |
| 1434 | // If the file is still not found, just go with the vanilla diagnostic |
| 1435 | if (!File) |
| 1436 | Diag(FilenameTok, diag::err_pp_file_not_found) << Filename; |
| 1437 | } |
| 1438 | if (!File) |
| 1439 | return; |
Douglas Gregor | 11729f0 | 2011-11-30 18:12:06 +0000 | [diff] [blame] | 1440 | } |
| 1441 | |
Douglas Gregor | 97eec24 | 2011-09-15 22:00:41 +0000 | [diff] [blame] | 1442 | // If we are supposed to import a module rather than including the header, |
| 1443 | // do so now. |
Douglas Gregor | c04f644 | 2011-11-17 22:44:56 +0000 | [diff] [blame] | 1444 | if (SuggestedModule) { |
Douglas Gregor | 7194420 | 2011-11-30 00:36:36 +0000 | [diff] [blame] | 1445 | // Compute the module access path corresponding to this module. |
| 1446 | // FIXME: Should we have a second loadModule() overload to avoid this |
| 1447 | // extra lookup step? |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 1448 | SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path; |
Douglas Gregor | de3ef50 | 2011-11-30 23:21:26 +0000 | [diff] [blame] | 1449 | for (Module *Mod = SuggestedModule; Mod; Mod = Mod->Parent) |
Douglas Gregor | 7194420 | 2011-11-30 00:36:36 +0000 | [diff] [blame] | 1450 | Path.push_back(std::make_pair(getIdentifierInfo(Mod->Name), |
| 1451 | FilenameTok.getLocation())); |
| 1452 | std::reverse(Path.begin(), Path.end()); |
| 1453 | |
Douglas Gregor | 41e115a | 2011-11-30 18:02:36 +0000 | [diff] [blame] | 1454 | // Warn that we're replacing the include/import with a module import. |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 1455 | SmallString<128> PathString; |
Douglas Gregor | 41e115a | 2011-11-30 18:02:36 +0000 | [diff] [blame] | 1456 | for (unsigned I = 0, N = Path.size(); I != N; ++I) { |
| 1457 | if (I) |
| 1458 | PathString += '.'; |
| 1459 | PathString += Path[I].first->getName(); |
| 1460 | } |
| 1461 | int IncludeKind = 0; |
| 1462 | |
| 1463 | switch (IncludeTok.getIdentifierInfo()->getPPKeywordID()) { |
| 1464 | case tok::pp_include: |
| 1465 | IncludeKind = 0; |
| 1466 | break; |
| 1467 | |
| 1468 | case tok::pp_import: |
| 1469 | IncludeKind = 1; |
| 1470 | break; |
| 1471 | |
Douglas Gregor | 4401fbe | 2011-11-30 18:03:26 +0000 | [diff] [blame] | 1472 | case tok::pp_include_next: |
| 1473 | IncludeKind = 2; |
| 1474 | break; |
Douglas Gregor | 41e115a | 2011-11-30 18:02:36 +0000 | [diff] [blame] | 1475 | |
| 1476 | case tok::pp___include_macros: |
| 1477 | IncludeKind = 3; |
| 1478 | break; |
| 1479 | |
| 1480 | default: |
| 1481 | llvm_unreachable("unknown include directive kind"); |
Douglas Gregor | 41e115a | 2011-11-30 18:02:36 +0000 | [diff] [blame] | 1482 | } |
| 1483 | |
Douglas Gregor | 2537a36 | 2011-12-08 17:01:29 +0000 | [diff] [blame] | 1484 | // Determine whether we are actually building the module that this |
| 1485 | // include directive maps to. |
| 1486 | bool BuildingImportedModule |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1487 | = Path[0].first->getName() == getLangOpts().CurrentModule; |
Douglas Gregor | 2537a36 | 2011-12-08 17:01:29 +0000 | [diff] [blame] | 1488 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1489 | if (!BuildingImportedModule && getLangOpts().ObjC2) { |
Douglas Gregor | 2537a36 | 2011-12-08 17:01:29 +0000 | [diff] [blame] | 1490 | // If we're not building the imported module, warn that we're going |
| 1491 | // to automatically turn this inclusion directive into a module import. |
Douglas Gregor | da82e70 | 2012-01-03 19:32:59 +0000 | [diff] [blame] | 1492 | // We only do this in Objective-C, where we have a module-import syntax. |
Douglas Gregor | 2537a36 | 2011-12-08 17:01:29 +0000 | [diff] [blame] | 1493 | CharSourceRange ReplaceRange(SourceRange(HashLoc, CharEnd), |
| 1494 | /*IsTokenRange=*/false); |
| 1495 | Diag(HashLoc, diag::warn_auto_module_import) |
| 1496 | << IncludeKind << PathString |
| 1497 | << FixItHint::CreateReplacement(ReplaceRange, |
Douglas Gregor | c50d492 | 2012-12-11 22:11:52 +0000 | [diff] [blame] | 1498 | "@import " + PathString.str().str() + ";"); |
Douglas Gregor | 2537a36 | 2011-12-08 17:01:29 +0000 | [diff] [blame] | 1499 | } |
Douglas Gregor | 41e115a | 2011-11-30 18:02:36 +0000 | [diff] [blame] | 1500 | |
Douglas Gregor | 7194420 | 2011-11-30 00:36:36 +0000 | [diff] [blame] | 1501 | // Load the module. |
Douglas Gregor | ff2be53 | 2011-12-01 17:11:21 +0000 | [diff] [blame] | 1502 | // If this was an #__include_macros directive, only make macros visible. |
| 1503 | Module::NameVisibilityKind Visibility |
| 1504 | = (IncludeKind == 3)? Module::MacrosVisible : Module::AllVisible; |
Douglas Gregor | 7a62657 | 2012-11-29 23:55:25 +0000 | [diff] [blame] | 1505 | ModuleLoadResult Imported |
Douglas Gregor | 98a52db | 2011-12-20 00:28:52 +0000 | [diff] [blame] | 1506 | = TheModuleLoader.loadModule(IncludeTok.getLocation(), Path, Visibility, |
| 1507 | /*IsIncludeDirective=*/true); |
Argyrios Kyrtzidis | 051b443 | 2012-09-29 01:06:01 +0000 | [diff] [blame] | 1508 | assert((Imported == 0 || Imported == SuggestedModule) && |
| 1509 | "the imported module is different than the suggested one"); |
Douglas Gregor | 2537a36 | 2011-12-08 17:01:29 +0000 | [diff] [blame] | 1510 | |
| 1511 | // If this header isn't part of the module we're building, we're done. |
Argyrios Kyrtzidis | 19d78b7 | 2012-09-29 01:06:10 +0000 | [diff] [blame] | 1512 | if (!BuildingImportedModule && Imported) { |
| 1513 | if (Callbacks) { |
| 1514 | Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled, |
| 1515 | FilenameRange, File, |
| 1516 | SearchPath, RelativePath, Imported); |
| 1517 | } |
Douglas Gregor | 2537a36 | 2011-12-08 17:01:29 +0000 | [diff] [blame] | 1518 | return; |
Argyrios Kyrtzidis | 19d78b7 | 2012-09-29 01:06:10 +0000 | [diff] [blame] | 1519 | } |
Douglas Gregor | 7a62657 | 2012-11-29 23:55:25 +0000 | [diff] [blame] | 1520 | |
| 1521 | // If we failed to find a submodule that we expected to find, we can |
| 1522 | // continue. Otherwise, there's an error in the included file, so we |
| 1523 | // don't want to include it. |
| 1524 | if (!BuildingImportedModule && !Imported.isMissingExpected()) { |
| 1525 | return; |
| 1526 | } |
Argyrios Kyrtzidis | 19d78b7 | 2012-09-29 01:06:10 +0000 | [diff] [blame] | 1527 | } |
| 1528 | |
| 1529 | if (Callbacks && SuggestedModule) { |
| 1530 | // We didn't notify the callback object that we've seen an inclusion |
| 1531 | // directive before. Now that we are parsing the include normally and not |
| 1532 | // turning it to a module import, notify the callback object. |
| 1533 | Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled, |
| 1534 | FilenameRange, File, |
| 1535 | SearchPath, RelativePath, |
| 1536 | /*ImportedModule=*/0); |
Douglas Gregor | 97eec24 | 2011-09-15 22:00:41 +0000 | [diff] [blame] | 1537 | } |
| 1538 | |
Chris Lattner | c88a23e | 2008-09-26 20:12:23 +0000 | [diff] [blame] | 1539 | // The #included file will be considered to be a system header if either it is |
| 1540 | // in a system include directory, or if the #includer is a system include |
| 1541 | // header. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1542 | SrcMgr::CharacteristicKind FileCharacter = |
Chris Lattner | b03dc76 | 2008-09-26 21:18:42 +0000 | [diff] [blame] | 1543 | std::max(HeaderInfo.getFileDirFlavor(File), |
Chris Lattner | c033416 | 2009-01-19 07:59:15 +0000 | [diff] [blame] | 1544 | SourceMgr.getFileCharacteristic(FilenameTok.getLocation())); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1545 | |
Chris Lattner | 72286d6 | 2010-04-19 20:44:31 +0000 | [diff] [blame] | 1546 | // Ask HeaderInfo if we should enter this #include file. If not, #including |
| 1547 | // this file will have no effect. |
| 1548 | if (!HeaderInfo.ShouldEnterIncludeFile(File, isImport)) { |
Chris Lattner | fb24a3a | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 1549 | if (Callbacks) |
Chris Lattner | 72286d6 | 2010-04-19 20:44:31 +0000 | [diff] [blame] | 1550 | Callbacks->FileSkipped(*File, FilenameTok, FileCharacter); |
Chris Lattner | 72286d6 | 2010-04-19 20:44:31 +0000 | [diff] [blame] | 1551 | return; |
| 1552 | } |
| 1553 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1554 | // Look up the file, create a File ID for it. |
Argyrios Kyrtzidis | a956450 | 2012-03-27 18:47:48 +0000 | [diff] [blame] | 1555 | SourceLocation IncludePos = End; |
| 1556 | // If the filename string was the result of macro expansions, set the include |
| 1557 | // position on the file where it will be included and after the expansions. |
| 1558 | if (IncludePos.isMacroID()) |
| 1559 | IncludePos = SourceMgr.getExpansionRange(IncludePos).second; |
| 1560 | FileID FID = SourceMgr.createFileID(File, IncludePos, FileCharacter); |
Peter Collingbourne | d395b93 | 2011-06-30 16:41:03 +0000 | [diff] [blame] | 1561 | assert(!FID.isInvalid() && "Expected valid file ID"); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1562 | |
| 1563 | // Finally, if all is good, enter the new file! |
Chris Lattner | fb24a3a | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 1564 | EnterSourceFile(FID, CurDir, FilenameTok.getLocation()); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1565 | } |
| 1566 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 1567 | /// HandleIncludeNextDirective - Implements \#include_next. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1568 | /// |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1569 | void Preprocessor::HandleIncludeNextDirective(SourceLocation HashLoc, |
| 1570 | Token &IncludeNextTok) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1571 | Diag(IncludeNextTok, diag::ext_pp_include_next_directive); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1572 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1573 | // #include_next is like #include, except that we start searching after |
| 1574 | // the current found directory. If we can't do this, issue a |
| 1575 | // diagnostic. |
| 1576 | const DirectoryLookup *Lookup = CurDirLookup; |
| 1577 | if (isInPrimaryFile()) { |
| 1578 | Lookup = 0; |
| 1579 | Diag(IncludeNextTok, diag::pp_include_next_in_primary); |
| 1580 | } else if (Lookup == 0) { |
| 1581 | Diag(IncludeNextTok, diag::pp_include_next_absolute_path); |
| 1582 | } else { |
| 1583 | // Start looking up in the next directory. |
| 1584 | ++Lookup; |
| 1585 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1586 | |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1587 | return HandleIncludeDirective(HashLoc, IncludeNextTok, Lookup); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1588 | } |
| 1589 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 1590 | /// HandleMicrosoftImportDirective - Implements \#import for Microsoft Mode |
Aaron Ballman | 0467f55 | 2012-03-18 03:10:37 +0000 | [diff] [blame] | 1591 | void Preprocessor::HandleMicrosoftImportDirective(Token &Tok) { |
| 1592 | // The Microsoft #import directive takes a type library and generates header |
| 1593 | // files from it, and includes those. This is beyond the scope of what clang |
| 1594 | // does, so we ignore it and error out. However, #import can optionally have |
| 1595 | // trailing attributes that span multiple lines. We're going to eat those |
| 1596 | // so we can continue processing from there. |
| 1597 | Diag(Tok, diag::err_pp_import_directive_ms ); |
| 1598 | |
| 1599 | // Read tokens until we get to the end of the directive. Note that the |
| 1600 | // directive can be split over multiple lines using the backslash character. |
| 1601 | DiscardUntilEndOfDirective(); |
| 1602 | } |
| 1603 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 1604 | /// HandleImportDirective - Implements \#import. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1605 | /// |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1606 | void Preprocessor::HandleImportDirective(SourceLocation HashLoc, |
| 1607 | Token &ImportTok) { |
Aaron Ballman | 0467f55 | 2012-03-18 03:10:37 +0000 | [diff] [blame] | 1608 | if (!LangOpts.ObjC1) { // #import is standard for ObjC. |
| 1609 | if (LangOpts.MicrosoftMode) |
| 1610 | return HandleMicrosoftImportDirective(ImportTok); |
Chris Lattner | d4a9673 | 2009-03-06 04:28:03 +0000 | [diff] [blame] | 1611 | Diag(ImportTok, diag::ext_pp_import_directive); |
Aaron Ballman | 0467f55 | 2012-03-18 03:10:37 +0000 | [diff] [blame] | 1612 | } |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1613 | return HandleIncludeDirective(HashLoc, ImportTok, 0, true); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1614 | } |
| 1615 | |
Chris Lattner | 58a1eb0 | 2009-04-08 18:46:40 +0000 | [diff] [blame] | 1616 | /// HandleIncludeMacrosDirective - The -imacros command line option turns into a |
| 1617 | /// pseudo directive in the predefines buffer. This handles it by sucking all |
| 1618 | /// tokens through the preprocessor and discarding them (only keeping the side |
| 1619 | /// effects on the preprocessor). |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1620 | void Preprocessor::HandleIncludeMacrosDirective(SourceLocation HashLoc, |
| 1621 | Token &IncludeMacrosTok) { |
Chris Lattner | 58a1eb0 | 2009-04-08 18:46:40 +0000 | [diff] [blame] | 1622 | // This directive should only occur in the predefines buffer. If not, emit an |
| 1623 | // error and reject it. |
| 1624 | SourceLocation Loc = IncludeMacrosTok.getLocation(); |
| 1625 | if (strcmp(SourceMgr.getBufferName(Loc), "<built-in>") != 0) { |
| 1626 | Diag(IncludeMacrosTok.getLocation(), |
| 1627 | diag::pp_include_macros_out_of_predefines); |
| 1628 | DiscardUntilEndOfDirective(); |
| 1629 | return; |
| 1630 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1631 | |
Chris Lattner | e01d82b | 2009-04-08 20:53:24 +0000 | [diff] [blame] | 1632 | // Treat this as a normal #include for checking purposes. If this is |
| 1633 | // successful, it will push a new lexer onto the include stack. |
Douglas Gregor | 796d76a | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1634 | HandleIncludeDirective(HashLoc, IncludeMacrosTok, 0, false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1635 | |
Chris Lattner | e01d82b | 2009-04-08 20:53:24 +0000 | [diff] [blame] | 1636 | Token TmpTok; |
| 1637 | do { |
| 1638 | Lex(TmpTok); |
| 1639 | assert(TmpTok.isNot(tok::eof) && "Didn't find end of -imacros!"); |
| 1640 | } while (TmpTok.isNot(tok::hashhash)); |
Chris Lattner | 58a1eb0 | 2009-04-08 18:46:40 +0000 | [diff] [blame] | 1641 | } |
| 1642 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1643 | //===----------------------------------------------------------------------===// |
| 1644 | // Preprocessor Macro Directive Handling. |
| 1645 | //===----------------------------------------------------------------------===// |
| 1646 | |
| 1647 | /// ReadMacroDefinitionArgList - The ( starting an argument list of a macro |
| 1648 | /// definition has just been read. Lex the rest of the arguments and the |
| 1649 | /// closing ), updating MI with what we learn. Return true if an error occurs |
| 1650 | /// parsing the arg list. |
Abramo Bagnara | c9e48c0 | 2012-03-31 20:17:27 +0000 | [diff] [blame] | 1651 | bool Preprocessor::ReadMacroDefinitionArgList(MacroInfo *MI, Token &Tok) { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1652 | SmallVector<IdentifierInfo*, 32> Arguments; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1653 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1654 | while (1) { |
| 1655 | LexUnexpandedToken(Tok); |
| 1656 | switch (Tok.getKind()) { |
| 1657 | case tok::r_paren: |
| 1658 | // Found the end of the argument list. |
Chris Lattner | f87c510 | 2009-02-20 22:31:31 +0000 | [diff] [blame] | 1659 | if (Arguments.empty()) // #define FOO() |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1660 | return false; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1661 | // Otherwise we have #define FOO(A,) |
| 1662 | Diag(Tok, diag::err_pp_expected_ident_in_arg_list); |
| 1663 | return true; |
| 1664 | case tok::ellipsis: // #define X(... -> C99 varargs |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1665 | if (!LangOpts.C99) |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1666 | Diag(Tok, LangOpts.CPlusPlus11 ? |
Richard Smith | acd4d3d | 2011-10-15 01:18:56 +0000 | [diff] [blame] | 1667 | diag::warn_cxx98_compat_variadic_macro : |
| 1668 | diag::ext_variadic_macro); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1669 | |
Joey Gouly | 1d58cdb | 2013-01-17 17:35:00 +0000 | [diff] [blame] | 1670 | // OpenCL v1.2 s6.9.e: variadic macros are not supported. |
| 1671 | if (LangOpts.OpenCL) { |
| 1672 | Diag(Tok, diag::err_pp_opencl_variadic_macros); |
| 1673 | return true; |
| 1674 | } |
| 1675 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1676 | // Lex the token after the identifier. |
| 1677 | LexUnexpandedToken(Tok); |
| 1678 | if (Tok.isNot(tok::r_paren)) { |
| 1679 | Diag(Tok, diag::err_pp_missing_rparen_in_macro_def); |
| 1680 | return true; |
| 1681 | } |
| 1682 | // Add the __VA_ARGS__ identifier as an argument. |
| 1683 | Arguments.push_back(Ident__VA_ARGS__); |
| 1684 | MI->setIsC99Varargs(); |
Chris Lattner | 70946da | 2009-02-20 22:46:43 +0000 | [diff] [blame] | 1685 | MI->setArgumentList(&Arguments[0], Arguments.size(), BP); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1686 | return false; |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1687 | case tok::eod: // #define X( |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1688 | Diag(Tok, diag::err_pp_missing_rparen_in_macro_def); |
| 1689 | return true; |
| 1690 | default: |
| 1691 | // Handle keywords and identifiers here to accept things like |
| 1692 | // #define Foo(for) for. |
| 1693 | IdentifierInfo *II = Tok.getIdentifierInfo(); |
| 1694 | if (II == 0) { |
| 1695 | // #define X(1 |
| 1696 | Diag(Tok, diag::err_pp_invalid_tok_in_arg_list); |
| 1697 | return true; |
| 1698 | } |
| 1699 | |
| 1700 | // If this is already used as an argument, it is used multiple times (e.g. |
| 1701 | // #define X(A,A. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1702 | if (std::find(Arguments.begin(), Arguments.end(), II) != |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1703 | Arguments.end()) { // C99 6.10.3p6 |
Chris Lattner | c5cdade | 2008-11-19 07:33:58 +0000 | [diff] [blame] | 1704 | Diag(Tok, diag::err_pp_duplicate_name_in_arg_list) << II; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1705 | return true; |
| 1706 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1707 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1708 | // Add the argument to the macro info. |
| 1709 | Arguments.push_back(II); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1710 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1711 | // Lex the token after the identifier. |
| 1712 | LexUnexpandedToken(Tok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1713 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1714 | switch (Tok.getKind()) { |
| 1715 | default: // #define X(A B |
| 1716 | Diag(Tok, diag::err_pp_expected_comma_in_arg_list); |
| 1717 | return true; |
| 1718 | case tok::r_paren: // #define X(A) |
Chris Lattner | 70946da | 2009-02-20 22:46:43 +0000 | [diff] [blame] | 1719 | MI->setArgumentList(&Arguments[0], Arguments.size(), BP); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1720 | return false; |
| 1721 | case tok::comma: // #define X(A, |
| 1722 | break; |
| 1723 | case tok::ellipsis: // #define X(A... -> GCC extension |
| 1724 | // Diagnose extension. |
| 1725 | Diag(Tok, diag::ext_named_variadic_macro); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1726 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1727 | // Lex the token after the identifier. |
| 1728 | LexUnexpandedToken(Tok); |
| 1729 | if (Tok.isNot(tok::r_paren)) { |
| 1730 | Diag(Tok, diag::err_pp_missing_rparen_in_macro_def); |
| 1731 | return true; |
| 1732 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1733 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1734 | MI->setIsGNUVarargs(); |
Chris Lattner | 70946da | 2009-02-20 22:46:43 +0000 | [diff] [blame] | 1735 | MI->setArgumentList(&Arguments[0], Arguments.size(), BP); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1736 | return false; |
| 1737 | } |
| 1738 | } |
| 1739 | } |
| 1740 | } |
| 1741 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 1742 | /// HandleDefineDirective - Implements \#define. This consumes the entire macro |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1743 | /// line then lets the caller lex the next real token. |
| 1744 | void Preprocessor::HandleDefineDirective(Token &DefineTok) { |
| 1745 | ++NumDefined; |
| 1746 | |
| 1747 | Token MacroNameTok; |
| 1748 | ReadMacroName(MacroNameTok, 1); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1749 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1750 | // Error reading macro name? If so, diagnostic already issued. |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1751 | if (MacroNameTok.is(tok::eod)) |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1752 | return; |
| 1753 | |
Chris Lattner | d6e97af | 2009-04-21 04:46:33 +0000 | [diff] [blame] | 1754 | Token LastTok = MacroNameTok; |
| 1755 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1756 | // If we are supposed to keep comments in #defines, reenable comment saving |
| 1757 | // mode. |
Ted Kremenek | 59e003e | 2008-11-18 00:43:07 +0000 | [diff] [blame] | 1758 | if (CurLexer) CurLexer->SetCommentRetentionState(KeepMacroComments); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1759 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1760 | // Create the new macro. |
Ted Kremenek | 6c7ea11 | 2008-12-15 19:56:42 +0000 | [diff] [blame] | 1761 | MacroInfo *MI = AllocateMacroInfo(MacroNameTok.getLocation()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1762 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1763 | Token Tok; |
| 1764 | LexUnexpandedToken(Tok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1765 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1766 | // If this is a function-like macro definition, parse the argument list, |
| 1767 | // marking each of the identifiers as being used as macro arguments. Also, |
| 1768 | // check other constraints on the first token of the macro body. |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1769 | if (Tok.is(tok::eod)) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1770 | // If there is no body to this macro, we have no special handling here. |
Chris Lattner | 2425bcb | 2009-04-18 02:23:25 +0000 | [diff] [blame] | 1771 | } else if (Tok.hasLeadingSpace()) { |
| 1772 | // This is a normal token with leading space. Clear the leading space |
| 1773 | // marker on the first token to get proper expansion. |
| 1774 | Tok.clearFlag(Token::LeadingSpace); |
| 1775 | } else if (Tok.is(tok::l_paren)) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1776 | // This is a function-like macro definition. Read the argument list. |
| 1777 | MI->setIsFunctionLike(); |
Abramo Bagnara | c9e48c0 | 2012-03-31 20:17:27 +0000 | [diff] [blame] | 1778 | if (ReadMacroDefinitionArgList(MI, LastTok)) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1779 | // Forget about MI. |
Ted Kremenek | 6c7ea11 | 2008-12-15 19:56:42 +0000 | [diff] [blame] | 1780 | ReleaseMacroInfo(MI); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1781 | // Throw away the rest of the line. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 1782 | if (CurPPLexer->ParsingPreprocessorDirective) |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1783 | DiscardUntilEndOfDirective(); |
| 1784 | return; |
| 1785 | } |
| 1786 | |
Chris Lattner | 249c38b | 2009-04-19 18:26:34 +0000 | [diff] [blame] | 1787 | // If this is a definition of a variadic C99 function-like macro, not using |
| 1788 | // the GNU named varargs extension, enabled __VA_ARGS__. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1789 | |
Chris Lattner | 249c38b | 2009-04-19 18:26:34 +0000 | [diff] [blame] | 1790 | // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro. |
| 1791 | // This gets unpoisoned where it is allowed. |
| 1792 | assert(Ident__VA_ARGS__->isPoisoned() && "__VA_ARGS__ should be poisoned!"); |
| 1793 | if (MI->isC99Varargs()) |
| 1794 | Ident__VA_ARGS__->setIsPoisoned(false); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1795 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1796 | // Read the first token after the arg list for down below. |
| 1797 | LexUnexpandedToken(Tok); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 1798 | } else if (LangOpts.C99 || LangOpts.CPlusPlus11) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1799 | // C99 requires whitespace between the macro definition and the body. Emit |
| 1800 | // a diagnostic for something like "#define X+". |
Chris Lattner | 2425bcb | 2009-04-18 02:23:25 +0000 | [diff] [blame] | 1801 | Diag(Tok, diag::ext_c99_whitespace_required_after_macro_name); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1802 | } else { |
Chris Lattner | 2425bcb | 2009-04-18 02:23:25 +0000 | [diff] [blame] | 1803 | // C90 6.8 TC1 says: "In the definition of an object-like macro, if the |
| 1804 | // first character of a replacement list is not a character required by |
| 1805 | // subclause 5.2.1, then there shall be white-space separation between the |
| 1806 | // identifier and the replacement list.". 5.2.1 lists this set: |
| 1807 | // "A-Za-z0-9!"#%&'()*+,_./:;<=>?[\]^_{|}~" as well as whitespace, which |
| 1808 | // is irrelevant here. |
| 1809 | bool isInvalid = false; |
| 1810 | if (Tok.is(tok::at)) // @ is not in the list above. |
| 1811 | isInvalid = true; |
| 1812 | else if (Tok.is(tok::unknown)) { |
| 1813 | // If we have an unknown token, it is something strange like "`". Since |
| 1814 | // all of valid characters would have lexed into a single character |
| 1815 | // token of some sort, we know this is not a valid case. |
| 1816 | isInvalid = true; |
| 1817 | } |
| 1818 | if (isInvalid) |
| 1819 | Diag(Tok, diag::ext_missing_whitespace_after_macro_name); |
| 1820 | else |
| 1821 | Diag(Tok, diag::warn_missing_whitespace_after_macro_name); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1822 | } |
Chris Lattner | d6e97af | 2009-04-21 04:46:33 +0000 | [diff] [blame] | 1823 | |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1824 | if (!Tok.is(tok::eod)) |
Chris Lattner | d6e97af | 2009-04-21 04:46:33 +0000 | [diff] [blame] | 1825 | LastTok = Tok; |
| 1826 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1827 | // Read the rest of the macro body. |
| 1828 | if (MI->isObjectLike()) { |
| 1829 | // Object-like macros are very simple, just read their body. |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1830 | while (Tok.isNot(tok::eod)) { |
Chris Lattner | d6e97af | 2009-04-21 04:46:33 +0000 | [diff] [blame] | 1831 | LastTok = Tok; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1832 | MI->AddTokenToBody(Tok); |
| 1833 | // Get the next token of the macro. |
| 1834 | LexUnexpandedToken(Tok); |
| 1835 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1836 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1837 | } else { |
Chris Lattner | 83bd828 | 2009-05-25 17:16:10 +0000 | [diff] [blame] | 1838 | // Otherwise, read the body of a function-like macro. While we are at it, |
| 1839 | // check C99 6.10.3.2p1: ensure that # operators are followed by macro |
| 1840 | // parameters in function-like macro expansions. |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1841 | while (Tok.isNot(tok::eod)) { |
Chris Lattner | d6e97af | 2009-04-21 04:46:33 +0000 | [diff] [blame] | 1842 | LastTok = Tok; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1843 | |
Eli Friedman | 14d3c79 | 2012-11-14 02:18:46 +0000 | [diff] [blame] | 1844 | if (Tok.isNot(tok::hash) && Tok.isNot(tok::hashhash)) { |
Chris Lattner | 83bd828 | 2009-05-25 17:16:10 +0000 | [diff] [blame] | 1845 | MI->AddTokenToBody(Tok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1846 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1847 | // Get the next token of the macro. |
| 1848 | LexUnexpandedToken(Tok); |
| 1849 | continue; |
| 1850 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1851 | |
Eli Friedman | 14d3c79 | 2012-11-14 02:18:46 +0000 | [diff] [blame] | 1852 | if (Tok.is(tok::hashhash)) { |
| 1853 | |
| 1854 | // If we see token pasting, check if it looks like the gcc comma |
| 1855 | // pasting extension. We'll use this information to suppress |
| 1856 | // diagnostics later on. |
| 1857 | |
| 1858 | // Get the next token of the macro. |
| 1859 | LexUnexpandedToken(Tok); |
| 1860 | |
| 1861 | if (Tok.is(tok::eod)) { |
| 1862 | MI->AddTokenToBody(LastTok); |
| 1863 | break; |
| 1864 | } |
| 1865 | |
| 1866 | unsigned NumTokens = MI->getNumTokens(); |
| 1867 | if (NumTokens && Tok.getIdentifierInfo() == Ident__VA_ARGS__ && |
| 1868 | MI->getReplacementToken(NumTokens-1).is(tok::comma)) |
| 1869 | MI->setHasCommaPasting(); |
| 1870 | |
| 1871 | // Things look ok, add the '##' and param name tokens to the macro. |
| 1872 | MI->AddTokenToBody(LastTok); |
| 1873 | MI->AddTokenToBody(Tok); |
| 1874 | LastTok = Tok; |
| 1875 | |
| 1876 | // Get the next token of the macro. |
| 1877 | LexUnexpandedToken(Tok); |
| 1878 | continue; |
| 1879 | } |
| 1880 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1881 | // Get the next token of the macro. |
| 1882 | LexUnexpandedToken(Tok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1883 | |
Chris Lattner | 83bd828 | 2009-05-25 17:16:10 +0000 | [diff] [blame] | 1884 | // Check for a valid macro arg identifier. |
| 1885 | if (Tok.getIdentifierInfo() == 0 || |
| 1886 | MI->getArgumentNum(Tok.getIdentifierInfo()) == -1) { |
| 1887 | |
| 1888 | // If this is assembler-with-cpp mode, we accept random gibberish after |
| 1889 | // the '#' because '#' is often a comment character. However, change |
| 1890 | // the kind of the token to tok::unknown so that the preprocessor isn't |
| 1891 | // confused. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1892 | if (getLangOpts().AsmPreprocessor && Tok.isNot(tok::eod)) { |
Chris Lattner | 83bd828 | 2009-05-25 17:16:10 +0000 | [diff] [blame] | 1893 | LastTok.setKind(tok::unknown); |
| 1894 | } else { |
| 1895 | Diag(Tok, diag::err_pp_stringize_not_parameter); |
| 1896 | ReleaseMacroInfo(MI); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1897 | |
Chris Lattner | 83bd828 | 2009-05-25 17:16:10 +0000 | [diff] [blame] | 1898 | // Disable __VA_ARGS__ again. |
| 1899 | Ident__VA_ARGS__->setIsPoisoned(true); |
| 1900 | return; |
| 1901 | } |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1902 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1903 | |
Chris Lattner | 83bd828 | 2009-05-25 17:16:10 +0000 | [diff] [blame] | 1904 | // Things look ok, add the '#' and param name tokens to the macro. |
| 1905 | MI->AddTokenToBody(LastTok); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1906 | MI->AddTokenToBody(Tok); |
Chris Lattner | 83bd828 | 2009-05-25 17:16:10 +0000 | [diff] [blame] | 1907 | LastTok = Tok; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1908 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1909 | // Get the next token of the macro. |
| 1910 | LexUnexpandedToken(Tok); |
| 1911 | } |
| 1912 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1913 | |
| 1914 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1915 | // Disable __VA_ARGS__ again. |
| 1916 | Ident__VA_ARGS__->setIsPoisoned(true); |
| 1917 | |
Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 1918 | // Check that there is no paste (##) operator at the beginning or end of the |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1919 | // replacement list. |
| 1920 | unsigned NumTokens = MI->getNumTokens(); |
| 1921 | if (NumTokens != 0) { |
| 1922 | if (MI->getReplacementToken(0).is(tok::hashhash)) { |
| 1923 | Diag(MI->getReplacementToken(0), diag::err_paste_at_start); |
Ted Kremenek | 6c7ea11 | 2008-12-15 19:56:42 +0000 | [diff] [blame] | 1924 | ReleaseMacroInfo(MI); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1925 | return; |
| 1926 | } |
| 1927 | if (MI->getReplacementToken(NumTokens-1).is(tok::hashhash)) { |
| 1928 | Diag(MI->getReplacementToken(NumTokens-1), diag::err_paste_at_end); |
Ted Kremenek | 6c7ea11 | 2008-12-15 19:56:42 +0000 | [diff] [blame] | 1929 | ReleaseMacroInfo(MI); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1930 | return; |
| 1931 | } |
| 1932 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1933 | |
Chris Lattner | d6e97af | 2009-04-21 04:46:33 +0000 | [diff] [blame] | 1934 | MI->setDefinitionEndLoc(LastTok.getLocation()); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1935 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1936 | // Finally, if this identifier already had a macro defined for it, verify that |
Alexander Kornienko | 8b3f623 | 2012-08-29 00:20:03 +0000 | [diff] [blame] | 1937 | // the macro bodies are identical, and issue diagnostics if they are not. |
Argyrios Kyrtzidis | 09c9e81 | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 1938 | if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) { |
Chris Lattner | 5244f34 | 2009-01-16 19:50:11 +0000 | [diff] [blame] | 1939 | // It is very common for system headers to have tons of macro redefinitions |
| 1940 | // and for warnings to be disabled in system headers. If this is the case, |
| 1941 | // then don't bother calling MacroInfo::isIdenticalTo. |
Chris Lattner | 80c21df | 2009-03-13 21:17:23 +0000 | [diff] [blame] | 1942 | if (!getDiagnostics().getSuppressSystemWarnings() || |
Chris Lattner | 5244f34 | 2009-01-16 19:50:11 +0000 | [diff] [blame] | 1943 | !SourceMgr.isInSystemHeader(DefineTok.getLocation())) { |
Argyrios Kyrtzidis | b495cc1 | 2011-01-18 19:50:15 +0000 | [diff] [blame] | 1944 | if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused()) |
Chris Lattner | 5244f34 | 2009-01-16 19:50:11 +0000 | [diff] [blame] | 1945 | Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1946 | |
Richard Smith | 7b24254 | 2013-03-06 00:46:00 +0000 | [diff] [blame] | 1947 | // Warn if defining "__LINE__" and other builtins, per C99 6.10.8/4 and |
| 1948 | // C++ [cpp.predefined]p4, but allow it as an extension. |
| 1949 | if (OtherMI->isBuiltinMacro()) |
| 1950 | Diag(MacroNameTok, diag::ext_pp_redef_builtin_macro); |
Chris Lattner | c0a585d | 2010-08-17 15:55:45 +0000 | [diff] [blame] | 1951 | // Macros must be identical. This means all tokens and whitespace |
Chris Lattner | 5244f34 | 2009-01-16 19:50:11 +0000 | [diff] [blame] | 1952 | // separation must be the same. C99 6.10.3.2. |
Richard Smith | 7b24254 | 2013-03-06 00:46:00 +0000 | [diff] [blame] | 1953 | else if (!OtherMI->isAllowRedefinitionsWithoutWarning() && |
| 1954 | !MI->isIdenticalTo(*OtherMI, *this)) { |
Chris Lattner | 5244f34 | 2009-01-16 19:50:11 +0000 | [diff] [blame] | 1955 | Diag(MI->getDefinitionLoc(), diag::ext_pp_macro_redef) |
| 1956 | << MacroNameTok.getIdentifierInfo(); |
| 1957 | Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition); |
| 1958 | } |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1959 | } |
Argyrios Kyrtzidis | b495cc1 | 2011-01-18 19:50:15 +0000 | [diff] [blame] | 1960 | if (OtherMI->isWarnIfUnused()) |
| 1961 | WarnUnusedMacroLocs.erase(OtherMI->getDefinitionLoc()); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1962 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1963 | |
Argyrios Kyrtzidis | b6210df | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 1964 | DefMacroDirective *MD = |
| 1965 | appendDefMacroDirective(MacroNameTok.getIdentifierInfo(), MI); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1966 | |
Argyrios Kyrtzidis | 1cb0de1 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 1967 | assert(!MI->isUsed()); |
| 1968 | // If we need warning for not using the macro, add its location in the |
| 1969 | // warn-because-unused-macro set. If it gets used it will be removed from set. |
| 1970 | if (isInPrimaryFile() && // don't warn for include'd macros. |
| 1971 | Diags->getDiagnosticLevel(diag::pp_macro_not_used, |
David Blaikie | 9c902b5 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 1972 | MI->getDefinitionLoc()) != DiagnosticsEngine::Ignored) { |
Argyrios Kyrtzidis | 1cb0de1 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 1973 | MI->setIsWarnIfUnused(true); |
| 1974 | WarnUnusedMacroLocs.insert(MI->getDefinitionLoc()); |
| 1975 | } |
| 1976 | |
Chris Lattner | 928e909 | 2009-04-12 01:39:54 +0000 | [diff] [blame] | 1977 | // If the callbacks want to know, tell them about the macro definition. |
| 1978 | if (Callbacks) |
Argyrios Kyrtzidis | fead64b | 2013-02-24 00:05:14 +0000 | [diff] [blame] | 1979 | Callbacks->MacroDefined(MacroNameTok, MD); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1980 | } |
| 1981 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 1982 | /// HandleUndefDirective - Implements \#undef. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1983 | /// |
| 1984 | void Preprocessor::HandleUndefDirective(Token &UndefTok) { |
| 1985 | ++NumUndefined; |
| 1986 | |
| 1987 | Token MacroNameTok; |
| 1988 | ReadMacroName(MacroNameTok, 2); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1989 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1990 | // Error reading macro name? If so, diagnostic already issued. |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 1991 | if (MacroNameTok.is(tok::eod)) |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1992 | return; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1993 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1994 | // Check to see if this is the last token on the #undef line. |
Chris Lattner | ce2ab6f | 2009-04-14 05:07:49 +0000 | [diff] [blame] | 1995 | CheckEndOfDirective("undef"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1996 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 1997 | // Okay, we finally have a valid identifier to undef. |
Argyrios Kyrtzidis | 09c9e81 | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 1998 | MacroDirective *MD = getMacroDirective(MacroNameTok.getIdentifierInfo()); |
Argyrios Kyrtzidis | b6210df | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 1999 | const MacroInfo *MI = MD ? MD->getMacroInfo() : 0; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2000 | |
Argyrios Kyrtzidis | 99b0a6a | 2013-01-16 16:52:44 +0000 | [diff] [blame] | 2001 | // If the callbacks want to know, tell them about the macro #undef. |
| 2002 | // Note: no matter if the macro was defined or not. |
| 2003 | if (Callbacks) |
Argyrios Kyrtzidis | fead64b | 2013-02-24 00:05:14 +0000 | [diff] [blame] | 2004 | Callbacks->MacroUndefined(MacroNameTok, MD); |
Argyrios Kyrtzidis | 99b0a6a | 2013-01-16 16:52:44 +0000 | [diff] [blame] | 2005 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2006 | // If the macro is not defined, this is a noop undef, just return. |
| 2007 | if (MI == 0) return; |
| 2008 | |
Argyrios Kyrtzidis | 2299889 | 2011-07-11 20:39:47 +0000 | [diff] [blame] | 2009 | if (!MI->isUsed() && MI->isWarnIfUnused()) |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2010 | Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used); |
Chris Lattner | cd6d4b1 | 2009-04-21 03:42:09 +0000 | [diff] [blame] | 2011 | |
Argyrios Kyrtzidis | 1cb0de1 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 2012 | if (MI->isWarnIfUnused()) |
| 2013 | WarnUnusedMacroLocs.erase(MI->getDefinitionLoc()); |
| 2014 | |
Argyrios Kyrtzidis | b6210df | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 2015 | appendMacroDirective(MacroNameTok.getIdentifierInfo(), |
| 2016 | AllocateUndefMacroDirective(MacroNameTok.getLocation())); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2017 | } |
| 2018 | |
| 2019 | |
| 2020 | //===----------------------------------------------------------------------===// |
| 2021 | // Preprocessor Conditional Directive Handling. |
| 2022 | //===----------------------------------------------------------------------===// |
| 2023 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 2024 | /// HandleIfdefDirective - Implements the \#ifdef/\#ifndef directive. isIfndef |
| 2025 | /// is true when this is a \#ifndef directive. ReadAnyTokensBeforeDirective is |
| 2026 | /// true if any tokens have been returned or pp-directives activated before this |
| 2027 | /// \#ifndef has been lexed. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2028 | /// |
| 2029 | void Preprocessor::HandleIfdefDirective(Token &Result, bool isIfndef, |
| 2030 | bool ReadAnyTokensBeforeDirective) { |
| 2031 | ++NumIf; |
| 2032 | Token DirectiveTok = Result; |
| 2033 | |
| 2034 | Token MacroNameTok; |
| 2035 | ReadMacroName(MacroNameTok); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2036 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2037 | // Error reading macro name? If so, diagnostic already issued. |
Peter Collingbourne | 2f1e36b | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 2038 | if (MacroNameTok.is(tok::eod)) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2039 | // Skip code until we get to #endif. This helps with recovery by not |
| 2040 | // emitting an error when the #endif is reached. |
| 2041 | SkipExcludedConditionalBlock(DirectiveTok.getLocation(), |
| 2042 | /*Foundnonskip*/false, /*FoundElse*/false); |
| 2043 | return; |
| 2044 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2045 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2046 | // Check to see if this is the last token on the #if[n]def line. |
Chris Lattner | ce2ab6f | 2009-04-14 05:07:49 +0000 | [diff] [blame] | 2047 | CheckEndOfDirective(isIfndef ? "ifndef" : "ifdef"); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2048 | |
Chris Lattner | aa1cccbb | 2010-02-12 08:03:27 +0000 | [diff] [blame] | 2049 | IdentifierInfo *MII = MacroNameTok.getIdentifierInfo(); |
Argyrios Kyrtzidis | fead64b | 2013-02-24 00:05:14 +0000 | [diff] [blame] | 2050 | MacroDirective *MD = getMacroDirective(MII); |
Argyrios Kyrtzidis | b6210df | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 2051 | MacroInfo *MI = MD ? MD->getMacroInfo() : 0; |
Kovarththanan Rajaratnam | ba2c652 | 2010-03-13 10:17:05 +0000 | [diff] [blame] | 2052 | |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2053 | if (CurPPLexer->getConditionalStackDepth() == 0) { |
Chris Lattner | aa1cccbb | 2010-02-12 08:03:27 +0000 | [diff] [blame] | 2054 | // If the start of a top-level #ifdef and if the macro is not defined, |
| 2055 | // inform MIOpt that this might be the start of a proper include guard. |
| 2056 | // Otherwise it is some other form of unknown conditional which we can't |
| 2057 | // handle. |
| 2058 | if (!ReadAnyTokensBeforeDirective && MI == 0) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2059 | assert(isIfndef && "#ifdef shouldn't reach here"); |
Chris Lattner | aa1cccbb | 2010-02-12 08:03:27 +0000 | [diff] [blame] | 2060 | CurPPLexer->MIOpt.EnterTopLevelIFNDEF(MII); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2061 | } else |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2062 | CurPPLexer->MIOpt.EnterTopLevelConditional(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2063 | } |
| 2064 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2065 | // If there is a macro, process it. |
| 2066 | if (MI) // Mark it used. |
Argyrios Kyrtzidis | 1cb0de1 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 2067 | markMacroAsUsed(MI); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2068 | |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 2069 | if (Callbacks) { |
| 2070 | if (isIfndef) |
Argyrios Kyrtzidis | fead64b | 2013-02-24 00:05:14 +0000 | [diff] [blame] | 2071 | Callbacks->Ifndef(DirectiveTok.getLocation(), MacroNameTok, MD); |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 2072 | else |
Argyrios Kyrtzidis | fead64b | 2013-02-24 00:05:14 +0000 | [diff] [blame] | 2073 | Callbacks->Ifdef(DirectiveTok.getLocation(), MacroNameTok, MD); |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 2074 | } |
| 2075 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2076 | // Should we include the stuff contained by this directive? |
| 2077 | if (!MI == isIfndef) { |
| 2078 | // Yes, remember that we are inside a conditional, then lex the next token. |
Chris Lattner | 8cf1f93 | 2009-12-14 04:54:40 +0000 | [diff] [blame] | 2079 | CurPPLexer->pushConditionalLevel(DirectiveTok.getLocation(), |
| 2080 | /*wasskip*/false, /*foundnonskip*/true, |
| 2081 | /*foundelse*/false); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2082 | } else { |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2083 | // No, skip the contents of this block. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2084 | SkipExcludedConditionalBlock(DirectiveTok.getLocation(), |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2085 | /*Foundnonskip*/false, |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2086 | /*FoundElse*/false); |
| 2087 | } |
| 2088 | } |
| 2089 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 2090 | /// HandleIfDirective - Implements the \#if directive. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2091 | /// |
| 2092 | void Preprocessor::HandleIfDirective(Token &IfToken, |
| 2093 | bool ReadAnyTokensBeforeDirective) { |
| 2094 | ++NumIf; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2095 | |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2096 | // Parse and evaluate the conditional expression. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2097 | IdentifierInfo *IfNDefMacro = 0; |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2098 | const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation(); |
| 2099 | const bool ConditionalTrue = EvaluateDirectiveExpression(IfNDefMacro); |
| 2100 | const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation(); |
Nuno Lopes | 363212b | 2008-06-01 18:31:24 +0000 | [diff] [blame] | 2101 | |
| 2102 | // If this condition is equivalent to #ifndef X, and if this is the first |
| 2103 | // directive seen, handle it for the multiple-include optimization. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2104 | if (CurPPLexer->getConditionalStackDepth() == 0) { |
Chris Lattner | aa1cccbb | 2010-02-12 08:03:27 +0000 | [diff] [blame] | 2105 | if (!ReadAnyTokensBeforeDirective && IfNDefMacro && ConditionalTrue) |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2106 | CurPPLexer->MIOpt.EnterTopLevelIFNDEF(IfNDefMacro); |
Nuno Lopes | 363212b | 2008-06-01 18:31:24 +0000 | [diff] [blame] | 2107 | else |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2108 | CurPPLexer->MIOpt.EnterTopLevelConditional(); |
Nuno Lopes | 363212b | 2008-06-01 18:31:24 +0000 | [diff] [blame] | 2109 | } |
| 2110 | |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 2111 | if (Callbacks) |
| 2112 | Callbacks->If(IfToken.getLocation(), |
| 2113 | SourceRange(ConditionalBegin, ConditionalEnd)); |
| 2114 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2115 | // Should we include the stuff contained by this directive? |
| 2116 | if (ConditionalTrue) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2117 | // Yes, remember that we are inside a conditional, then lex the next token. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2118 | CurPPLexer->pushConditionalLevel(IfToken.getLocation(), /*wasskip*/false, |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2119 | /*foundnonskip*/true, /*foundelse*/false); |
| 2120 | } else { |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2121 | // No, skip the contents of this block. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2122 | SkipExcludedConditionalBlock(IfToken.getLocation(), /*Foundnonskip*/false, |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2123 | /*FoundElse*/false); |
| 2124 | } |
| 2125 | } |
| 2126 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 2127 | /// HandleEndifDirective - Implements the \#endif directive. |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2128 | /// |
| 2129 | void Preprocessor::HandleEndifDirective(Token &EndifToken) { |
| 2130 | ++NumEndif; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2131 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2132 | // Check that this is the whole directive. |
Chris Lattner | ce2ab6f | 2009-04-14 05:07:49 +0000 | [diff] [blame] | 2133 | CheckEndOfDirective("endif"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2134 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2135 | PPConditionalInfo CondInfo; |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2136 | if (CurPPLexer->popConditionalLevel(CondInfo)) { |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2137 | // No conditionals on the stack: this is an #endif without an #if. |
Chris Lattner | 907dfe9 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 2138 | Diag(EndifToken, diag::err_pp_endif_without_if); |
| 2139 | return; |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2140 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2141 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2142 | // If this the end of a top-level #endif, inform MIOpt. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2143 | if (CurPPLexer->getConditionalStackDepth() == 0) |
| 2144 | CurPPLexer->MIOpt.ExitTopLevelConditional(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2145 | |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2146 | assert(!CondInfo.WasSkipping && !CurPPLexer->LexingRawMode && |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2147 | "This code should only be reachable in the non-skipping case!"); |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2148 | |
| 2149 | if (Callbacks) |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 2150 | Callbacks->Endif(EndifToken.getLocation(), CondInfo.IfLoc); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2151 | } |
| 2152 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 2153 | /// HandleElseDirective - Implements the \#else directive. |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2154 | /// |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2155 | void Preprocessor::HandleElseDirective(Token &Result) { |
| 2156 | ++NumElse; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2157 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2158 | // #else directive in a non-skipping conditional... start skipping. |
Chris Lattner | ce2ab6f | 2009-04-14 05:07:49 +0000 | [diff] [blame] | 2159 | CheckEndOfDirective("else"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2160 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2161 | PPConditionalInfo CI; |
Chris Lattner | 907dfe9 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 2162 | if (CurPPLexer->popConditionalLevel(CI)) { |
| 2163 | Diag(Result, diag::pp_err_else_without_if); |
| 2164 | return; |
| 2165 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2166 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2167 | // If this is a top-level #else, inform the MIOpt. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2168 | if (CurPPLexer->getConditionalStackDepth() == 0) |
| 2169 | CurPPLexer->MIOpt.EnterTopLevelConditional(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2170 | |
| 2171 | // If this is a #else with a #else before it, report the error. |
| 2172 | if (CI.FoundElse) Diag(Result, diag::pp_err_else_after_else); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2173 | |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 2174 | if (Callbacks) |
| 2175 | Callbacks->Else(Result.getLocation(), CI.IfLoc); |
| 2176 | |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2177 | // Finally, skip the rest of the contents of this block. |
| 2178 | SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true, |
Argyrios Kyrtzidis | 18bcfd5 | 2011-09-27 17:32:05 +0000 | [diff] [blame] | 2179 | /*FoundElse*/true, Result.getLocation()); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2180 | } |
| 2181 | |
James Dennett | f6333ac | 2012-06-22 05:46:07 +0000 | [diff] [blame] | 2182 | /// HandleElifDirective - Implements the \#elif directive. |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2183 | /// |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2184 | void Preprocessor::HandleElifDirective(Token &ElifToken) { |
| 2185 | ++NumElse; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2186 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2187 | // #elif directive in a non-skipping conditional... start skipping. |
| 2188 | // We don't care what the condition is, because we will always skip it (since |
| 2189 | // the block immediately before it was included). |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2190 | const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2191 | DiscardUntilEndOfDirective(); |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2192 | const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation(); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2193 | |
| 2194 | PPConditionalInfo CI; |
Chris Lattner | 907dfe9 | 2008-11-18 07:59:24 +0000 | [diff] [blame] | 2195 | if (CurPPLexer->popConditionalLevel(CI)) { |
| 2196 | Diag(ElifToken, diag::pp_err_elif_without_if); |
| 2197 | return; |
| 2198 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2199 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2200 | // If this is a top-level #elif, inform the MIOpt. |
Ted Kremenek | 30cd88c | 2008-11-18 00:34:22 +0000 | [diff] [blame] | 2201 | if (CurPPLexer->getConditionalStackDepth() == 0) |
| 2202 | CurPPLexer->MIOpt.EnterTopLevelConditional(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2203 | |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2204 | // If this is a #elif with a #else before it, report the error. |
| 2205 | if (CI.FoundElse) Diag(ElifToken, diag::pp_err_elif_after_else); |
Argyrios Kyrtzidis | c793a61 | 2012-03-05 05:48:09 +0000 | [diff] [blame] | 2206 | |
| 2207 | if (Callbacks) |
| 2208 | Callbacks->Elif(ElifToken.getLocation(), |
| 2209 | SourceRange(ConditionalBegin, ConditionalEnd), CI.IfLoc); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2210 | |
Craig Silverstein | 8e3d95e | 2010-11-06 01:19:03 +0000 | [diff] [blame] | 2211 | // Finally, skip the rest of the contents of this block. |
| 2212 | SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true, |
Argyrios Kyrtzidis | 18bcfd5 | 2011-09-27 17:32:05 +0000 | [diff] [blame] | 2213 | /*FoundElse*/CI.FoundElse, |
| 2214 | ElifToken.getLocation()); |
Chris Lattner | f64b352 | 2008-03-09 01:54:53 +0000 | [diff] [blame] | 2215 | } |