1 //===--- PrintPreprocessedOutput.cpp - Implement the -E mode --------------===// 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 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 15 #include "clang/Frontend/Utils.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/SmallString.h" 25 #include "llvm/ADT/STLExtras.h" 26 #include "llvm/ADT/StringRef.h" 27 #include "llvm/Config/config.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, llvm::raw_ostream &OS) { 36 OS << "#define " << II.getName(); 37 38 if (MI.isFunctionLike()) { 39 OS << '('; 40 if (!MI.arg_empty()) { 41 MacroInfo::arg_iterator AI = MI.arg_begin(), E = MI.arg_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 llvm::SmallString<128> SpellingBuffer; 66 for (MacroInfo::tokens_iterator I = MI.tokens_begin(), E = MI.tokens_end(); 67 I != E; ++I) { 68 if (I->hasLeadingSpace()) 69 OS << ' '; 70 71 OS << PP.getSpelling(*I, SpellingBuffer); 72 } 73 } 74 75 //===----------------------------------------------------------------------===// 76 // Preprocessed token printer 77 //===----------------------------------------------------------------------===// 78 79 namespace { 80 class PrintPPOutputPPCallbacks : public PPCallbacks { 81 Preprocessor &PP; 82 SourceManager &SM; 83 TokenConcatenation ConcatInfo; 84 public: 85 llvm::raw_ostream &OS; 86 private: 87 unsigned CurLine; 88 89 /// The current include nesting level, used by header include dumping (-H). 90 unsigned CurrentIncludeDepth; 91 92 bool EmittedTokensOnThisLine; 93 bool EmittedMacroOnThisLine; 94 SrcMgr::CharacteristicKind FileType; 95 llvm::SmallString<512> CurFilename; 96 bool Initialized; 97 bool DisableLineMarkers; 98 bool DumpDefines; 99 bool DumpHeaderIncludes; 100 bool UseLineDirective; 101 bool HasProcessedPredefines; 102 public: 103 PrintPPOutputPPCallbacks(Preprocessor &pp, llvm::raw_ostream &os, 104 bool lineMarkers, bool defines, bool headers) 105 : PP(pp), SM(PP.getSourceManager()), 106 ConcatInfo(PP), OS(os), DisableLineMarkers(lineMarkers), 107 DumpDefines(defines), DumpHeaderIncludes(headers) { 108 CurLine = CurrentIncludeDepth = 0; 109 CurFilename += "<uninit>"; 110 EmittedTokensOnThisLine = false; 111 EmittedMacroOnThisLine = false; 112 FileType = SrcMgr::C_User; 113 Initialized = false; 114 HasProcessedPredefines = false; 115 116 // If we're in microsoft mode, use normal #line instead of line markers. 117 UseLineDirective = PP.getLangOptions().Microsoft; 118 } 119 120 void SetEmittedTokensOnThisLine() { EmittedTokensOnThisLine = true; } 121 bool hasEmittedTokensOnThisLine() const { return EmittedTokensOnThisLine; } 122 123 bool StartNewLineIfNeeded(); 124 125 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason, 126 SrcMgr::CharacteristicKind FileType); 127 virtual void Ident(SourceLocation Loc, const std::string &str); 128 virtual void PragmaComment(SourceLocation Loc, const IdentifierInfo *Kind, 129 const std::string &Str); 130 virtual void PragmaMessage(SourceLocation Loc, llvm::StringRef Str); 131 132 bool HandleFirstTokOnLine(Token &Tok); 133 bool MoveToLine(SourceLocation Loc) { 134 PresumedLoc PLoc = SM.getPresumedLoc(Loc); 135 if (PLoc.isInvalid()) 136 return false; 137 return MoveToLine(PLoc.getLine()); 138 } 139 bool MoveToLine(unsigned LineNo); 140 141 bool AvoidConcat(const Token &PrevPrevTok, const Token &PrevTok, 142 const Token &Tok) { 143 return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok); 144 } 145 void WriteLineInfo(unsigned LineNo, const char *Extra=0, unsigned ExtraLen=0); 146 bool LineMarkersAreDisabled() const { return DisableLineMarkers; } 147 void HandleNewlinesInToken(const char *TokStr, unsigned Len); 148 149 /// MacroDefined - This hook is called whenever a macro definition is seen. 150 void MacroDefined(const Token &MacroNameTok, const MacroInfo *MI); 151 152 /// MacroUndefined - This hook is called whenever a macro #undef is seen. 153 void MacroUndefined(const Token &MacroNameTok, const MacroInfo *MI); 154 }; 155 } // end anonymous namespace 156 157 void PrintPPOutputPPCallbacks::WriteLineInfo(unsigned LineNo, 158 const char *Extra, 159 unsigned ExtraLen) { 160 if (EmittedTokensOnThisLine || EmittedMacroOnThisLine) { 161 OS << '\n'; 162 EmittedTokensOnThisLine = false; 163 EmittedMacroOnThisLine = false; 164 } 165 166 // Emit #line directives or GNU line markers depending on what mode we're in. 167 if (UseLineDirective) { 168 OS << "#line" << ' ' << LineNo << ' ' << '"'; 169 OS.write(CurFilename.data(), CurFilename.size()); 170 OS << '"'; 171 } else { 172 OS << '#' << ' ' << LineNo << ' ' << '"'; 173 OS.write(CurFilename.data(), CurFilename.size()); 174 OS << '"'; 175 176 if (ExtraLen) 177 OS.write(Extra, ExtraLen); 178 179 if (FileType == SrcMgr::C_System) 180 OS.write(" 3", 2); 181 else if (FileType == SrcMgr::C_ExternCSystem) 182 OS.write(" 3 4", 4); 183 } 184 OS << '\n'; 185 } 186 187 /// MoveToLine - Move the output to the source line specified by the location 188 /// object. We can do this by emitting some number of \n's, or be emitting a 189 /// #line directive. This returns false if already at the specified line, true 190 /// if some newlines were emitted. 191 bool PrintPPOutputPPCallbacks::MoveToLine(unsigned LineNo) { 192 // If this line is "close enough" to the original line, just print newlines, 193 // otherwise print a #line directive. 194 if (LineNo-CurLine <= 8) { 195 if (LineNo-CurLine == 1) 196 OS << '\n'; 197 else if (LineNo == CurLine) 198 return false; // Spelling line moved, but instantiation line didn't. 199 else { 200 const char *NewLines = "\n\n\n\n\n\n\n\n"; 201 OS.write(NewLines, LineNo-CurLine); 202 } 203 } else if (!DisableLineMarkers) { 204 // Emit a #line or line marker. 205 WriteLineInfo(LineNo, 0, 0); 206 } else { 207 // Okay, we're in -P mode, which turns off line markers. However, we still 208 // need to emit a newline between tokens on different lines. 209 if (EmittedTokensOnThisLine || EmittedMacroOnThisLine) { 210 OS << '\n'; 211 EmittedTokensOnThisLine = false; 212 EmittedMacroOnThisLine = false; 213 } 214 } 215 216 CurLine = LineNo; 217 return true; 218 } 219 220 bool PrintPPOutputPPCallbacks::StartNewLineIfNeeded() { 221 if (EmittedTokensOnThisLine || EmittedMacroOnThisLine) { 222 OS << '\n'; 223 EmittedTokensOnThisLine = false; 224 EmittedMacroOnThisLine = false; 225 ++CurLine; 226 return true; 227 } 228 229 return false; 230 } 231 232 /// FileChanged - Whenever the preprocessor enters or exits a #include file 233 /// it invokes this handler. Update our conception of the current source 234 /// position. 235 void PrintPPOutputPPCallbacks::FileChanged(SourceLocation Loc, 236 FileChangeReason Reason, 237 SrcMgr::CharacteristicKind NewFileType) { 238 // Unless we are exiting a #include, make sure to skip ahead to the line the 239 // #include directive was at. 240 SourceManager &SourceMgr = SM; 241 242 PresumedLoc UserLoc = SourceMgr.getPresumedLoc(Loc); 243 if (UserLoc.isInvalid()) 244 return; 245 246 unsigned NewLine = UserLoc.getLine(); 247 248 if (Reason == PPCallbacks::EnterFile) { 249 SourceLocation IncludeLoc = UserLoc.getIncludeLoc(); 250 if (IncludeLoc.isValid()) 251 MoveToLine(IncludeLoc); 252 } else if (Reason == PPCallbacks::SystemHeaderPragma) { 253 MoveToLine(NewLine); 254 255 // TODO GCC emits the # directive for this directive on the line AFTER the 256 // directive and emits a bunch of spaces that aren't needed. Emulate this 257 // strange behavior. 258 } 259 260 // Adjust the current include depth. 261 if (Reason == PPCallbacks::EnterFile) { 262 ++CurrentIncludeDepth; 263 } else { 264 if (CurrentIncludeDepth) 265 --CurrentIncludeDepth; 266 267 // We track when we are done with the predefines by watching for the first 268 // place where we drop back to a nesting depth of 0. 269 if (CurrentIncludeDepth == 0 && !HasProcessedPredefines) 270 HasProcessedPredefines = true; 271 } 272 273 CurLine = NewLine; 274 275 CurFilename.clear(); 276 CurFilename += UserLoc.getFilename(); 277 Lexer::Stringify(CurFilename); 278 FileType = NewFileType; 279 280 // Dump the header include information, if enabled and we are past the 281 // predefines buffer. 282 if (DumpHeaderIncludes && HasProcessedPredefines && 283 Reason == PPCallbacks::EnterFile) { 284 // Write to a temporary string to avoid unnecessary flushing on errs(). 285 llvm::SmallString<256> Msg; 286 llvm::raw_svector_ostream OS(Msg); 287 for (unsigned i = 0; i != CurrentIncludeDepth; ++i) 288 OS << '.'; 289 OS << ' ' << CurFilename << '\n'; 290 llvm::errs() << OS.str(); 291 } 292 293 if (DisableLineMarkers) return; 294 295 if (!Initialized) { 296 WriteLineInfo(CurLine); 297 Initialized = true; 298 } 299 300 switch (Reason) { 301 case PPCallbacks::EnterFile: 302 WriteLineInfo(CurLine, " 1", 2); 303 break; 304 case PPCallbacks::ExitFile: 305 WriteLineInfo(CurLine, " 2", 2); 306 break; 307 case PPCallbacks::SystemHeaderPragma: 308 case PPCallbacks::RenameFile: 309 WriteLineInfo(CurLine); 310 break; 311 } 312 } 313 314 /// Ident - Handle #ident directives when read by the preprocessor. 315 /// 316 void PrintPPOutputPPCallbacks::Ident(SourceLocation Loc, const std::string &S) { 317 MoveToLine(Loc); 318 319 OS.write("#ident ", strlen("#ident ")); 320 OS.write(&S[0], S.size()); 321 EmittedTokensOnThisLine = true; 322 } 323 324 /// MacroDefined - This hook is called whenever a macro definition is seen. 325 void PrintPPOutputPPCallbacks::MacroDefined(const Token &MacroNameTok, 326 const MacroInfo *MI) { 327 // Only print out macro definitions in -dD mode. 328 if (!DumpDefines || 329 // Ignore __FILE__ etc. 330 MI->isBuiltinMacro()) return; 331 332 MoveToLine(MI->getDefinitionLoc()); 333 PrintMacroDefinition(*MacroNameTok.getIdentifierInfo(), *MI, PP, OS); 334 EmittedMacroOnThisLine = true; 335 } 336 337 void PrintPPOutputPPCallbacks::MacroUndefined(const Token &MacroNameTok, 338 const MacroInfo *MI) { 339 // Only print out macro definitions in -dD mode. 340 if (!DumpDefines) return; 341 342 MoveToLine(MacroNameTok.getLocation()); 343 OS << "#undef " << MacroNameTok.getIdentifierInfo()->getName(); 344 EmittedMacroOnThisLine = true; 345 } 346 347 void PrintPPOutputPPCallbacks::PragmaComment(SourceLocation Loc, 348 const IdentifierInfo *Kind, 349 const std::string &Str) { 350 MoveToLine(Loc); 351 OS << "#pragma comment(" << Kind->getName(); 352 353 if (!Str.empty()) { 354 OS << ", \""; 355 356 for (unsigned i = 0, e = Str.size(); i != e; ++i) { 357 unsigned char Char = Str[i]; 358 if (isprint(Char) && Char != '\\' && Char != '"') 359 OS << (char)Char; 360 else // Output anything hard as an octal escape. 361 OS << '\\' 362 << (char)('0'+ ((Char >> 6) & 7)) 363 << (char)('0'+ ((Char >> 3) & 7)) 364 << (char)('0'+ ((Char >> 0) & 7)); 365 } 366 OS << '"'; 367 } 368 369 OS << ')'; 370 EmittedTokensOnThisLine = true; 371 } 372 373 void PrintPPOutputPPCallbacks::PragmaMessage(SourceLocation Loc, 374 llvm::StringRef Str) { 375 MoveToLine(Loc); 376 OS << "#pragma message("; 377 378 OS << '"'; 379 380 for (unsigned i = 0, e = Str.size(); i != e; ++i) { 381 unsigned char Char = Str[i]; 382 if (isprint(Char) && Char != '\\' && Char != '"') 383 OS << (char)Char; 384 else // Output anything hard as an octal escape. 385 OS << '\\' 386 << (char)('0'+ ((Char >> 6) & 7)) 387 << (char)('0'+ ((Char >> 3) & 7)) 388 << (char)('0'+ ((Char >> 0) & 7)); 389 } 390 OS << '"'; 391 392 OS << ')'; 393 EmittedTokensOnThisLine = true; 394 } 395 396 397 /// HandleFirstTokOnLine - When emitting a preprocessed file in -E mode, this 398 /// is called for the first token on each new line. If this really is the start 399 /// of a new logical line, handle it and return true, otherwise return false. 400 /// This may not be the start of a logical line because the "start of line" 401 /// marker is set for spelling lines, not instantiation ones. 402 bool PrintPPOutputPPCallbacks::HandleFirstTokOnLine(Token &Tok) { 403 // Figure out what line we went to and insert the appropriate number of 404 // newline characters. 405 if (!MoveToLine(Tok.getLocation())) 406 return false; 407 408 // Print out space characters so that the first token on a line is 409 // indented for easy reading. 410 unsigned ColNo = SM.getInstantiationColumnNumber(Tok.getLocation()); 411 412 // This hack prevents stuff like: 413 // #define HASH # 414 // HASH define foo bar 415 // From having the # character end up at column 1, which makes it so it 416 // is not handled as a #define next time through the preprocessor if in 417 // -fpreprocessed mode. 418 if (ColNo <= 1 && Tok.is(tok::hash)) 419 OS << ' '; 420 421 // Otherwise, indent the appropriate number of spaces. 422 for (; ColNo > 1; --ColNo) 423 OS << ' '; 424 425 return true; 426 } 427 428 void PrintPPOutputPPCallbacks::HandleNewlinesInToken(const char *TokStr, 429 unsigned Len) { 430 unsigned NumNewlines = 0; 431 for (; Len; --Len, ++TokStr) { 432 if (*TokStr != '\n' && 433 *TokStr != '\r') 434 continue; 435 436 ++NumNewlines; 437 438 // If we have \n\r or \r\n, skip both and count as one line. 439 if (Len != 1 && 440 (TokStr[1] == '\n' || TokStr[1] == '\r') && 441 TokStr[0] != TokStr[1]) 442 ++TokStr, --Len; 443 } 444 445 if (NumNewlines == 0) return; 446 447 CurLine += NumNewlines; 448 } 449 450 451 namespace { 452 struct UnknownPragmaHandler : public PragmaHandler { 453 const char *Prefix; 454 PrintPPOutputPPCallbacks *Callbacks; 455 456 UnknownPragmaHandler(const char *prefix, PrintPPOutputPPCallbacks *callbacks) 457 : Prefix(prefix), Callbacks(callbacks) {} 458 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer, 459 Token &PragmaTok) { 460 // Figure out what line we went to and insert the appropriate number of 461 // newline characters. 462 Callbacks->StartNewLineIfNeeded(); 463 Callbacks->MoveToLine(PragmaTok.getLocation()); 464 Callbacks->OS.write(Prefix, strlen(Prefix)); 465 Callbacks->SetEmittedTokensOnThisLine(); 466 // Read and print all of the pragma tokens. 467 while (PragmaTok.isNot(tok::eom)) { 468 if (PragmaTok.hasLeadingSpace()) 469 Callbacks->OS << ' '; 470 std::string TokSpell = PP.getSpelling(PragmaTok); 471 Callbacks->OS.write(&TokSpell[0], TokSpell.size()); 472 PP.LexUnexpandedToken(PragmaTok); 473 } 474 Callbacks->StartNewLineIfNeeded(); 475 } 476 }; 477 } // end anonymous namespace 478 479 480 static void PrintPreprocessedTokens(Preprocessor &PP, Token &Tok, 481 PrintPPOutputPPCallbacks *Callbacks, 482 llvm::raw_ostream &OS) { 483 char Buffer[256]; 484 Token PrevPrevTok, PrevTok; 485 PrevPrevTok.startToken(); 486 PrevTok.startToken(); 487 while (1) { 488 489 // If this token is at the start of a line, emit newlines if needed. 490 if (Tok.isAtStartOfLine() && Callbacks->HandleFirstTokOnLine(Tok)) { 491 // done. 492 } else if (Tok.hasLeadingSpace() || 493 // If we haven't emitted a token on this line yet, PrevTok isn't 494 // useful to look at and no concatenation could happen anyway. 495 (Callbacks->hasEmittedTokensOnThisLine() && 496 // Don't print "-" next to "-", it would form "--". 497 Callbacks->AvoidConcat(PrevPrevTok, PrevTok, Tok))) { 498 OS << ' '; 499 } 500 501 if (IdentifierInfo *II = Tok.getIdentifierInfo()) { 502 OS << II->getName(); 503 } else if (Tok.isLiteral() && !Tok.needsCleaning() && 504 Tok.getLiteralData()) { 505 OS.write(Tok.getLiteralData(), Tok.getLength()); 506 } else if (Tok.getLength() < 256) { 507 const char *TokPtr = Buffer; 508 unsigned Len = PP.getSpelling(Tok, TokPtr); 509 OS.write(TokPtr, Len); 510 511 // Tokens that can contain embedded newlines need to adjust our current 512 // line number. 513 if (Tok.getKind() == tok::comment) 514 Callbacks->HandleNewlinesInToken(TokPtr, Len); 515 } else { 516 std::string S = PP.getSpelling(Tok); 517 OS.write(&S[0], S.size()); 518 519 // Tokens that can contain embedded newlines need to adjust our current 520 // line number. 521 if (Tok.getKind() == tok::comment) 522 Callbacks->HandleNewlinesInToken(&S[0], S.size()); 523 } 524 Callbacks->SetEmittedTokensOnThisLine(); 525 526 if (Tok.is(tok::eof)) break; 527 528 PrevPrevTok = PrevTok; 529 PrevTok = Tok; 530 PP.Lex(Tok); 531 } 532 } 533 534 typedef std::pair<IdentifierInfo*, MacroInfo*> id_macro_pair; 535 static int MacroIDCompare(const void* a, const void* b) { 536 const id_macro_pair *LHS = static_cast<const id_macro_pair*>(a); 537 const id_macro_pair *RHS = static_cast<const id_macro_pair*>(b); 538 return LHS->first->getName().compare(RHS->first->getName()); 539 } 540 541 static void DoPrintMacros(Preprocessor &PP, llvm::raw_ostream *OS) { 542 // Ignore unknown pragmas. 543 PP.AddPragmaHandler(new EmptyPragmaHandler()); 544 545 // -dM mode just scans and ignores all tokens in the files, then dumps out 546 // the macro table at the end. 547 PP.EnterMainSourceFile(); 548 549 Token Tok; 550 do PP.Lex(Tok); 551 while (Tok.isNot(tok::eof)); 552 553 llvm::SmallVector<id_macro_pair, 128> 554 MacrosByID(PP.macro_begin(), PP.macro_end()); 555 llvm::array_pod_sort(MacrosByID.begin(), MacrosByID.end(), MacroIDCompare); 556 557 for (unsigned i = 0, e = MacrosByID.size(); i != e; ++i) { 558 MacroInfo &MI = *MacrosByID[i].second; 559 // Ignore computed macros like __LINE__ and friends. 560 if (MI.isBuiltinMacro()) continue; 561 562 PrintMacroDefinition(*MacrosByID[i].first, MI, PP, *OS); 563 *OS << '\n'; 564 } 565 } 566 567 /// DoPrintPreprocessedInput - This implements -E mode. 568 /// 569 void clang::DoPrintPreprocessedInput(Preprocessor &PP, llvm::raw_ostream *OS, 570 const PreprocessorOutputOptions &Opts) { 571 // Show macros with no output is handled specially. 572 if (!Opts.ShowCPP) { 573 assert(Opts.ShowMacros && "Not yet implemented!"); 574 DoPrintMacros(PP, OS); 575 return; 576 } 577 578 // Inform the preprocessor whether we want it to retain comments or not, due 579 // to -C or -CC. 580 PP.SetCommentRetentionState(Opts.ShowComments, Opts.ShowMacroComments); 581 582 PrintPPOutputPPCallbacks *Callbacks = 583 new PrintPPOutputPPCallbacks(PP, *OS, !Opts.ShowLineMarkers, 584 Opts.ShowMacros, Opts.ShowHeaderIncludes); 585 PP.AddPragmaHandler(new UnknownPragmaHandler("#pragma", Callbacks)); 586 PP.AddPragmaHandler("GCC", new UnknownPragmaHandler("#pragma GCC",Callbacks)); 587 PP.AddPragmaHandler("clang", 588 new UnknownPragmaHandler("#pragma clang", Callbacks)); 589 590 PP.addPPCallbacks(Callbacks); 591 592 // After we have configured the preprocessor, enter the main file. 593 PP.EnterMainSourceFile(); 594 595 // Consume all of the tokens that come from the predefines buffer. Those 596 // should not be emitted into the output and are guaranteed to be at the 597 // start. 598 const SourceManager &SourceMgr = PP.getSourceManager(); 599 Token Tok; 600 do { 601 PP.Lex(Tok); 602 if (Tok.is(tok::eof) || !Tok.getLocation().isFileID()) 603 break; 604 605 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation()); 606 if (PLoc.isInvalid()) 607 break; 608 609 if (strcmp(PLoc.getFilename(), "<built-in>")) 610 break; 611 } while (true); 612 613 // Read all the preprocessed tokens, printing them out to the stream. 614 PrintPreprocessedTokens(PP, Tok, Callbacks, *OS); 615 *OS << '\n'; 616 } 617