blob: 176ea3f79dc13ad9d8a6e01b8f22cda5bb692f60 [file] [log] [blame]
David Blaikied5321242012-06-06 18:52:13 +00001//===--- InclusionRewriter.cpp - Rewrite includes into their expansions ---===//
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 code rewrites include invocations into their expansions. This gives you
11// a file with all included files merged into it.
12//
13//===----------------------------------------------------------------------===//
14
Ted Kremenekcdf81492012-09-01 05:09:24 +000015#include "clang/Rewrite/Frontend/Rewriters.h"
David Blaikied5321242012-06-06 18:52:13 +000016#include "clang/Basic/SourceManager.h"
17#include "clang/Frontend/PreprocessorOutputOptions.h"
Benjamin Kramerb10e6152013-04-16 19:08:41 +000018#include "clang/Lex/HeaderSearch.h"
Lubos Lunakba5ee4d2013-07-20 14:30:01 +000019#include "clang/Lex/Pragma.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/Lex/Preprocessor.h"
Benjamin Kramerb10e6152013-04-16 19:08:41 +000021#include "llvm/ADT/SmallString.h"
David Blaikied5321242012-06-06 18:52:13 +000022#include "llvm/Support/raw_ostream.h"
23
24using namespace clang;
25using namespace llvm;
26
27namespace {
28
29class InclusionRewriter : public PPCallbacks {
30 /// Information about which #includes were actually performed,
31 /// created by preprocessor callbacks.
32 struct FileChange {
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +000033 const Module *Mod;
David Blaikied5321242012-06-06 18:52:13 +000034 SourceLocation From;
35 FileID Id;
36 SrcMgr::CharacteristicKind FileType;
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +000037 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) {
David Blaikied5321242012-06-06 18:52:13 +000038 }
39 };
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +000040 Preprocessor &PP; ///< Used to find inclusion directives.
41 SourceManager &SM; ///< Used to read and manage source files.
42 raw_ostream &OS; ///< The destination stream for rewritten contents.
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +000043 const llvm::MemoryBuffer *PredefinesBuffer; ///< The preprocessor predefines.
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +000044 bool ShowLineMarkers; ///< Show #line markers.
45 bool UseLineDirective; ///< Use of line directives or line markers.
David Blaikied5321242012-06-06 18:52:13 +000046 typedef std::map<unsigned, FileChange> FileChangeMap;
Dmitri Gribenko20b16ac2013-02-16 22:21:38 +000047 FileChangeMap FileChanges; ///< Tracks which files were included where.
David Blaikied5321242012-06-06 18:52:13 +000048 /// Used transitively for building up the FileChanges mapping over the
49 /// various \c PPCallbacks callbacks.
50 FileChangeMap::iterator LastInsertedFileChange;
51public:
52 InclusionRewriter(Preprocessor &PP, raw_ostream &OS, bool ShowLineMarkers);
53 bool Process(FileID FileId, SrcMgr::CharacteristicKind FileType);
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +000054 void setPredefinesBuffer(const llvm::MemoryBuffer *Buf) {
55 PredefinesBuffer = Buf;
56 }
David Blaikied5321242012-06-06 18:52:13 +000057private:
58 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason,
59 SrcMgr::CharacteristicKind FileType,
60 FileID PrevFID);
61 virtual void FileSkipped(const FileEntry &ParentFile,
62 const Token &FilenameTok,
63 SrcMgr::CharacteristicKind FileType);
64 virtual void InclusionDirective(SourceLocation HashLoc,
65 const Token &IncludeTok,
66 StringRef FileName,
67 bool IsAngled,
Argyrios Kyrtzidis4fcd2882012-09-27 01:42:07 +000068 CharSourceRange FilenameRange,
David Blaikied5321242012-06-06 18:52:13 +000069 const FileEntry *File,
David Blaikied5321242012-06-06 18:52:13 +000070 StringRef SearchPath,
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +000071 StringRef RelativePath,
72 const Module *Imported);
David Blaikied5321242012-06-06 18:52:13 +000073 void WriteLineInfo(const char *Filename, int Line,
74 SrcMgr::CharacteristicKind FileType,
75 StringRef EOL, StringRef Extra = StringRef());
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +000076 void WriteImplicitModuleImport(const Module *Mod, StringRef EOL);
David Blaikied5321242012-06-06 18:52:13 +000077 void OutputContentUpTo(const MemoryBuffer &FromFile,
78 unsigned &WriteFrom, unsigned WriteTo,
79 StringRef EOL, int &lines,
80 bool EnsureNewline = false);
81 void CommentOutDirective(Lexer &DirectivesLex, const Token &StartToken,
82 const MemoryBuffer &FromFile, StringRef EOL,
83 unsigned &NextToWrite, int &Lines);
Benjamin Kramerb10e6152013-04-16 19:08:41 +000084 bool HandleHasInclude(FileID FileId, Lexer &RawLex,
85 const DirectoryLookup *Lookup, Token &Tok,
86 bool &FileExists);
David Blaikied5321242012-06-06 18:52:13 +000087 const FileChange *FindFileChangeLocation(SourceLocation Loc) const;
88 StringRef NextIdentifierName(Lexer &RawLex, Token &RawToken);
89};
90
91} // end anonymous namespace
92
93/// Initializes an InclusionRewriter with a \p PP source and \p OS destination.
94InclusionRewriter::InclusionRewriter(Preprocessor &PP, raw_ostream &OS,
95 bool ShowLineMarkers)
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +000096 : PP(PP), SM(PP.getSourceManager()), OS(OS), PredefinesBuffer(0),
David Blaikied5321242012-06-06 18:52:13 +000097 ShowLineMarkers(ShowLineMarkers),
98 LastInsertedFileChange(FileChanges.end()) {
99 // If we're in microsoft mode, use normal #line instead of line markers.
100 UseLineDirective = PP.getLangOpts().MicrosoftExt;
101}
102
103/// Write appropriate line information as either #line directives or GNU line
104/// markers depending on what mode we're in, including the \p Filename and
105/// \p Line we are located at, using the specified \p EOL line separator, and
106/// any \p Extra context specifiers in GNU line directives.
107void InclusionRewriter::WriteLineInfo(const char *Filename, int Line,
108 SrcMgr::CharacteristicKind FileType,
109 StringRef EOL, StringRef Extra) {
110 if (!ShowLineMarkers)
111 return;
112 if (UseLineDirective) {
Eli Friedman9fc443a2013-09-17 00:51:31 +0000113 OS << "#line" << ' ' << Line << ' ' << '"';
114 OS.write_escaped(Filename);
115 OS << '"';
David Blaikied5321242012-06-06 18:52:13 +0000116 } else {
117 // Use GNU linemarkers as described here:
118 // http://gcc.gnu.org/onlinedocs/cpp/Preprocessor-Output.html
Eli Friedman80e45b82013-08-29 01:42:42 +0000119 OS << '#' << ' ' << Line << ' ' << '"';
120 OS.write_escaped(Filename);
121 OS << '"';
David Blaikied5321242012-06-06 18:52:13 +0000122 if (!Extra.empty())
123 OS << Extra;
124 if (FileType == SrcMgr::C_System)
125 // "`3' This indicates that the following text comes from a system header
126 // file, so certain warnings should be suppressed."
127 OS << " 3";
128 else if (FileType == SrcMgr::C_ExternCSystem)
129 // as above for `3', plus "`4' This indicates that the following text
130 // should be treated as being wrapped in an implicit extern "C" block."
131 OS << " 3 4";
132 }
133 OS << EOL;
134}
135
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000136void InclusionRewriter::WriteImplicitModuleImport(const Module *Mod,
137 StringRef EOL) {
138 OS << "@import " << Mod->getFullModuleName() << ";"
139 << " /* clang -frewrite-includes: implicit import */" << EOL;
140}
141
David Blaikied5321242012-06-06 18:52:13 +0000142/// FileChanged - Whenever the preprocessor enters or exits a #include file
143/// it invokes this handler.
144void InclusionRewriter::FileChanged(SourceLocation Loc,
145 FileChangeReason Reason,
146 SrcMgr::CharacteristicKind NewFileType,
147 FileID) {
148 if (Reason != EnterFile)
149 return;
150 if (LastInsertedFileChange == FileChanges.end())
151 // we didn't reach this file (eg: the main file) via an inclusion directive
152 return;
153 LastInsertedFileChange->second.Id = FullSourceLoc(Loc, SM).getFileID();
154 LastInsertedFileChange->second.FileType = NewFileType;
155 LastInsertedFileChange = FileChanges.end();
156}
157
158/// Called whenever an inclusion is skipped due to canonical header protection
159/// macros.
160void InclusionRewriter::FileSkipped(const FileEntry &/*ParentFile*/,
161 const Token &/*FilenameTok*/,
162 SrcMgr::CharacteristicKind /*FileType*/) {
163 assert(LastInsertedFileChange != FileChanges.end() && "A file, that wasn't "
164 "found via an inclusion directive, was skipped");
165 FileChanges.erase(LastInsertedFileChange);
166 LastInsertedFileChange = FileChanges.end();
167}
168
169/// This should be called whenever the preprocessor encounters include
170/// directives. It does not say whether the file has been included, but it
171/// provides more information about the directive (hash location instead
172/// of location inside the included file). It is assumed that the matching
173/// FileChanged() or FileSkipped() is called after this.
174void InclusionRewriter::InclusionDirective(SourceLocation HashLoc,
175 const Token &/*IncludeTok*/,
176 StringRef /*FileName*/,
177 bool /*IsAngled*/,
Argyrios Kyrtzidis4fcd2882012-09-27 01:42:07 +0000178 CharSourceRange /*FilenameRange*/,
David Blaikied5321242012-06-06 18:52:13 +0000179 const FileEntry * /*File*/,
David Blaikied5321242012-06-06 18:52:13 +0000180 StringRef /*SearchPath*/,
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +0000181 StringRef /*RelativePath*/,
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000182 const Module *Imported) {
David Blaikied5321242012-06-06 18:52:13 +0000183 assert(LastInsertedFileChange == FileChanges.end() && "Another inclusion "
184 "directive was found before the previous one was processed");
185 std::pair<FileChangeMap::iterator, bool> p = FileChanges.insert(
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000186 std::make_pair(HashLoc.getRawEncoding(), FileChange(HashLoc, Imported)));
David Blaikied5321242012-06-06 18:52:13 +0000187 assert(p.second && "Unexpected revisitation of the same include directive");
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000188 if (!Imported)
189 LastInsertedFileChange = p.first;
David Blaikied5321242012-06-06 18:52:13 +0000190}
191
192/// Simple lookup for a SourceLocation (specifically one denoting the hash in
193/// an inclusion directive) in the map of inclusion information, FileChanges.
194const InclusionRewriter::FileChange *
195InclusionRewriter::FindFileChangeLocation(SourceLocation Loc) const {
196 FileChangeMap::const_iterator I = FileChanges.find(Loc.getRawEncoding());
197 if (I != FileChanges.end())
198 return &I->second;
199 return NULL;
200}
201
David Blaikied5321242012-06-06 18:52:13 +0000202/// Detect the likely line ending style of \p FromFile by examining the first
203/// newline found within it.
204static StringRef DetectEOL(const MemoryBuffer &FromFile) {
205 // detect what line endings the file uses, so that added content does not mix
206 // the style
207 const char *Pos = strchr(FromFile.getBufferStart(), '\n');
208 if (Pos == NULL)
209 return "\n";
210 if (Pos + 1 < FromFile.getBufferEnd() && Pos[1] == '\r')
211 return "\n\r";
212 if (Pos - 1 >= FromFile.getBufferStart() && Pos[-1] == '\r')
213 return "\r\n";
214 return "\n";
215}
216
217/// Writes out bytes from \p FromFile, starting at \p NextToWrite and ending at
218/// \p WriteTo - 1.
219void InclusionRewriter::OutputContentUpTo(const MemoryBuffer &FromFile,
220 unsigned &WriteFrom, unsigned WriteTo,
221 StringRef EOL, int &Line,
222 bool EnsureNewline) {
223 if (WriteTo <= WriteFrom)
224 return;
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +0000225 if (&FromFile == PredefinesBuffer) {
226 // Ignore the #defines of the predefines buffer.
227 WriteFrom = WriteTo;
228 return;
229 }
David Blaikied5321242012-06-06 18:52:13 +0000230 OS.write(FromFile.getBufferStart() + WriteFrom, WriteTo - WriteFrom);
231 // count lines manually, it's faster than getPresumedLoc()
Benjamin Kramer71326382012-06-09 13:18:14 +0000232 Line += std::count(FromFile.getBufferStart() + WriteFrom,
233 FromFile.getBufferStart() + WriteTo, '\n');
David Blaikied5321242012-06-06 18:52:13 +0000234 if (EnsureNewline) {
235 char LastChar = FromFile.getBufferStart()[WriteTo - 1];
236 if (LastChar != '\n' && LastChar != '\r')
237 OS << EOL;
238 }
239 WriteFrom = WriteTo;
240}
241
242/// Print characters from \p FromFile starting at \p NextToWrite up until the
243/// inclusion directive at \p StartToken, then print out the inclusion
244/// inclusion directive disabled by a #if directive, updating \p NextToWrite
245/// and \p Line to track the number of source lines visited and the progress
246/// through the \p FromFile buffer.
247void InclusionRewriter::CommentOutDirective(Lexer &DirectiveLex,
248 const Token &StartToken,
249 const MemoryBuffer &FromFile,
250 StringRef EOL,
251 unsigned &NextToWrite, int &Line) {
252 OutputContentUpTo(FromFile, NextToWrite,
253 SM.getFileOffset(StartToken.getLocation()), EOL, Line);
254 Token DirectiveToken;
255 do {
256 DirectiveLex.LexFromRawLexer(DirectiveToken);
257 } while (!DirectiveToken.is(tok::eod) && DirectiveToken.isNot(tok::eof));
David Blaikie619117a2012-06-14 17:36:01 +0000258 OS << "#if 0 /* expanded by -frewrite-includes */" << EOL;
David Blaikied5321242012-06-06 18:52:13 +0000259 OutputContentUpTo(FromFile, NextToWrite,
260 SM.getFileOffset(DirectiveToken.getLocation()) + DirectiveToken.getLength(),
261 EOL, Line);
David Blaikie619117a2012-06-14 17:36:01 +0000262 OS << "#endif /* expanded by -frewrite-includes */" << EOL;
David Blaikied5321242012-06-06 18:52:13 +0000263}
264
265/// Find the next identifier in the pragma directive specified by \p RawToken.
266StringRef InclusionRewriter::NextIdentifierName(Lexer &RawLex,
267 Token &RawToken) {
268 RawLex.LexFromRawLexer(RawToken);
269 if (RawToken.is(tok::raw_identifier))
270 PP.LookUpIdentifierInfo(RawToken);
271 if (RawToken.is(tok::identifier))
272 return RawToken.getIdentifierInfo()->getName();
273 return StringRef();
274}
275
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000276// Expand __has_include and __has_include_next if possible. If there's no
277// definitive answer return false.
278bool InclusionRewriter::HandleHasInclude(
279 FileID FileId, Lexer &RawLex, const DirectoryLookup *Lookup, Token &Tok,
280 bool &FileExists) {
281 // Lex the opening paren.
282 RawLex.LexFromRawLexer(Tok);
283 if (Tok.isNot(tok::l_paren))
284 return false;
285
286 RawLex.LexFromRawLexer(Tok);
287
288 SmallString<128> FilenameBuffer;
289 StringRef Filename;
290 // Since the raw lexer doesn't give us angle_literals we have to parse them
291 // ourselves.
292 // FIXME: What to do if the file name is a macro?
293 if (Tok.is(tok::less)) {
294 RawLex.LexFromRawLexer(Tok);
295
296 FilenameBuffer += '<';
297 do {
298 if (Tok.is(tok::eod)) // Sanity check.
299 return false;
300
301 if (Tok.is(tok::raw_identifier))
302 PP.LookUpIdentifierInfo(Tok);
303
304 // Get the string piece.
305 SmallVector<char, 128> TmpBuffer;
306 bool Invalid = false;
307 StringRef TmpName = PP.getSpelling(Tok, TmpBuffer, &Invalid);
308 if (Invalid)
309 return false;
310
311 FilenameBuffer += TmpName;
312
313 RawLex.LexFromRawLexer(Tok);
314 } while (Tok.isNot(tok::greater));
315
316 FilenameBuffer += '>';
317 Filename = FilenameBuffer;
318 } else {
319 if (Tok.isNot(tok::string_literal))
320 return false;
321
322 bool Invalid = false;
323 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid);
324 if (Invalid)
325 return false;
326 }
327
328 // Lex the closing paren.
329 RawLex.LexFromRawLexer(Tok);
330 if (Tok.isNot(tok::r_paren))
331 return false;
332
333 // Now ask HeaderInfo if it knows about the header.
334 // FIXME: Subframeworks aren't handled here. Do we care?
335 bool isAngled = PP.GetIncludeFilenameSpelling(Tok.getLocation(), Filename);
336 const DirectoryLookup *CurDir;
337 const FileEntry *File = PP.getHeaderSearchInfo().LookupFile(
338 Filename, isAngled, 0, CurDir,
339 PP.getSourceManager().getFileEntryForID(FileId), 0, 0, 0, false);
340
341 FileExists = File != 0;
342 return true;
343}
344
Benjamin Kramere2881572013-10-13 12:02:16 +0000345/// Use a raw lexer to analyze \p FileId, incrementally copying parts of it
David Blaikied5321242012-06-06 18:52:13 +0000346/// and including content of included files recursively.
347bool InclusionRewriter::Process(FileID FileId,
348 SrcMgr::CharacteristicKind FileType)
349{
350 bool Invalid;
351 const MemoryBuffer &FromFile = *SM.getBuffer(FileId, &Invalid);
David Blaikie76cae512012-06-14 17:36:05 +0000352 if (Invalid) // invalid inclusion
Argyrios Kyrtzidis953ef332013-04-10 01:53:37 +0000353 return false;
David Blaikied5321242012-06-06 18:52:13 +0000354 const char *FileName = FromFile.getBufferIdentifier();
355 Lexer RawLex(FileId, &FromFile, PP.getSourceManager(), PP.getLangOpts());
356 RawLex.SetCommentRetentionState(false);
357
358 StringRef EOL = DetectEOL(FromFile);
359
360 // Per the GNU docs: "1" indicates the start of a new file.
361 WriteLineInfo(FileName, 1, FileType, EOL, " 1");
362
363 if (SM.getFileIDSize(FileId) == 0)
Argyrios Kyrtzidis953ef332013-04-10 01:53:37 +0000364 return false;
David Blaikied5321242012-06-06 18:52:13 +0000365
Alp Toker3dfeafd2013-11-28 07:21:44 +0000366 // The next byte to be copied from the source file, which may be non-zero if
367 // the lexer handled a BOM.
368 unsigned NextToWrite = SM.getFileOffset(RawLex.getSourceLocation());
David Blaikied5321242012-06-06 18:52:13 +0000369 int Line = 1; // The current input file line number.
370
371 Token RawToken;
372 RawLex.LexFromRawLexer(RawToken);
373
374 // TODO: Consider adding a switch that strips possibly unimportant content,
375 // such as comments, to reduce the size of repro files.
376 while (RawToken.isNot(tok::eof)) {
377 if (RawToken.is(tok::hash) && RawToken.isAtStartOfLine()) {
378 RawLex.setParsingPreprocessorDirective(true);
379 Token HashToken = RawToken;
380 RawLex.LexFromRawLexer(RawToken);
381 if (RawToken.is(tok::raw_identifier))
382 PP.LookUpIdentifierInfo(RawToken);
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000383 if (RawToken.getIdentifierInfo() != NULL) {
David Blaikied5321242012-06-06 18:52:13 +0000384 switch (RawToken.getIdentifierInfo()->getPPKeywordID()) {
385 case tok::pp_include:
386 case tok::pp_include_next:
387 case tok::pp_import: {
388 CommentOutDirective(RawLex, HashToken, FromFile, EOL, NextToWrite,
389 Line);
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000390 StringRef LineInfoExtra;
David Blaikied5321242012-06-06 18:52:13 +0000391 if (const FileChange *Change = FindFileChangeLocation(
392 HashToken.getLocation())) {
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000393 if (Change->Mod) {
394 WriteImplicitModuleImport(Change->Mod, EOL);
395
396 // else now include and recursively process the file
397 } else if (Process(Change->Id, Change->FileType)) {
David Blaikied5321242012-06-06 18:52:13 +0000398 // and set lineinfo back to this file, if the nested one was
399 // actually included
400 // `2' indicates returning to a file (after having included
401 // another file.
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000402 LineInfoExtra = " 2";
Argyrios Kyrtzidis953ef332013-04-10 01:53:37 +0000403 }
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000404 }
405 // fix up lineinfo (since commented out directive changed line
406 // numbers) for inclusions that were skipped due to header guards
407 WriteLineInfo(FileName, Line, FileType, EOL, LineInfoExtra);
David Blaikied5321242012-06-06 18:52:13 +0000408 break;
409 }
410 case tok::pp_pragma: {
411 StringRef Identifier = NextIdentifierName(RawLex, RawToken);
412 if (Identifier == "clang" || Identifier == "GCC") {
413 if (NextIdentifierName(RawLex, RawToken) == "system_header") {
414 // keep the directive in, commented out
415 CommentOutDirective(RawLex, HashToken, FromFile, EOL,
416 NextToWrite, Line);
417 // update our own type
418 FileType = SM.getFileCharacteristic(RawToken.getLocation());
419 WriteLineInfo(FileName, Line, FileType, EOL);
420 }
421 } else if (Identifier == "once") {
422 // keep the directive in, commented out
423 CommentOutDirective(RawLex, HashToken, FromFile, EOL,
424 NextToWrite, Line);
425 WriteLineInfo(FileName, Line, FileType, EOL);
426 }
427 break;
428 }
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000429 case tok::pp_if:
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000430 case tok::pp_elif: {
431 bool elif = (RawToken.getIdentifierInfo()->getPPKeywordID() ==
432 tok::pp_elif);
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000433 // Rewrite special builtin macros to avoid pulling in host details.
434 do {
435 // Walk over the directive.
436 RawLex.LexFromRawLexer(RawToken);
437 if (RawToken.is(tok::raw_identifier))
438 PP.LookUpIdentifierInfo(RawToken);
439
440 if (RawToken.is(tok::identifier)) {
441 bool HasFile;
442 SourceLocation Loc = RawToken.getLocation();
443
444 // Rewrite __has_include(x)
445 if (RawToken.getIdentifierInfo()->isStr("__has_include")) {
446 if (!HandleHasInclude(FileId, RawLex, 0, RawToken, HasFile))
447 continue;
448 // Rewrite __has_include_next(x)
449 } else if (RawToken.getIdentifierInfo()->isStr(
450 "__has_include_next")) {
451 const DirectoryLookup *Lookup = PP.GetCurDirLookup();
452 if (Lookup)
453 ++Lookup;
454
455 if (!HandleHasInclude(FileId, RawLex, Lookup, RawToken,
456 HasFile))
457 continue;
458 } else {
459 continue;
460 }
461 // Replace the macro with (0) or (1), followed by the commented
462 // out macro for reference.
463 OutputContentUpTo(FromFile, NextToWrite, SM.getFileOffset(Loc),
464 EOL, Line);
465 OS << '(' << (int) HasFile << ")/*";
466 OutputContentUpTo(FromFile, NextToWrite,
467 SM.getFileOffset(RawToken.getLocation()) +
468 RawToken.getLength(),
469 EOL, Line);
470 OS << "*/";
471 }
472 } while (RawToken.isNot(tok::eod));
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000473 if (elif) {
474 OutputContentUpTo(FromFile, NextToWrite,
475 SM.getFileOffset(RawToken.getLocation()) +
476 RawToken.getLength(),
477 EOL, Line, /*EnsureNewLine*/ true);
478 WriteLineInfo(FileName, Line, FileType, EOL);
479 }
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000480 break;
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000481 }
482 case tok::pp_endif:
483 case tok::pp_else: {
484 // We surround every #include by #if 0 to comment it out, but that
485 // changes line numbers. These are fixed up right after that, but
486 // the whole #include could be inside a preprocessor conditional
487 // that is not processed. So it is necessary to fix the line
488 // numbers one the next line after each #else/#endif as well.
489 RawLex.SetKeepWhitespaceMode(true);
490 do {
491 RawLex.LexFromRawLexer(RawToken);
492 } while (RawToken.isNot(tok::eod) && RawToken.isNot(tok::eof));
493 OutputContentUpTo(
494 FromFile, NextToWrite,
495 SM.getFileOffset(RawToken.getLocation()) + RawToken.getLength(),
496 EOL, Line, /*EnsureNewLine*/ true);
497 WriteLineInfo(FileName, Line, FileType, EOL);
498 RawLex.SetKeepWhitespaceMode(false);
499 }
David Blaikied5321242012-06-06 18:52:13 +0000500 default:
501 break;
502 }
503 }
504 RawLex.setParsingPreprocessorDirective(false);
505 }
506 RawLex.LexFromRawLexer(RawToken);
507 }
508 OutputContentUpTo(FromFile, NextToWrite,
Argyrios Kyrtzidisd3910462013-05-07 04:29:22 +0000509 SM.getFileOffset(SM.getLocForEndOfFile(FileId)), EOL, Line,
David Blaikied5321242012-06-06 18:52:13 +0000510 /*EnsureNewline*/true);
511 return true;
512}
513
David Blaikie619117a2012-06-14 17:36:01 +0000514/// InclusionRewriterInInput - Implement -frewrite-includes mode.
David Blaikied5321242012-06-06 18:52:13 +0000515void clang::RewriteIncludesInInput(Preprocessor &PP, raw_ostream *OS,
516 const PreprocessorOutputOptions &Opts) {
517 SourceManager &SM = PP.getSourceManager();
518 InclusionRewriter *Rewrite = new InclusionRewriter(PP, *OS,
519 Opts.ShowLineMarkers);
520 PP.addPPCallbacks(Rewrite);
Lubos Lunakba5ee4d2013-07-20 14:30:01 +0000521 // Ignore all pragmas, otherwise there will be warnings about unknown pragmas
522 // (because there's nothing to handle them).
523 PP.AddPragmaHandler(new EmptyPragmaHandler());
524 // Ignore also all pragma in all namespaces created
525 // in Preprocessor::RegisterBuiltinPragmas().
526 PP.AddPragmaHandler("GCC", new EmptyPragmaHandler());
527 PP.AddPragmaHandler("clang", new EmptyPragmaHandler());
David Blaikied5321242012-06-06 18:52:13 +0000528
529 // First let the preprocessor process the entire file and call callbacks.
530 // Callbacks will record which #include's were actually performed.
531 PP.EnterMainSourceFile();
532 Token Tok;
533 // Only preprocessor directives matter here, so disable macro expansion
534 // everywhere else as an optimization.
535 // TODO: It would be even faster if the preprocessor could be switched
536 // to a mode where it would parse only preprocessor directives and comments,
537 // nothing else matters for parsing or processing.
538 PP.SetMacroExpansionOnlyInDirectives();
539 do {
540 PP.Lex(Tok);
541 } while (Tok.isNot(tok::eof));
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +0000542 Rewrite->setPredefinesBuffer(SM.getBuffer(PP.getPredefinesFileID()));
543 Rewrite->Process(PP.getPredefinesFileID(), SrcMgr::C_User);
David Blaikied5321242012-06-06 18:52:13 +0000544 Rewrite->Process(SM.getMainFileID(), SrcMgr::C_User);
545 OS->flush();
546}