blob: e0477069b3406c7a3eda3d527d71507d3a5f6369 [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.
Justin Bogner0707fd02015-07-01 04:40:10 +000032 struct IncludedFile {
David Blaikied5321242012-06-06 18:52:13 +000033 FileID Id;
34 SrcMgr::CharacteristicKind FileType;
Justin Bogner0707fd02015-07-01 04:40:10 +000035 IncludedFile(FileID Id, SrcMgr::CharacteristicKind FileType)
36 : Id(Id), FileType(FileType) {}
David Blaikied5321242012-06-06 18:52:13 +000037 };
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +000038 Preprocessor &PP; ///< Used to find inclusion directives.
39 SourceManager &SM; ///< Used to read and manage source files.
40 raw_ostream &OS; ///< The destination stream for rewritten contents.
Reid Klecknere2793c02014-09-05 16:49:50 +000041 StringRef MainEOL; ///< The line ending marker to use.
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +000042 const llvm::MemoryBuffer *PredefinesBuffer; ///< The preprocessor predefines.
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +000043 bool ShowLineMarkers; ///< Show #line markers.
Reid Kleckner1df0fea2015-02-26 00:17:25 +000044 bool UseLineDirectives; ///< Use of line directives or line markers.
Justin Bogner0707fd02015-07-01 04:40:10 +000045 /// Tracks where inclusions that change the file are found.
46 std::map<unsigned, IncludedFile> FileIncludes;
47 /// Tracks where inclusions that import modules are found.
48 std::map<unsigned, const Module *> ModuleIncludes;
Richard Smithd1386302017-05-04 00:29:54 +000049 /// Tracks where inclusions that enter modules (in a module build) are found.
50 std::map<unsigned, const Module *> ModuleEntryIncludes;
Justin Bogner0707fd02015-07-01 04:40:10 +000051 /// Used transitively for building up the FileIncludes mapping over the
David Blaikied5321242012-06-06 18:52:13 +000052 /// various \c PPCallbacks callbacks.
Justin Bogner0707fd02015-07-01 04:40:10 +000053 SourceLocation LastInclusionLocation;
David Blaikied5321242012-06-06 18:52:13 +000054public:
Reid Kleckner1df0fea2015-02-26 00:17:25 +000055 InclusionRewriter(Preprocessor &PP, raw_ostream &OS, bool ShowLineMarkers,
56 bool UseLineDirectives);
Richard Smithc7cacdc2017-04-29 00:54:03 +000057 void Process(FileID FileId, SrcMgr::CharacteristicKind FileType);
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +000058 void setPredefinesBuffer(const llvm::MemoryBuffer *Buf) {
59 PredefinesBuffer = Buf;
60 }
Reid Klecknere2793c02014-09-05 16:49:50 +000061 void detectMainFileEOL();
Richard Smithd1386302017-05-04 00:29:54 +000062 void handleModuleBegin(Token &Tok) {
63 assert(Tok.getKind() == tok::annot_module_begin);
64 ModuleEntryIncludes.insert({Tok.getLocation().getRawEncoding(),
65 (Module *)Tok.getAnnotationValue()});
66 }
David Blaikied5321242012-06-06 18:52:13 +000067private:
Craig Topperfb6b25b2014-03-15 04:29:04 +000068 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
69 SrcMgr::CharacteristicKind FileType,
70 FileID PrevFID) override;
Nikola Smiljanicfb891fc2015-05-12 11:48:05 +000071 void FileSkipped(const FileEntry &SkippedFile, const Token &FilenameTok,
Craig Topperfb6b25b2014-03-15 04:29:04 +000072 SrcMgr::CharacteristicKind FileType) override;
73 void InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok,
74 StringRef FileName, bool IsAngled,
75 CharSourceRange FilenameRange, const FileEntry *File,
76 StringRef SearchPath, StringRef RelativePath,
77 const Module *Imported) override;
Mehdi Amini99d1b292016-10-01 16:38:28 +000078 void WriteLineInfo(StringRef Filename, int Line,
David Blaikied5321242012-06-06 18:52:13 +000079 SrcMgr::CharacteristicKind FileType,
Reid Klecknere2793c02014-09-05 16:49:50 +000080 StringRef Extra = StringRef());
81 void WriteImplicitModuleImport(const Module *Mod);
David Blaikied5321242012-06-06 18:52:13 +000082 void OutputContentUpTo(const MemoryBuffer &FromFile,
83 unsigned &WriteFrom, unsigned WriteTo,
84 StringRef EOL, int &lines,
Alp Toker08c25002013-12-13 17:04:55 +000085 bool EnsureNewline);
David Blaikied5321242012-06-06 18:52:13 +000086 void CommentOutDirective(Lexer &DirectivesLex, const Token &StartToken,
87 const MemoryBuffer &FromFile, StringRef EOL,
88 unsigned &NextToWrite, int &Lines);
Benjamin Kramerb10e6152013-04-16 19:08:41 +000089 bool HandleHasInclude(FileID FileId, Lexer &RawLex,
90 const DirectoryLookup *Lookup, Token &Tok,
91 bool &FileExists);
Justin Bogner0707fd02015-07-01 04:40:10 +000092 const IncludedFile *FindIncludeAtLocation(SourceLocation Loc) const;
93 const Module *FindModuleAtLocation(SourceLocation Loc) const;
Richard Smithd1386302017-05-04 00:29:54 +000094 const Module *FindEnteredModule(SourceLocation Loc) const;
David Blaikied5321242012-06-06 18:52:13 +000095 StringRef NextIdentifierName(Lexer &RawLex, Token &RawToken);
96};
97
98} // end anonymous namespace
99
100/// Initializes an InclusionRewriter with a \p PP source and \p OS destination.
101InclusionRewriter::InclusionRewriter(Preprocessor &PP, raw_ostream &OS,
Reid Kleckner1df0fea2015-02-26 00:17:25 +0000102 bool ShowLineMarkers,
103 bool UseLineDirectives)
Reid Klecknere2793c02014-09-05 16:49:50 +0000104 : PP(PP), SM(PP.getSourceManager()), OS(OS), MainEOL("\n"),
105 PredefinesBuffer(nullptr), ShowLineMarkers(ShowLineMarkers),
Eric Christopher8213f7f2015-02-26 00:29:54 +0000106 UseLineDirectives(UseLineDirectives),
Justin Bogner0707fd02015-07-01 04:40:10 +0000107 LastInclusionLocation(SourceLocation()) {}
David Blaikied5321242012-06-06 18:52:13 +0000108
109/// Write appropriate line information as either #line directives or GNU line
110/// markers depending on what mode we're in, including the \p Filename and
111/// \p Line we are located at, using the specified \p EOL line separator, and
112/// any \p Extra context specifiers in GNU line directives.
Mehdi Amini99d1b292016-10-01 16:38:28 +0000113void InclusionRewriter::WriteLineInfo(StringRef Filename, int Line,
David Blaikied5321242012-06-06 18:52:13 +0000114 SrcMgr::CharacteristicKind FileType,
Reid Klecknere2793c02014-09-05 16:49:50 +0000115 StringRef Extra) {
David Blaikied5321242012-06-06 18:52:13 +0000116 if (!ShowLineMarkers)
117 return;
Reid Kleckner1df0fea2015-02-26 00:17:25 +0000118 if (UseLineDirectives) {
Eli Friedman9fc443a2013-09-17 00:51:31 +0000119 OS << "#line" << ' ' << Line << ' ' << '"';
120 OS.write_escaped(Filename);
121 OS << '"';
David Blaikied5321242012-06-06 18:52:13 +0000122 } else {
123 // Use GNU linemarkers as described here:
124 // http://gcc.gnu.org/onlinedocs/cpp/Preprocessor-Output.html
Eli Friedman80e45b82013-08-29 01:42:42 +0000125 OS << '#' << ' ' << Line << ' ' << '"';
126 OS.write_escaped(Filename);
127 OS << '"';
David Blaikied5321242012-06-06 18:52:13 +0000128 if (!Extra.empty())
129 OS << Extra;
130 if (FileType == SrcMgr::C_System)
131 // "`3' This indicates that the following text comes from a system header
132 // file, so certain warnings should be suppressed."
133 OS << " 3";
134 else if (FileType == SrcMgr::C_ExternCSystem)
135 // as above for `3', plus "`4' This indicates that the following text
136 // should be treated as being wrapped in an implicit extern "C" block."
137 OS << " 3 4";
138 }
Reid Klecknere2793c02014-09-05 16:49:50 +0000139 OS << MainEOL;
David Blaikied5321242012-06-06 18:52:13 +0000140}
141
Reid Klecknere2793c02014-09-05 16:49:50 +0000142void InclusionRewriter::WriteImplicitModuleImport(const Module *Mod) {
Richard Smith9565c75b2017-06-19 23:09:36 +0000143 OS << "#pragma clang module import " << Mod->getFullModuleName(true)
Reid Klecknere2793c02014-09-05 16:49:50 +0000144 << " /* clang -frewrite-includes: implicit import */" << MainEOL;
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000145}
146
David Blaikied5321242012-06-06 18:52:13 +0000147/// FileChanged - Whenever the preprocessor enters or exits a #include file
148/// it invokes this handler.
149void InclusionRewriter::FileChanged(SourceLocation Loc,
150 FileChangeReason Reason,
151 SrcMgr::CharacteristicKind NewFileType,
152 FileID) {
153 if (Reason != EnterFile)
154 return;
Justin Bogner0707fd02015-07-01 04:40:10 +0000155 if (LastInclusionLocation.isInvalid())
David Blaikied5321242012-06-06 18:52:13 +0000156 // we didn't reach this file (eg: the main file) via an inclusion directive
157 return;
Justin Bogner0707fd02015-07-01 04:40:10 +0000158 FileID Id = FullSourceLoc(Loc, SM).getFileID();
Justin Bogner879d4202015-07-01 04:53:19 +0000159 auto P = FileIncludes.insert(std::make_pair(
160 LastInclusionLocation.getRawEncoding(), IncludedFile(Id, NewFileType)));
Justin Bogner2510ba32015-07-01 05:41:50 +0000161 (void)P;
Justin Bogner0707fd02015-07-01 04:40:10 +0000162 assert(P.second && "Unexpected revisitation of the same include directive");
163 LastInclusionLocation = SourceLocation();
David Blaikied5321242012-06-06 18:52:13 +0000164}
165
166/// Called whenever an inclusion is skipped due to canonical header protection
167/// macros.
Nikola Smiljanicfb891fc2015-05-12 11:48:05 +0000168void InclusionRewriter::FileSkipped(const FileEntry &/*SkippedFile*/,
David Blaikied5321242012-06-06 18:52:13 +0000169 const Token &/*FilenameTok*/,
170 SrcMgr::CharacteristicKind /*FileType*/) {
Yaron Kerened1fe5d2015-10-03 05:15:57 +0000171 assert(LastInclusionLocation.isValid() &&
Justin Bogner0707fd02015-07-01 04:40:10 +0000172 "A file, that wasn't found via an inclusion directive, was skipped");
173 LastInclusionLocation = SourceLocation();
David Blaikied5321242012-06-06 18:52:13 +0000174}
175
176/// This should be called whenever the preprocessor encounters include
177/// directives. It does not say whether the file has been included, but it
178/// provides more information about the directive (hash location instead
179/// of location inside the included file). It is assumed that the matching
Richard Smith4b46f722017-06-02 01:05:44 +0000180/// FileChanged() or FileSkipped() is called after this (or neither is
181/// called if this #include results in an error or does not textually include
182/// anything).
David Blaikied5321242012-06-06 18:52:13 +0000183void InclusionRewriter::InclusionDirective(SourceLocation HashLoc,
184 const Token &/*IncludeTok*/,
185 StringRef /*FileName*/,
186 bool /*IsAngled*/,
Argyrios Kyrtzidis4fcd2882012-09-27 01:42:07 +0000187 CharSourceRange /*FilenameRange*/,
David Blaikied5321242012-06-06 18:52:13 +0000188 const FileEntry * /*File*/,
David Blaikied5321242012-06-06 18:52:13 +0000189 StringRef /*SearchPath*/,
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +0000190 StringRef /*RelativePath*/,
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000191 const Module *Imported) {
Justin Bogner0707fd02015-07-01 04:40:10 +0000192 if (Imported) {
Justin Bogner879d4202015-07-01 04:53:19 +0000193 auto P = ModuleIncludes.insert(
194 std::make_pair(HashLoc.getRawEncoding(), Imported));
Justin Bogner2510ba32015-07-01 05:41:50 +0000195 (void)P;
Justin Bogner0707fd02015-07-01 04:40:10 +0000196 assert(P.second && "Unexpected revisitation of the same include directive");
197 } else
198 LastInclusionLocation = HashLoc;
David Blaikied5321242012-06-06 18:52:13 +0000199}
200
201/// Simple lookup for a SourceLocation (specifically one denoting the hash in
202/// an inclusion directive) in the map of inclusion information, FileChanges.
Justin Bogner0707fd02015-07-01 04:40:10 +0000203const InclusionRewriter::IncludedFile *
204InclusionRewriter::FindIncludeAtLocation(SourceLocation Loc) const {
205 const auto I = FileIncludes.find(Loc.getRawEncoding());
206 if (I != FileIncludes.end())
David Blaikied5321242012-06-06 18:52:13 +0000207 return &I->second;
Craig Topper8ae12032014-05-07 06:21:57 +0000208 return nullptr;
David Blaikied5321242012-06-06 18:52:13 +0000209}
210
Justin Bogner0707fd02015-07-01 04:40:10 +0000211/// Simple lookup for a SourceLocation (specifically one denoting the hash in
212/// an inclusion directive) in the map of module inclusion information.
213const Module *
214InclusionRewriter::FindModuleAtLocation(SourceLocation Loc) const {
215 const auto I = ModuleIncludes.find(Loc.getRawEncoding());
216 if (I != ModuleIncludes.end())
217 return I->second;
218 return nullptr;
219}
220
Richard Smithd1386302017-05-04 00:29:54 +0000221/// Simple lookup for a SourceLocation (specifically one denoting the hash in
222/// an inclusion directive) in the map of module entry information.
223const Module *
224InclusionRewriter::FindEnteredModule(SourceLocation Loc) const {
225 const auto I = ModuleEntryIncludes.find(Loc.getRawEncoding());
226 if (I != ModuleEntryIncludes.end())
227 return I->second;
228 return nullptr;
229}
230
David Blaikied5321242012-06-06 18:52:13 +0000231/// Detect the likely line ending style of \p FromFile by examining the first
232/// newline found within it.
233static StringRef DetectEOL(const MemoryBuffer &FromFile) {
Reid Klecknere2793c02014-09-05 16:49:50 +0000234 // Detect what line endings the file uses, so that added content does not mix
235 // the style. We need to check for "\r\n" first because "\n\r" will match
236 // "\r\n\r\n".
David Blaikied5321242012-06-06 18:52:13 +0000237 const char *Pos = strchr(FromFile.getBufferStart(), '\n');
Craig Topper8ae12032014-05-07 06:21:57 +0000238 if (!Pos)
David Blaikied5321242012-06-06 18:52:13 +0000239 return "\n";
David Blaikied5321242012-06-06 18:52:13 +0000240 if (Pos - 1 >= FromFile.getBufferStart() && Pos[-1] == '\r')
241 return "\r\n";
Reid Klecknere2793c02014-09-05 16:49:50 +0000242 if (Pos + 1 < FromFile.getBufferEnd() && Pos[1] == '\r')
243 return "\n\r";
David Blaikied5321242012-06-06 18:52:13 +0000244 return "\n";
245}
246
Reid Klecknere2793c02014-09-05 16:49:50 +0000247void InclusionRewriter::detectMainFileEOL() {
248 bool Invalid;
249 const MemoryBuffer &FromFile = *SM.getBuffer(SM.getMainFileID(), &Invalid);
250 assert(!Invalid);
251 if (Invalid)
252 return; // Should never happen, but whatever.
253 MainEOL = DetectEOL(FromFile);
254}
255
David Blaikied5321242012-06-06 18:52:13 +0000256/// Writes out bytes from \p FromFile, starting at \p NextToWrite and ending at
257/// \p WriteTo - 1.
258void InclusionRewriter::OutputContentUpTo(const MemoryBuffer &FromFile,
259 unsigned &WriteFrom, unsigned WriteTo,
Reid Klecknere2793c02014-09-05 16:49:50 +0000260 StringRef LocalEOL, int &Line,
David Blaikied5321242012-06-06 18:52:13 +0000261 bool EnsureNewline) {
262 if (WriteTo <= WriteFrom)
263 return;
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +0000264 if (&FromFile == PredefinesBuffer) {
265 // Ignore the #defines of the predefines buffer.
266 WriteFrom = WriteTo;
267 return;
268 }
Reid Klecknere2793c02014-09-05 16:49:50 +0000269
270 // If we would output half of a line ending, advance one character to output
271 // the whole line ending. All buffers are null terminated, so looking ahead
272 // one byte is safe.
273 if (LocalEOL.size() == 2 &&
274 LocalEOL[0] == (FromFile.getBufferStart() + WriteTo)[-1] &&
275 LocalEOL[1] == (FromFile.getBufferStart() + WriteTo)[0])
276 WriteTo++;
277
278 StringRef TextToWrite(FromFile.getBufferStart() + WriteFrom,
279 WriteTo - WriteFrom);
280
281 if (MainEOL == LocalEOL) {
282 OS << TextToWrite;
283 // count lines manually, it's faster than getPresumedLoc()
284 Line += TextToWrite.count(LocalEOL);
285 if (EnsureNewline && !TextToWrite.endswith(LocalEOL))
286 OS << MainEOL;
287 } else {
288 // Output the file one line at a time, rewriting the line endings as we go.
289 StringRef Rest = TextToWrite;
290 while (!Rest.empty()) {
291 StringRef LineText;
292 std::tie(LineText, Rest) = Rest.split(LocalEOL);
293 OS << LineText;
294 Line++;
295 if (!Rest.empty())
296 OS << MainEOL;
297 }
298 if (TextToWrite.endswith(LocalEOL) || EnsureNewline)
299 OS << MainEOL;
David Blaikied5321242012-06-06 18:52:13 +0000300 }
301 WriteFrom = WriteTo;
302}
303
304/// Print characters from \p FromFile starting at \p NextToWrite up until the
305/// inclusion directive at \p StartToken, then print out the inclusion
306/// inclusion directive disabled by a #if directive, updating \p NextToWrite
307/// and \p Line to track the number of source lines visited and the progress
308/// through the \p FromFile buffer.
309void InclusionRewriter::CommentOutDirective(Lexer &DirectiveLex,
310 const Token &StartToken,
311 const MemoryBuffer &FromFile,
Reid Klecknere2793c02014-09-05 16:49:50 +0000312 StringRef LocalEOL,
David Blaikied5321242012-06-06 18:52:13 +0000313 unsigned &NextToWrite, int &Line) {
314 OutputContentUpTo(FromFile, NextToWrite,
Reid Klecknere2793c02014-09-05 16:49:50 +0000315 SM.getFileOffset(StartToken.getLocation()), LocalEOL, Line,
316 false);
David Blaikied5321242012-06-06 18:52:13 +0000317 Token DirectiveToken;
318 do {
319 DirectiveLex.LexFromRawLexer(DirectiveToken);
320 } while (!DirectiveToken.is(tok::eod) && DirectiveToken.isNot(tok::eof));
Lubos Lunak72cad682014-05-01 21:10:08 +0000321 if (&FromFile == PredefinesBuffer) {
322 // OutputContentUpTo() would not output anything anyway.
323 return;
324 }
Reid Klecknere2793c02014-09-05 16:49:50 +0000325 OS << "#if 0 /* expanded by -frewrite-includes */" << MainEOL;
David Blaikied5321242012-06-06 18:52:13 +0000326 OutputContentUpTo(FromFile, NextToWrite,
Reid Klecknere2793c02014-09-05 16:49:50 +0000327 SM.getFileOffset(DirectiveToken.getLocation()) +
328 DirectiveToken.getLength(),
329 LocalEOL, Line, true);
330 OS << "#endif /* expanded by -frewrite-includes */" << MainEOL;
David Blaikied5321242012-06-06 18:52:13 +0000331}
332
333/// Find the next identifier in the pragma directive specified by \p RawToken.
334StringRef InclusionRewriter::NextIdentifierName(Lexer &RawLex,
335 Token &RawToken) {
336 RawLex.LexFromRawLexer(RawToken);
337 if (RawToken.is(tok::raw_identifier))
338 PP.LookUpIdentifierInfo(RawToken);
339 if (RawToken.is(tok::identifier))
340 return RawToken.getIdentifierInfo()->getName();
341 return StringRef();
342}
343
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000344// Expand __has_include and __has_include_next if possible. If there's no
345// definitive answer return false.
346bool InclusionRewriter::HandleHasInclude(
347 FileID FileId, Lexer &RawLex, const DirectoryLookup *Lookup, Token &Tok,
348 bool &FileExists) {
349 // Lex the opening paren.
350 RawLex.LexFromRawLexer(Tok);
351 if (Tok.isNot(tok::l_paren))
352 return false;
353
354 RawLex.LexFromRawLexer(Tok);
355
356 SmallString<128> FilenameBuffer;
357 StringRef Filename;
358 // Since the raw lexer doesn't give us angle_literals we have to parse them
359 // ourselves.
360 // FIXME: What to do if the file name is a macro?
361 if (Tok.is(tok::less)) {
362 RawLex.LexFromRawLexer(Tok);
363
364 FilenameBuffer += '<';
365 do {
366 if (Tok.is(tok::eod)) // Sanity check.
367 return false;
368
369 if (Tok.is(tok::raw_identifier))
370 PP.LookUpIdentifierInfo(Tok);
371
372 // Get the string piece.
373 SmallVector<char, 128> TmpBuffer;
374 bool Invalid = false;
375 StringRef TmpName = PP.getSpelling(Tok, TmpBuffer, &Invalid);
376 if (Invalid)
377 return false;
378
379 FilenameBuffer += TmpName;
380
381 RawLex.LexFromRawLexer(Tok);
382 } while (Tok.isNot(tok::greater));
383
384 FilenameBuffer += '>';
385 Filename = FilenameBuffer;
386 } else {
387 if (Tok.isNot(tok::string_literal))
388 return false;
389
390 bool Invalid = false;
391 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid);
392 if (Invalid)
393 return false;
394 }
395
396 // Lex the closing paren.
397 RawLex.LexFromRawLexer(Tok);
398 if (Tok.isNot(tok::r_paren))
399 return false;
400
401 // Now ask HeaderInfo if it knows about the header.
402 // FIXME: Subframeworks aren't handled here. Do we care?
403 bool isAngled = PP.GetIncludeFilenameSpelling(Tok.getLocation(), Filename);
404 const DirectoryLookup *CurDir;
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000405 const FileEntry *FileEnt = PP.getSourceManager().getFileEntryForID(FileId);
406 SmallVector<std::pair<const FileEntry *, const DirectoryEntry *>, 1>
407 Includers;
408 Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
Richard Smith3d5b48c2015-10-16 21:42:56 +0000409 // FIXME: Why don't we call PP.LookupFile here?
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000410 const FileEntry *File = PP.getHeaderSearchInfo().LookupFile(
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000411 Filename, SourceLocation(), isAngled, nullptr, CurDir, Includers, nullptr,
Duncan P. N. Exon Smithcfc1f6a2017-04-27 21:41:51 +0000412 nullptr, nullptr, nullptr, nullptr);
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000413
Craig Topper8ae12032014-05-07 06:21:57 +0000414 FileExists = File != nullptr;
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000415 return true;
416}
417
Benjamin Kramere2881572013-10-13 12:02:16 +0000418/// Use a raw lexer to analyze \p FileId, incrementally copying parts of it
David Blaikied5321242012-06-06 18:52:13 +0000419/// and including content of included files recursively.
Richard Smithc7cacdc2017-04-29 00:54:03 +0000420void InclusionRewriter::Process(FileID FileId,
421 SrcMgr::CharacteristicKind FileType) {
David Blaikied5321242012-06-06 18:52:13 +0000422 bool Invalid;
423 const MemoryBuffer &FromFile = *SM.getBuffer(FileId, &Invalid);
Justin Bogner0707fd02015-07-01 04:40:10 +0000424 assert(!Invalid && "Attempting to process invalid inclusion");
Mehdi Amini99d1b292016-10-01 16:38:28 +0000425 StringRef FileName = FromFile.getBufferIdentifier();
David Blaikied5321242012-06-06 18:52:13 +0000426 Lexer RawLex(FileId, &FromFile, PP.getSourceManager(), PP.getLangOpts());
427 RawLex.SetCommentRetentionState(false);
428
Reid Klecknere2793c02014-09-05 16:49:50 +0000429 StringRef LocalEOL = DetectEOL(FromFile);
David Blaikied5321242012-06-06 18:52:13 +0000430
Lubos Lunak10961c02014-05-01 13:50:44 +0000431 // Per the GNU docs: "1" indicates entering a new file.
Lubos Lunak72cad682014-05-01 21:10:08 +0000432 if (FileId == SM.getMainFileID() || FileId == PP.getPredefinesFileID())
Reid Klecknere2793c02014-09-05 16:49:50 +0000433 WriteLineInfo(FileName, 1, FileType, "");
Lubos Lunak10961c02014-05-01 13:50:44 +0000434 else
Reid Klecknere2793c02014-09-05 16:49:50 +0000435 WriteLineInfo(FileName, 1, FileType, " 1");
David Blaikied5321242012-06-06 18:52:13 +0000436
437 if (SM.getFileIDSize(FileId) == 0)
Richard Smithc7cacdc2017-04-29 00:54:03 +0000438 return;
David Blaikied5321242012-06-06 18:52:13 +0000439
Alp Toker3dfeafd2013-11-28 07:21:44 +0000440 // The next byte to be copied from the source file, which may be non-zero if
441 // the lexer handled a BOM.
Alp Toker52937ab2013-12-05 17:28:42 +0000442 unsigned NextToWrite = SM.getFileOffset(RawLex.getSourceLocation());
443 assert(SM.getLineNumber(FileId, NextToWrite) == 1);
David Blaikied5321242012-06-06 18:52:13 +0000444 int Line = 1; // The current input file line number.
445
446 Token RawToken;
447 RawLex.LexFromRawLexer(RawToken);
448
449 // TODO: Consider adding a switch that strips possibly unimportant content,
450 // such as comments, to reduce the size of repro files.
451 while (RawToken.isNot(tok::eof)) {
452 if (RawToken.is(tok::hash) && RawToken.isAtStartOfLine()) {
453 RawLex.setParsingPreprocessorDirective(true);
454 Token HashToken = RawToken;
455 RawLex.LexFromRawLexer(RawToken);
456 if (RawToken.is(tok::raw_identifier))
457 PP.LookUpIdentifierInfo(RawToken);
Craig Topper8ae12032014-05-07 06:21:57 +0000458 if (RawToken.getIdentifierInfo() != nullptr) {
David Blaikied5321242012-06-06 18:52:13 +0000459 switch (RawToken.getIdentifierInfo()->getPPKeywordID()) {
460 case tok::pp_include:
461 case tok::pp_include_next:
462 case tok::pp_import: {
Reid Klecknere2793c02014-09-05 16:49:50 +0000463 CommentOutDirective(RawLex, HashToken, FromFile, LocalEOL, NextToWrite,
David Blaikied5321242012-06-06 18:52:13 +0000464 Line);
Lubos Lunak4526b462014-05-01 21:11:57 +0000465 if (FileId != PP.getPredefinesFileID())
Reid Klecknere2793c02014-09-05 16:49:50 +0000466 WriteLineInfo(FileName, Line - 1, FileType, "");
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000467 StringRef LineInfoExtra;
Justin Bogner0707fd02015-07-01 04:40:10 +0000468 SourceLocation Loc = HashToken.getLocation();
Richard Smithc51c38b2017-04-29 00:34:47 +0000469 if (const Module *Mod = FindModuleAtLocation(Loc))
Justin Bogner0707fd02015-07-01 04:40:10 +0000470 WriteImplicitModuleImport(Mod);
471 else if (const IncludedFile *Inc = FindIncludeAtLocation(Loc)) {
Richard Smithd1386302017-05-04 00:29:54 +0000472 const Module *Mod = FindEnteredModule(Loc);
473 if (Mod)
Richard Smith9565c75b2017-06-19 23:09:36 +0000474 OS << "#pragma clang module begin "
475 << Mod->getFullModuleName(true) << "\n";
Richard Smithd1386302017-05-04 00:29:54 +0000476
Richard Smithc7cacdc2017-04-29 00:54:03 +0000477 // Include and recursively process the file.
478 Process(Inc->Id, Inc->FileType);
Richard Smithd1386302017-05-04 00:29:54 +0000479
480 if (Mod)
Richard Smith9565c75b2017-06-19 23:09:36 +0000481 OS << "#pragma clang module end /*"
482 << Mod->getFullModuleName(true) << "*/\n";
Richard Smithd1386302017-05-04 00:29:54 +0000483
Richard Smithc7cacdc2017-04-29 00:54:03 +0000484 // Add line marker to indicate we're returning from an included
485 // file.
486 LineInfoExtra = " 2";
Argyrios Kyrtzidiscf22d1f2013-04-10 01:53:50 +0000487 }
488 // fix up lineinfo (since commented out directive changed line
489 // numbers) for inclusions that were skipped due to header guards
Reid Klecknere2793c02014-09-05 16:49:50 +0000490 WriteLineInfo(FileName, Line, FileType, LineInfoExtra);
David Blaikied5321242012-06-06 18:52:13 +0000491 break;
492 }
493 case tok::pp_pragma: {
494 StringRef Identifier = NextIdentifierName(RawLex, RawToken);
495 if (Identifier == "clang" || Identifier == "GCC") {
496 if (NextIdentifierName(RawLex, RawToken) == "system_header") {
497 // keep the directive in, commented out
Reid Klecknere2793c02014-09-05 16:49:50 +0000498 CommentOutDirective(RawLex, HashToken, FromFile, LocalEOL,
David Blaikied5321242012-06-06 18:52:13 +0000499 NextToWrite, Line);
500 // update our own type
501 FileType = SM.getFileCharacteristic(RawToken.getLocation());
Reid Klecknere2793c02014-09-05 16:49:50 +0000502 WriteLineInfo(FileName, Line, FileType);
David Blaikied5321242012-06-06 18:52:13 +0000503 }
504 } else if (Identifier == "once") {
505 // keep the directive in, commented out
Reid Klecknere2793c02014-09-05 16:49:50 +0000506 CommentOutDirective(RawLex, HashToken, FromFile, LocalEOL,
David Blaikied5321242012-06-06 18:52:13 +0000507 NextToWrite, Line);
Reid Klecknere2793c02014-09-05 16:49:50 +0000508 WriteLineInfo(FileName, Line, FileType);
David Blaikied5321242012-06-06 18:52:13 +0000509 }
510 break;
511 }
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000512 case tok::pp_if:
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000513 case tok::pp_elif: {
514 bool elif = (RawToken.getIdentifierInfo()->getPPKeywordID() ==
515 tok::pp_elif);
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000516 // Rewrite special builtin macros to avoid pulling in host details.
517 do {
518 // Walk over the directive.
519 RawLex.LexFromRawLexer(RawToken);
520 if (RawToken.is(tok::raw_identifier))
521 PP.LookUpIdentifierInfo(RawToken);
522
523 if (RawToken.is(tok::identifier)) {
524 bool HasFile;
525 SourceLocation Loc = RawToken.getLocation();
526
527 // Rewrite __has_include(x)
528 if (RawToken.getIdentifierInfo()->isStr("__has_include")) {
Craig Topper8ae12032014-05-07 06:21:57 +0000529 if (!HandleHasInclude(FileId, RawLex, nullptr, RawToken,
530 HasFile))
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000531 continue;
532 // Rewrite __has_include_next(x)
533 } else if (RawToken.getIdentifierInfo()->isStr(
534 "__has_include_next")) {
535 const DirectoryLookup *Lookup = PP.GetCurDirLookup();
536 if (Lookup)
537 ++Lookup;
538
539 if (!HandleHasInclude(FileId, RawLex, Lookup, RawToken,
540 HasFile))
541 continue;
542 } else {
543 continue;
544 }
545 // Replace the macro with (0) or (1), followed by the commented
546 // out macro for reference.
547 OutputContentUpTo(FromFile, NextToWrite, SM.getFileOffset(Loc),
Reid Klecknere2793c02014-09-05 16:49:50 +0000548 LocalEOL, Line, false);
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000549 OS << '(' << (int) HasFile << ")/*";
550 OutputContentUpTo(FromFile, NextToWrite,
551 SM.getFileOffset(RawToken.getLocation()) +
Reid Klecknere2793c02014-09-05 16:49:50 +0000552 RawToken.getLength(),
553 LocalEOL, Line, false);
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000554 OS << "*/";
555 }
556 } while (RawToken.isNot(tok::eod));
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000557 if (elif) {
558 OutputContentUpTo(FromFile, NextToWrite,
559 SM.getFileOffset(RawToken.getLocation()) +
560 RawToken.getLength(),
Reid Klecknere2793c02014-09-05 16:49:50 +0000561 LocalEOL, Line, /*EnsureNewline=*/ true);
562 WriteLineInfo(FileName, Line, FileType);
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000563 }
Benjamin Kramerb10e6152013-04-16 19:08:41 +0000564 break;
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000565 }
566 case tok::pp_endif:
567 case tok::pp_else: {
568 // We surround every #include by #if 0 to comment it out, but that
569 // changes line numbers. These are fixed up right after that, but
570 // the whole #include could be inside a preprocessor conditional
571 // that is not processed. So it is necessary to fix the line
572 // numbers one the next line after each #else/#endif as well.
573 RawLex.SetKeepWhitespaceMode(true);
574 do {
575 RawLex.LexFromRawLexer(RawToken);
576 } while (RawToken.isNot(tok::eod) && RawToken.isNot(tok::eof));
Reid Klecknere2793c02014-09-05 16:49:50 +0000577 OutputContentUpTo(FromFile, NextToWrite,
578 SM.getFileOffset(RawToken.getLocation()) +
579 RawToken.getLength(),
580 LocalEOL, Line, /*EnsureNewline=*/ true);
581 WriteLineInfo(FileName, Line, FileType);
Lubos Lunak4c22f6a2013-07-20 14:23:27 +0000582 RawLex.SetKeepWhitespaceMode(false);
583 }
David Blaikied5321242012-06-06 18:52:13 +0000584 default:
585 break;
586 }
587 }
588 RawLex.setParsingPreprocessorDirective(false);
589 }
590 RawLex.LexFromRawLexer(RawToken);
591 }
592 OutputContentUpTo(FromFile, NextToWrite,
Reid Klecknere2793c02014-09-05 16:49:50 +0000593 SM.getFileOffset(SM.getLocForEndOfFile(FileId)), LocalEOL,
594 Line, /*EnsureNewline=*/true);
David Blaikied5321242012-06-06 18:52:13 +0000595}
596
David Blaikie619117a2012-06-14 17:36:01 +0000597/// InclusionRewriterInInput - Implement -frewrite-includes mode.
David Blaikied5321242012-06-06 18:52:13 +0000598void clang::RewriteIncludesInInput(Preprocessor &PP, raw_ostream *OS,
599 const PreprocessorOutputOptions &Opts) {
600 SourceManager &SM = PP.getSourceManager();
Reid Kleckner1df0fea2015-02-26 00:17:25 +0000601 InclusionRewriter *Rewrite = new InclusionRewriter(
602 PP, *OS, Opts.ShowLineMarkers, Opts.UseLineDirectives);
Reid Klecknere2793c02014-09-05 16:49:50 +0000603 Rewrite->detectMainFileEOL();
604
Craig Topperb8a70532014-09-10 04:53:53 +0000605 PP.addPPCallbacks(std::unique_ptr<PPCallbacks>(Rewrite));
Lubos Lunak576a0412014-05-01 12:54:03 +0000606 PP.IgnorePragmas();
David Blaikied5321242012-06-06 18:52:13 +0000607
608 // First let the preprocessor process the entire file and call callbacks.
609 // Callbacks will record which #include's were actually performed.
610 PP.EnterMainSourceFile();
611 Token Tok;
612 // Only preprocessor directives matter here, so disable macro expansion
613 // everywhere else as an optimization.
614 // TODO: It would be even faster if the preprocessor could be switched
615 // to a mode where it would parse only preprocessor directives and comments,
616 // nothing else matters for parsing or processing.
617 PP.SetMacroExpansionOnlyInDirectives();
618 do {
619 PP.Lex(Tok);
Richard Smithd1386302017-05-04 00:29:54 +0000620 if (Tok.is(tok::annot_module_begin))
621 Rewrite->handleModuleBegin(Tok);
David Blaikied5321242012-06-06 18:52:13 +0000622 } while (Tok.isNot(tok::eof));
Argyrios Kyrtzidis17ff2e52013-07-26 15:32:04 +0000623 Rewrite->setPredefinesBuffer(SM.getBuffer(PP.getPredefinesFileID()));
624 Rewrite->Process(PP.getPredefinesFileID(), SrcMgr::C_User);
David Blaikied5321242012-06-06 18:52:13 +0000625 Rewrite->Process(SM.getMainFileID(), SrcMgr::C_User);
626 OS->flush();
627}