Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 1 | //===--- PPLexerChange.cpp - Handle changing lexers in the preprocessor ---===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements pieces of the Preprocessor interface that manage the |
| 11 | // current lexer stack. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Lex/Preprocessor.h" |
Douglas Gregor | aa93a87 | 2011-10-17 15:32:29 +0000 | [diff] [blame] | 16 | #include "clang/Basic/FileManager.h" |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 17 | #include "clang/Basic/SourceManager.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 18 | #include "clang/Lex/HeaderSearch.h" |
| 19 | #include "clang/Lex/LexDiagnostic.h" |
| 20 | #include "clang/Lex/MacroInfo.h" |
| 21 | #include "llvm/ADT/StringSwitch.h" |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 22 | #include "llvm/Support/FileSystem.h" |
Ted Kremenek | 15ba2af | 2008-11-20 07:56:33 +0000 | [diff] [blame] | 23 | #include "llvm/Support/MemoryBuffer.h" |
Rafael Espindola | 8229d22 | 2013-06-11 22:15:02 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Path.h" |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 25 | using namespace clang; |
| 26 | |
Ted Kremenek | 4b39108 | 2008-11-18 01:33:13 +0000 | [diff] [blame] | 27 | PPCallbacks::~PPCallbacks() {} |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 28 | |
| 29 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6b88450 | 2008-03-10 06:06:04 +0000 | [diff] [blame] | 30 | // Miscellaneous Methods. |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 31 | //===----------------------------------------------------------------------===// |
| 32 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 33 | /// isInPrimaryFile - Return true if we're in the top-level file, not in a |
James Dennett | 1a5f900 | 2012-06-22 05:36:05 +0000 | [diff] [blame] | 34 | /// \#include. This looks through macro expansions and active _Pragma lexers. |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 35 | bool Preprocessor::isInPrimaryFile() const { |
Ted Kremenek | 81d24e1 | 2008-11-20 16:19:53 +0000 | [diff] [blame] | 36 | if (IsFileLexer()) |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 37 | return IncludeMacroStack.empty(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 38 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 39 | // If there are any stacked lexers, we're in a #include. |
Ted Kremenek | 81d24e1 | 2008-11-20 16:19:53 +0000 | [diff] [blame] | 40 | assert(IsFileLexer(IncludeMacroStack[0]) && |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 41 | "Top level include stack isn't our primary lexer?"); |
| 42 | for (unsigned i = 1, e = IncludeMacroStack.size(); i != e; ++i) |
Ted Kremenek | 81d24e1 | 2008-11-20 16:19:53 +0000 | [diff] [blame] | 43 | if (IsFileLexer(IncludeMacroStack[i])) |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 44 | return false; |
| 45 | return true; |
| 46 | } |
| 47 | |
| 48 | /// getCurrentLexer - Return the current file lexer being lexed from. Note |
| 49 | /// that this ignores any potentially active macro expansions and _Pragma |
| 50 | /// expansions going on at the time. |
Ted Kremenek | 68e48e4 | 2008-11-20 01:49:44 +0000 | [diff] [blame] | 51 | PreprocessorLexer *Preprocessor::getCurrentFileLexer() const { |
Ted Kremenek | 81d24e1 | 2008-11-20 16:19:53 +0000 | [diff] [blame] | 52 | if (IsFileLexer()) |
Ted Kremenek | 68e48e4 | 2008-11-20 01:49:44 +0000 | [diff] [blame] | 53 | return CurPPLexer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 54 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 55 | // Look for a stacked lexer. |
| 56 | for (unsigned i = IncludeMacroStack.size(); i != 0; --i) { |
Ted Kremenek | 68e48e4 | 2008-11-20 01:49:44 +0000 | [diff] [blame] | 57 | const IncludeStackInfo& ISI = IncludeMacroStack[i-1]; |
Ted Kremenek | 81d24e1 | 2008-11-20 16:19:53 +0000 | [diff] [blame] | 58 | if (IsFileLexer(ISI)) |
Ted Kremenek | 68e48e4 | 2008-11-20 01:49:44 +0000 | [diff] [blame] | 59 | return ISI.ThePPLexer; |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 60 | } |
| 61 | return 0; |
| 62 | } |
| 63 | |
Chris Lattner | 6b88450 | 2008-03-10 06:06:04 +0000 | [diff] [blame] | 64 | |
| 65 | //===----------------------------------------------------------------------===// |
| 66 | // Methods for Entering and Callbacks for leaving various contexts |
| 67 | //===----------------------------------------------------------------------===// |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 68 | |
| 69 | /// EnterSourceFile - Add a source file to the top of the include stack and |
Nuno Lopes | e7f2cbd | 2009-11-29 17:07:16 +0000 | [diff] [blame] | 70 | /// start lexing tokens from it instead of the current buffer. |
Chris Lattner | e127a0d | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 71 | void Preprocessor::EnterSourceFile(FileID FID, const DirectoryLookup *CurDir, |
| 72 | SourceLocation Loc) { |
David Blaikie | 7247c88 | 2013-05-15 07:37:26 +0000 | [diff] [blame] | 73 | assert(!CurTokenLexer && "Cannot #include a file inside a macro!"); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 74 | ++NumEnteredSourceFiles; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 75 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 76 | if (MaxIncludeStackDepth < IncludeMacroStack.size()) |
| 77 | MaxIncludeStackDepth = IncludeMacroStack.size(); |
| 78 | |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 79 | if (PTH) { |
Chris Lattner | 6e29014 | 2009-11-30 04:18:44 +0000 | [diff] [blame] | 80 | if (PTHLexer *PL = PTH->CreateLexer(FID)) { |
| 81 | EnterSourceFileWithPTH(PL, CurDir); |
Chris Lattner | e127a0d | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 82 | return; |
Chris Lattner | 6e29014 | 2009-11-30 04:18:44 +0000 | [diff] [blame] | 83 | } |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 84 | } |
Chris Lattner | 6e29014 | 2009-11-30 04:18:44 +0000 | [diff] [blame] | 85 | |
| 86 | // Get the MemoryBuffer for this FID, if it fails, we fail. |
Douglas Gregor | aae58b0 | 2010-03-16 20:01:30 +0000 | [diff] [blame] | 87 | bool Invalid = false; |
Chris Lattner | e127a0d | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 88 | const llvm::MemoryBuffer *InputFile = |
| 89 | getSourceManager().getBuffer(FID, Loc, &Invalid); |
| 90 | if (Invalid) { |
| 91 | SourceLocation FileStart = SourceMgr.getLocForStartOfFile(FID); |
| 92 | Diag(Loc, diag::err_pp_error_opening_file) |
| 93 | << std::string(SourceMgr.getBufferName(FileStart)) << ""; |
| 94 | return; |
| 95 | } |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 96 | |
| 97 | if (isCodeCompletionEnabled() && |
| 98 | SourceMgr.getFileEntryForID(FID) == CodeCompletionFile) { |
| 99 | CodeCompletionFileLoc = SourceMgr.getLocForStartOfFile(FID); |
| 100 | CodeCompletionLoc = |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 101 | CodeCompletionFileLoc.getLocWithOffset(CodeCompletionOffset); |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Chris Lattner | 6e29014 | 2009-11-30 04:18:44 +0000 | [diff] [blame] | 104 | EnterSourceFileWithLexer(new Lexer(FID, InputFile, *this), CurDir); |
Chris Lattner | e127a0d | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 105 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | } |
Chris Lattner | 7218183 | 2008-09-26 20:12:23 +0000 | [diff] [blame] | 107 | |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 108 | /// EnterSourceFileWithLexer - Add a source file to the top of the include stack |
| 109 | /// and start lexing tokens from it instead of the current buffer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 110 | void Preprocessor::EnterSourceFileWithLexer(Lexer *TheLexer, |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 111 | const DirectoryLookup *CurDir) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 112 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 113 | // Add the current lexer to the include stack. |
Ted Kremenek | 41938c8 | 2008-11-19 21:57:25 +0000 | [diff] [blame] | 114 | if (CurPPLexer || CurTokenLexer) |
Ted Kremenek | ed04c4c | 2008-11-13 16:51:03 +0000 | [diff] [blame] | 115 | PushIncludeMacroStack(); |
| 116 | |
Ted Kremenek | caaa7df | 2008-11-13 17:11:24 +0000 | [diff] [blame] | 117 | CurLexer.reset(TheLexer); |
Ted Kremenek | 9c1b750 | 2008-11-18 00:12:49 +0000 | [diff] [blame] | 118 | CurPPLexer = TheLexer; |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 119 | CurDirLookup = CurDir; |
Douglas Gregor | b8db7cd | 2011-09-07 23:11:54 +0000 | [diff] [blame] | 120 | if (CurLexerKind != CLK_LexAfterModuleImport) |
| 121 | CurLexerKind = CLK_Lexer; |
| 122 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 123 | // Notify the client, if desired, that we are in a new source file. |
| 124 | if (Callbacks && !CurLexer->Is_PragmaLexer) { |
Chris Lattner | 9d72851 | 2008-10-27 01:19:25 +0000 | [diff] [blame] | 125 | SrcMgr::CharacteristicKind FileType = |
Chris Lattner | 0b9e736 | 2008-09-26 21:18:42 +0000 | [diff] [blame] | 126 | SourceMgr.getFileCharacteristic(CurLexer->getFileLoc()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 127 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 128 | Callbacks->FileChanged(CurLexer->getFileLoc(), |
| 129 | PPCallbacks::EnterFile, FileType); |
| 130 | } |
| 131 | } |
| 132 | |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 133 | /// EnterSourceFileWithPTH - Add a source file to the top of the include stack |
| 134 | /// and start getting tokens from it using the PTH cache. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 135 | void Preprocessor::EnterSourceFileWithPTH(PTHLexer *PL, |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 136 | const DirectoryLookup *CurDir) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 137 | |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 138 | if (CurPPLexer || CurTokenLexer) |
| 139 | PushIncludeMacroStack(); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 140 | |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 141 | CurDirLookup = CurDir; |
| 142 | CurPTHLexer.reset(PL); |
| 143 | CurPPLexer = CurPTHLexer.get(); |
Douglas Gregor | b8db7cd | 2011-09-07 23:11:54 +0000 | [diff] [blame] | 144 | if (CurLexerKind != CLK_LexAfterModuleImport) |
| 145 | CurLexerKind = CLK_PTHLexer; |
| 146 | |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 147 | // Notify the client, if desired, that we are in a new source file. |
| 148 | if (Callbacks) { |
Chris Lattner | 2b2453a | 2009-01-17 06:22:33 +0000 | [diff] [blame] | 149 | FileID FID = CurPPLexer->getFileID(); |
Chris Lattner | 8c61b53 | 2009-01-19 08:01:53 +0000 | [diff] [blame] | 150 | SourceLocation EnterLoc = SourceMgr.getLocForStartOfFile(FID); |
| 151 | SrcMgr::CharacteristicKind FileType = |
| 152 | SourceMgr.getFileCharacteristic(EnterLoc); |
| 153 | Callbacks->FileChanged(EnterLoc, PPCallbacks::EnterFile, FileType); |
Ted Kremenek | 6137dc9 | 2008-12-02 19:46:31 +0000 | [diff] [blame] | 154 | } |
| 155 | } |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 156 | |
| 157 | /// EnterMacro - Add a Macro to the top of the include stack and start lexing |
| 158 | /// tokens from it instead of the current buffer. |
Chris Lattner | e7fb484 | 2009-02-15 20:52:18 +0000 | [diff] [blame] | 159 | void Preprocessor::EnterMacro(Token &Tok, SourceLocation ILEnd, |
Richard Smith | c30981a | 2012-08-30 13:38:46 +0000 | [diff] [blame] | 160 | MacroInfo *Macro, MacroArgs *Args) { |
Argyrios Kyrtzidis | bb06b50 | 2012-12-22 04:48:10 +0000 | [diff] [blame] | 161 | TokenLexer *TokLexer; |
| 162 | if (NumCachedTokenLexers == 0) { |
| 163 | TokLexer = new TokenLexer(Tok, ILEnd, Macro, Args, *this); |
| 164 | } else { |
| 165 | TokLexer = TokenLexerCache[--NumCachedTokenLexers]; |
| 166 | TokLexer->Init(Tok, ILEnd, Macro, Args); |
| 167 | } |
| 168 | |
Ted Kremenek | ed04c4c | 2008-11-13 16:51:03 +0000 | [diff] [blame] | 169 | PushIncludeMacroStack(); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 170 | CurDirLookup = 0; |
Argyrios Kyrtzidis | bb06b50 | 2012-12-22 04:48:10 +0000 | [diff] [blame] | 171 | CurTokenLexer.reset(TokLexer); |
Douglas Gregor | b8db7cd | 2011-09-07 23:11:54 +0000 | [diff] [blame] | 172 | if (CurLexerKind != CLK_LexAfterModuleImport) |
| 173 | CurLexerKind = CLK_TokenLexer; |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | /// EnterTokenStream - Add a "macro" context to the top of the include stack, |
Chris Lattner | 6b88450 | 2008-03-10 06:06:04 +0000 | [diff] [blame] | 177 | /// which will cause the lexer to start returning the specified tokens. |
| 178 | /// |
| 179 | /// If DisableMacroExpansion is true, tokens lexed from the token stream will |
| 180 | /// not be subject to further macro expansion. Otherwise, these tokens will |
| 181 | /// be re-macro-expanded when/if expansion is enabled. |
| 182 | /// |
| 183 | /// If OwnsTokens is false, this method assumes that the specified stream of |
| 184 | /// tokens has a permanent owner somewhere, so they do not need to be copied. |
| 185 | /// If it is true, it assumes the array of tokens is allocated with new[] and |
| 186 | /// must be freed. |
| 187 | /// |
| 188 | void Preprocessor::EnterTokenStream(const Token *Toks, unsigned NumToks, |
| 189 | bool DisableMacroExpansion, |
| 190 | bool OwnsTokens) { |
Argyrios Kyrtzidis | bb06b50 | 2012-12-22 04:48:10 +0000 | [diff] [blame] | 191 | // Create a macro expander to expand from the specified token stream. |
| 192 | TokenLexer *TokLexer; |
| 193 | if (NumCachedTokenLexers == 0) { |
| 194 | TokLexer = new TokenLexer(Toks, NumToks, DisableMacroExpansion, |
| 195 | OwnsTokens, *this); |
| 196 | } else { |
| 197 | TokLexer = TokenLexerCache[--NumCachedTokenLexers]; |
| 198 | TokLexer->Init(Toks, NumToks, DisableMacroExpansion, OwnsTokens); |
| 199 | } |
| 200 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 201 | // Save our current state. |
Ted Kremenek | ed04c4c | 2008-11-13 16:51:03 +0000 | [diff] [blame] | 202 | PushIncludeMacroStack(); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 203 | CurDirLookup = 0; |
Argyrios Kyrtzidis | bb06b50 | 2012-12-22 04:48:10 +0000 | [diff] [blame] | 204 | CurTokenLexer.reset(TokLexer); |
Douglas Gregor | b8db7cd | 2011-09-07 23:11:54 +0000 | [diff] [blame] | 205 | if (CurLexerKind != CLK_LexAfterModuleImport) |
| 206 | CurLexerKind = CLK_TokenLexer; |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 209 | /// \brief Compute the relative path that names the given file relative to |
| 210 | /// the given directory. |
| 211 | static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, |
| 212 | const FileEntry *File, |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 213 | SmallString<128> &Result) { |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 214 | Result.clear(); |
| 215 | |
| 216 | StringRef FilePath = File->getDir()->getName(); |
| 217 | StringRef Path = FilePath; |
| 218 | while (!Path.empty()) { |
| 219 | if (const DirectoryEntry *CurDir = FM.getDirectory(Path)) { |
| 220 | if (CurDir == Dir) { |
| 221 | Result = FilePath.substr(Path.size()); |
| 222 | llvm::sys::path::append(Result, |
| 223 | llvm::sys::path::filename(File->getName())); |
| 224 | return; |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | Path = llvm::sys::path::parent_path(Path); |
| 229 | } |
| 230 | |
| 231 | Result = File->getName(); |
| 232 | } |
| 233 | |
Eli Friedman | d2f9308 | 2013-09-19 00:41:32 +0000 | [diff] [blame] | 234 | void Preprocessor::PropagateLineStartLeadingSpaceInfo(Token &Result) { |
| 235 | if (CurTokenLexer) { |
| 236 | CurTokenLexer->PropagateLineStartLeadingSpaceInfo(Result); |
| 237 | return; |
| 238 | } |
| 239 | if (CurLexer) { |
| 240 | CurLexer->PropagateLineStartLeadingSpaceInfo(Result); |
| 241 | return; |
| 242 | } |
| 243 | // FIXME: Handle other kinds of lexers? It generally shouldn't matter, |
| 244 | // but it might if they're empty? |
| 245 | } |
| 246 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 247 | /// HandleEndOfFile - This callback is invoked when the lexer hits the end of |
| 248 | /// the current file. This either returns the EOF token or pops a level off |
| 249 | /// the include stack and keeps going. |
| 250 | bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) { |
| 251 | assert(!CurTokenLexer && |
| 252 | "Ending a file when currently in a macro!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 253 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 254 | // See if this file had a controlling macro. |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 255 | if (CurPPLexer) { // Not ending a macro, ignore it. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 256 | if (const IdentifierInfo *ControllingMacro = |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 257 | CurPPLexer->MIOpt.GetControllingMacroAtEndOfFile()) { |
Steve Naroff | 83d63c7 | 2009-04-24 20:03:17 +0000 | [diff] [blame] | 258 | // Okay, this has a controlling macro, remember in HeaderFileInfo. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 259 | if (const FileEntry *FE = |
Richard Trieu | 671538e | 2013-06-12 21:20:57 +0000 | [diff] [blame] | 260 | SourceMgr.getFileEntryForID(CurPPLexer->getFileID())) { |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 261 | HeaderInfo.SetFileControllingMacro(FE, ControllingMacro); |
Richard Trieu | 671538e | 2013-06-12 21:20:57 +0000 | [diff] [blame] | 262 | if (const IdentifierInfo *DefinedMacro = |
| 263 | CurPPLexer->MIOpt.GetDefinedMacro()) { |
| 264 | if (!ControllingMacro->hasMacroDefinition() && |
| 265 | DefinedMacro != ControllingMacro && |
| 266 | HeaderInfo.FirstTimeLexingFile(FE)) { |
Ismail Pazarbasi | 223e7a8 | 2013-10-12 23:17:37 +0000 | [diff] [blame] | 267 | |
| 268 | // If the edit distance between the two macros is more than 50%, |
| 269 | // DefinedMacro may not be header guard, or can be header guard of |
| 270 | // another header file. Therefore, it maybe defining something |
| 271 | // completely different. This can be observed in the wild when |
| 272 | // handling feature macros or header guards in different files. |
| 273 | |
| 274 | const StringRef ControllingMacroName = ControllingMacro->getName(); |
| 275 | const StringRef DefinedMacroName = DefinedMacro->getName(); |
| 276 | const size_t MaxHalfLength = std::max(ControllingMacroName.size(), |
| 277 | DefinedMacroName.size()) / 2; |
| 278 | const unsigned ED = ControllingMacroName.edit_distance( |
| 279 | DefinedMacroName, true, MaxHalfLength); |
| 280 | if (ED <= MaxHalfLength) { |
| 281 | // Emit a warning for a bad header guard. |
| 282 | Diag(CurPPLexer->MIOpt.GetMacroLocation(), |
| 283 | diag::warn_header_guard) |
| 284 | << CurPPLexer->MIOpt.GetMacroLocation() << ControllingMacro; |
| 285 | Diag(CurPPLexer->MIOpt.GetDefinedLocation(), |
| 286 | diag::note_header_guard) |
| 287 | << CurPPLexer->MIOpt.GetDefinedLocation() << DefinedMacro |
| 288 | << ControllingMacro |
| 289 | << FixItHint::CreateReplacement( |
| 290 | CurPPLexer->MIOpt.GetDefinedLocation(), |
| 291 | ControllingMacro->getName()); |
| 292 | } |
Richard Trieu | 671538e | 2013-06-12 21:20:57 +0000 | [diff] [blame] | 293 | } |
| 294 | } |
| 295 | } |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 296 | } |
| 297 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 298 | |
John McCall | 3eff321 | 2011-10-18 00:44:04 +0000 | [diff] [blame] | 299 | // Complain about reaching a true EOF within arc_cf_code_audited. |
| 300 | // We don't want to complain about reaching the end of a macro |
| 301 | // instantiation or a _Pragma. |
| 302 | if (PragmaARCCFCodeAuditedLoc.isValid() && |
John McCall | d80d90d | 2011-10-18 01:36:41 +0000 | [diff] [blame] | 303 | !isEndOfMacro && !(CurLexer && CurLexer->Is_PragmaLexer)) { |
John McCall | 8dfac0b | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 304 | Diag(PragmaARCCFCodeAuditedLoc, diag::err_pp_eof_in_arc_cf_code_audited); |
| 305 | |
| 306 | // Recover by leaving immediately. |
| 307 | PragmaARCCFCodeAuditedLoc = SourceLocation(); |
| 308 | } |
| 309 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 310 | // If this is a #include'd file, pop it off the include stack and continue |
| 311 | // lexing the #includer file. |
| 312 | if (!IncludeMacroStack.empty()) { |
Argyrios Kyrtzidis | 7d10087 | 2011-09-04 03:32:15 +0000 | [diff] [blame] | 313 | |
| 314 | // If we lexed the code-completion file, act as if we reached EOF. |
| 315 | if (isCodeCompletionEnabled() && CurPPLexer && |
| 316 | SourceMgr.getLocForStartOfFile(CurPPLexer->getFileID()) == |
| 317 | CodeCompletionFileLoc) { |
| 318 | if (CurLexer) { |
| 319 | Result.startToken(); |
| 320 | CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof); |
| 321 | CurLexer.reset(); |
| 322 | } else { |
| 323 | assert(CurPTHLexer && "Got EOF but no current lexer set!"); |
| 324 | CurPTHLexer->getEOF(Result); |
| 325 | CurPTHLexer.reset(); |
| 326 | } |
| 327 | |
| 328 | CurPPLexer = 0; |
| 329 | return true; |
| 330 | } |
| 331 | |
Argyrios Kyrtzidis | d9d2b67 | 2011-08-21 23:33:04 +0000 | [diff] [blame] | 332 | if (!isEndOfMacro && CurPPLexer && |
| 333 | SourceMgr.getIncludeLoc(CurPPLexer->getFileID()).isValid()) { |
| 334 | // Notify SourceManager to record the number of FileIDs that were created |
| 335 | // during lexing of the #include'd file. |
| 336 | unsigned NumFIDs = |
| 337 | SourceMgr.local_sloc_entry_size() - |
| 338 | CurPPLexer->getInitialNumSLocEntries() + 1/*#include'd file*/; |
| 339 | SourceMgr.setNumCreatedFIDsForFileID(CurPPLexer->getFileID(), NumFIDs); |
| 340 | } |
| 341 | |
Argyrios Kyrtzidis | c892c5f | 2011-10-11 17:29:44 +0000 | [diff] [blame] | 342 | FileID ExitedFID; |
| 343 | if (Callbacks && !isEndOfMacro && CurPPLexer) |
| 344 | ExitedFID = CurPPLexer->getFileID(); |
| 345 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 346 | // We're done with the #included file. |
| 347 | RemoveTopOfLexerStack(); |
| 348 | |
Eli Friedman | d2f9308 | 2013-09-19 00:41:32 +0000 | [diff] [blame] | 349 | // Propagate info about start-of-line/leading white-space/etc. |
| 350 | PropagateLineStartLeadingSpaceInfo(Result); |
| 351 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 352 | // Notify the client, if desired, that we are in a new source file. |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 353 | if (Callbacks && !isEndOfMacro && CurPPLexer) { |
Chris Lattner | 9d72851 | 2008-10-27 01:19:25 +0000 | [diff] [blame] | 354 | SrcMgr::CharacteristicKind FileType = |
Chris Lattner | 8c61b53 | 2009-01-19 08:01:53 +0000 | [diff] [blame] | 355 | SourceMgr.getFileCharacteristic(CurPPLexer->getSourceLocation()); |
| 356 | Callbacks->FileChanged(CurPPLexer->getSourceLocation(), |
Argyrios Kyrtzidis | c892c5f | 2011-10-11 17:29:44 +0000 | [diff] [blame] | 357 | PPCallbacks::ExitFile, FileType, ExitedFID); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | // Client should lex another token. |
| 361 | return false; |
| 362 | } |
| 363 | |
| 364 | // If the file ends with a newline, form the EOF token on the newline itself, |
| 365 | // rather than "on the line following it", which doesn't exist. This makes |
| 366 | // diagnostics relating to the end of file include the last file that the user |
| 367 | // actually typed, which is goodness. |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 368 | if (CurLexer) { |
| 369 | const char *EndPos = CurLexer->BufferEnd; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 370 | if (EndPos != CurLexer->BufferStart && |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 371 | (EndPos[-1] == '\n' || EndPos[-1] == '\r')) { |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 372 | --EndPos; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 373 | |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 374 | // Handle \n\r and \r\n: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 375 | if (EndPos != CurLexer->BufferStart && |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 376 | (EndPos[-1] == '\n' || EndPos[-1] == '\r') && |
| 377 | EndPos[-1] != EndPos[0]) |
| 378 | --EndPos; |
| 379 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 380 | |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 381 | Result.startToken(); |
| 382 | CurLexer->BufferPtr = EndPos; |
| 383 | CurLexer->FormTokenWithChars(Result, EndPos, tok::eof); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 384 | |
Argyrios Kyrtzidis | bb06b50 | 2012-12-22 04:48:10 +0000 | [diff] [blame] | 385 | if (isCodeCompletionEnabled()) { |
| 386 | // Inserting the code-completion point increases the source buffer by 1, |
| 387 | // but the main FileID was created before inserting the point. |
| 388 | // Compensate by reducing the EOF location by 1, otherwise the location |
| 389 | // will point to the next FileID. |
| 390 | // FIXME: This is hacky, the code-completion point should probably be |
| 391 | // inserted before the main FileID is created. |
| 392 | if (CurLexer->getFileLoc() == CodeCompletionFileLoc) |
| 393 | Result.setLocation(Result.getLocation().getLocWithOffset(-1)); |
| 394 | } |
| 395 | |
Axel Naumann | e55329d | 2012-03-16 10:40:17 +0000 | [diff] [blame] | 396 | if (!isIncrementalProcessingEnabled()) |
| 397 | // We're done with lexing. |
| 398 | CurLexer.reset(); |
Chris Lattner | 6711608 | 2009-02-13 23:06:48 +0000 | [diff] [blame] | 399 | } else { |
| 400 | assert(CurPTHLexer && "Got EOF but no current lexer set!"); |
Ted Kremenek | 59d08cb | 2008-12-23 19:24:24 +0000 | [diff] [blame] | 401 | CurPTHLexer->getEOF(Result); |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 402 | CurPTHLexer.reset(); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 403 | } |
Axel Naumann | e55329d | 2012-03-16 10:40:17 +0000 | [diff] [blame] | 404 | |
| 405 | if (!isIncrementalProcessingEnabled()) |
| 406 | CurPPLexer = 0; |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 407 | |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 408 | // This is the end of the top-level file. 'WarnUnusedMacroLocs' has collected |
| 409 | // all macro locations that we need to warn because they are not used. |
| 410 | for (WarnUnusedMacroLocsTy::iterator |
| 411 | I=WarnUnusedMacroLocs.begin(), E=WarnUnusedMacroLocs.end(); I!=E; ++I) |
| 412 | Diag(*I, diag::pp_macro_not_used); |
Daniel Dunbar | dbd8209 | 2010-03-23 05:09:10 +0000 | [diff] [blame] | 413 | |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 414 | // If we are building a module that has an umbrella header, make sure that |
| 415 | // each of the headers within the directory covered by the umbrella header |
| 416 | // was actually included by the umbrella header. |
| 417 | if (Module *Mod = getCurrentModule()) { |
| 418 | if (Mod->getUmbrellaHeader()) { |
| 419 | SourceLocation StartLoc |
| 420 | = SourceMgr.getLocForStartOfFile(SourceMgr.getMainFileID()); |
| 421 | |
| 422 | if (getDiagnostics().getDiagnosticLevel( |
| 423 | diag::warn_uncovered_module_header, |
| 424 | StartLoc) != DiagnosticsEngine::Ignored) { |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 425 | ModuleMap &ModMap = getHeaderSearchInfo().getModuleMap(); |
Douglas Gregor | 224bfee | 2011-12-23 00:27:08 +0000 | [diff] [blame] | 426 | typedef llvm::sys::fs::recursive_directory_iterator |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 427 | recursive_directory_iterator; |
| 428 | const DirectoryEntry *Dir = Mod->getUmbrellaDir(); |
| 429 | llvm::error_code EC; |
| 430 | for (recursive_directory_iterator Entry(Dir->getName(), EC), End; |
| 431 | Entry != End && !EC; Entry.increment(EC)) { |
| 432 | using llvm::StringSwitch; |
| 433 | |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 434 | // Check whether this entry has an extension typically associated with |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 435 | // headers. |
| 436 | if (!StringSwitch<bool>(llvm::sys::path::extension(Entry->path())) |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 437 | .Cases(".h", ".H", ".hh", ".hpp", true) |
| 438 | .Default(false)) |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 439 | continue; |
| 440 | |
| 441 | if (const FileEntry *Header = getFileManager().getFile(Entry->path())) |
| 442 | if (!getSourceManager().hasFileInfo(Header)) { |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 443 | if (!ModMap.isHeaderInUnavailableModule(Header)) { |
| 444 | // Find the relative path that would access this header. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 445 | SmallString<128> RelativePath; |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 446 | computeRelativePath(FileMgr, Dir, Header, RelativePath); |
| 447 | Diag(StartLoc, diag::warn_uncovered_module_header) |
Douglas Gregor | c9c3907 | 2013-01-04 18:58:28 +0000 | [diff] [blame] | 448 | << Mod->getFullModuleName() << RelativePath; |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 449 | } |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 450 | } |
| 451 | } |
| 452 | } |
| 453 | } |
Douglas Gregor | 58ea48d | 2013-05-20 13:49:41 +0000 | [diff] [blame] | 454 | |
| 455 | // Check whether there are any headers that were included, but not |
| 456 | // mentioned at all in the module map. Such headers |
| 457 | SourceLocation StartLoc |
| 458 | = SourceMgr.getLocForStartOfFile(SourceMgr.getMainFileID()); |
| 459 | if (getDiagnostics().getDiagnosticLevel(diag::warn_forgotten_module_header, |
| 460 | StartLoc) |
| 461 | != DiagnosticsEngine::Ignored) { |
| 462 | ModuleMap &ModMap = getHeaderSearchInfo().getModuleMap(); |
| 463 | for (unsigned I = 0, N = SourceMgr.local_sloc_entry_size(); I != N; ++I) { |
| 464 | // We only care about file entries. |
| 465 | const SrcMgr::SLocEntry &Entry = SourceMgr.getLocalSLocEntry(I); |
| 466 | if (!Entry.isFile()) |
| 467 | continue; |
| 468 | |
| 469 | // Dig out the actual file. |
| 470 | const FileEntry *File = Entry.getFile().getContentCache()->OrigEntry; |
| 471 | if (!File) |
| 472 | continue; |
| 473 | |
| 474 | // If it's not part of a module and not unknown, complain. |
| 475 | if (!ModMap.findModuleForHeader(File) && |
| 476 | !ModMap.isHeaderInUnavailableModule(File)) { |
| 477 | Diag(StartLoc, diag::warn_forgotten_module_header) |
| 478 | << File->getName() << Mod->getFullModuleName(); |
| 479 | } |
| 480 | } |
| 481 | } |
Douglas Gregor | 585ec93 | 2011-12-23 00:23:59 +0000 | [diff] [blame] | 482 | } |
Douglas Gregor | 58ea48d | 2013-05-20 13:49:41 +0000 | [diff] [blame] | 483 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 484 | return true; |
| 485 | } |
| 486 | |
| 487 | /// HandleEndOfTokenLexer - This callback is invoked when the current TokenLexer |
| 488 | /// hits the end of its token stream. |
| 489 | bool Preprocessor::HandleEndOfTokenLexer(Token &Result) { |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 490 | assert(CurTokenLexer && !CurPPLexer && |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 491 | "Ending a macro when currently in a #include file!"); |
| 492 | |
Argyrios Kyrtzidis | 5b3284a | 2011-06-29 22:20:11 +0000 | [diff] [blame] | 493 | if (!MacroExpandingLexersStack.empty() && |
| 494 | MacroExpandingLexersStack.back().first == CurTokenLexer.get()) |
| 495 | removeCachedMacroExpandedTokensOfLastLexer(); |
| 496 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 497 | // Delete or cache the now-dead macro expander. |
| 498 | if (NumCachedTokenLexers == TokenLexerCacheSize) |
Ted Kremenek | caaa7df | 2008-11-13 17:11:24 +0000 | [diff] [blame] | 499 | CurTokenLexer.reset(); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 500 | else |
Ted Kremenek | caaa7df | 2008-11-13 17:11:24 +0000 | [diff] [blame] | 501 | TokenLexerCache[NumCachedTokenLexers++] = CurTokenLexer.take(); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 502 | |
| 503 | // Handle this like a #include file being popped off the stack. |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 504 | return HandleEndOfFile(Result, true); |
| 505 | } |
| 506 | |
| 507 | /// RemoveTopOfLexerStack - Pop the current lexer/macro exp off the top of the |
| 508 | /// lexer stack. This should only be used in situations where the current |
| 509 | /// state of the top-of-stack lexer is unknown. |
| 510 | void Preprocessor::RemoveTopOfLexerStack() { |
| 511 | assert(!IncludeMacroStack.empty() && "Ran out of stack entries to load"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 512 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 513 | if (CurTokenLexer) { |
| 514 | // Delete or cache the now-dead macro expander. |
| 515 | if (NumCachedTokenLexers == TokenLexerCacheSize) |
Ted Kremenek | caaa7df | 2008-11-13 17:11:24 +0000 | [diff] [blame] | 516 | CurTokenLexer.reset(); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 517 | else |
Ted Kremenek | caaa7df | 2008-11-13 17:11:24 +0000 | [diff] [blame] | 518 | TokenLexerCache[NumCachedTokenLexers++] = CurTokenLexer.take(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Ted Kremenek | ed04c4c | 2008-11-13 16:51:03 +0000 | [diff] [blame] | 521 | PopIncludeMacroStack(); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | /// HandleMicrosoftCommentPaste - When the macro expander pastes together a |
| 525 | /// comment (/##/) in microsoft mode, this method handles updating the current |
| 526 | /// state, returning the token on the next source line. |
| 527 | void Preprocessor::HandleMicrosoftCommentPaste(Token &Tok) { |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 528 | assert(CurTokenLexer && !CurPPLexer && |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 529 | "Pasted comment can only be formed from macro"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 530 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 531 | // We handle this by scanning for the closest real lexer, switching it to |
| 532 | // raw mode and preprocessor mode. This will cause it to return \n as an |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 533 | // explicit EOD token. |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 534 | PreprocessorLexer *FoundLexer = 0; |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 535 | bool LexerWasInPPMode = false; |
| 536 | for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) { |
| 537 | IncludeStackInfo &ISI = *(IncludeMacroStack.end()-i-1); |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 538 | if (ISI.ThePPLexer == 0) continue; // Scan for a real lexer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 539 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 540 | // Once we find a real lexer, mark it as raw mode (disabling macro |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 541 | // expansions) and preprocessor mode (return EOD). We know that the lexer |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 542 | // was *not* in raw mode before, because the macro that the comment came |
| 543 | // from was expanded. However, it could have already been in preprocessor |
| 544 | // mode (#if COMMENT) in which case we have to return it to that mode and |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 545 | // return EOD. |
Ted Kremenek | 1a53157 | 2008-11-19 22:43:49 +0000 | [diff] [blame] | 546 | FoundLexer = ISI.ThePPLexer; |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 547 | FoundLexer->LexingRawMode = true; |
| 548 | LexerWasInPPMode = FoundLexer->ParsingPreprocessorDirective; |
| 549 | FoundLexer->ParsingPreprocessorDirective = true; |
| 550 | break; |
| 551 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 552 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 553 | // Okay, we either found and switched over the lexer, or we didn't find a |
| 554 | // lexer. In either case, finish off the macro the comment came from, getting |
| 555 | // the next token. |
| 556 | if (!HandleEndOfTokenLexer(Tok)) Lex(Tok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 557 | |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 558 | // Discarding comments as long as we don't have EOF or EOD. This 'comments |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 559 | // out' the rest of the line, including any tokens that came from other macros |
| 560 | // that were active, as in: |
| 561 | // #define submacro a COMMENT b |
| 562 | // submacro c |
| 563 | // which should lex to 'a' only: 'b' and 'c' should be removed. |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 564 | while (Tok.isNot(tok::eod) && Tok.isNot(tok::eof)) |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 565 | Lex(Tok); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 566 | |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 567 | // If we got an eod token, then we successfully found the end of the line. |
| 568 | if (Tok.is(tok::eod)) { |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 569 | assert(FoundLexer && "Can't get end of line without an active lexer"); |
| 570 | // Restore the lexer back to normal mode instead of raw mode. |
| 571 | FoundLexer->LexingRawMode = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 572 | |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 573 | // If the lexer was already in preprocessor mode, just return the EOD token |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 574 | // to finish the preprocessor line. |
| 575 | if (LexerWasInPPMode) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 576 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 577 | // Otherwise, switch out of PP mode and return the next lexed token. |
| 578 | FoundLexer->ParsingPreprocessorDirective = false; |
| 579 | return Lex(Tok); |
| 580 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 581 | |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 582 | // If we got an EOF token, then we reached the end of the token stream but |
| 583 | // didn't find an explicit \n. This can only happen if there was no lexer |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 584 | // active (an active lexer would return EOD at EOF if there was no \n in |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 585 | // preprocessor directive mode), so just return EOF as our token. |
Peter Collingbourne | 8402155 | 2011-02-28 02:37:51 +0000 | [diff] [blame] | 586 | assert(!FoundLexer && "Lexer should return EOD before EOF in PP mode"); |
Chris Lattner | 8c32b1a | 2008-03-09 04:10:46 +0000 | [diff] [blame] | 587 | } |