1 //===- opt.cpp - The LLVM Modular Optimizer -------------------------------===// 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 // Optimizations may be specified an arbitrary number of times on the command 10 // line, They are run in the order specified. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "BreakpointPrinter.h" 15 #include "NewPMDriver.h" 16 #include "PassPrinters.h" 17 #include "llvm/ADT/Triple.h" 18 #include "llvm/Analysis/CallGraph.h" 19 #include "llvm/Analysis/CallGraphSCCPass.h" 20 #include "llvm/Analysis/LoopPass.h" 21 #include "llvm/Analysis/RegionPass.h" 22 #include "llvm/Analysis/TargetLibraryInfo.h" 23 #include "llvm/Analysis/TargetTransformInfo.h" 24 #include "llvm/AsmParser/Parser.h" 25 #include "llvm/CodeGen/CommandFlags.h" 26 #include "llvm/CodeGen/TargetPassConfig.h" 27 #include "llvm/Config/llvm-config.h" 28 #include "llvm/IR/DataLayout.h" 29 #include "llvm/IR/DebugInfo.h" 30 #include "llvm/IR/LLVMContext.h" 31 #include "llvm/IR/LLVMRemarkStreamer.h" 32 #include "llvm/IR/LegacyPassManager.h" 33 #include "llvm/IR/LegacyPassNameParser.h" 34 #include "llvm/IR/Module.h" 35 #include "llvm/IR/Verifier.h" 36 #include "llvm/IRReader/IRReader.h" 37 #include "llvm/InitializePasses.h" 38 #include "llvm/LinkAllIR.h" 39 #include "llvm/LinkAllPasses.h" 40 #include "llvm/MC/SubtargetFeature.h" 41 #include "llvm/Remarks/HotnessThresholdParser.h" 42 #include "llvm/Support/Debug.h" 43 #include "llvm/Support/FileSystem.h" 44 #include "llvm/Support/Host.h" 45 #include "llvm/Support/InitLLVM.h" 46 #include "llvm/Support/PluginLoader.h" 47 #include "llvm/Support/SourceMgr.h" 48 #include "llvm/Support/SystemUtils.h" 49 #include "llvm/Support/TargetRegistry.h" 50 #include "llvm/Support/TargetSelect.h" 51 #include "llvm/Support/ToolOutputFile.h" 52 #include "llvm/Support/YAMLTraits.h" 53 #include "llvm/Target/TargetMachine.h" 54 #include "llvm/Transforms/Coroutines.h" 55 #include "llvm/Transforms/IPO/AlwaysInliner.h" 56 #include "llvm/Transforms/IPO/PassManagerBuilder.h" 57 #include "llvm/Transforms/IPO/WholeProgramDevirt.h" 58 #include "llvm/Transforms/Utils/Cloning.h" 59 #include "llvm/Transforms/Utils/Debugify.h" 60 #include <algorithm> 61 #include <memory> 62 using namespace llvm; 63 using namespace opt_tool; 64 65 static codegen::RegisterCodeGenFlags CFG; 66 67 // The OptimizationList is automatically populated with registered Passes by the 68 // PassNameParser. 69 // 70 static cl::list<const PassInfo*, bool, PassNameParser> 71 PassList(cl::desc("Optimizations available:")); 72 73 static cl::opt<bool> EnableNewPassManager( 74 "enable-new-pm", cl::desc("Enable the new pass manager"), cl::init(false)); 75 76 // This flag specifies a textual description of the optimization pass pipeline 77 // to run over the module. This flag switches opt to use the new pass manager 78 // infrastructure, completely disabling all of the flags specific to the old 79 // pass management. 80 static cl::opt<std::string> PassPipeline( 81 "passes", 82 cl::desc("A textual description of the pass pipeline for optimizing"), 83 cl::Hidden); 84 85 // Other command line options... 86 // 87 static cl::opt<std::string> 88 InputFilename(cl::Positional, cl::desc("<input bitcode file>"), 89 cl::init("-"), cl::value_desc("filename")); 90 91 static cl::opt<std::string> 92 OutputFilename("o", cl::desc("Override output filename"), 93 cl::value_desc("filename")); 94 95 static cl::opt<bool> 96 Force("f", cl::desc("Enable binary output on terminals")); 97 98 static cl::opt<bool> 99 PrintEachXForm("p", cl::desc("Print module after each transformation")); 100 101 static cl::opt<bool> 102 NoOutput("disable-output", 103 cl::desc("Do not write result bitcode file"), cl::Hidden); 104 105 static cl::opt<bool> 106 OutputAssembly("S", cl::desc("Write output as LLVM assembly")); 107 108 static cl::opt<bool> 109 OutputThinLTOBC("thinlto-bc", 110 cl::desc("Write output as ThinLTO-ready bitcode")); 111 112 static cl::opt<bool> 113 SplitLTOUnit("thinlto-split-lto-unit", 114 cl::desc("Enable splitting of a ThinLTO LTOUnit")); 115 116 static cl::opt<std::string> ThinLinkBitcodeFile( 117 "thin-link-bitcode-file", cl::value_desc("filename"), 118 cl::desc( 119 "A file in which to write minimized bitcode for the thin link only")); 120 121 static cl::opt<bool> 122 NoVerify("disable-verify", cl::desc("Do not run the verifier"), cl::Hidden); 123 124 static cl::opt<bool> NoUpgradeDebugInfo("disable-upgrade-debug-info", 125 cl::desc("Generate invalid output"), 126 cl::ReallyHidden); 127 128 static cl::opt<bool> VerifyEach("verify-each", 129 cl::desc("Verify after each transform")); 130 131 static cl::opt<bool> 132 DisableDITypeMap("disable-debug-info-type-map", 133 cl::desc("Don't use a uniquing type map for debug info")); 134 135 static cl::opt<bool> 136 StripDebug("strip-debug", 137 cl::desc("Strip debugger symbol info from translation unit")); 138 139 static cl::opt<bool> 140 StripNamedMetadata("strip-named-metadata", 141 cl::desc("Strip module-level named metadata")); 142 143 static cl::opt<bool> DisableInline("disable-inlining", 144 cl::desc("Do not run the inliner pass")); 145 146 static cl::opt<bool> 147 DisableOptimizations("disable-opt", 148 cl::desc("Do not run any optimization passes")); 149 150 static cl::opt<bool> 151 StandardLinkOpts("std-link-opts", 152 cl::desc("Include the standard link time optimizations")); 153 154 static cl::opt<bool> 155 OptLevelO0("O0", 156 cl::desc("Optimization level 0. Similar to clang -O0")); 157 158 static cl::opt<bool> 159 OptLevelO1("O1", 160 cl::desc("Optimization level 1. Similar to clang -O1")); 161 162 static cl::opt<bool> 163 OptLevelO2("O2", 164 cl::desc("Optimization level 2. Similar to clang -O2")); 165 166 static cl::opt<bool> 167 OptLevelOs("Os", 168 cl::desc("Like -O2 with extra optimizations for size. Similar to clang -Os")); 169 170 static cl::opt<bool> 171 OptLevelOz("Oz", 172 cl::desc("Like -Os but reduces code size further. Similar to clang -Oz")); 173 174 static cl::opt<bool> 175 OptLevelO3("O3", 176 cl::desc("Optimization level 3. Similar to clang -O3")); 177 178 static cl::opt<unsigned> 179 CodeGenOptLevel("codegen-opt-level", 180 cl::desc("Override optimization level for codegen hooks")); 181 182 static cl::opt<std::string> 183 TargetTriple("mtriple", cl::desc("Override target triple for module")); 184 185 cl::opt<bool> DisableLoopUnrolling( 186 "disable-loop-unrolling", 187 cl::desc("Disable loop unrolling in all relevant passes"), cl::init(false)); 188 189 static cl::opt<bool> EmitSummaryIndex("module-summary", 190 cl::desc("Emit module summary index"), 191 cl::init(false)); 192 193 static cl::opt<bool> EmitModuleHash("module-hash", cl::desc("Emit module hash"), 194 cl::init(false)); 195 196 static cl::opt<bool> 197 DisableSimplifyLibCalls("disable-simplify-libcalls", 198 cl::desc("Disable simplify-libcalls")); 199 200 static cl::list<std::string> 201 DisableBuiltins("disable-builtin", 202 cl::desc("Disable specific target library builtin function"), 203 cl::ZeroOrMore); 204 205 static cl::opt<bool> 206 AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization")); 207 208 static cl::opt<bool> EnableDebugify( 209 "enable-debugify", 210 cl::desc( 211 "Start the pipeline with debugify and end it with check-debugify")); 212 213 static cl::opt<bool> 214 PrintBreakpoints("print-breakpoints-for-testing", 215 cl::desc("Print select breakpoints location for testing")); 216 217 static cl::opt<std::string> ClDataLayout("data-layout", 218 cl::desc("data layout string to use"), 219 cl::value_desc("layout-string"), 220 cl::init("")); 221 222 static cl::opt<bool> PreserveBitcodeUseListOrder( 223 "preserve-bc-uselistorder", 224 cl::desc("Preserve use-list order when writing LLVM bitcode."), 225 cl::init(true), cl::Hidden); 226 227 static cl::opt<bool> PreserveAssemblyUseListOrder( 228 "preserve-ll-uselistorder", 229 cl::desc("Preserve use-list order when writing LLVM assembly."), 230 cl::init(false), cl::Hidden); 231 232 static cl::opt<bool> 233 RunTwice("run-twice", 234 cl::desc("Run all passes twice, re-using the same pass manager."), 235 cl::init(false), cl::Hidden); 236 237 static cl::opt<bool> DiscardValueNames( 238 "discard-value-names", 239 cl::desc("Discard names from Value (other than GlobalValue)."), 240 cl::init(false), cl::Hidden); 241 242 static cl::opt<bool> Coroutines( 243 "enable-coroutines", 244 cl::desc("Enable coroutine passes."), 245 cl::init(false), cl::Hidden); 246 247 static cl::opt<bool> TimeTrace( 248 "time-trace", 249 cl::desc("Record time trace")); 250 251 static cl::opt<unsigned> TimeTraceGranularity( 252 "time-trace-granularity", 253 cl::desc("Minimum time granularity (in microseconds) traced by time profiler"), 254 cl::init(500), cl::Hidden); 255 256 static cl::opt<std::string> 257 TimeTraceFile("time-trace-file", 258 cl::desc("Specify time trace file destination"), 259 cl::value_desc("filename")); 260 261 static cl::opt<bool> RemarksWithHotness( 262 "pass-remarks-with-hotness", 263 cl::desc("With PGO, include profile count in optimization remarks"), 264 cl::Hidden); 265 266 static cl::opt<Optional<uint64_t>, false, remarks::HotnessThresholdParser> 267 RemarksHotnessThreshold( 268 "pass-remarks-hotness-threshold", 269 cl::desc("Minimum profile count required for " 270 "an optimization remark to be output. " 271 "Use 'auto' to apply the threshold from profile summary."), 272 cl::value_desc("N or 'auto'"), cl::init(0), cl::Hidden); 273 274 static cl::opt<std::string> 275 RemarksFilename("pass-remarks-output", 276 cl::desc("Output filename for pass remarks"), 277 cl::value_desc("filename")); 278 279 static cl::opt<std::string> 280 RemarksPasses("pass-remarks-filter", 281 cl::desc("Only record optimization remarks from passes whose " 282 "names match the given regular expression"), 283 cl::value_desc("regex")); 284 285 static cl::opt<std::string> RemarksFormat( 286 "pass-remarks-format", 287 cl::desc("The format used for serializing remarks (default: YAML)"), 288 cl::value_desc("format"), cl::init("yaml")); 289 290 cl::opt<PGOKind> 291 PGOKindFlag("pgo-kind", cl::init(NoPGO), cl::Hidden, 292 cl::desc("The kind of profile guided optimization"), 293 cl::values(clEnumValN(NoPGO, "nopgo", "Do not use PGO."), 294 clEnumValN(InstrGen, "pgo-instr-gen-pipeline", 295 "Instrument the IR to generate profile."), 296 clEnumValN(InstrUse, "pgo-instr-use-pipeline", 297 "Use instrumented profile to guide PGO."), 298 clEnumValN(SampleUse, "pgo-sample-use-pipeline", 299 "Use sampled profile to guide PGO."))); 300 cl::opt<std::string> ProfileFile("profile-file", 301 cl::desc("Path to the profile."), cl::Hidden); 302 303 cl::opt<CSPGOKind> CSPGOKindFlag( 304 "cspgo-kind", cl::init(NoCSPGO), cl::Hidden, 305 cl::desc("The kind of context sensitive profile guided optimization"), 306 cl::values( 307 clEnumValN(NoCSPGO, "nocspgo", "Do not use CSPGO."), 308 clEnumValN( 309 CSInstrGen, "cspgo-instr-gen-pipeline", 310 "Instrument (context sensitive) the IR to generate profile."), 311 clEnumValN( 312 CSInstrUse, "cspgo-instr-use-pipeline", 313 "Use instrumented (context sensitive) profile to guide PGO."))); 314 cl::opt<std::string> CSProfileGenFile( 315 "cs-profilegen-file", 316 cl::desc("Path to the instrumented context sensitive profile."), 317 cl::Hidden); 318 319 static inline void addPass(legacy::PassManagerBase &PM, Pass *P) { 320 // Add the pass to the pass manager... 321 PM.add(P); 322 323 // If we are verifying all of the intermediate steps, add the verifier... 324 if (VerifyEach) 325 PM.add(createVerifierPass()); 326 } 327 328 /// This routine adds optimization passes based on selected optimization level, 329 /// OptLevel. 330 /// 331 /// OptLevel - Optimization Level 332 static void AddOptimizationPasses(legacy::PassManagerBase &MPM, 333 legacy::FunctionPassManager &FPM, 334 TargetMachine *TM, unsigned OptLevel, 335 unsigned SizeLevel) { 336 if (!NoVerify || VerifyEach) 337 FPM.add(createVerifierPass()); // Verify that input is correct 338 339 PassManagerBuilder Builder; 340 Builder.OptLevel = OptLevel; 341 Builder.SizeLevel = SizeLevel; 342 343 if (DisableInline) { 344 // No inlining pass 345 } else if (OptLevel > 1) { 346 Builder.Inliner = createFunctionInliningPass(OptLevel, SizeLevel, false); 347 } else { 348 Builder.Inliner = createAlwaysInlinerLegacyPass(); 349 } 350 Builder.DisableUnrollLoops = (DisableLoopUnrolling.getNumOccurrences() > 0) ? 351 DisableLoopUnrolling : OptLevel == 0; 352 353 Builder.LoopVectorize = OptLevel > 1 && SizeLevel < 2; 354 355 Builder.SLPVectorize = OptLevel > 1 && SizeLevel < 2; 356 357 if (TM) 358 TM->adjustPassManager(Builder); 359 360 if (Coroutines) 361 addCoroutinePassesToExtensionPoints(Builder); 362 363 switch (PGOKindFlag) { 364 case InstrGen: 365 Builder.EnablePGOInstrGen = true; 366 Builder.PGOInstrGen = ProfileFile; 367 break; 368 case InstrUse: 369 Builder.PGOInstrUse = ProfileFile; 370 break; 371 case SampleUse: 372 Builder.PGOSampleUse = ProfileFile; 373 break; 374 default: 375 break; 376 } 377 378 switch (CSPGOKindFlag) { 379 case CSInstrGen: 380 Builder.EnablePGOCSInstrGen = true; 381 break; 382 case CSInstrUse: 383 Builder.EnablePGOCSInstrUse = true; 384 break; 385 default: 386 break; 387 } 388 389 Builder.populateFunctionPassManager(FPM); 390 Builder.populateModulePassManager(MPM); 391 } 392 393 static void AddStandardLinkPasses(legacy::PassManagerBase &PM) { 394 PassManagerBuilder Builder; 395 Builder.VerifyInput = true; 396 if (DisableOptimizations) 397 Builder.OptLevel = 0; 398 399 if (!DisableInline) 400 Builder.Inliner = createFunctionInliningPass(); 401 Builder.populateLTOPassManager(PM); 402 } 403 404 //===----------------------------------------------------------------------===// 405 // CodeGen-related helper functions. 406 // 407 408 static CodeGenOpt::Level GetCodeGenOptLevel() { 409 if (CodeGenOptLevel.getNumOccurrences()) 410 return static_cast<CodeGenOpt::Level>(unsigned(CodeGenOptLevel)); 411 if (OptLevelO1) 412 return CodeGenOpt::Less; 413 if (OptLevelO2) 414 return CodeGenOpt::Default; 415 if (OptLevelO3) 416 return CodeGenOpt::Aggressive; 417 return CodeGenOpt::None; 418 } 419 420 // Returns the TargetMachine instance or zero if no triple is provided. 421 static TargetMachine* GetTargetMachine(Triple TheTriple, StringRef CPUStr, 422 StringRef FeaturesStr, 423 const TargetOptions &Options) { 424 std::string Error; 425 const Target *TheTarget = 426 TargetRegistry::lookupTarget(codegen::getMArch(), TheTriple, Error); 427 // Some modules don't specify a triple, and this is okay. 428 if (!TheTarget) { 429 return nullptr; 430 } 431 432 return TheTarget->createTargetMachine( 433 TheTriple.getTriple(), codegen::getCPUStr(), codegen::getFeaturesStr(), 434 Options, codegen::getExplicitRelocModel(), 435 codegen::getExplicitCodeModel(), GetCodeGenOptLevel()); 436 } 437 438 #ifdef BUILD_EXAMPLES 439 void initializeExampleIRTransforms(llvm::PassRegistry &Registry); 440 #endif 441 442 struct TimeTracerRAII { 443 TimeTracerRAII(StringRef ProgramName) { 444 if (TimeTrace) 445 timeTraceProfilerInitialize(TimeTraceGranularity, ProgramName); 446 } 447 ~TimeTracerRAII() { 448 if (TimeTrace) { 449 if (auto E = timeTraceProfilerWrite(TimeTraceFile, OutputFilename)) { 450 handleAllErrors(std::move(E), [&](const StringError &SE) { 451 errs() << SE.getMessage() << "\n"; 452 }); 453 return; 454 } 455 timeTraceProfilerCleanup(); 456 } 457 } 458 }; 459 460 // For use in NPM transition. 461 // TODO: use a codegen version of PassRegistry.def/PassBuilder::is*Pass() once 462 // it exists. 463 static bool IsCodegenPass(StringRef Pass) { 464 std::vector<StringRef> PassNamePrefix = { 465 "x86-", "xcore-", "wasm-", "systemz-", "ppc-", "nvvm-", "nvptx-", 466 "mips-", "lanai-", "hexagon-", "bpf-", "avr-", "thumb2-", "arm-", 467 "si-", "gcn-", "amdgpu-", "aarch64-", "amdgcn-"}; 468 std::vector<StringRef> PassNameContain = {"ehprepare"}; 469 std::vector<StringRef> PassNameExact = { 470 "safe-stack", "cost-model", 471 "codegenprepare", "interleaved-load-combine", 472 "unreachableblockelim", "scalarize-masked-mem-intrin", 473 "verify-safepoint-ir", "divergence", 474 "infer-address-spaces", "atomic-expand", 475 "hardware-loops", "type-promotion", 476 "mve-tail-predication", "interleaved-access", 477 "global-merge", "pre-isel-intrinsic-lowering", 478 "expand-reductions", "indirectbr-expand", 479 "generic-to-nvvm", "expandmemcmp"}; 480 for (const auto &P : PassNamePrefix) 481 if (Pass.startswith(P)) 482 return true; 483 for (const auto &P : PassNameContain) 484 if (Pass.contains(P)) 485 return true; 486 for (const auto &P : PassNameExact) 487 if (Pass == P) 488 return true; 489 return false; 490 } 491 492 // For use in NPM transition. 493 static bool CodegenPassSpecifiedInPassList() { 494 for (const auto &P : PassList) { 495 StringRef Arg = P->getPassArgument(); 496 if (IsCodegenPass(Arg)) 497 return true; 498 } 499 return false; 500 } 501 502 //===----------------------------------------------------------------------===// 503 // main for opt 504 // 505 int main(int argc, char **argv) { 506 InitLLVM X(argc, argv); 507 508 // Enable debug stream buffering. 509 EnableDebugBuffering = true; 510 511 LLVMContext Context; 512 513 InitializeAllTargets(); 514 InitializeAllTargetMCs(); 515 InitializeAllAsmPrinters(); 516 InitializeAllAsmParsers(); 517 518 // Initialize passes 519 PassRegistry &Registry = *PassRegistry::getPassRegistry(); 520 initializeCore(Registry); 521 initializeCoroutines(Registry); 522 initializeScalarOpts(Registry); 523 initializeObjCARCOpts(Registry); 524 initializeVectorization(Registry); 525 initializeIPO(Registry); 526 initializeAnalysis(Registry); 527 initializeTransformUtils(Registry); 528 initializeInstCombine(Registry); 529 initializeAggressiveInstCombine(Registry); 530 initializeInstrumentation(Registry); 531 initializeTarget(Registry); 532 // For codegen passes, only passes that do IR to IR transformation are 533 // supported. 534 initializeExpandMemCmpPassPass(Registry); 535 initializeScalarizeMaskedMemIntrinPass(Registry); 536 initializeCodeGenPreparePass(Registry); 537 initializeAtomicExpandPass(Registry); 538 initializeRewriteSymbolsLegacyPassPass(Registry); 539 initializeWinEHPreparePass(Registry); 540 initializeDwarfEHPreparePass(Registry); 541 initializeSafeStackLegacyPassPass(Registry); 542 initializeSjLjEHPreparePass(Registry); 543 initializePreISelIntrinsicLoweringLegacyPassPass(Registry); 544 initializeGlobalMergePass(Registry); 545 initializeIndirectBrExpandPassPass(Registry); 546 initializeInterleavedLoadCombinePass(Registry); 547 initializeInterleavedAccessPass(Registry); 548 initializeEntryExitInstrumenterPass(Registry); 549 initializePostInlineEntryExitInstrumenterPass(Registry); 550 initializeUnreachableBlockElimLegacyPassPass(Registry); 551 initializeExpandReductionsPass(Registry); 552 initializeWasmEHPreparePass(Registry); 553 initializeWriteBitcodePassPass(Registry); 554 initializeHardwareLoopsPass(Registry); 555 initializeTypePromotionPass(Registry); 556 557 #ifdef BUILD_EXAMPLES 558 initializeExampleIRTransforms(Registry); 559 #endif 560 561 cl::ParseCommandLineOptions(argc, argv, 562 "llvm .bc -> .bc modular optimizer and analysis printer\n"); 563 564 if (AnalyzeOnly && NoOutput) { 565 errs() << argv[0] << ": analyze mode conflicts with no-output mode.\n"; 566 return 1; 567 } 568 569 TimeTracerRAII TimeTracer(argv[0]); 570 571 SMDiagnostic Err; 572 573 Context.setDiscardValueNames(DiscardValueNames); 574 if (!DisableDITypeMap) 575 Context.enableDebugTypeODRUniquing(); 576 577 Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr = 578 setupLLVMOptimizationRemarks(Context, RemarksFilename, RemarksPasses, 579 RemarksFormat, RemarksWithHotness, 580 RemarksHotnessThreshold); 581 if (Error E = RemarksFileOrErr.takeError()) { 582 errs() << toString(std::move(E)) << '\n'; 583 return 1; 584 } 585 std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr); 586 587 // Load the input module... 588 auto SetDataLayout = [](StringRef) -> Optional<std::string> { 589 if (ClDataLayout.empty()) 590 return None; 591 return ClDataLayout; 592 }; 593 std::unique_ptr<Module> M; 594 if (NoUpgradeDebugInfo) 595 M = parseAssemblyFileWithIndexNoUpgradeDebugInfo( 596 InputFilename, Err, Context, nullptr, SetDataLayout) 597 .Mod; 598 else 599 M = parseIRFile(InputFilename, Err, Context, SetDataLayout); 600 601 if (!M) { 602 Err.print(argv[0], errs()); 603 return 1; 604 } 605 606 // Strip debug info before running the verifier. 607 if (StripDebug) 608 StripDebugInfo(*M); 609 610 // Erase module-level named metadata, if requested. 611 if (StripNamedMetadata) { 612 while (!M->named_metadata_empty()) { 613 NamedMDNode *NMD = &*M->named_metadata_begin(); 614 M->eraseNamedMetadata(NMD); 615 } 616 } 617 618 // If we are supposed to override the target triple or data layout, do so now. 619 if (!TargetTriple.empty()) 620 M->setTargetTriple(Triple::normalize(TargetTriple)); 621 622 // Immediately run the verifier to catch any problems before starting up the 623 // pass pipelines. Otherwise we can crash on broken code during 624 // doInitialization(). 625 if (!NoVerify && verifyModule(*M, &errs())) { 626 errs() << argv[0] << ": " << InputFilename 627 << ": error: input module is broken!\n"; 628 return 1; 629 } 630 631 // Enable testing of whole program devirtualization on this module by invoking 632 // the facility for updating public visibility to linkage unit visibility when 633 // specified by an internal option. This is normally done during LTO which is 634 // not performed via opt. 635 updateVCallVisibilityInModule(*M, 636 /* WholeProgramVisibilityEnabledInLTO */ false); 637 638 // Figure out what stream we are supposed to write to... 639 std::unique_ptr<ToolOutputFile> Out; 640 std::unique_ptr<ToolOutputFile> ThinLinkOut; 641 if (NoOutput) { 642 if (!OutputFilename.empty()) 643 errs() << "WARNING: The -o (output filename) option is ignored when\n" 644 "the --disable-output option is used.\n"; 645 } else { 646 // Default to standard output. 647 if (OutputFilename.empty()) 648 OutputFilename = "-"; 649 650 std::error_code EC; 651 sys::fs::OpenFlags Flags = OutputAssembly ? sys::fs::OF_Text 652 : sys::fs::OF_None; 653 Out.reset(new ToolOutputFile(OutputFilename, EC, Flags)); 654 if (EC) { 655 errs() << EC.message() << '\n'; 656 return 1; 657 } 658 659 if (!ThinLinkBitcodeFile.empty()) { 660 ThinLinkOut.reset( 661 new ToolOutputFile(ThinLinkBitcodeFile, EC, sys::fs::OF_None)); 662 if (EC) { 663 errs() << EC.message() << '\n'; 664 return 1; 665 } 666 } 667 } 668 669 Triple ModuleTriple(M->getTargetTriple()); 670 std::string CPUStr, FeaturesStr; 671 TargetMachine *Machine = nullptr; 672 const TargetOptions Options = 673 codegen::InitTargetOptionsFromCodeGenFlags(ModuleTriple); 674 675 if (ModuleTriple.getArch()) { 676 CPUStr = codegen::getCPUStr(); 677 FeaturesStr = codegen::getFeaturesStr(); 678 Machine = GetTargetMachine(ModuleTriple, CPUStr, FeaturesStr, Options); 679 } else if (ModuleTriple.getArchName() != "unknown" && 680 ModuleTriple.getArchName() != "") { 681 errs() << argv[0] << ": unrecognized architecture '" 682 << ModuleTriple.getArchName() << "' provided.\n"; 683 return 1; 684 } 685 686 std::unique_ptr<TargetMachine> TM(Machine); 687 688 // Override function attributes based on CPUStr, FeaturesStr, and command line 689 // flags. 690 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); 691 692 // If the output is set to be emitted to standard out, and standard out is a 693 // console, print out a warning message and refuse to do it. We don't 694 // impress anyone by spewing tons of binary goo to a terminal. 695 if (!Force && !NoOutput && !AnalyzeOnly && !OutputAssembly) 696 if (CheckBitcodeOutputToConsole(Out->os())) 697 NoOutput = true; 698 699 if (OutputThinLTOBC) 700 M->addModuleFlag(Module::Error, "EnableSplitLTOUnit", SplitLTOUnit); 701 702 // Add an appropriate TargetLibraryInfo pass for the module's triple. 703 TargetLibraryInfoImpl TLII(ModuleTriple); 704 705 // The -disable-simplify-libcalls flag actually disables all builtin optzns. 706 if (DisableSimplifyLibCalls) 707 TLII.disableAllFunctions(); 708 else { 709 // Disable individual builtin functions in TargetLibraryInfo. 710 LibFunc F; 711 for (auto &FuncName : DisableBuiltins) 712 if (TLII.getLibFunc(FuncName, F)) 713 TLII.setUnavailable(F); 714 else { 715 errs() << argv[0] << ": cannot disable nonexistent builtin function " 716 << FuncName << '\n'; 717 return 1; 718 } 719 } 720 721 // If `-passes=` is specified, use NPM. 722 // If `-enable-new-pm` is specified and there are no codegen passes, use NPM. 723 // e.g. `-enable-new-pm -sroa` will use NPM. 724 // but `-enable-new-pm -codegenprepare` will still revert to legacy PM. 725 if ((EnableNewPassManager && !CodegenPassSpecifiedInPassList()) || 726 PassPipeline.getNumOccurrences() > 0) { 727 if (AnalyzeOnly) { 728 errs() << "Cannot specify -analyze under new pass manager\n"; 729 return 1; 730 } 731 if (PassPipeline.getNumOccurrences() > 0 && PassList.size() > 0) { 732 errs() 733 << "Cannot specify passes via both -foo-pass and --passes=foo-pass\n"; 734 return 1; 735 } 736 SmallVector<StringRef, 4> Passes; 737 if (OptLevelO0) 738 Passes.push_back("default<O0>"); 739 if (OptLevelO1) 740 Passes.push_back("default<O1>"); 741 if (OptLevelO2) 742 Passes.push_back("default<O2>"); 743 if (OptLevelO3) 744 Passes.push_back("default<O3>"); 745 if (OptLevelOs) 746 Passes.push_back("default<Os>"); 747 if (OptLevelOz) 748 Passes.push_back("default<Oz>"); 749 for (const auto &P : PassList) 750 Passes.push_back(P->getPassArgument()); 751 OutputKind OK = OK_NoOutput; 752 if (!NoOutput) 753 OK = OutputAssembly 754 ? OK_OutputAssembly 755 : (OutputThinLTOBC ? OK_OutputThinLTOBitcode : OK_OutputBitcode); 756 757 VerifierKind VK = VK_VerifyInAndOut; 758 if (NoVerify) 759 VK = VK_NoVerifier; 760 else if (VerifyEach) 761 VK = VK_VerifyEachPass; 762 763 // The user has asked to use the new pass manager and provided a pipeline 764 // string. Hand off the rest of the functionality to the new code for that 765 // layer. 766 return runPassPipeline(argv[0], *M, TM.get(), &TLII, Out.get(), 767 ThinLinkOut.get(), RemarksFile.get(), PassPipeline, 768 Passes, OK, VK, PreserveAssemblyUseListOrder, 769 PreserveBitcodeUseListOrder, EmitSummaryIndex, 770 EmitModuleHash, EnableDebugify, Coroutines) 771 ? 0 772 : 1; 773 } 774 775 // Create a PassManager to hold and optimize the collection of passes we are 776 // about to build. If the -debugify-each option is set, wrap each pass with 777 // the (-check)-debugify passes. 778 DebugifyCustomPassManager Passes; 779 if (DebugifyEach) 780 Passes.enableDebugifyEach(); 781 782 bool AddOneTimeDebugifyPasses = EnableDebugify && !DebugifyEach; 783 784 Passes.add(new TargetLibraryInfoWrapperPass(TLII)); 785 786 // Add internal analysis passes from the target machine. 787 Passes.add(createTargetTransformInfoWrapperPass(TM ? TM->getTargetIRAnalysis() 788 : TargetIRAnalysis())); 789 790 if (AddOneTimeDebugifyPasses) 791 Passes.add(createDebugifyModulePass()); 792 793 std::unique_ptr<legacy::FunctionPassManager> FPasses; 794 if (OptLevelO0 || OptLevelO1 || OptLevelO2 || OptLevelOs || OptLevelOz || 795 OptLevelO3) { 796 FPasses.reset(new legacy::FunctionPassManager(M.get())); 797 FPasses->add(createTargetTransformInfoWrapperPass( 798 TM ? TM->getTargetIRAnalysis() : TargetIRAnalysis())); 799 } 800 801 if (PrintBreakpoints) { 802 // Default to standard output. 803 if (!Out) { 804 if (OutputFilename.empty()) 805 OutputFilename = "-"; 806 807 std::error_code EC; 808 Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, 809 sys::fs::OF_None); 810 if (EC) { 811 errs() << EC.message() << '\n'; 812 return 1; 813 } 814 } 815 Passes.add(createBreakpointPrinter(Out->os())); 816 NoOutput = true; 817 } 818 819 if (TM) { 820 // FIXME: We should dyn_cast this when supported. 821 auto <M = static_cast<LLVMTargetMachine &>(*TM); 822 Pass *TPC = LTM.createPassConfig(Passes); 823 Passes.add(TPC); 824 } 825 826 // Create a new optimization pass for each one specified on the command line 827 for (unsigned i = 0; i < PassList.size(); ++i) { 828 if (StandardLinkOpts && 829 StandardLinkOpts.getPosition() < PassList.getPosition(i)) { 830 AddStandardLinkPasses(Passes); 831 StandardLinkOpts = false; 832 } 833 834 if (OptLevelO0 && OptLevelO0.getPosition() < PassList.getPosition(i)) { 835 AddOptimizationPasses(Passes, *FPasses, TM.get(), 0, 0); 836 OptLevelO0 = false; 837 } 838 839 if (OptLevelO1 && OptLevelO1.getPosition() < PassList.getPosition(i)) { 840 AddOptimizationPasses(Passes, *FPasses, TM.get(), 1, 0); 841 OptLevelO1 = false; 842 } 843 844 if (OptLevelO2 && OptLevelO2.getPosition() < PassList.getPosition(i)) { 845 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 0); 846 OptLevelO2 = false; 847 } 848 849 if (OptLevelOs && OptLevelOs.getPosition() < PassList.getPosition(i)) { 850 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 1); 851 OptLevelOs = false; 852 } 853 854 if (OptLevelOz && OptLevelOz.getPosition() < PassList.getPosition(i)) { 855 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 2); 856 OptLevelOz = false; 857 } 858 859 if (OptLevelO3 && OptLevelO3.getPosition() < PassList.getPosition(i)) { 860 AddOptimizationPasses(Passes, *FPasses, TM.get(), 3, 0); 861 OptLevelO3 = false; 862 } 863 864 const PassInfo *PassInf = PassList[i]; 865 Pass *P = nullptr; 866 if (PassInf->getNormalCtor()) 867 P = PassInf->getNormalCtor()(); 868 else 869 errs() << argv[0] << ": cannot create pass: " 870 << PassInf->getPassName() << "\n"; 871 if (P) { 872 PassKind Kind = P->getPassKind(); 873 addPass(Passes, P); 874 875 if (AnalyzeOnly) { 876 switch (Kind) { 877 case PT_Region: 878 Passes.add(createRegionPassPrinter(PassInf, Out->os())); 879 break; 880 case PT_Loop: 881 Passes.add(createLoopPassPrinter(PassInf, Out->os())); 882 break; 883 case PT_Function: 884 Passes.add(createFunctionPassPrinter(PassInf, Out->os())); 885 break; 886 case PT_CallGraphSCC: 887 Passes.add(createCallGraphPassPrinter(PassInf, Out->os())); 888 break; 889 default: 890 Passes.add(createModulePassPrinter(PassInf, Out->os())); 891 break; 892 } 893 } 894 } 895 896 if (PrintEachXForm) 897 Passes.add( 898 createPrintModulePass(errs(), "", PreserveAssemblyUseListOrder)); 899 } 900 901 if (StandardLinkOpts) { 902 AddStandardLinkPasses(Passes); 903 StandardLinkOpts = false; 904 } 905 906 if (OptLevelO0) 907 AddOptimizationPasses(Passes, *FPasses, TM.get(), 0, 0); 908 909 if (OptLevelO1) 910 AddOptimizationPasses(Passes, *FPasses, TM.get(), 1, 0); 911 912 if (OptLevelO2) 913 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 0); 914 915 if (OptLevelOs) 916 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 1); 917 918 if (OptLevelOz) 919 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 2); 920 921 if (OptLevelO3) 922 AddOptimizationPasses(Passes, *FPasses, TM.get(), 3, 0); 923 924 if (FPasses) { 925 FPasses->doInitialization(); 926 for (Function &F : *M) 927 FPasses->run(F); 928 FPasses->doFinalization(); 929 } 930 931 // Check that the module is well formed on completion of optimization 932 if (!NoVerify && !VerifyEach) 933 Passes.add(createVerifierPass()); 934 935 if (AddOneTimeDebugifyPasses) 936 Passes.add(createCheckDebugifyModulePass(false)); 937 938 // In run twice mode, we want to make sure the output is bit-by-bit 939 // equivalent if we run the pass manager again, so setup two buffers and 940 // a stream to write to them. Note that llc does something similar and it 941 // may be worth to abstract this out in the future. 942 SmallVector<char, 0> Buffer; 943 SmallVector<char, 0> FirstRunBuffer; 944 std::unique_ptr<raw_svector_ostream> BOS; 945 raw_ostream *OS = nullptr; 946 947 const bool ShouldEmitOutput = !NoOutput && !AnalyzeOnly; 948 949 // Write bitcode or assembly to the output as the last step... 950 if (ShouldEmitOutput || RunTwice) { 951 assert(Out); 952 OS = &Out->os(); 953 if (RunTwice) { 954 BOS = std::make_unique<raw_svector_ostream>(Buffer); 955 OS = BOS.get(); 956 } 957 if (OutputAssembly) { 958 if (EmitSummaryIndex) 959 report_fatal_error("Text output is incompatible with -module-summary"); 960 if (EmitModuleHash) 961 report_fatal_error("Text output is incompatible with -module-hash"); 962 Passes.add(createPrintModulePass(*OS, "", PreserveAssemblyUseListOrder)); 963 } else if (OutputThinLTOBC) 964 Passes.add(createWriteThinLTOBitcodePass( 965 *OS, ThinLinkOut ? &ThinLinkOut->os() : nullptr)); 966 else 967 Passes.add(createBitcodeWriterPass(*OS, PreserveBitcodeUseListOrder, 968 EmitSummaryIndex, EmitModuleHash)); 969 } 970 971 // Before executing passes, print the final values of the LLVM options. 972 cl::PrintOptionValues(); 973 974 if (!RunTwice) { 975 // Now that we have all of the passes ready, run them. 976 Passes.run(*M); 977 } else { 978 // If requested, run all passes twice with the same pass manager to catch 979 // bugs caused by persistent state in the passes. 980 std::unique_ptr<Module> M2(CloneModule(*M)); 981 // Run all passes on the original module first, so the second run processes 982 // the clone to catch CloneModule bugs. 983 Passes.run(*M); 984 FirstRunBuffer = Buffer; 985 Buffer.clear(); 986 987 Passes.run(*M2); 988 989 // Compare the two outputs and make sure they're the same 990 assert(Out); 991 if (Buffer.size() != FirstRunBuffer.size() || 992 (memcmp(Buffer.data(), FirstRunBuffer.data(), Buffer.size()) != 0)) { 993 errs() 994 << "Running the pass manager twice changed the output.\n" 995 "Writing the result of the second run to the specified output.\n" 996 "To generate the one-run comparison binary, just run without\n" 997 "the compile-twice option\n"; 998 if (ShouldEmitOutput) { 999 Out->os() << BOS->str(); 1000 Out->keep(); 1001 } 1002 if (RemarksFile) 1003 RemarksFile->keep(); 1004 return 1; 1005 } 1006 if (ShouldEmitOutput) 1007 Out->os() << BOS->str(); 1008 } 1009 1010 if (DebugifyEach && !DebugifyExport.empty()) 1011 exportDebugifyStats(DebugifyExport, Passes.getDebugifyStatsMap()); 1012 1013 // Declare success. 1014 if (!NoOutput || PrintBreakpoints) 1015 Out->keep(); 1016 1017 if (RemarksFile) 1018 RemarksFile->keep(); 1019 1020 if (ThinLinkOut) 1021 ThinLinkOut->keep(); 1022 1023 return 0; 1024 } 1025