1 //===--- PrintPreprocessedOutput.cpp - Implement the -E mode --------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This code simply runs the preprocessor on the input file and prints out the
10 // result.  This is the traditional behavior of the -E option.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Frontend/Utils.h"
15 #include "clang/Basic/CharInfo.h"
16 #include "clang/Basic/Diagnostic.h"
17 #include "clang/Basic/SourceManager.h"
18 #include "clang/Frontend/PreprocessorOutputOptions.h"
19 #include "clang/Lex/MacroInfo.h"
20 #include "clang/Lex/PPCallbacks.h"
21 #include "clang/Lex/Pragma.h"
22 #include "clang/Lex/Preprocessor.h"
23 #include "clang/Lex/TokenConcatenation.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/ADT/SmallString.h"
26 #include "llvm/ADT/StringRef.h"
27 #include "llvm/Support/ErrorHandling.h"
28 #include "llvm/Support/raw_ostream.h"
29 #include <cstdio>
30 using namespace clang;
31 
32 /// PrintMacroDefinition - Print a macro definition in a form that will be
33 /// properly accepted back as a definition.
34 static void PrintMacroDefinition(const IdentifierInfo &II, const MacroInfo &MI,
35                                  Preprocessor &PP, raw_ostream &OS) {
36   OS << "#define " << II.getName();
37 
38   if (MI.isFunctionLike()) {
39     OS << '(';
40     if (!MI.param_empty()) {
41       MacroInfo::param_iterator AI = MI.param_begin(), E = MI.param_end();
42       for (; AI+1 != E; ++AI) {
43         OS << (*AI)->getName();
44         OS << ',';
45       }
46 
47       // Last argument.
48       if ((*AI)->getName() == "__VA_ARGS__")
49         OS << "...";
50       else
51         OS << (*AI)->getName();
52     }
53 
54     if (MI.isGNUVarargs())
55       OS << "...";  // #define foo(x...)
56 
57     OS << ')';
58   }
59 
60   // GCC always emits a space, even if the macro body is empty.  However, do not
61   // want to emit two spaces if the first token has a leading space.
62   if (MI.tokens_empty() || !MI.tokens_begin()->hasLeadingSpace())
63     OS << ' ';
64 
65   SmallString<128> SpellingBuffer;
66   for (const auto &T : MI.tokens()) {
67     if (T.hasLeadingSpace())
68       OS << ' ';
69 
70     OS << PP.getSpelling(T, SpellingBuffer);
71   }
72 }
73 
74 //===----------------------------------------------------------------------===//
75 // Preprocessed token printer
76 //===----------------------------------------------------------------------===//
77 
78 namespace {
79 class PrintPPOutputPPCallbacks : public PPCallbacks {
80   Preprocessor &PP;
81   SourceManager &SM;
82   TokenConcatenation ConcatInfo;
83 public:
84   raw_ostream &OS;
85 private:
86   unsigned CurLine;
87 
88   bool EmittedTokensOnThisLine;
89   bool EmittedDirectiveOnThisLine;
90   SrcMgr::CharacteristicKind FileType;
91   SmallString<512> CurFilename;
92   bool Initialized;
93   bool DisableLineMarkers;
94   bool DumpDefines;
95   bool DumpIncludeDirectives;
96   bool UseLineDirectives;
97   bool IsFirstFileEntered;
98   bool MinimizeWhitespace;
99   bool DirectivesOnly;
100 
101   Token PrevTok;
102   Token PrevPrevTok;
103 
104 public:
105   PrintPPOutputPPCallbacks(Preprocessor &pp, raw_ostream &os, bool lineMarkers,
106                            bool defines, bool DumpIncludeDirectives,
107                            bool UseLineDirectives, bool MinimizeWhitespace,
108                            bool DirectivesOnly)
109       : PP(pp), SM(PP.getSourceManager()), ConcatInfo(PP), OS(os),
110         DisableLineMarkers(lineMarkers), DumpDefines(defines),
111         DumpIncludeDirectives(DumpIncludeDirectives),
112         UseLineDirectives(UseLineDirectives),
113         MinimizeWhitespace(MinimizeWhitespace), DirectivesOnly(DirectivesOnly) {
114     CurLine = 0;
115     CurFilename += "<uninit>";
116     EmittedTokensOnThisLine = false;
117     EmittedDirectiveOnThisLine = false;
118     FileType = SrcMgr::C_User;
119     Initialized = false;
120     IsFirstFileEntered = false;
121 
122     PrevTok.startToken();
123     PrevPrevTok.startToken();
124   }
125 
126   bool isMinimizeWhitespace() const { return MinimizeWhitespace; }
127 
128   void setEmittedTokensOnThisLine() { EmittedTokensOnThisLine = true; }
129   bool hasEmittedTokensOnThisLine() const { return EmittedTokensOnThisLine; }
130 
131   void setEmittedDirectiveOnThisLine() { EmittedDirectiveOnThisLine = true; }
132   bool hasEmittedDirectiveOnThisLine() const {
133     return EmittedDirectiveOnThisLine;
134   }
135 
136   /// Ensure that the output stream position is at the beginning of a new line
137   /// and inserts one if it does not. It is intended to ensure that directives
138   /// inserted by the directives not from the input source (such as #line) are
139   /// in the first column. To insert newlines that represent the input, use
140   /// MoveToLine(/*...*/, /*RequireStartOfLine=*/true).
141   void startNewLineIfNeeded();
142 
143   void FileChanged(SourceLocation Loc, FileChangeReason Reason,
144                    SrcMgr::CharacteristicKind FileType,
145                    FileID PrevFID) override;
146   void InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok,
147                           StringRef FileName, bool IsAngled,
148                           CharSourceRange FilenameRange,
149                           OptionalFileEntryRef File, StringRef SearchPath,
150                           StringRef RelativePath, const Module *Imported,
151                           SrcMgr::CharacteristicKind FileType) override;
152   void Ident(SourceLocation Loc, StringRef str) override;
153   void PragmaMessage(SourceLocation Loc, StringRef Namespace,
154                      PragmaMessageKind Kind, StringRef Str) override;
155   void PragmaDebug(SourceLocation Loc, StringRef DebugType) override;
156   void PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) override;
157   void PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) override;
158   void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
159                         diag::Severity Map, StringRef Str) override;
160   void PragmaWarning(SourceLocation Loc, PragmaWarningSpecifier WarningSpec,
161                      ArrayRef<int> Ids) override;
162   void PragmaWarningPush(SourceLocation Loc, int Level) override;
163   void PragmaWarningPop(SourceLocation Loc) override;
164   void PragmaExecCharsetPush(SourceLocation Loc, StringRef Str) override;
165   void PragmaExecCharsetPop(SourceLocation Loc) override;
166   void PragmaAssumeNonNullBegin(SourceLocation Loc) override;
167   void PragmaAssumeNonNullEnd(SourceLocation Loc) override;
168 
169   /// Insert whitespace before emitting the next token.
170   ///
171   /// @param Tok             Next token to be emitted.
172   /// @param RequireSpace    Ensure at least one whitespace is emitted. Useful
173   ///                        if non-tokens have been emitted to the stream.
174   /// @param RequireSameLine Never emit newlines. Useful when semantics depend
175   ///                        on being on the same line, such as directives.
176   void HandleWhitespaceBeforeTok(const Token &Tok, bool RequireSpace,
177                                  bool RequireSameLine);
178 
179   /// Move to the line of the provided source location. This will
180   /// return true if a newline was inserted or if
181   /// the requested location is the first token on the first line.
182   /// In these cases the next output will be the first column on the line and
183   /// make it possible to insert indention. The newline was inserted
184   /// implicitly when at the beginning of the file.
185   ///
186   /// @param Tok                 Token where to move to.
187   /// @param RequireStartOfLine  Whether the next line depends on being in the
188   ///                            first column, such as a directive.
189   ///
190   /// @return Whether column adjustments are necessary.
191   bool MoveToLine(const Token &Tok, bool RequireStartOfLine) {
192     PresumedLoc PLoc = SM.getPresumedLoc(Tok.getLocation());
193     unsigned TargetLine = PLoc.isValid() ? PLoc.getLine() : CurLine;
194     bool IsFirstInFile =
195         Tok.isAtStartOfLine() && PLoc.isValid() && PLoc.getLine() == 1;
196     return MoveToLine(TargetLine, RequireStartOfLine) || IsFirstInFile;
197   }
198 
199   /// Move to the line of the provided source location. Returns true if a new
200   /// line was inserted.
201   bool MoveToLine(SourceLocation Loc, bool RequireStartOfLine) {
202     PresumedLoc PLoc = SM.getPresumedLoc(Loc);
203     unsigned TargetLine = PLoc.isValid() ? PLoc.getLine() : CurLine;
204     return MoveToLine(TargetLine, RequireStartOfLine);
205   }
206   bool MoveToLine(unsigned LineNo, bool RequireStartOfLine);
207 
208   bool AvoidConcat(const Token &PrevPrevTok, const Token &PrevTok,
209                    const Token &Tok) {
210     return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok);
211   }
212   void WriteLineInfo(unsigned LineNo, const char *Extra=nullptr,
213                      unsigned ExtraLen=0);
214   bool LineMarkersAreDisabled() const { return DisableLineMarkers; }
215   void HandleNewlinesInToken(const char *TokStr, unsigned Len);
216 
217   /// MacroDefined - This hook is called whenever a macro definition is seen.
218   void MacroDefined(const Token &MacroNameTok,
219                     const MacroDirective *MD) override;
220 
221   /// MacroUndefined - This hook is called whenever a macro #undef is seen.
222   void MacroUndefined(const Token &MacroNameTok,
223                       const MacroDefinition &MD,
224                       const MacroDirective *Undef) override;
225 
226   void BeginModule(const Module *M);
227   void EndModule(const Module *M);
228 };
229 }  // end anonymous namespace
230 
231 void PrintPPOutputPPCallbacks::WriteLineInfo(unsigned LineNo,
232                                              const char *Extra,
233                                              unsigned ExtraLen) {
234   startNewLineIfNeeded();
235 
236   // Emit #line directives or GNU line markers depending on what mode we're in.
237   if (UseLineDirectives) {
238     OS << "#line" << ' ' << LineNo << ' ' << '"';
239     OS.write_escaped(CurFilename);
240     OS << '"';
241   } else {
242     OS << '#' << ' ' << LineNo << ' ' << '"';
243     OS.write_escaped(CurFilename);
244     OS << '"';
245 
246     if (ExtraLen)
247       OS.write(Extra, ExtraLen);
248 
249     if (FileType == SrcMgr::C_System)
250       OS.write(" 3", 2);
251     else if (FileType == SrcMgr::C_ExternCSystem)
252       OS.write(" 3 4", 4);
253   }
254   OS << '\n';
255 }
256 
257 /// MoveToLine - Move the output to the source line specified by the location
258 /// object.  We can do this by emitting some number of \n's, or be emitting a
259 /// #line directive.  This returns false if already at the specified line, true
260 /// if some newlines were emitted.
261 bool PrintPPOutputPPCallbacks::MoveToLine(unsigned LineNo,
262                                           bool RequireStartOfLine) {
263   // If it is required to start a new line or finish the current, insert
264   // vertical whitespace now and take it into account when moving to the
265   // expected line.
266   bool StartedNewLine = false;
267   if ((RequireStartOfLine && EmittedTokensOnThisLine) ||
268       EmittedDirectiveOnThisLine) {
269     OS << '\n';
270     StartedNewLine = true;
271     CurLine += 1;
272     EmittedTokensOnThisLine = false;
273     EmittedDirectiveOnThisLine = false;
274   }
275 
276   // If this line is "close enough" to the original line, just print newlines,
277   // otherwise print a #line directive.
278   if (CurLine == LineNo) {
279     // Nothing to do if we are already on the correct line.
280   } else if (MinimizeWhitespace && DisableLineMarkers) {
281     // With -E -P -fminimize-whitespace, don't emit anything if not necessary.
282   } else if (!StartedNewLine && LineNo - CurLine == 1) {
283     // Printing a single line has priority over printing a #line directive, even
284     // when minimizing whitespace which otherwise would print #line directives
285     // for every single line.
286     OS << '\n';
287     StartedNewLine = true;
288   } else if (!DisableLineMarkers) {
289     if (LineNo - CurLine <= 8) {
290       const char *NewLines = "\n\n\n\n\n\n\n\n";
291       OS.write(NewLines, LineNo - CurLine);
292     } else {
293       // Emit a #line or line marker.
294       WriteLineInfo(LineNo, nullptr, 0);
295     }
296     StartedNewLine = true;
297   } else if (EmittedTokensOnThisLine) {
298     // If we are not on the correct line and don't need to be line-correct,
299     // at least ensure we start on a new line.
300     OS << '\n';
301     StartedNewLine = true;
302   }
303 
304   if (StartedNewLine) {
305     EmittedTokensOnThisLine = false;
306     EmittedDirectiveOnThisLine = false;
307   }
308 
309   CurLine = LineNo;
310   return StartedNewLine;
311 }
312 
313 void PrintPPOutputPPCallbacks::startNewLineIfNeeded() {
314   if (EmittedTokensOnThisLine || EmittedDirectiveOnThisLine) {
315     OS << '\n';
316     EmittedTokensOnThisLine = false;
317     EmittedDirectiveOnThisLine = false;
318   }
319 }
320 
321 /// FileChanged - Whenever the preprocessor enters or exits a #include file
322 /// it invokes this handler.  Update our conception of the current source
323 /// position.
324 void PrintPPOutputPPCallbacks::FileChanged(SourceLocation Loc,
325                                            FileChangeReason Reason,
326                                        SrcMgr::CharacteristicKind NewFileType,
327                                        FileID PrevFID) {
328   // Unless we are exiting a #include, make sure to skip ahead to the line the
329   // #include directive was at.
330   SourceManager &SourceMgr = SM;
331 
332   PresumedLoc UserLoc = SourceMgr.getPresumedLoc(Loc);
333   if (UserLoc.isInvalid())
334     return;
335 
336   unsigned NewLine = UserLoc.getLine();
337 
338   if (Reason == PPCallbacks::EnterFile) {
339     SourceLocation IncludeLoc = UserLoc.getIncludeLoc();
340     if (IncludeLoc.isValid())
341       MoveToLine(IncludeLoc, /*RequireStartOfLine=*/false);
342   } else if (Reason == PPCallbacks::SystemHeaderPragma) {
343     // GCC emits the # directive for this directive on the line AFTER the
344     // directive and emits a bunch of spaces that aren't needed. This is because
345     // otherwise we will emit a line marker for THIS line, which requires an
346     // extra blank line after the directive to avoid making all following lines
347     // off by one. We can do better by simply incrementing NewLine here.
348     NewLine += 1;
349   }
350 
351   CurLine = NewLine;
352 
353   CurFilename.clear();
354   CurFilename += UserLoc.getFilename();
355   FileType = NewFileType;
356 
357   if (DisableLineMarkers) {
358     if (!MinimizeWhitespace)
359       startNewLineIfNeeded();
360     return;
361   }
362 
363   if (!Initialized) {
364     WriteLineInfo(CurLine);
365     Initialized = true;
366   }
367 
368   // Do not emit an enter marker for the main file (which we expect is the first
369   // entered file). This matches gcc, and improves compatibility with some tools
370   // which track the # line markers as a way to determine when the preprocessed
371   // output is in the context of the main file.
372   if (Reason == PPCallbacks::EnterFile && !IsFirstFileEntered) {
373     IsFirstFileEntered = true;
374     return;
375   }
376 
377   switch (Reason) {
378   case PPCallbacks::EnterFile:
379     WriteLineInfo(CurLine, " 1", 2);
380     break;
381   case PPCallbacks::ExitFile:
382     WriteLineInfo(CurLine, " 2", 2);
383     break;
384   case PPCallbacks::SystemHeaderPragma:
385   case PPCallbacks::RenameFile:
386     WriteLineInfo(CurLine);
387     break;
388   }
389 }
390 
391 void PrintPPOutputPPCallbacks::InclusionDirective(
392     SourceLocation HashLoc, const Token &IncludeTok, StringRef FileName,
393     bool IsAngled, CharSourceRange FilenameRange, OptionalFileEntryRef File,
394     StringRef SearchPath, StringRef RelativePath, const Module *Imported,
395     SrcMgr::CharacteristicKind FileType) {
396   // In -dI mode, dump #include directives prior to dumping their content or
397   // interpretation.
398   if (DumpIncludeDirectives) {
399     MoveToLine(HashLoc, /*RequireStartOfLine=*/true);
400     const std::string TokenText = PP.getSpelling(IncludeTok);
401     assert(!TokenText.empty());
402     OS << "#" << TokenText << " "
403        << (IsAngled ? '<' : '"') << FileName << (IsAngled ? '>' : '"')
404        << " /* clang -E -dI */";
405     setEmittedDirectiveOnThisLine();
406   }
407 
408   // When preprocessing, turn implicit imports into module import pragmas.
409   if (Imported) {
410     switch (IncludeTok.getIdentifierInfo()->getPPKeywordID()) {
411     case tok::pp_include:
412     case tok::pp_import:
413     case tok::pp_include_next:
414       MoveToLine(HashLoc, /*RequireStartOfLine=*/true);
415       OS << "#pragma clang module import " << Imported->getFullModuleName(true)
416          << " /* clang -E: implicit import for "
417          << "#" << PP.getSpelling(IncludeTok) << " "
418          << (IsAngled ? '<' : '"') << FileName << (IsAngled ? '>' : '"')
419          << " */";
420       setEmittedDirectiveOnThisLine();
421       break;
422 
423     case tok::pp___include_macros:
424       // #__include_macros has no effect on a user of a preprocessed source
425       // file; the only effect is on preprocessing.
426       //
427       // FIXME: That's not *quite* true: it causes the module in question to
428       // be loaded, which can affect downstream diagnostics.
429       break;
430 
431     default:
432       llvm_unreachable("unknown include directive kind");
433       break;
434     }
435   }
436 }
437 
438 /// Handle entering the scope of a module during a module compilation.
439 void PrintPPOutputPPCallbacks::BeginModule(const Module *M) {
440   startNewLineIfNeeded();
441   OS << "#pragma clang module begin " << M->getFullModuleName(true);
442   setEmittedDirectiveOnThisLine();
443 }
444 
445 /// Handle leaving the scope of a module during a module compilation.
446 void PrintPPOutputPPCallbacks::EndModule(const Module *M) {
447   startNewLineIfNeeded();
448   OS << "#pragma clang module end /*" << M->getFullModuleName(true) << "*/";
449   setEmittedDirectiveOnThisLine();
450 }
451 
452 /// Ident - Handle #ident directives when read by the preprocessor.
453 ///
454 void PrintPPOutputPPCallbacks::Ident(SourceLocation Loc, StringRef S) {
455   MoveToLine(Loc, /*RequireStartOfLine=*/true);
456 
457   OS.write("#ident ", strlen("#ident "));
458   OS.write(S.begin(), S.size());
459   setEmittedTokensOnThisLine();
460 }
461 
462 /// MacroDefined - This hook is called whenever a macro definition is seen.
463 void PrintPPOutputPPCallbacks::MacroDefined(const Token &MacroNameTok,
464                                             const MacroDirective *MD) {
465   const MacroInfo *MI = MD->getMacroInfo();
466   // Print out macro definitions in -dD mode and when we have -fdirectives-only
467   // for C++20 header units.
468   if ((!DumpDefines && !DirectivesOnly) ||
469       // Ignore __FILE__ etc.
470       MI->isBuiltinMacro())
471     return;
472 
473   SourceLocation DefLoc = MI->getDefinitionLoc();
474   if (DirectivesOnly && !MI->isUsed()) {
475     SourceManager &SM = PP.getSourceManager();
476     if (SM.isWrittenInBuiltinFile(DefLoc) ||
477         SM.isWrittenInCommandLineFile(DefLoc))
478       return;
479   }
480   MoveToLine(DefLoc, /*RequireStartOfLine=*/true);
481   PrintMacroDefinition(*MacroNameTok.getIdentifierInfo(), *MI, PP, OS);
482   setEmittedDirectiveOnThisLine();
483 }
484 
485 void PrintPPOutputPPCallbacks::MacroUndefined(const Token &MacroNameTok,
486                                               const MacroDefinition &MD,
487                                               const MacroDirective *Undef) {
488   // Print out macro definitions in -dD mode and when we have -fdirectives-only
489   // for C++20 header units.
490   if (!DumpDefines && !DirectivesOnly)
491     return;
492 
493   MoveToLine(MacroNameTok.getLocation(), /*RequireStartOfLine=*/true);
494   OS << "#undef " << MacroNameTok.getIdentifierInfo()->getName();
495   setEmittedDirectiveOnThisLine();
496 }
497 
498 static void outputPrintable(raw_ostream &OS, StringRef Str) {
499   for (unsigned char Char : Str) {
500     if (isPrintable(Char) && Char != '\\' && Char != '"')
501       OS << (char)Char;
502     else // Output anything hard as an octal escape.
503       OS << '\\'
504          << (char)('0' + ((Char >> 6) & 7))
505          << (char)('0' + ((Char >> 3) & 7))
506          << (char)('0' + ((Char >> 0) & 7));
507   }
508 }
509 
510 void PrintPPOutputPPCallbacks::PragmaMessage(SourceLocation Loc,
511                                              StringRef Namespace,
512                                              PragmaMessageKind Kind,
513                                              StringRef Str) {
514   MoveToLine(Loc, /*RequireStartOfLine=*/true);
515   OS << "#pragma ";
516   if (!Namespace.empty())
517     OS << Namespace << ' ';
518   switch (Kind) {
519     case PMK_Message:
520       OS << "message(\"";
521       break;
522     case PMK_Warning:
523       OS << "warning \"";
524       break;
525     case PMK_Error:
526       OS << "error \"";
527       break;
528   }
529 
530   outputPrintable(OS, Str);
531   OS << '"';
532   if (Kind == PMK_Message)
533     OS << ')';
534   setEmittedDirectiveOnThisLine();
535 }
536 
537 void PrintPPOutputPPCallbacks::PragmaDebug(SourceLocation Loc,
538                                            StringRef DebugType) {
539   MoveToLine(Loc, /*RequireStartOfLine=*/true);
540 
541   OS << "#pragma clang __debug ";
542   OS << DebugType;
543 
544   setEmittedDirectiveOnThisLine();
545 }
546 
547 void PrintPPOutputPPCallbacks::
548 PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) {
549   MoveToLine(Loc, /*RequireStartOfLine=*/true);
550   OS << "#pragma " << Namespace << " diagnostic push";
551   setEmittedDirectiveOnThisLine();
552 }
553 
554 void PrintPPOutputPPCallbacks::
555 PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) {
556   MoveToLine(Loc, /*RequireStartOfLine=*/true);
557   OS << "#pragma " << Namespace << " diagnostic pop";
558   setEmittedDirectiveOnThisLine();
559 }
560 
561 void PrintPPOutputPPCallbacks::PragmaDiagnostic(SourceLocation Loc,
562                                                 StringRef Namespace,
563                                                 diag::Severity Map,
564                                                 StringRef Str) {
565   MoveToLine(Loc, /*RequireStartOfLine=*/true);
566   OS << "#pragma " << Namespace << " diagnostic ";
567   switch (Map) {
568   case diag::Severity::Remark:
569     OS << "remark";
570     break;
571   case diag::Severity::Warning:
572     OS << "warning";
573     break;
574   case diag::Severity::Error:
575     OS << "error";
576     break;
577   case diag::Severity::Ignored:
578     OS << "ignored";
579     break;
580   case diag::Severity::Fatal:
581     OS << "fatal";
582     break;
583   }
584   OS << " \"" << Str << '"';
585   setEmittedDirectiveOnThisLine();
586 }
587 
588 void PrintPPOutputPPCallbacks::PragmaWarning(SourceLocation Loc,
589                                              PragmaWarningSpecifier WarningSpec,
590                                              ArrayRef<int> Ids) {
591   MoveToLine(Loc, /*RequireStartOfLine=*/true);
592 
593   OS << "#pragma warning(";
594   switch(WarningSpec) {
595     case PWS_Default:  OS << "default"; break;
596     case PWS_Disable:  OS << "disable"; break;
597     case PWS_Error:    OS << "error"; break;
598     case PWS_Once:     OS << "once"; break;
599     case PWS_Suppress: OS << "suppress"; break;
600     case PWS_Level1:   OS << '1'; break;
601     case PWS_Level2:   OS << '2'; break;
602     case PWS_Level3:   OS << '3'; break;
603     case PWS_Level4:   OS << '4'; break;
604   }
605   OS << ':';
606 
607   for (ArrayRef<int>::iterator I = Ids.begin(), E = Ids.end(); I != E; ++I)
608     OS << ' ' << *I;
609   OS << ')';
610   setEmittedDirectiveOnThisLine();
611 }
612 
613 void PrintPPOutputPPCallbacks::PragmaWarningPush(SourceLocation Loc,
614                                                  int Level) {
615   MoveToLine(Loc, /*RequireStartOfLine=*/true);
616   OS << "#pragma warning(push";
617   if (Level >= 0)
618     OS << ", " << Level;
619   OS << ')';
620   setEmittedDirectiveOnThisLine();
621 }
622 
623 void PrintPPOutputPPCallbacks::PragmaWarningPop(SourceLocation Loc) {
624   MoveToLine(Loc, /*RequireStartOfLine=*/true);
625   OS << "#pragma warning(pop)";
626   setEmittedDirectiveOnThisLine();
627 }
628 
629 void PrintPPOutputPPCallbacks::PragmaExecCharsetPush(SourceLocation Loc,
630                                                      StringRef Str) {
631   MoveToLine(Loc, /*RequireStartOfLine=*/true);
632   OS << "#pragma character_execution_set(push";
633   if (!Str.empty())
634     OS << ", " << Str;
635   OS << ')';
636   setEmittedDirectiveOnThisLine();
637 }
638 
639 void PrintPPOutputPPCallbacks::PragmaExecCharsetPop(SourceLocation Loc) {
640   MoveToLine(Loc, /*RequireStartOfLine=*/true);
641   OS << "#pragma character_execution_set(pop)";
642   setEmittedDirectiveOnThisLine();
643 }
644 
645 void PrintPPOutputPPCallbacks::
646 PragmaAssumeNonNullBegin(SourceLocation Loc) {
647   MoveToLine(Loc, /*RequireStartOfLine=*/true);
648   OS << "#pragma clang assume_nonnull begin";
649   setEmittedDirectiveOnThisLine();
650 }
651 
652 void PrintPPOutputPPCallbacks::
653 PragmaAssumeNonNullEnd(SourceLocation Loc) {
654   MoveToLine(Loc, /*RequireStartOfLine=*/true);
655   OS << "#pragma clang assume_nonnull end";
656   setEmittedDirectiveOnThisLine();
657 }
658 
659 void PrintPPOutputPPCallbacks::HandleWhitespaceBeforeTok(const Token &Tok,
660                                                          bool RequireSpace,
661                                                          bool RequireSameLine) {
662   // These tokens are not expanded to anything and don't need whitespace before
663   // them.
664   if (Tok.is(tok::eof) ||
665       (Tok.isAnnotation() && !Tok.is(tok::annot_header_unit) &&
666        !Tok.is(tok::annot_module_begin) && !Tok.is(tok::annot_module_end) &&
667        !Tok.is(tok::annot_repl_input_end)))
668     return;
669 
670   // EmittedDirectiveOnThisLine takes priority over RequireSameLine.
671   if ((!RequireSameLine || EmittedDirectiveOnThisLine) &&
672       MoveToLine(Tok, /*RequireStartOfLine=*/EmittedDirectiveOnThisLine)) {
673     if (MinimizeWhitespace) {
674       // Avoid interpreting hash as a directive under -fpreprocessed.
675       if (Tok.is(tok::hash))
676         OS << ' ';
677     } else {
678       // Print out space characters so that the first token on a line is
679       // indented for easy reading.
680       unsigned ColNo = SM.getExpansionColumnNumber(Tok.getLocation());
681 
682       // The first token on a line can have a column number of 1, yet still
683       // expect leading white space, if a macro expansion in column 1 starts
684       // with an empty macro argument, or an empty nested macro expansion. In
685       // this case, move the token to column 2.
686       if (ColNo == 1 && Tok.hasLeadingSpace())
687         ColNo = 2;
688 
689       // This hack prevents stuff like:
690       // #define HASH #
691       // HASH define foo bar
692       // From having the # character end up at column 1, which makes it so it
693       // is not handled as a #define next time through the preprocessor if in
694       // -fpreprocessed mode.
695       if (ColNo <= 1 && Tok.is(tok::hash))
696         OS << ' ';
697 
698       // Otherwise, indent the appropriate number of spaces.
699       for (; ColNo > 1; --ColNo)
700         OS << ' ';
701     }
702   } else {
703     // Insert whitespace between the previous and next token if either
704     // - The caller requires it
705     // - The input had whitespace between them and we are not in
706     //   whitespace-minimization mode
707     // - The whitespace is necessary to keep the tokens apart and there is not
708     //   already a newline between them
709     if (RequireSpace || (!MinimizeWhitespace && Tok.hasLeadingSpace()) ||
710         ((EmittedTokensOnThisLine || EmittedDirectiveOnThisLine) &&
711          AvoidConcat(PrevPrevTok, PrevTok, Tok)))
712       OS << ' ';
713   }
714 
715   PrevPrevTok = PrevTok;
716   PrevTok = Tok;
717 }
718 
719 void PrintPPOutputPPCallbacks::HandleNewlinesInToken(const char *TokStr,
720                                                      unsigned Len) {
721   unsigned NumNewlines = 0;
722   for (; Len; --Len, ++TokStr) {
723     if (*TokStr != '\n' &&
724         *TokStr != '\r')
725       continue;
726 
727     ++NumNewlines;
728 
729     // If we have \n\r or \r\n, skip both and count as one line.
730     if (Len != 1 &&
731         (TokStr[1] == '\n' || TokStr[1] == '\r') &&
732         TokStr[0] != TokStr[1]) {
733       ++TokStr;
734       --Len;
735     }
736   }
737 
738   if (NumNewlines == 0) return;
739 
740   CurLine += NumNewlines;
741 }
742 
743 
744 namespace {
745 struct UnknownPragmaHandler : public PragmaHandler {
746   const char *Prefix;
747   PrintPPOutputPPCallbacks *Callbacks;
748 
749   // Set to true if tokens should be expanded
750   bool ShouldExpandTokens;
751 
752   UnknownPragmaHandler(const char *prefix, PrintPPOutputPPCallbacks *callbacks,
753                        bool RequireTokenExpansion)
754       : Prefix(prefix), Callbacks(callbacks),
755         ShouldExpandTokens(RequireTokenExpansion) {}
756   void HandlePragma(Preprocessor &PP, PragmaIntroducer Introducer,
757                     Token &PragmaTok) override {
758     // Figure out what line we went to and insert the appropriate number of
759     // newline characters.
760     Callbacks->MoveToLine(PragmaTok.getLocation(), /*RequireStartOfLine=*/true);
761     Callbacks->OS.write(Prefix, strlen(Prefix));
762     Callbacks->setEmittedTokensOnThisLine();
763 
764     if (ShouldExpandTokens) {
765       // The first token does not have expanded macros. Expand them, if
766       // required.
767       auto Toks = std::make_unique<Token[]>(1);
768       Toks[0] = PragmaTok;
769       PP.EnterTokenStream(std::move(Toks), /*NumToks=*/1,
770                           /*DisableMacroExpansion=*/false,
771                           /*IsReinject=*/false);
772       PP.Lex(PragmaTok);
773     }
774 
775     // Read and print all of the pragma tokens.
776     bool IsFirst = true;
777     while (PragmaTok.isNot(tok::eod)) {
778       Callbacks->HandleWhitespaceBeforeTok(PragmaTok, /*RequireSpace=*/IsFirst,
779                                            /*RequireSameLine=*/true);
780       IsFirst = false;
781       std::string TokSpell = PP.getSpelling(PragmaTok);
782       Callbacks->OS.write(&TokSpell[0], TokSpell.size());
783       Callbacks->setEmittedTokensOnThisLine();
784 
785       if (ShouldExpandTokens)
786         PP.Lex(PragmaTok);
787       else
788         PP.LexUnexpandedToken(PragmaTok);
789     }
790     Callbacks->setEmittedDirectiveOnThisLine();
791   }
792 };
793 } // end anonymous namespace
794 
795 
796 static void PrintPreprocessedTokens(Preprocessor &PP, Token &Tok,
797                                     PrintPPOutputPPCallbacks *Callbacks,
798                                     raw_ostream &OS) {
799   bool DropComments = PP.getLangOpts().TraditionalCPP &&
800                       !PP.getCommentRetentionState();
801 
802   bool IsStartOfLine = false;
803   char Buffer[256];
804   while (true) {
805     // Two lines joined with line continuation ('\' as last character on the
806     // line) must be emitted as one line even though Tok.getLine() returns two
807     // different values. In this situation Tok.isAtStartOfLine() is false even
808     // though it may be the first token on the lexical line. When
809     // dropping/skipping a token that is at the start of a line, propagate the
810     // start-of-line-ness to the next token to not append it to the previous
811     // line.
812     IsStartOfLine = IsStartOfLine || Tok.isAtStartOfLine();
813 
814     Callbacks->HandleWhitespaceBeforeTok(Tok, /*RequireSpace=*/false,
815                                          /*RequireSameLine=*/!IsStartOfLine);
816 
817     if (DropComments && Tok.is(tok::comment)) {
818       // Skip comments. Normally the preprocessor does not generate
819       // tok::comment nodes at all when not keeping comments, but under
820       // -traditional-cpp the lexer keeps /all/ whitespace, including comments.
821       PP.Lex(Tok);
822       continue;
823     } else if (Tok.is(tok::annot_repl_input_end)) {
824       PP.Lex(Tok);
825       continue;
826     } else if (Tok.is(tok::eod)) {
827       // Don't print end of directive tokens, since they are typically newlines
828       // that mess up our line tracking. These come from unknown pre-processor
829       // directives or hash-prefixed comments in standalone assembly files.
830       PP.Lex(Tok);
831       // FIXME: The token on the next line after #include should have
832       // Tok.isAtStartOfLine() set.
833       IsStartOfLine = true;
834       continue;
835     } else if (Tok.is(tok::annot_module_include)) {
836       // PrintPPOutputPPCallbacks::InclusionDirective handles producing
837       // appropriate output here. Ignore this token entirely.
838       PP.Lex(Tok);
839       IsStartOfLine = true;
840       continue;
841     } else if (Tok.is(tok::annot_module_begin)) {
842       // FIXME: We retrieve this token after the FileChanged callback, and
843       // retrieve the module_end token before the FileChanged callback, so
844       // we render this within the file and render the module end outside the
845       // file, but this is backwards from the token locations: the module_begin
846       // token is at the include location (outside the file) and the module_end
847       // token is at the EOF location (within the file).
848       Callbacks->BeginModule(
849           reinterpret_cast<Module *>(Tok.getAnnotationValue()));
850       PP.Lex(Tok);
851       IsStartOfLine = true;
852       continue;
853     } else if (Tok.is(tok::annot_module_end)) {
854       Callbacks->EndModule(
855           reinterpret_cast<Module *>(Tok.getAnnotationValue()));
856       PP.Lex(Tok);
857       IsStartOfLine = true;
858       continue;
859     } else if (Tok.is(tok::annot_header_unit)) {
860       // This is a header-name that has been (effectively) converted into a
861       // module-name.
862       // FIXME: The module name could contain non-identifier module name
863       // components. We don't have a good way to round-trip those.
864       Module *M = reinterpret_cast<Module *>(Tok.getAnnotationValue());
865       std::string Name = M->getFullModuleName();
866       OS.write(Name.data(), Name.size());
867       Callbacks->HandleNewlinesInToken(Name.data(), Name.size());
868     } else if (Tok.isAnnotation()) {
869       // Ignore annotation tokens created by pragmas - the pragmas themselves
870       // will be reproduced in the preprocessed output.
871       PP.Lex(Tok);
872       continue;
873     } else if (IdentifierInfo *II = Tok.getIdentifierInfo()) {
874       OS << II->getName();
875     } else if (Tok.isLiteral() && !Tok.needsCleaning() &&
876                Tok.getLiteralData()) {
877       OS.write(Tok.getLiteralData(), Tok.getLength());
878     } else if (Tok.getLength() < std::size(Buffer)) {
879       const char *TokPtr = Buffer;
880       unsigned Len = PP.getSpelling(Tok, TokPtr);
881       OS.write(TokPtr, Len);
882 
883       // Tokens that can contain embedded newlines need to adjust our current
884       // line number.
885       // FIXME: The token may end with a newline in which case
886       // setEmittedDirectiveOnThisLine/setEmittedTokensOnThisLine afterwards is
887       // wrong.
888       if (Tok.getKind() == tok::comment || Tok.getKind() == tok::unknown)
889         Callbacks->HandleNewlinesInToken(TokPtr, Len);
890       if (Tok.is(tok::comment) && Len >= 2 && TokPtr[0] == '/' &&
891           TokPtr[1] == '/') {
892         // It's a line comment;
893         // Ensure that we don't concatenate anything behind it.
894         Callbacks->setEmittedDirectiveOnThisLine();
895       }
896     } else {
897       std::string S = PP.getSpelling(Tok);
898       OS.write(S.data(), S.size());
899 
900       // Tokens that can contain embedded newlines need to adjust our current
901       // line number.
902       if (Tok.getKind() == tok::comment || Tok.getKind() == tok::unknown)
903         Callbacks->HandleNewlinesInToken(S.data(), S.size());
904       if (Tok.is(tok::comment) && S.size() >= 2 && S[0] == '/' && S[1] == '/') {
905         // It's a line comment;
906         // Ensure that we don't concatenate anything behind it.
907         Callbacks->setEmittedDirectiveOnThisLine();
908       }
909     }
910     Callbacks->setEmittedTokensOnThisLine();
911     IsStartOfLine = false;
912 
913     if (Tok.is(tok::eof)) break;
914 
915     PP.Lex(Tok);
916   }
917 }
918 
919 typedef std::pair<const IdentifierInfo *, MacroInfo *> id_macro_pair;
920 static int MacroIDCompare(const id_macro_pair *LHS, const id_macro_pair *RHS) {
921   return LHS->first->getName().compare(RHS->first->getName());
922 }
923 
924 static void DoPrintMacros(Preprocessor &PP, raw_ostream *OS) {
925   // Ignore unknown pragmas.
926   PP.IgnorePragmas();
927 
928   // -dM mode just scans and ignores all tokens in the files, then dumps out
929   // the macro table at the end.
930   PP.EnterMainSourceFile();
931 
932   Token Tok;
933   do PP.Lex(Tok);
934   while (Tok.isNot(tok::eof));
935 
936   SmallVector<id_macro_pair, 128> MacrosByID;
937   for (Preprocessor::macro_iterator I = PP.macro_begin(), E = PP.macro_end();
938        I != E; ++I) {
939     auto *MD = I->second.getLatest();
940     if (MD && MD->isDefined())
941       MacrosByID.push_back(id_macro_pair(I->first, MD->getMacroInfo()));
942   }
943   llvm::array_pod_sort(MacrosByID.begin(), MacrosByID.end(), MacroIDCompare);
944 
945   for (unsigned i = 0, e = MacrosByID.size(); i != e; ++i) {
946     MacroInfo &MI = *MacrosByID[i].second;
947     // Ignore computed macros like __LINE__ and friends.
948     if (MI.isBuiltinMacro()) continue;
949 
950     PrintMacroDefinition(*MacrosByID[i].first, MI, PP, *OS);
951     *OS << '\n';
952   }
953 }
954 
955 /// DoPrintPreprocessedInput - This implements -E mode.
956 ///
957 void clang::DoPrintPreprocessedInput(Preprocessor &PP, raw_ostream *OS,
958                                      const PreprocessorOutputOptions &Opts) {
959   // Show macros with no output is handled specially.
960   if (!Opts.ShowCPP) {
961     assert(Opts.ShowMacros && "Not yet implemented!");
962     DoPrintMacros(PP, OS);
963     return;
964   }
965 
966   // Inform the preprocessor whether we want it to retain comments or not, due
967   // to -C or -CC.
968   PP.SetCommentRetentionState(Opts.ShowComments, Opts.ShowMacroComments);
969 
970   PrintPPOutputPPCallbacks *Callbacks = new PrintPPOutputPPCallbacks(
971       PP, *OS, !Opts.ShowLineMarkers, Opts.ShowMacros,
972       Opts.ShowIncludeDirectives, Opts.UseLineDirectives,
973       Opts.MinimizeWhitespace, Opts.DirectivesOnly);
974 
975   // Expand macros in pragmas with -fms-extensions.  The assumption is that
976   // the majority of pragmas in such a file will be Microsoft pragmas.
977   // Remember the handlers we will add so that we can remove them later.
978   std::unique_ptr<UnknownPragmaHandler> MicrosoftExtHandler(
979       new UnknownPragmaHandler(
980           "#pragma", Callbacks,
981           /*RequireTokenExpansion=*/PP.getLangOpts().MicrosoftExt));
982 
983   std::unique_ptr<UnknownPragmaHandler> GCCHandler(new UnknownPragmaHandler(
984       "#pragma GCC", Callbacks,
985       /*RequireTokenExpansion=*/PP.getLangOpts().MicrosoftExt));
986 
987   std::unique_ptr<UnknownPragmaHandler> ClangHandler(new UnknownPragmaHandler(
988       "#pragma clang", Callbacks,
989       /*RequireTokenExpansion=*/PP.getLangOpts().MicrosoftExt));
990 
991   PP.AddPragmaHandler(MicrosoftExtHandler.get());
992   PP.AddPragmaHandler("GCC", GCCHandler.get());
993   PP.AddPragmaHandler("clang", ClangHandler.get());
994 
995   // The tokens after pragma omp need to be expanded.
996   //
997   //  OpenMP [2.1, Directive format]
998   //  Preprocessing tokens following the #pragma omp are subject to macro
999   //  replacement.
1000   std::unique_ptr<UnknownPragmaHandler> OpenMPHandler(
1001       new UnknownPragmaHandler("#pragma omp", Callbacks,
1002                                /*RequireTokenExpansion=*/true));
1003   PP.AddPragmaHandler("omp", OpenMPHandler.get());
1004 
1005   PP.addPPCallbacks(std::unique_ptr<PPCallbacks>(Callbacks));
1006 
1007   // After we have configured the preprocessor, enter the main file.
1008   PP.EnterMainSourceFile();
1009   if (Opts.DirectivesOnly)
1010     PP.SetMacroExpansionOnlyInDirectives();
1011 
1012   // Consume all of the tokens that come from the predefines buffer.  Those
1013   // should not be emitted into the output and are guaranteed to be at the
1014   // start.
1015   const SourceManager &SourceMgr = PP.getSourceManager();
1016   Token Tok;
1017   do {
1018     PP.Lex(Tok);
1019     if (Tok.is(tok::eof) || !Tok.getLocation().isFileID())
1020       break;
1021 
1022     PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
1023     if (PLoc.isInvalid())
1024       break;
1025 
1026     if (strcmp(PLoc.getFilename(), "<built-in>"))
1027       break;
1028   } while (true);
1029 
1030   // Read all the preprocessed tokens, printing them out to the stream.
1031   PrintPreprocessedTokens(PP, Tok, Callbacks, *OS);
1032   *OS << '\n';
1033 
1034   // Remove the handlers we just added to leave the preprocessor in a sane state
1035   // so that it can be reused (for example by a clang::Parser instance).
1036   PP.RemovePragmaHandler(MicrosoftExtHandler.get());
1037   PP.RemovePragmaHandler("GCC", GCCHandler.get());
1038   PP.RemovePragmaHandler("clang", ClangHandler.get());
1039   PP.RemovePragmaHandler("omp", OpenMPHandler.get());
1040 }
1041