blob: cc8d935b52f65409dd71b59b42c79ecb64be79d7 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- PrintPreprocessedOutput.cpp - Implement the -E mode --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This code simply runs the preprocessor on the input file and prints out the
11// result. This is the traditional behavior of the -E option.
12//
13//===----------------------------------------------------------------------===//
14
Eli Friedmanb09f6e12009-05-19 04:14:29 +000015#include "clang/Frontend/Utils.h"
Daniel Dunbar775bee72009-11-11 10:07:22 +000016#include "clang/Basic/Diagnostic.h"
17#include "clang/Basic/SourceManager.h"
18#include "clang/Frontend/PreprocessorOutputOptions.h"
Chris Lattnerf73903a2009-02-06 06:45:26 +000019#include "clang/Lex/MacroInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/Lex/PPCallbacks.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/Lex/Pragma.h"
Daniel Dunbar775bee72009-11-11 10:07:22 +000022#include "clang/Lex/Preprocessor.h"
Chris Lattnerd7038e12009-02-13 00:46:04 +000023#include "clang/Lex/TokenConcatenation.h"
Benjamin Kramer3ff2a4b2010-01-19 17:42:20 +000024#include "llvm/ADT/STLExtras.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000025#include "llvm/ADT/SmallString.h"
Chris Lattnerabfe0942010-06-26 17:11:39 +000026#include "llvm/ADT/StringRef.h"
Douglas Gregorc09ce122011-06-22 19:41:48 +000027#include "llvm/Support/ErrorHandling.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000028#include "llvm/Support/raw_ostream.h"
Joerg Sonnenberger7094dee2012-08-10 10:58:18 +000029#include <cctype>
Reid Spencer5f016e22007-07-11 17:01:13 +000030#include <cstdio>
31using namespace clang;
32
Chris Lattnerd82df3a2009-04-12 01:56:53 +000033/// PrintMacroDefinition - Print a macro definition in a form that will be
34/// properly accepted back as a definition.
35static void PrintMacroDefinition(const IdentifierInfo &II, const MacroInfo &MI,
Chris Lattner5f9e2722011-07-23 10:55:15 +000036 Preprocessor &PP, raw_ostream &OS) {
Chris Lattnerd82df3a2009-04-12 01:56:53 +000037 OS << "#define " << II.getName();
Mike Stump1eb44332009-09-09 15:08:12 +000038
Chris Lattnerd82df3a2009-04-12 01:56:53 +000039 if (MI.isFunctionLike()) {
40 OS << '(';
Chris Lattner13d55582009-12-09 02:08:14 +000041 if (!MI.arg_empty()) {
Chris Lattnerd82df3a2009-04-12 01:56:53 +000042 MacroInfo::arg_iterator AI = MI.arg_begin(), E = MI.arg_end();
Chris Lattner13d55582009-12-09 02:08:14 +000043 for (; AI+1 != E; ++AI) {
44 OS << (*AI)->getName();
Chris Lattner807b93e2009-12-07 01:58:34 +000045 OS << ',';
Chris Lattner807b93e2009-12-07 01:58:34 +000046 }
Chris Lattner13d55582009-12-09 02:08:14 +000047
48 // Last argument.
49 if ((*AI)->getName() == "__VA_ARGS__")
50 OS << "...";
51 else
52 OS << (*AI)->getName();
Chris Lattnerd82df3a2009-04-12 01:56:53 +000053 }
Mike Stump1eb44332009-09-09 15:08:12 +000054
Chris Lattner807b93e2009-12-07 01:58:34 +000055 if (MI.isGNUVarargs())
56 OS << "..."; // #define foo(x...)
Kovarththanan Rajaratnama5d10c42010-03-07 07:30:06 +000057
Chris Lattnerd82df3a2009-04-12 01:56:53 +000058 OS << ')';
59 }
Mike Stump1eb44332009-09-09 15:08:12 +000060
Chris Lattnerd82df3a2009-04-12 01:56:53 +000061 // GCC always emits a space, even if the macro body is empty. However, do not
62 // want to emit two spaces if the first token has a leading space.
63 if (MI.tokens_empty() || !MI.tokens_begin()->hasLeadingSpace())
64 OS << ' ';
Mike Stump1eb44332009-09-09 15:08:12 +000065
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +000066 SmallString<128> SpellingBuffer;
Chris Lattnerd82df3a2009-04-12 01:56:53 +000067 for (MacroInfo::tokens_iterator I = MI.tokens_begin(), E = MI.tokens_end();
68 I != E; ++I) {
69 if (I->hasLeadingSpace())
70 OS << ' ';
Mike Stump1eb44332009-09-09 15:08:12 +000071
Benjamin Kramerddeea562010-02-27 13:44:12 +000072 OS << PP.getSpelling(*I, SpellingBuffer);
Chris Lattnerd82df3a2009-04-12 01:56:53 +000073 }
74}
75
Reid Spencer5f016e22007-07-11 17:01:13 +000076//===----------------------------------------------------------------------===//
77// Preprocessed token printer
78//===----------------------------------------------------------------------===//
79
Reid Spencer5f016e22007-07-11 17:01:13 +000080namespace {
81class PrintPPOutputPPCallbacks : public PPCallbacks {
82 Preprocessor &PP;
Chris Lattnerdf721402010-04-13 00:06:42 +000083 SourceManager &SM;
Chris Lattnerd7038e12009-02-13 00:46:04 +000084 TokenConcatenation ConcatInfo;
Chris Lattnere96de3e2008-08-17 03:12:02 +000085public:
Chris Lattner5f9e2722011-07-23 10:55:15 +000086 raw_ostream &OS;
Chris Lattnere96de3e2008-08-17 03:12:02 +000087private:
Reid Spencer5f016e22007-07-11 17:01:13 +000088 unsigned CurLine;
Daniel Dunbarf7c16d92010-08-24 22:44:13 +000089
Reid Spencer5f016e22007-07-11 17:01:13 +000090 bool EmittedTokensOnThisLine;
Jordan Rose0cdd1fe2012-06-15 23:33:51 +000091 bool EmittedDirectiveOnThisLine;
Chris Lattner9d728512008-10-27 01:19:25 +000092 SrcMgr::CharacteristicKind FileType;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +000093 SmallString<512> CurFilename;
Daniel Dunbar737bdb42008-09-05 03:22:57 +000094 bool Initialized;
Eli Friedman12d3b1d2009-05-19 03:06:47 +000095 bool DisableLineMarkers;
96 bool DumpDefines;
Chris Lattnerf7449342009-12-07 01:42:56 +000097 bool UseLineDirective;
Daniel Dunbar2a9be3e2012-11-16 01:51:11 +000098 bool IsFirstFileEntered;
Reid Spencer5f016e22007-07-11 17:01:13 +000099public:
Chris Lattner5f9e2722011-07-23 10:55:15 +0000100 PrintPPOutputPPCallbacks(Preprocessor &pp, raw_ostream &os,
Daniel Dunbareef63e02011-02-02 15:41:17 +0000101 bool lineMarkers, bool defines)
Chris Lattnerdf721402010-04-13 00:06:42 +0000102 : PP(pp), SM(PP.getSourceManager()),
103 ConcatInfo(PP), OS(os), DisableLineMarkers(lineMarkers),
Daniel Dunbareef63e02011-02-02 15:41:17 +0000104 DumpDefines(defines) {
105 CurLine = 0;
Chris Lattnerd8e30832007-07-24 06:57:14 +0000106 CurFilename += "<uninit>";
Reid Spencer5f016e22007-07-11 17:01:13 +0000107 EmittedTokensOnThisLine = false;
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000108 EmittedDirectiveOnThisLine = false;
Chris Lattner0b9e7362008-09-26 21:18:42 +0000109 FileType = SrcMgr::C_User;
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000110 Initialized = false;
Daniel Dunbar2a9be3e2012-11-16 01:51:11 +0000111 IsFirstFileEntered = false;
Kovarththanan Rajaratnama5d10c42010-03-07 07:30:06 +0000112
Chris Lattnerf7449342009-12-07 01:42:56 +0000113 // If we're in microsoft mode, use normal #line instead of line markers.
David Blaikie4e4d0842012-03-11 07:00:24 +0000114 UseLineDirective = PP.getLangOpts().MicrosoftExt;
Reid Spencer5f016e22007-07-11 17:01:13 +0000115 }
Mike Stump1eb44332009-09-09 15:08:12 +0000116
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000117 void setEmittedTokensOnThisLine() { EmittedTokensOnThisLine = true; }
Chris Lattnerf0f2b292007-07-23 06:09:34 +0000118 bool hasEmittedTokensOnThisLine() const { return EmittedTokensOnThisLine; }
Mike Stump1eb44332009-09-09 15:08:12 +0000119
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000120 void setEmittedDirectiveOnThisLine() { EmittedDirectiveOnThisLine = true; }
121 bool hasEmittedDirectiveOnThisLine() const {
122 return EmittedDirectiveOnThisLine;
123 }
124
125 bool startNewLineIfNeeded(bool ShouldUpdateCurrentLine = true);
Douglas Gregor80c60f72010-09-09 22:45:38 +0000126
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason,
Argyrios Kyrtzidisc892c5f2011-10-11 17:29:44 +0000128 SrcMgr::CharacteristicKind FileType,
129 FileID PrevFID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000130 virtual void Ident(SourceLocation Loc, const std::string &str);
Mike Stump1eb44332009-09-09 15:08:12 +0000131 virtual void PragmaComment(SourceLocation Loc, const IdentifierInfo *Kind,
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000132 const std::string &Str);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000133 virtual void PragmaMessage(SourceLocation Loc, StringRef Str);
Douglas Gregorc09ce122011-06-22 19:41:48 +0000134 virtual void PragmaDiagnosticPush(SourceLocation Loc,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000135 StringRef Namespace);
Douglas Gregorc09ce122011-06-22 19:41:48 +0000136 virtual void PragmaDiagnosticPop(SourceLocation Loc,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000137 StringRef Namespace);
138 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
Benjamin Kramerd7a3e2c2012-02-07 22:29:24 +0000139 diag::Mapping Map, StringRef Str);
Reid Spencer5f016e22007-07-11 17:01:13 +0000140
Chris Lattner5f180322007-12-09 21:11:08 +0000141 bool HandleFirstTokOnLine(Token &Tok);
Chris Lattner88aae912010-04-13 00:01:41 +0000142 bool MoveToLine(SourceLocation Loc) {
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000143 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
144 if (PLoc.isInvalid())
145 return false;
146 return MoveToLine(PLoc.getLine());
Chris Lattner88aae912010-04-13 00:01:41 +0000147 }
148 bool MoveToLine(unsigned LineNo);
149
Chris Lattner88773212010-04-14 03:57:19 +0000150 bool AvoidConcat(const Token &PrevPrevTok, const Token &PrevTok,
151 const Token &Tok) {
152 return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok);
Chris Lattnerd7038e12009-02-13 00:46:04 +0000153 }
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000154 void WriteLineInfo(unsigned LineNo, const char *Extra=0, unsigned ExtraLen=0);
Douglas Gregor80c60f72010-09-09 22:45:38 +0000155 bool LineMarkersAreDisabled() const { return DisableLineMarkers; }
Chris Lattner3ee211f2009-06-15 01:25:23 +0000156 void HandleNewlinesInToken(const char *TokStr, unsigned Len);
Mike Stump1eb44332009-09-09 15:08:12 +0000157
Chris Lattnerd82df3a2009-04-12 01:56:53 +0000158 /// MacroDefined - This hook is called whenever a macro definition is seen.
Craig Silverstein2aa92672010-11-19 21:33:15 +0000159 void MacroDefined(const Token &MacroNameTok, const MacroInfo *MI);
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Benjamin Kramer2f054492010-08-07 22:27:00 +0000161 /// MacroUndefined - This hook is called whenever a macro #undef is seen.
Craig Silverstein2aa92672010-11-19 21:33:15 +0000162 void MacroUndefined(const Token &MacroNameTok, const MacroInfo *MI);
Reid Spencer5f016e22007-07-11 17:01:13 +0000163};
Chris Lattner5db17c92008-04-08 04:16:20 +0000164} // end anonymous namespace
Reid Spencer5f016e22007-07-11 17:01:13 +0000165
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000166void PrintPPOutputPPCallbacks::WriteLineInfo(unsigned LineNo,
167 const char *Extra,
168 unsigned ExtraLen) {
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000169 startNewLineIfNeeded(/*ShouldUpdateCurrentLine=*/false);
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000170
Chris Lattnerf7449342009-12-07 01:42:56 +0000171 // Emit #line directives or GNU line markers depending on what mode we're in.
172 if (UseLineDirective) {
173 OS << "#line" << ' ' << LineNo << ' ' << '"';
Ted Kremenek23465132010-09-17 00:41:18 +0000174 OS.write(CurFilename.data(), CurFilename.size());
Chris Lattnerf7449342009-12-07 01:42:56 +0000175 OS << '"';
176 } else {
177 OS << '#' << ' ' << LineNo << ' ' << '"';
Ted Kremenek23465132010-09-17 00:41:18 +0000178 OS.write(CurFilename.data(), CurFilename.size());
Chris Lattnerf7449342009-12-07 01:42:56 +0000179 OS << '"';
Kovarththanan Rajaratnama5d10c42010-03-07 07:30:06 +0000180
Steve Naroffd76fbda2009-12-06 01:02:14 +0000181 if (ExtraLen)
182 OS.write(Extra, ExtraLen);
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000183
Steve Naroffd76fbda2009-12-06 01:02:14 +0000184 if (FileType == SrcMgr::C_System)
185 OS.write(" 3", 2);
186 else if (FileType == SrcMgr::C_ExternCSystem)
187 OS.write(" 3 4", 4);
188 }
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000189 OS << '\n';
190}
191
Reid Spencer5f016e22007-07-11 17:01:13 +0000192/// MoveToLine - Move the output to the source line specified by the location
193/// object. We can do this by emitting some number of \n's, or be emitting a
Chris Lattner5f180322007-12-09 21:11:08 +0000194/// #line directive. This returns false if already at the specified line, true
195/// if some newlines were emitted.
Chris Lattner88aae912010-04-13 00:01:41 +0000196bool PrintPPOutputPPCallbacks::MoveToLine(unsigned LineNo) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000197 // If this line is "close enough" to the original line, just print newlines,
198 // otherwise print a #line directive.
Daniel Dunbarfd966842008-09-26 01:13:35 +0000199 if (LineNo-CurLine <= 8) {
Chris Lattner822f9402007-07-23 05:14:05 +0000200 if (LineNo-CurLine == 1)
Chris Lattnere96de3e2008-08-17 03:12:02 +0000201 OS << '\n';
Chris Lattner5f180322007-12-09 21:11:08 +0000202 else if (LineNo == CurLine)
Chandler Carruth9f79a1f2011-07-14 16:14:52 +0000203 return false; // Spelling line moved, but expansion line didn't.
Chris Lattner822f9402007-07-23 05:14:05 +0000204 else {
205 const char *NewLines = "\n\n\n\n\n\n\n\n";
Chris Lattnere96de3e2008-08-17 03:12:02 +0000206 OS.write(NewLines, LineNo-CurLine);
Chris Lattner822f9402007-07-23 05:14:05 +0000207 }
Chris Lattner6133aeb2010-06-12 16:20:56 +0000208 } else if (!DisableLineMarkers) {
209 // Emit a #line or line marker.
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000210 WriteLineInfo(LineNo, 0, 0);
Chris Lattner6133aeb2010-06-12 16:20:56 +0000211 } else {
212 // Okay, we're in -P mode, which turns off line markers. However, we still
213 // need to emit a newline between tokens on different lines.
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000214 startNewLineIfNeeded(/*ShouldUpdateCurrentLine=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +0000215 }
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000216
Mike Stump1eb44332009-09-09 15:08:12 +0000217 CurLine = LineNo;
Chris Lattner5f180322007-12-09 21:11:08 +0000218 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000219}
220
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000221bool
222PrintPPOutputPPCallbacks::startNewLineIfNeeded(bool ShouldUpdateCurrentLine) {
223 if (EmittedTokensOnThisLine || EmittedDirectiveOnThisLine) {
Douglas Gregor80c60f72010-09-09 22:45:38 +0000224 OS << '\n';
225 EmittedTokensOnThisLine = false;
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000226 EmittedDirectiveOnThisLine = false;
227 if (ShouldUpdateCurrentLine)
228 ++CurLine;
Douglas Gregor80c60f72010-09-09 22:45:38 +0000229 return true;
230 }
231
232 return false;
233}
Reid Spencer5f016e22007-07-11 17:01:13 +0000234
235/// FileChanged - Whenever the preprocessor enters or exits a #include file
236/// it invokes this handler. Update our conception of the current source
237/// position.
238void PrintPPOutputPPCallbacks::FileChanged(SourceLocation Loc,
239 FileChangeReason Reason,
Argyrios Kyrtzidisc892c5f2011-10-11 17:29:44 +0000240 SrcMgr::CharacteristicKind NewFileType,
241 FileID PrevFID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000242 // Unless we are exiting a #include, make sure to skip ahead to the line the
243 // #include directive was at.
Chris Lattnerdf721402010-04-13 00:06:42 +0000244 SourceManager &SourceMgr = SM;
Chris Lattner88aae912010-04-13 00:01:41 +0000245
246 PresumedLoc UserLoc = SourceMgr.getPresumedLoc(Loc);
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000247 if (UserLoc.isInvalid())
248 return;
249
Chris Lattner86d0ef72010-04-14 04:28:50 +0000250 unsigned NewLine = UserLoc.getLine();
Daniel Dunbarf7c16d92010-08-24 22:44:13 +0000251
Reid Spencer5f016e22007-07-11 17:01:13 +0000252 if (Reason == PPCallbacks::EnterFile) {
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000253 SourceLocation IncludeLoc = UserLoc.getIncludeLoc();
Chris Lattner71d8bfb2009-01-30 18:44:17 +0000254 if (IncludeLoc.isValid())
255 MoveToLine(IncludeLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000256 } else if (Reason == PPCallbacks::SystemHeaderPragma) {
Chris Lattner88aae912010-04-13 00:01:41 +0000257 MoveToLine(NewLine);
Mike Stump1eb44332009-09-09 15:08:12 +0000258
Reid Spencer5f016e22007-07-11 17:01:13 +0000259 // TODO GCC emits the # directive for this directive on the line AFTER the
260 // directive and emits a bunch of spaces that aren't needed. Emulate this
261 // strange behavior.
262 }
Chris Lattner88aae912010-04-13 00:01:41 +0000263
264 CurLine = NewLine;
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000265
Chris Lattnerd8e30832007-07-24 06:57:14 +0000266 CurFilename.clear();
Chris Lattner88aae912010-04-13 00:01:41 +0000267 CurFilename += UserLoc.getFilename();
Chris Lattnerd8e30832007-07-24 06:57:14 +0000268 Lexer::Stringify(CurFilename);
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000269 FileType = NewFileType;
270
Eli Friedman086cc832013-01-09 03:16:42 +0000271 if (DisableLineMarkers) {
272 startNewLineIfNeeded(/*ShouldUpdateCurrentLine=*/false);
273 return;
274 }
Daniel Dunbarf7c16d92010-08-24 22:44:13 +0000275
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000276 if (!Initialized) {
277 WriteLineInfo(CurLine);
278 Initialized = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 }
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000280
Daniel Dunbar2a9be3e2012-11-16 01:51:11 +0000281 // Do not emit an enter marker for the main file (which we expect is the first
282 // entered file). This matches gcc, and improves compatibility with some tools
283 // which track the # line markers as a way to determine when the preprocessed
284 // output is in the context of the main file.
285 if (Reason == PPCallbacks::EnterFile && !IsFirstFileEntered) {
286 IsFirstFileEntered = true;
287 return;
288 }
289
Reid Spencer5f016e22007-07-11 17:01:13 +0000290 switch (Reason) {
291 case PPCallbacks::EnterFile:
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000292 WriteLineInfo(CurLine, " 1", 2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000293 break;
294 case PPCallbacks::ExitFile:
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000295 WriteLineInfo(CurLine, " 2", 2);
Reid Spencer5f016e22007-07-11 17:01:13 +0000296 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000297 case PPCallbacks::SystemHeaderPragma:
298 case PPCallbacks::RenameFile:
Daniel Dunbar737bdb42008-09-05 03:22:57 +0000299 WriteLineInfo(CurLine);
300 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000301 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000302}
303
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000304/// Ident - Handle #ident directives when read by the preprocessor.
Reid Spencer5f016e22007-07-11 17:01:13 +0000305///
306void PrintPPOutputPPCallbacks::Ident(SourceLocation Loc, const std::string &S) {
307 MoveToLine(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000308
Chris Lattnere96de3e2008-08-17 03:12:02 +0000309 OS.write("#ident ", strlen("#ident "));
310 OS.write(&S[0], S.size());
Reid Spencer5f016e22007-07-11 17:01:13 +0000311 EmittedTokensOnThisLine = true;
312}
313
Chris Lattnerd82df3a2009-04-12 01:56:53 +0000314/// MacroDefined - This hook is called whenever a macro definition is seen.
Craig Silverstein2aa92672010-11-19 21:33:15 +0000315void PrintPPOutputPPCallbacks::MacroDefined(const Token &MacroNameTok,
Chris Lattnerd82df3a2009-04-12 01:56:53 +0000316 const MacroInfo *MI) {
317 // Only print out macro definitions in -dD mode.
318 if (!DumpDefines ||
319 // Ignore __FILE__ etc.
320 MI->isBuiltinMacro()) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Chris Lattnerd82df3a2009-04-12 01:56:53 +0000322 MoveToLine(MI->getDefinitionLoc());
Craig Silverstein2aa92672010-11-19 21:33:15 +0000323 PrintMacroDefinition(*MacroNameTok.getIdentifierInfo(), *MI, PP, OS);
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000324 setEmittedDirectiveOnThisLine();
Chris Lattnerd82df3a2009-04-12 01:56:53 +0000325}
326
Craig Silverstein2aa92672010-11-19 21:33:15 +0000327void PrintPPOutputPPCallbacks::MacroUndefined(const Token &MacroNameTok,
Benjamin Kramer2f054492010-08-07 22:27:00 +0000328 const MacroInfo *MI) {
329 // Only print out macro definitions in -dD mode.
330 if (!DumpDefines) return;
331
Craig Silverstein2aa92672010-11-19 21:33:15 +0000332 MoveToLine(MacroNameTok.getLocation());
333 OS << "#undef " << MacroNameTok.getIdentifierInfo()->getName();
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000334 setEmittedDirectiveOnThisLine();
Benjamin Kramer2f054492010-08-07 22:27:00 +0000335}
Chris Lattnerd82df3a2009-04-12 01:56:53 +0000336
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000337void PrintPPOutputPPCallbacks::PragmaComment(SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000338 const IdentifierInfo *Kind,
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000339 const std::string &Str) {
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000340 startNewLineIfNeeded();
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000341 MoveToLine(Loc);
342 OS << "#pragma comment(" << Kind->getName();
Mike Stump1eb44332009-09-09 15:08:12 +0000343
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000344 if (!Str.empty()) {
345 OS << ", \"";
Mike Stump1eb44332009-09-09 15:08:12 +0000346
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000347 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
348 unsigned char Char = Str[i];
Chris Lattner52a3e9e2009-01-16 22:13:37 +0000349 if (isprint(Char) && Char != '\\' && Char != '"')
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000350 OS << (char)Char;
351 else // Output anything hard as an octal escape.
352 OS << '\\'
353 << (char)('0'+ ((Char >> 6) & 7))
354 << (char)('0'+ ((Char >> 3) & 7))
355 << (char)('0'+ ((Char >> 0) & 7));
356 }
357 OS << '"';
358 }
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000360 OS << ')';
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000361 setEmittedDirectiveOnThisLine();
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000362}
363
Chris Lattnerabfe0942010-06-26 17:11:39 +0000364void PrintPPOutputPPCallbacks::PragmaMessage(SourceLocation Loc,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000365 StringRef Str) {
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000366 startNewLineIfNeeded();
Chris Lattnerabfe0942010-06-26 17:11:39 +0000367 MoveToLine(Loc);
368 OS << "#pragma message(";
369
370 OS << '"';
371
372 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
373 unsigned char Char = Str[i];
374 if (isprint(Char) && Char != '\\' && Char != '"')
375 OS << (char)Char;
376 else // Output anything hard as an octal escape.
377 OS << '\\'
378 << (char)('0'+ ((Char >> 6) & 7))
379 << (char)('0'+ ((Char >> 3) & 7))
380 << (char)('0'+ ((Char >> 0) & 7));
381 }
382 OS << '"';
383
384 OS << ')';
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000385 setEmittedDirectiveOnThisLine();
Chris Lattnerabfe0942010-06-26 17:11:39 +0000386}
387
Douglas Gregorc09ce122011-06-22 19:41:48 +0000388void PrintPPOutputPPCallbacks::
Chris Lattner5f9e2722011-07-23 10:55:15 +0000389PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) {
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000390 startNewLineIfNeeded();
Douglas Gregorc09ce122011-06-22 19:41:48 +0000391 MoveToLine(Loc);
392 OS << "#pragma " << Namespace << " diagnostic push";
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000393 setEmittedDirectiveOnThisLine();
Douglas Gregorc09ce122011-06-22 19:41:48 +0000394}
395
396void PrintPPOutputPPCallbacks::
Chris Lattner5f9e2722011-07-23 10:55:15 +0000397PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) {
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000398 startNewLineIfNeeded();
Douglas Gregorc09ce122011-06-22 19:41:48 +0000399 MoveToLine(Loc);
400 OS << "#pragma " << Namespace << " diagnostic pop";
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000401 setEmittedDirectiveOnThisLine();
Douglas Gregorc09ce122011-06-22 19:41:48 +0000402}
403
404void PrintPPOutputPPCallbacks::
Chris Lattner5f9e2722011-07-23 10:55:15 +0000405PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
Benjamin Kramerd7a3e2c2012-02-07 22:29:24 +0000406 diag::Mapping Map, StringRef Str) {
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000407 startNewLineIfNeeded();
Douglas Gregorc09ce122011-06-22 19:41:48 +0000408 MoveToLine(Loc);
409 OS << "#pragma " << Namespace << " diagnostic ";
Benjamin Kramerd7a3e2c2012-02-07 22:29:24 +0000410 switch (Map) {
Douglas Gregorc09ce122011-06-22 19:41:48 +0000411 case diag::MAP_WARNING:
412 OS << "warning";
413 break;
414 case diag::MAP_ERROR:
415 OS << "error";
416 break;
417 case diag::MAP_IGNORE:
418 OS << "ignored";
419 break;
420 case diag::MAP_FATAL:
421 OS << "fatal";
422 break;
423 }
424 OS << " \"" << Str << '"';
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000425 setEmittedDirectiveOnThisLine();
Douglas Gregorc09ce122011-06-22 19:41:48 +0000426}
Chris Lattnerc7d945d2009-01-16 19:25:54 +0000427
Reid Spencer5f016e22007-07-11 17:01:13 +0000428/// HandleFirstTokOnLine - When emitting a preprocessed file in -E mode, this
Chris Lattner5f180322007-12-09 21:11:08 +0000429/// is called for the first token on each new line. If this really is the start
430/// of a new logical line, handle it and return true, otherwise return false.
431/// This may not be the start of a logical line because the "start of line"
Chandler Carruth9f79a1f2011-07-14 16:14:52 +0000432/// marker is set for spelling lines, not expansion ones.
Chris Lattner5f180322007-12-09 21:11:08 +0000433bool PrintPPOutputPPCallbacks::HandleFirstTokOnLine(Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000434 // Figure out what line we went to and insert the appropriate number of
435 // newline characters.
Chris Lattner5f180322007-12-09 21:11:08 +0000436 if (!MoveToLine(Tok.getLocation()))
437 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000438
Reid Spencer5f016e22007-07-11 17:01:13 +0000439 // Print out space characters so that the first token on a line is
440 // indented for easy reading.
Chandler Carrutha77c0312011-07-25 20:57:57 +0000441 unsigned ColNo = SM.getExpansionColumnNumber(Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000442
Reid Spencer5f016e22007-07-11 17:01:13 +0000443 // This hack prevents stuff like:
444 // #define HASH #
445 // HASH define foo bar
446 // From having the # character end up at column 1, which makes it so it
447 // is not handled as a #define next time through the preprocessor if in
448 // -fpreprocessed mode.
Chris Lattner057aaf62007-10-09 18:03:42 +0000449 if (ColNo <= 1 && Tok.is(tok::hash))
Chris Lattnere96de3e2008-08-17 03:12:02 +0000450 OS << ' ';
Mike Stump1eb44332009-09-09 15:08:12 +0000451
Reid Spencer5f016e22007-07-11 17:01:13 +0000452 // Otherwise, indent the appropriate number of spaces.
453 for (; ColNo > 1; --ColNo)
Chris Lattnere96de3e2008-08-17 03:12:02 +0000454 OS << ' ';
Mike Stump1eb44332009-09-09 15:08:12 +0000455
Chris Lattner5f180322007-12-09 21:11:08 +0000456 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000457}
458
Chris Lattner3ee211f2009-06-15 01:25:23 +0000459void PrintPPOutputPPCallbacks::HandleNewlinesInToken(const char *TokStr,
460 unsigned Len) {
461 unsigned NumNewlines = 0;
462 for (; Len; --Len, ++TokStr) {
463 if (*TokStr != '\n' &&
464 *TokStr != '\r')
465 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000466
Chris Lattner3ee211f2009-06-15 01:25:23 +0000467 ++NumNewlines;
Mike Stump1eb44332009-09-09 15:08:12 +0000468
Chris Lattner3ee211f2009-06-15 01:25:23 +0000469 // If we have \n\r or \r\n, skip both and count as one line.
470 if (Len != 1 &&
471 (TokStr[1] == '\n' || TokStr[1] == '\r') &&
472 TokStr[0] != TokStr[1])
473 ++TokStr, --Len;
474 }
Mike Stump1eb44332009-09-09 15:08:12 +0000475
Chris Lattner3ee211f2009-06-15 01:25:23 +0000476 if (NumNewlines == 0) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Chris Lattnered2d7c42009-06-15 04:08:28 +0000478 CurLine += NumNewlines;
Chris Lattner3ee211f2009-06-15 01:25:23 +0000479}
480
481
Reid Spencer5f016e22007-07-11 17:01:13 +0000482namespace {
483struct UnknownPragmaHandler : public PragmaHandler {
484 const char *Prefix;
485 PrintPPOutputPPCallbacks *Callbacks;
Mike Stump1eb44332009-09-09 15:08:12 +0000486
Reid Spencer5f016e22007-07-11 17:01:13 +0000487 UnknownPragmaHandler(const char *prefix, PrintPPOutputPPCallbacks *callbacks)
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000488 : Prefix(prefix), Callbacks(callbacks) {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000489 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
490 Token &PragmaTok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000491 // Figure out what line we went to and insert the appropriate number of
492 // newline characters.
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000493 Callbacks->startNewLineIfNeeded();
Reid Spencer5f016e22007-07-11 17:01:13 +0000494 Callbacks->MoveToLine(PragmaTok.getLocation());
Chris Lattnere96de3e2008-08-17 03:12:02 +0000495 Callbacks->OS.write(Prefix, strlen(Prefix));
Reid Spencer5f016e22007-07-11 17:01:13 +0000496 // Read and print all of the pragma tokens.
Peter Collingbourne84021552011-02-28 02:37:51 +0000497 while (PragmaTok.isNot(tok::eod)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000498 if (PragmaTok.hasLeadingSpace())
Chris Lattnere96de3e2008-08-17 03:12:02 +0000499 Callbacks->OS << ' ';
Reid Spencer5f016e22007-07-11 17:01:13 +0000500 std::string TokSpell = PP.getSpelling(PragmaTok);
Chris Lattnere96de3e2008-08-17 03:12:02 +0000501 Callbacks->OS.write(&TokSpell[0], TokSpell.size());
Reid Spencer5f016e22007-07-11 17:01:13 +0000502 PP.LexUnexpandedToken(PragmaTok);
503 }
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000504 Callbacks->setEmittedDirectiveOnThisLine();
Reid Spencer5f016e22007-07-11 17:01:13 +0000505 }
506};
507} // end anonymous namespace
508
Chris Lattnerf0f2b292007-07-23 06:09:34 +0000509
Chris Lattner59076ab2009-02-06 05:56:11 +0000510static void PrintPreprocessedTokens(Preprocessor &PP, Token &Tok,
511 PrintPPOutputPPCallbacks *Callbacks,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000512 raw_ostream &OS) {
Benjamin Kramere3960072010-02-27 18:02:51 +0000513 char Buffer[256];
Chris Lattnerc54539c2010-06-15 21:06:38 +0000514 Token PrevPrevTok, PrevTok;
515 PrevPrevTok.startToken();
516 PrevTok.startToken();
Chris Lattner6f688e12007-10-10 20:45:16 +0000517 while (1) {
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000518 if (Callbacks->hasEmittedDirectiveOnThisLine()) {
519 Callbacks->startNewLineIfNeeded();
520 Callbacks->MoveToLine(Tok.getLocation());
521 }
Mike Stump1eb44332009-09-09 15:08:12 +0000522
Reid Spencer5f016e22007-07-11 17:01:13 +0000523 // If this token is at the start of a line, emit newlines if needed.
Chris Lattner5f180322007-12-09 21:11:08 +0000524 if (Tok.isAtStartOfLine() && Callbacks->HandleFirstTokOnLine(Tok)) {
525 // done.
Mike Stump1eb44332009-09-09 15:08:12 +0000526 } else if (Tok.hasLeadingSpace() ||
Chris Lattnerf0f2b292007-07-23 06:09:34 +0000527 // If we haven't emitted a token on this line yet, PrevTok isn't
528 // useful to look at and no concatenation could happen anyway.
Chris Lattnerb638a302007-07-23 23:21:34 +0000529 (Callbacks->hasEmittedTokensOnThisLine() &&
Chris Lattnerf0f2b292007-07-23 06:09:34 +0000530 // Don't print "-" next to "-", it would form "--".
Chris Lattner88773212010-04-14 03:57:19 +0000531 Callbacks->AvoidConcat(PrevPrevTok, PrevTok, Tok))) {
Chris Lattnere96de3e2008-08-17 03:12:02 +0000532 OS << ' ';
Reid Spencer5f016e22007-07-11 17:01:13 +0000533 }
Mike Stump1eb44332009-09-09 15:08:12 +0000534
Benjamin Kramere3960072010-02-27 18:02:51 +0000535 if (IdentifierInfo *II = Tok.getIdentifierInfo()) {
536 OS << II->getName();
537 } else if (Tok.isLiteral() && !Tok.needsCleaning() &&
538 Tok.getLiteralData()) {
539 OS.write(Tok.getLiteralData(), Tok.getLength());
540 } else if (Tok.getLength() < 256) {
541 const char *TokPtr = Buffer;
542 unsigned Len = PP.getSpelling(Tok, TokPtr);
543 OS.write(TokPtr, Len);
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Benjamin Kramere3960072010-02-27 18:02:51 +0000545 // Tokens that can contain embedded newlines need to adjust our current
546 // line number.
547 if (Tok.getKind() == tok::comment)
548 Callbacks->HandleNewlinesInToken(TokPtr, Len);
549 } else {
550 std::string S = PP.getSpelling(Tok);
551 OS.write(&S[0], S.size());
552
553 // Tokens that can contain embedded newlines need to adjust our current
554 // line number.
555 if (Tok.getKind() == tok::comment)
556 Callbacks->HandleNewlinesInToken(&S[0], S.size());
557 }
Jordan Rose0cdd1fe2012-06-15 23:33:51 +0000558 Callbacks->setEmittedTokensOnThisLine();
Mike Stump1eb44332009-09-09 15:08:12 +0000559
Chris Lattner6f688e12007-10-10 20:45:16 +0000560 if (Tok.is(tok::eof)) break;
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Chris Lattner88773212010-04-14 03:57:19 +0000562 PrevPrevTok = PrevTok;
Chris Lattner6f688e12007-10-10 20:45:16 +0000563 PrevTok = Tok;
564 PP.Lex(Tok);
565 }
Chris Lattner59076ab2009-02-06 05:56:11 +0000566}
567
Dmitri Gribenkob3958472013-01-14 00:36:42 +0000568typedef std::pair<const IdentifierInfo *, MacroInfo *> id_macro_pair;
Benjamin Kramer3ff2a4b2010-01-19 17:42:20 +0000569static int MacroIDCompare(const void* a, const void* b) {
570 const id_macro_pair *LHS = static_cast<const id_macro_pair*>(a);
571 const id_macro_pair *RHS = static_cast<const id_macro_pair*>(b);
572 return LHS->first->getName().compare(RHS->first->getName());
Chris Lattner2a2bb182009-02-10 22:28:19 +0000573}
Chris Lattner59076ab2009-02-06 05:56:11 +0000574
Chris Lattner5f9e2722011-07-23 10:55:15 +0000575static void DoPrintMacros(Preprocessor &PP, raw_ostream *OS) {
Daniel Dunbarc72cc502010-06-11 20:10:12 +0000576 // Ignore unknown pragmas.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000577 PP.AddPragmaHandler(new EmptyPragmaHandler());
Daniel Dunbarc72cc502010-06-11 20:10:12 +0000578
Eli Friedmanf1db5852009-05-19 01:32:34 +0000579 // -dM mode just scans and ignores all tokens in the files, then dumps out
580 // the macro table at the end.
Chris Lattnere127a0d2010-04-20 20:35:58 +0000581 PP.EnterMainSourceFile();
Eli Friedmanf1db5852009-05-19 01:32:34 +0000582
583 Token Tok;
584 do PP.Lex(Tok);
585 while (Tok.isNot(tok::eof));
586
Alexander Kornienko8a64bb52012-08-29 00:20:03 +0000587 SmallVector<id_macro_pair, 128> MacrosByID;
588 for (Preprocessor::macro_iterator I = PP.macro_begin(), E = PP.macro_end();
589 I != E; ++I) {
590 if (I->first->hasMacroDefinition())
591 MacrosByID.push_back(id_macro_pair(I->first, I->second));
592 }
Benjamin Kramer3ff2a4b2010-01-19 17:42:20 +0000593 llvm::array_pod_sort(MacrosByID.begin(), MacrosByID.end(), MacroIDCompare);
Eli Friedmanf1db5852009-05-19 01:32:34 +0000594
595 for (unsigned i = 0, e = MacrosByID.size(); i != e; ++i) {
596 MacroInfo &MI = *MacrosByID[i].second;
Mike Stump1eb44332009-09-09 15:08:12 +0000597 // Ignore computed macros like __LINE__ and friends.
Eli Friedmanf1db5852009-05-19 01:32:34 +0000598 if (MI.isBuiltinMacro()) continue;
599
600 PrintMacroDefinition(*MacrosByID[i].first, MI, PP, *OS);
Benjamin Kramer3ff2a4b2010-01-19 17:42:20 +0000601 *OS << '\n';
Eli Friedmanf1db5852009-05-19 01:32:34 +0000602 }
603}
604
Chris Lattner59076ab2009-02-06 05:56:11 +0000605/// DoPrintPreprocessedInput - This implements -E mode.
606///
Chris Lattner5f9e2722011-07-23 10:55:15 +0000607void clang::DoPrintPreprocessedInput(Preprocessor &PP, raw_ostream *OS,
Daniel Dunbar29cf7462009-11-11 10:07:44 +0000608 const PreprocessorOutputOptions &Opts) {
Daniel Dunbar775bee72009-11-11 10:07:22 +0000609 // Show macros with no output is handled specially.
610 if (!Opts.ShowCPP) {
611 assert(Opts.ShowMacros && "Not yet implemented!");
612 DoPrintMacros(PP, OS);
613 return;
614 }
615
Chris Lattner59076ab2009-02-06 05:56:11 +0000616 // Inform the preprocessor whether we want it to retain comments or not, due
617 // to -C or -CC.
Daniel Dunbar775bee72009-11-11 10:07:22 +0000618 PP.SetCommentRetentionState(Opts.ShowComments, Opts.ShowMacroComments);
Eli Friedmanf54fce82009-05-19 01:02:07 +0000619
Eli Friedman12d3b1d2009-05-19 03:06:47 +0000620 PrintPPOutputPPCallbacks *Callbacks =
Daniel Dunbar775bee72009-11-11 10:07:22 +0000621 new PrintPPOutputPPCallbacks(PP, *OS, !Opts.ShowLineMarkers,
Daniel Dunbareef63e02011-02-02 15:41:17 +0000622 Opts.ShowMacros);
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000623 PP.AddPragmaHandler(new UnknownPragmaHandler("#pragma", Callbacks));
Chris Lattner13973992010-11-10 01:00:49 +0000624 PP.AddPragmaHandler("GCC", new UnknownPragmaHandler("#pragma GCC",Callbacks));
625 PP.AddPragmaHandler("clang",
626 new UnknownPragmaHandler("#pragma clang", Callbacks));
Chris Lattner59076ab2009-02-06 05:56:11 +0000627
Kovarththanan Rajaratnama5d10c42010-03-07 07:30:06 +0000628 PP.addPPCallbacks(Callbacks);
Chris Lattner59076ab2009-02-06 05:56:11 +0000629
Eli Friedmanf1db5852009-05-19 01:32:34 +0000630 // After we have configured the preprocessor, enter the main file.
Chris Lattnere127a0d2010-04-20 20:35:58 +0000631 PP.EnterMainSourceFile();
Chris Lattner59076ab2009-02-06 05:56:11 +0000632
Eli Friedmanf1db5852009-05-19 01:32:34 +0000633 // Consume all of the tokens that come from the predefines buffer. Those
634 // should not be emitted into the output and are guaranteed to be at the
635 // start.
636 const SourceManager &SourceMgr = PP.getSourceManager();
637 Token Tok;
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000638 do {
639 PP.Lex(Tok);
640 if (Tok.is(tok::eof) || !Tok.getLocation().isFileID())
641 break;
642
643 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
644 if (PLoc.isInvalid())
645 break;
646
647 if (strcmp(PLoc.getFilename(), "<built-in>"))
648 break;
649 } while (true);
Chris Lattner59076ab2009-02-06 05:56:11 +0000650
Eli Friedmanf1db5852009-05-19 01:32:34 +0000651 // Read all the preprocessed tokens, printing them out to the stream.
652 PrintPreprocessedTokens(PP, Tok, Callbacks, *OS);
653 *OS << '\n';
Reid Spencer5f016e22007-07-11 17:01:13 +0000654}