blob: 49b23dd1f4a38f5b5a197cd6891886f14cd36665 [file] [log] [blame]
David Blaikie8c0b3782012-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 Kremenek305c6132012-09-01 05:09:24 +000015#include "clang/Rewrite/Frontend/Rewriters.h"
David Blaikie8c0b3782012-06-06 18:52:13 +000016#include "clang/Basic/SourceManager.h"
17#include "clang/Frontend/PreprocessorOutputOptions.h"
Benjamin Kramer596eea72013-04-16 19:08:41 +000018#include "clang/Lex/HeaderSearch.h"
Lubos Lunak8ee6a0d2013-07-20 14:30:01 +000019#include "clang/Lex/Pragma.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/Lex/Preprocessor.h"
Benjamin Kramer596eea72013-04-16 19:08:41 +000021#include "llvm/ADT/SmallString.h"
David Blaikie8c0b3782012-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 Kyrtzidis03409962013-04-10 01:53:50 +000033 const Module *Mod;
David Blaikie8c0b3782012-06-06 18:52:13 +000034 SourceLocation From;
35 FileID Id;
36 SrcMgr::CharacteristicKind FileType;
Argyrios Kyrtzidis03409962013-04-10 01:53:50 +000037 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) {
David Blaikie8c0b3782012-06-06 18:52:13 +000038 }
39 };
Dmitri Gribenko49fdccb2012-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 Kyrtzidise9512e22013-07-26 15:32:04 +000043 const llvm::MemoryBuffer *PredefinesBuffer; ///< The preprocessor predefines.
Dmitri Gribenko49fdccb2012-06-08 23:13:42 +000044 bool ShowLineMarkers; ///< Show #line markers.
45 bool UseLineDirective; ///< Use of line directives or line markers.
David Blaikie8c0b3782012-06-06 18:52:13 +000046 typedef std::map<unsigned, FileChange> FileChangeMap;
Dmitri Gribenko959dc842013-02-16 22:21:38 +000047 FileChangeMap FileChanges; ///< Tracks which files were included where.
David Blaikie8c0b3782012-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 Kyrtzidise9512e22013-07-26 15:32:04 +000054 void setPredefinesBuffer(const llvm::MemoryBuffer *Buf) {
55 PredefinesBuffer = Buf;
56 }
David Blaikie8c0b3782012-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 Kyrtzidisda313592012-09-27 01:42:07 +000068 CharSourceRange FilenameRange,
David Blaikie8c0b3782012-06-06 18:52:13 +000069 const FileEntry *File,
David Blaikie8c0b3782012-06-06 18:52:13 +000070 StringRef SearchPath,
Argyrios Kyrtzidisf8afcff2012-09-29 01:06:10 +000071 StringRef RelativePath,
72 const Module *Imported);
David Blaikie8c0b3782012-06-06 18:52:13 +000073 void WriteLineInfo(const char *Filename, int Line,
74 SrcMgr::CharacteristicKind FileType,
75 StringRef EOL, StringRef Extra = StringRef());
Argyrios Kyrtzidis03409962013-04-10 01:53:50 +000076 void WriteImplicitModuleImport(const Module *Mod, StringRef EOL);
David Blaikie8c0b3782012-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 Kramer596eea72013-04-16 19:08:41 +000084 bool HandleHasInclude(FileID FileId, Lexer &RawLex,
85 const DirectoryLookup *Lookup, Token &Tok,
86 bool &FileExists);
David Blaikie8c0b3782012-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 Kyrtzidise9512e22013-07-26 15:32:04 +000096 : PP(PP), SM(PP.getSourceManager()), OS(OS), PredefinesBuffer(0),
David Blaikie8c0b3782012-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 Friedmana2b47542013-09-17 00:51:31 +0000113 OS << "#line" << ' ' << Line << ' ' << '"';
114 OS.write_escaped(Filename);
115 OS << '"';
David Blaikie8c0b3782012-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 Friedman3432b782013-08-29 01:42:42 +0000119 OS << '#' << ' ' << Line << ' ' << '"';
120 OS.write_escaped(Filename);
121 OS << '"';
David Blaikie8c0b3782012-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 Kyrtzidis03409962013-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 Blaikie8c0b3782012-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 Kyrtzidisda313592012-09-27 01:42:07 +0000178 CharSourceRange /*FilenameRange*/,
David Blaikie8c0b3782012-06-06 18:52:13 +0000179 const FileEntry * /*File*/,
David Blaikie8c0b3782012-06-06 18:52:13 +0000180 StringRef /*SearchPath*/,
Argyrios Kyrtzidisf8afcff2012-09-29 01:06:10 +0000181 StringRef /*RelativePath*/,
Argyrios Kyrtzidis03409962013-04-10 01:53:50 +0000182 const Module *Imported) {
David Blaikie8c0b3782012-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 Kyrtzidis03409962013-04-10 01:53:50 +0000186 std::make_pair(HashLoc.getRawEncoding(), FileChange(HashLoc, Imported)));
David Blaikie8c0b3782012-06-06 18:52:13 +0000187 assert(p.second && "Unexpected revisitation of the same include directive");
Argyrios Kyrtzidis03409962013-04-10 01:53:50 +0000188 if (!Imported)
189 LastInsertedFileChange = p.first;
David Blaikie8c0b3782012-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 Blaikie8c0b3782012-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 Kyrtzidise9512e22013-07-26 15:32:04 +0000225 if (&FromFile == PredefinesBuffer) {
226 // Ignore the #defines of the predefines buffer.
227 WriteFrom = WriteTo;
228 return;
229 }
David Blaikie8c0b3782012-06-06 18:52:13 +0000230 OS.write(FromFile.getBufferStart() + WriteFrom, WriteTo - WriteFrom);
231 // count lines manually, it's faster than getPresumedLoc()
Benjamin Kramer31598192012-06-09 13:18:14 +0000232 Line += std::count(FromFile.getBufferStart() + WriteFrom,
233 FromFile.getBufferStart() + WriteTo, '\n');
David Blaikie8c0b3782012-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 Blaikie60ad16b2012-06-14 17:36:01 +0000258 OS << "#if 0 /* expanded by -frewrite-includes */" << EOL;
David Blaikie8c0b3782012-06-06 18:52:13 +0000259 OutputContentUpTo(FromFile, NextToWrite,
260 SM.getFileOffset(DirectiveToken.getLocation()) + DirectiveToken.getLength(),
261 EOL, Line);
David Blaikie60ad16b2012-06-14 17:36:01 +0000262 OS << "#endif /* expanded by -frewrite-includes */" << EOL;
David Blaikie8c0b3782012-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 Kramer596eea72013-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
David Blaikie8c0b3782012-06-06 18:52:13 +0000345/// Use a raw lexer to analyze \p FileId, inccrementally copying parts of it
346/// 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 Blaikiebae2b312012-06-14 17:36:05 +0000352 if (Invalid) // invalid inclusion
Argyrios Kyrtzidis507d4962013-04-10 01:53:37 +0000353 return false;
David Blaikie8c0b3782012-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 Kyrtzidis507d4962013-04-10 01:53:37 +0000364 return false;
David Blaikie8c0b3782012-06-06 18:52:13 +0000365
366 // The next byte to be copied from the source file
367 unsigned NextToWrite = 0;
368 int Line = 1; // The current input file line number.
369
370 Token RawToken;
371 RawLex.LexFromRawLexer(RawToken);
372
373 // TODO: Consider adding a switch that strips possibly unimportant content,
374 // such as comments, to reduce the size of repro files.
375 while (RawToken.isNot(tok::eof)) {
376 if (RawToken.is(tok::hash) && RawToken.isAtStartOfLine()) {
377 RawLex.setParsingPreprocessorDirective(true);
378 Token HashToken = RawToken;
379 RawLex.LexFromRawLexer(RawToken);
380 if (RawToken.is(tok::raw_identifier))
381 PP.LookUpIdentifierInfo(RawToken);
Lubos Lunakce6af112013-07-20 14:23:27 +0000382 if (RawToken.getIdentifierInfo() != NULL) {
David Blaikie8c0b3782012-06-06 18:52:13 +0000383 switch (RawToken.getIdentifierInfo()->getPPKeywordID()) {
384 case tok::pp_include:
385 case tok::pp_include_next:
386 case tok::pp_import: {
387 CommentOutDirective(RawLex, HashToken, FromFile, EOL, NextToWrite,
388 Line);
Argyrios Kyrtzidis03409962013-04-10 01:53:50 +0000389 StringRef LineInfoExtra;
David Blaikie8c0b3782012-06-06 18:52:13 +0000390 if (const FileChange *Change = FindFileChangeLocation(
391 HashToken.getLocation())) {
Argyrios Kyrtzidis03409962013-04-10 01:53:50 +0000392 if (Change->Mod) {
393 WriteImplicitModuleImport(Change->Mod, EOL);
394
395 // else now include and recursively process the file
396 } else if (Process(Change->Id, Change->FileType)) {
David Blaikie8c0b3782012-06-06 18:52:13 +0000397 // and set lineinfo back to this file, if the nested one was
398 // actually included
399 // `2' indicates returning to a file (after having included
400 // another file.
Argyrios Kyrtzidis03409962013-04-10 01:53:50 +0000401 LineInfoExtra = " 2";
Argyrios Kyrtzidis507d4962013-04-10 01:53:37 +0000402 }
Argyrios Kyrtzidis03409962013-04-10 01:53:50 +0000403 }
404 // fix up lineinfo (since commented out directive changed line
405 // numbers) for inclusions that were skipped due to header guards
406 WriteLineInfo(FileName, Line, FileType, EOL, LineInfoExtra);
David Blaikie8c0b3782012-06-06 18:52:13 +0000407 break;
408 }
409 case tok::pp_pragma: {
410 StringRef Identifier = NextIdentifierName(RawLex, RawToken);
411 if (Identifier == "clang" || Identifier == "GCC") {
412 if (NextIdentifierName(RawLex, RawToken) == "system_header") {
413 // keep the directive in, commented out
414 CommentOutDirective(RawLex, HashToken, FromFile, EOL,
415 NextToWrite, Line);
416 // update our own type
417 FileType = SM.getFileCharacteristic(RawToken.getLocation());
418 WriteLineInfo(FileName, Line, FileType, EOL);
419 }
420 } else if (Identifier == "once") {
421 // keep the directive in, commented out
422 CommentOutDirective(RawLex, HashToken, FromFile, EOL,
423 NextToWrite, Line);
424 WriteLineInfo(FileName, Line, FileType, EOL);
425 }
426 break;
427 }
Benjamin Kramer596eea72013-04-16 19:08:41 +0000428 case tok::pp_if:
Lubos Lunakce6af112013-07-20 14:23:27 +0000429 case tok::pp_elif: {
430 bool elif = (RawToken.getIdentifierInfo()->getPPKeywordID() ==
431 tok::pp_elif);
Benjamin Kramer596eea72013-04-16 19:08:41 +0000432 // Rewrite special builtin macros to avoid pulling in host details.
433 do {
434 // Walk over the directive.
435 RawLex.LexFromRawLexer(RawToken);
436 if (RawToken.is(tok::raw_identifier))
437 PP.LookUpIdentifierInfo(RawToken);
438
439 if (RawToken.is(tok::identifier)) {
440 bool HasFile;
441 SourceLocation Loc = RawToken.getLocation();
442
443 // Rewrite __has_include(x)
444 if (RawToken.getIdentifierInfo()->isStr("__has_include")) {
445 if (!HandleHasInclude(FileId, RawLex, 0, RawToken, HasFile))
446 continue;
447 // Rewrite __has_include_next(x)
448 } else if (RawToken.getIdentifierInfo()->isStr(
449 "__has_include_next")) {
450 const DirectoryLookup *Lookup = PP.GetCurDirLookup();
451 if (Lookup)
452 ++Lookup;
453
454 if (!HandleHasInclude(FileId, RawLex, Lookup, RawToken,
455 HasFile))
456 continue;
457 } else {
458 continue;
459 }
460 // Replace the macro with (0) or (1), followed by the commented
461 // out macro for reference.
462 OutputContentUpTo(FromFile, NextToWrite, SM.getFileOffset(Loc),
463 EOL, Line);
464 OS << '(' << (int) HasFile << ")/*";
465 OutputContentUpTo(FromFile, NextToWrite,
466 SM.getFileOffset(RawToken.getLocation()) +
467 RawToken.getLength(),
468 EOL, Line);
469 OS << "*/";
470 }
471 } while (RawToken.isNot(tok::eod));
Lubos Lunakce6af112013-07-20 14:23:27 +0000472 if (elif) {
473 OutputContentUpTo(FromFile, NextToWrite,
474 SM.getFileOffset(RawToken.getLocation()) +
475 RawToken.getLength(),
476 EOL, Line, /*EnsureNewLine*/ true);
477 WriteLineInfo(FileName, Line, FileType, EOL);
478 }
Benjamin Kramer596eea72013-04-16 19:08:41 +0000479 break;
Lubos Lunakce6af112013-07-20 14:23:27 +0000480 }
481 case tok::pp_endif:
482 case tok::pp_else: {
483 // We surround every #include by #if 0 to comment it out, but that
484 // changes line numbers. These are fixed up right after that, but
485 // the whole #include could be inside a preprocessor conditional
486 // that is not processed. So it is necessary to fix the line
487 // numbers one the next line after each #else/#endif as well.
488 RawLex.SetKeepWhitespaceMode(true);
489 do {
490 RawLex.LexFromRawLexer(RawToken);
491 } while (RawToken.isNot(tok::eod) && RawToken.isNot(tok::eof));
492 OutputContentUpTo(
493 FromFile, NextToWrite,
494 SM.getFileOffset(RawToken.getLocation()) + RawToken.getLength(),
495 EOL, Line, /*EnsureNewLine*/ true);
496 WriteLineInfo(FileName, Line, FileType, EOL);
497 RawLex.SetKeepWhitespaceMode(false);
498 }
David Blaikie8c0b3782012-06-06 18:52:13 +0000499 default:
500 break;
501 }
502 }
503 RawLex.setParsingPreprocessorDirective(false);
504 }
505 RawLex.LexFromRawLexer(RawToken);
506 }
507 OutputContentUpTo(FromFile, NextToWrite,
Argyrios Kyrtzidisb18840d2013-05-07 04:29:22 +0000508 SM.getFileOffset(SM.getLocForEndOfFile(FileId)), EOL, Line,
David Blaikie8c0b3782012-06-06 18:52:13 +0000509 /*EnsureNewline*/true);
510 return true;
511}
512
David Blaikie60ad16b2012-06-14 17:36:01 +0000513/// InclusionRewriterInInput - Implement -frewrite-includes mode.
David Blaikie8c0b3782012-06-06 18:52:13 +0000514void clang::RewriteIncludesInInput(Preprocessor &PP, raw_ostream *OS,
515 const PreprocessorOutputOptions &Opts) {
516 SourceManager &SM = PP.getSourceManager();
517 InclusionRewriter *Rewrite = new InclusionRewriter(PP, *OS,
518 Opts.ShowLineMarkers);
519 PP.addPPCallbacks(Rewrite);
Lubos Lunak8ee6a0d2013-07-20 14:30:01 +0000520 // Ignore all pragmas, otherwise there will be warnings about unknown pragmas
521 // (because there's nothing to handle them).
522 PP.AddPragmaHandler(new EmptyPragmaHandler());
523 // Ignore also all pragma in all namespaces created
524 // in Preprocessor::RegisterBuiltinPragmas().
525 PP.AddPragmaHandler("GCC", new EmptyPragmaHandler());
526 PP.AddPragmaHandler("clang", new EmptyPragmaHandler());
David Blaikie8c0b3782012-06-06 18:52:13 +0000527
528 // First let the preprocessor process the entire file and call callbacks.
529 // Callbacks will record which #include's were actually performed.
530 PP.EnterMainSourceFile();
531 Token Tok;
532 // Only preprocessor directives matter here, so disable macro expansion
533 // everywhere else as an optimization.
534 // TODO: It would be even faster if the preprocessor could be switched
535 // to a mode where it would parse only preprocessor directives and comments,
536 // nothing else matters for parsing or processing.
537 PP.SetMacroExpansionOnlyInDirectives();
538 do {
539 PP.Lex(Tok);
540 } while (Tok.isNot(tok::eof));
Argyrios Kyrtzidise9512e22013-07-26 15:32:04 +0000541 Rewrite->setPredefinesBuffer(SM.getBuffer(PP.getPredefinesFileID()));
542 Rewrite->Process(PP.getPredefinesFileID(), SrcMgr::C_User);
David Blaikie8c0b3782012-06-06 18:52:13 +0000543 Rewrite->Process(SM.getMainFileID(), SrcMgr::C_User);
544 OS->flush();
545}