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. Currently this contains most codegen-specific 461 // passes. Remove passes from here when porting to the NPM. 462 // TODO: use a codegen version of PassRegistry.def/PassBuilder::is*Pass() once 463 // it exists. 464 static bool shouldPinPassToLegacyPM(StringRef Pass) { 465 std::vector<StringRef> PassNameExactToIgnore = { 466 "amdgpu-simplifylib", 467 "amdgpu-usenative", 468 "amdgpu-promote-alloca", 469 "amdgpu-promote-alloca-to-vector", 470 "amdgpu-lower-kernel-attributes", 471 "amdgpu-propagate-attributes-early", 472 "amdgpu-propagate-attributes-late", 473 "amdgpu-unify-metadata", 474 "amdgpu-printf-runtime-binding", 475 "amdgpu-always-inline"}; 476 for (const auto &P : PassNameExactToIgnore) 477 if (Pass == P) 478 return false; 479 480 std::vector<StringRef> PassNamePrefix = { 481 "x86-", "xcore-", "wasm-", "systemz-", "ppc-", "nvvm-", "nvptx-", 482 "mips-", "lanai-", "hexagon-", "bpf-", "avr-", "thumb2-", "arm-", 483 "si-", "gcn-", "amdgpu-", "aarch64-", "amdgcn-"}; 484 std::vector<StringRef> PassNameContain = {"ehprepare"}; 485 std::vector<StringRef> PassNameExact = {"safe-stack", 486 "cost-model", 487 "codegenprepare", 488 "interleaved-load-combine", 489 "unreachableblockelim", 490 "verify-safepoint-ir", 491 "divergence", 492 "atomic-expand", 493 "hardware-loops", 494 "type-promotion", 495 "mve-tail-predication", 496 "interleaved-access", 497 "global-merge", 498 "pre-isel-intrinsic-lowering", 499 "expand-reductions", 500 "indirectbr-expand", 501 "generic-to-nvvm", 502 "expandmemcmp", 503 "loop-reduce", 504 "lower-amx-type"}; 505 for (const auto &P : PassNamePrefix) 506 if (Pass.startswith(P)) 507 return true; 508 for (const auto &P : PassNameContain) 509 if (Pass.contains(P)) 510 return true; 511 for (const auto &P : PassNameExact) 512 if (Pass == P) 513 return true; 514 return false; 515 } 516 517 // For use in NPM transition. 518 static bool shouldForceLegacyPM() { 519 for (const auto &P : PassList) { 520 StringRef Arg = P->getPassArgument(); 521 if (shouldPinPassToLegacyPM(Arg)) 522 return true; 523 } 524 return false; 525 } 526 527 //===----------------------------------------------------------------------===// 528 // main for opt 529 // 530 int main(int argc, char **argv) { 531 InitLLVM X(argc, argv); 532 533 // Enable debug stream buffering. 534 EnableDebugBuffering = true; 535 536 LLVMContext Context; 537 538 InitializeAllTargets(); 539 InitializeAllTargetMCs(); 540 InitializeAllAsmPrinters(); 541 InitializeAllAsmParsers(); 542 543 // Initialize passes 544 PassRegistry &Registry = *PassRegistry::getPassRegistry(); 545 initializeCore(Registry); 546 initializeCoroutines(Registry); 547 initializeScalarOpts(Registry); 548 initializeObjCARCOpts(Registry); 549 initializeVectorization(Registry); 550 initializeIPO(Registry); 551 initializeAnalysis(Registry); 552 initializeTransformUtils(Registry); 553 initializeInstCombine(Registry); 554 initializeAggressiveInstCombine(Registry); 555 initializeInstrumentation(Registry); 556 initializeTarget(Registry); 557 // For codegen passes, only passes that do IR to IR transformation are 558 // supported. 559 initializeExpandMemCmpPassPass(Registry); 560 initializeScalarizeMaskedMemIntrinLegacyPassPass(Registry); 561 initializeCodeGenPreparePass(Registry); 562 initializeAtomicExpandPass(Registry); 563 initializeRewriteSymbolsLegacyPassPass(Registry); 564 initializeWinEHPreparePass(Registry); 565 initializeDwarfEHPrepareLegacyPassPass(Registry); 566 initializeSafeStackLegacyPassPass(Registry); 567 initializeSjLjEHPreparePass(Registry); 568 initializePreISelIntrinsicLoweringLegacyPassPass(Registry); 569 initializeGlobalMergePass(Registry); 570 initializeIndirectBrExpandPassPass(Registry); 571 initializeInterleavedLoadCombinePass(Registry); 572 initializeInterleavedAccessPass(Registry); 573 initializeEntryExitInstrumenterPass(Registry); 574 initializePostInlineEntryExitInstrumenterPass(Registry); 575 initializeUnreachableBlockElimLegacyPassPass(Registry); 576 initializeExpandReductionsPass(Registry); 577 initializeWasmEHPreparePass(Registry); 578 initializeWriteBitcodePassPass(Registry); 579 initializeHardwareLoopsPass(Registry); 580 initializeTypePromotionPass(Registry); 581 582 #ifdef BUILD_EXAMPLES 583 initializeExampleIRTransforms(Registry); 584 #endif 585 586 cl::ParseCommandLineOptions(argc, argv, 587 "llvm .bc -> .bc modular optimizer and analysis printer\n"); 588 589 if (AnalyzeOnly && NoOutput) { 590 errs() << argv[0] << ": analyze mode conflicts with no-output mode.\n"; 591 return 1; 592 } 593 594 TimeTracerRAII TimeTracer(argv[0]); 595 596 SMDiagnostic Err; 597 598 Context.setDiscardValueNames(DiscardValueNames); 599 if (!DisableDITypeMap) 600 Context.enableDebugTypeODRUniquing(); 601 602 Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr = 603 setupLLVMOptimizationRemarks(Context, RemarksFilename, RemarksPasses, 604 RemarksFormat, RemarksWithHotness, 605 RemarksHotnessThreshold); 606 if (Error E = RemarksFileOrErr.takeError()) { 607 errs() << toString(std::move(E)) << '\n'; 608 return 1; 609 } 610 std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr); 611 612 // Load the input module... 613 auto SetDataLayout = [](StringRef) -> Optional<std::string> { 614 if (ClDataLayout.empty()) 615 return None; 616 return ClDataLayout; 617 }; 618 std::unique_ptr<Module> M; 619 if (NoUpgradeDebugInfo) 620 M = parseAssemblyFileWithIndexNoUpgradeDebugInfo( 621 InputFilename, Err, Context, nullptr, SetDataLayout) 622 .Mod; 623 else 624 M = parseIRFile(InputFilename, Err, Context, SetDataLayout); 625 626 if (!M) { 627 Err.print(argv[0], errs()); 628 return 1; 629 } 630 631 // Strip debug info before running the verifier. 632 if (StripDebug) 633 StripDebugInfo(*M); 634 635 // Erase module-level named metadata, if requested. 636 if (StripNamedMetadata) { 637 while (!M->named_metadata_empty()) { 638 NamedMDNode *NMD = &*M->named_metadata_begin(); 639 M->eraseNamedMetadata(NMD); 640 } 641 } 642 643 // If we are supposed to override the target triple or data layout, do so now. 644 if (!TargetTriple.empty()) 645 M->setTargetTriple(Triple::normalize(TargetTriple)); 646 647 // Immediately run the verifier to catch any problems before starting up the 648 // pass pipelines. Otherwise we can crash on broken code during 649 // doInitialization(). 650 if (!NoVerify && verifyModule(*M, &errs())) { 651 errs() << argv[0] << ": " << InputFilename 652 << ": error: input module is broken!\n"; 653 return 1; 654 } 655 656 // Enable testing of whole program devirtualization on this module by invoking 657 // the facility for updating public visibility to linkage unit visibility when 658 // specified by an internal option. This is normally done during LTO which is 659 // not performed via opt. 660 updateVCallVisibilityInModule(*M, 661 /* WholeProgramVisibilityEnabledInLTO */ false); 662 663 // Figure out what stream we are supposed to write to... 664 std::unique_ptr<ToolOutputFile> Out; 665 std::unique_ptr<ToolOutputFile> ThinLinkOut; 666 if (NoOutput) { 667 if (!OutputFilename.empty()) 668 errs() << "WARNING: The -o (output filename) option is ignored when\n" 669 "the --disable-output option is used.\n"; 670 } else { 671 // Default to standard output. 672 if (OutputFilename.empty()) 673 OutputFilename = "-"; 674 675 std::error_code EC; 676 sys::fs::OpenFlags Flags = OutputAssembly ? sys::fs::OF_Text 677 : sys::fs::OF_None; 678 Out.reset(new ToolOutputFile(OutputFilename, EC, Flags)); 679 if (EC) { 680 errs() << EC.message() << '\n'; 681 return 1; 682 } 683 684 if (!ThinLinkBitcodeFile.empty()) { 685 ThinLinkOut.reset( 686 new ToolOutputFile(ThinLinkBitcodeFile, EC, sys::fs::OF_None)); 687 if (EC) { 688 errs() << EC.message() << '\n'; 689 return 1; 690 } 691 } 692 } 693 694 Triple ModuleTriple(M->getTargetTriple()); 695 std::string CPUStr, FeaturesStr; 696 TargetMachine *Machine = nullptr; 697 const TargetOptions Options = 698 codegen::InitTargetOptionsFromCodeGenFlags(ModuleTriple); 699 700 if (ModuleTriple.getArch()) { 701 CPUStr = codegen::getCPUStr(); 702 FeaturesStr = codegen::getFeaturesStr(); 703 Machine = GetTargetMachine(ModuleTriple, CPUStr, FeaturesStr, Options); 704 } else if (ModuleTriple.getArchName() != "unknown" && 705 ModuleTriple.getArchName() != "") { 706 errs() << argv[0] << ": unrecognized architecture '" 707 << ModuleTriple.getArchName() << "' provided.\n"; 708 return 1; 709 } 710 711 std::unique_ptr<TargetMachine> TM(Machine); 712 713 // Override function attributes based on CPUStr, FeaturesStr, and command line 714 // flags. 715 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); 716 717 // If the output is set to be emitted to standard out, and standard out is a 718 // console, print out a warning message and refuse to do it. We don't 719 // impress anyone by spewing tons of binary goo to a terminal. 720 if (!Force && !NoOutput && !AnalyzeOnly && !OutputAssembly) 721 if (CheckBitcodeOutputToConsole(Out->os())) 722 NoOutput = true; 723 724 if (OutputThinLTOBC) 725 M->addModuleFlag(Module::Error, "EnableSplitLTOUnit", SplitLTOUnit); 726 727 // Add an appropriate TargetLibraryInfo pass for the module's triple. 728 TargetLibraryInfoImpl TLII(ModuleTriple); 729 730 // The -disable-simplify-libcalls flag actually disables all builtin optzns. 731 if (DisableSimplifyLibCalls) 732 TLII.disableAllFunctions(); 733 else { 734 // Disable individual builtin functions in TargetLibraryInfo. 735 LibFunc F; 736 for (auto &FuncName : DisableBuiltins) 737 if (TLII.getLibFunc(FuncName, F)) 738 TLII.setUnavailable(F); 739 else { 740 errs() << argv[0] << ": cannot disable nonexistent builtin function " 741 << FuncName << '\n'; 742 return 1; 743 } 744 } 745 746 // If `-passes=` is specified, use NPM. 747 // If `-enable-new-pm` is specified and there are no codegen passes, use NPM. 748 // e.g. `-enable-new-pm -sroa` will use NPM. 749 // but `-enable-new-pm -codegenprepare` will still revert to legacy PM. 750 if ((EnableNewPassManager && !shouldForceLegacyPM()) || 751 PassPipeline.getNumOccurrences() > 0) { 752 if (AnalyzeOnly) { 753 errs() << "Cannot specify -analyze under new pass manager\n"; 754 return 1; 755 } 756 if (PassPipeline.getNumOccurrences() > 0 && PassList.size() > 0) { 757 errs() 758 << "Cannot specify passes via both -foo-pass and --passes=foo-pass\n"; 759 return 1; 760 } 761 SmallVector<StringRef, 4> Passes; 762 if (OptLevelO0) 763 Passes.push_back("default<O0>"); 764 if (OptLevelO1) 765 Passes.push_back("default<O1>"); 766 if (OptLevelO2) 767 Passes.push_back("default<O2>"); 768 if (OptLevelO3) 769 Passes.push_back("default<O3>"); 770 if (OptLevelOs) 771 Passes.push_back("default<Os>"); 772 if (OptLevelOz) 773 Passes.push_back("default<Oz>"); 774 for (const auto &P : PassList) 775 Passes.push_back(P->getPassArgument()); 776 OutputKind OK = OK_NoOutput; 777 if (!NoOutput) 778 OK = OutputAssembly 779 ? OK_OutputAssembly 780 : (OutputThinLTOBC ? OK_OutputThinLTOBitcode : OK_OutputBitcode); 781 782 VerifierKind VK = VK_VerifyInAndOut; 783 if (NoVerify) 784 VK = VK_NoVerifier; 785 else if (VerifyEach) 786 VK = VK_VerifyEachPass; 787 788 // The user has asked to use the new pass manager and provided a pipeline 789 // string. Hand off the rest of the functionality to the new code for that 790 // layer. 791 return runPassPipeline(argv[0], *M, TM.get(), &TLII, Out.get(), 792 ThinLinkOut.get(), RemarksFile.get(), PassPipeline, 793 Passes, OK, VK, PreserveAssemblyUseListOrder, 794 PreserveBitcodeUseListOrder, EmitSummaryIndex, 795 EmitModuleHash, EnableDebugify, Coroutines) 796 ? 0 797 : 1; 798 } 799 800 // Create a PassManager to hold and optimize the collection of passes we are 801 // about to build. If the -debugify-each option is set, wrap each pass with 802 // the (-check)-debugify passes. 803 DebugifyCustomPassManager Passes; 804 if (DebugifyEach) 805 Passes.enableDebugifyEach(); 806 807 bool AddOneTimeDebugifyPasses = EnableDebugify && !DebugifyEach; 808 809 Passes.add(new TargetLibraryInfoWrapperPass(TLII)); 810 811 // Add internal analysis passes from the target machine. 812 Passes.add(createTargetTransformInfoWrapperPass(TM ? TM->getTargetIRAnalysis() 813 : TargetIRAnalysis())); 814 815 if (AddOneTimeDebugifyPasses) 816 Passes.add(createDebugifyModulePass()); 817 818 std::unique_ptr<legacy::FunctionPassManager> FPasses; 819 if (OptLevelO0 || OptLevelO1 || OptLevelO2 || OptLevelOs || OptLevelOz || 820 OptLevelO3) { 821 FPasses.reset(new legacy::FunctionPassManager(M.get())); 822 FPasses->add(createTargetTransformInfoWrapperPass( 823 TM ? TM->getTargetIRAnalysis() : TargetIRAnalysis())); 824 } 825 826 if (PrintBreakpoints) { 827 // Default to standard output. 828 if (!Out) { 829 if (OutputFilename.empty()) 830 OutputFilename = "-"; 831 832 std::error_code EC; 833 Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, 834 sys::fs::OF_None); 835 if (EC) { 836 errs() << EC.message() << '\n'; 837 return 1; 838 } 839 } 840 Passes.add(createBreakpointPrinter(Out->os())); 841 NoOutput = true; 842 } 843 844 if (TM) { 845 // FIXME: We should dyn_cast this when supported. 846 auto <M = static_cast<LLVMTargetMachine &>(*TM); 847 Pass *TPC = LTM.createPassConfig(Passes); 848 Passes.add(TPC); 849 } 850 851 // Create a new optimization pass for each one specified on the command line 852 for (unsigned i = 0; i < PassList.size(); ++i) { 853 if (StandardLinkOpts && 854 StandardLinkOpts.getPosition() < PassList.getPosition(i)) { 855 AddStandardLinkPasses(Passes); 856 StandardLinkOpts = false; 857 } 858 859 if (OptLevelO0 && OptLevelO0.getPosition() < PassList.getPosition(i)) { 860 AddOptimizationPasses(Passes, *FPasses, TM.get(), 0, 0); 861 OptLevelO0 = false; 862 } 863 864 if (OptLevelO1 && OptLevelO1.getPosition() < PassList.getPosition(i)) { 865 AddOptimizationPasses(Passes, *FPasses, TM.get(), 1, 0); 866 OptLevelO1 = false; 867 } 868 869 if (OptLevelO2 && OptLevelO2.getPosition() < PassList.getPosition(i)) { 870 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 0); 871 OptLevelO2 = false; 872 } 873 874 if (OptLevelOs && OptLevelOs.getPosition() < PassList.getPosition(i)) { 875 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 1); 876 OptLevelOs = false; 877 } 878 879 if (OptLevelOz && OptLevelOz.getPosition() < PassList.getPosition(i)) { 880 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 2); 881 OptLevelOz = false; 882 } 883 884 if (OptLevelO3 && OptLevelO3.getPosition() < PassList.getPosition(i)) { 885 AddOptimizationPasses(Passes, *FPasses, TM.get(), 3, 0); 886 OptLevelO3 = false; 887 } 888 889 const PassInfo *PassInf = PassList[i]; 890 Pass *P = nullptr; 891 if (PassInf->getNormalCtor()) 892 P = PassInf->getNormalCtor()(); 893 else 894 errs() << argv[0] << ": cannot create pass: " 895 << PassInf->getPassName() << "\n"; 896 if (P) { 897 PassKind Kind = P->getPassKind(); 898 addPass(Passes, P); 899 900 if (AnalyzeOnly) { 901 switch (Kind) { 902 case PT_Region: 903 Passes.add(createRegionPassPrinter(PassInf, Out->os())); 904 break; 905 case PT_Loop: 906 Passes.add(createLoopPassPrinter(PassInf, Out->os())); 907 break; 908 case PT_Function: 909 Passes.add(createFunctionPassPrinter(PassInf, Out->os())); 910 break; 911 case PT_CallGraphSCC: 912 Passes.add(createCallGraphPassPrinter(PassInf, Out->os())); 913 break; 914 default: 915 Passes.add(createModulePassPrinter(PassInf, Out->os())); 916 break; 917 } 918 } 919 } 920 921 if (PrintEachXForm) 922 Passes.add( 923 createPrintModulePass(errs(), "", PreserveAssemblyUseListOrder)); 924 } 925 926 if (StandardLinkOpts) { 927 AddStandardLinkPasses(Passes); 928 StandardLinkOpts = false; 929 } 930 931 if (OptLevelO0) 932 AddOptimizationPasses(Passes, *FPasses, TM.get(), 0, 0); 933 934 if (OptLevelO1) 935 AddOptimizationPasses(Passes, *FPasses, TM.get(), 1, 0); 936 937 if (OptLevelO2) 938 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 0); 939 940 if (OptLevelOs) 941 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 1); 942 943 if (OptLevelOz) 944 AddOptimizationPasses(Passes, *FPasses, TM.get(), 2, 2); 945 946 if (OptLevelO3) 947 AddOptimizationPasses(Passes, *FPasses, TM.get(), 3, 0); 948 949 if (FPasses) { 950 FPasses->doInitialization(); 951 for (Function &F : *M) 952 FPasses->run(F); 953 FPasses->doFinalization(); 954 } 955 956 // Check that the module is well formed on completion of optimization 957 if (!NoVerify && !VerifyEach) 958 Passes.add(createVerifierPass()); 959 960 if (AddOneTimeDebugifyPasses) 961 Passes.add(createCheckDebugifyModulePass(false)); 962 963 // In run twice mode, we want to make sure the output is bit-by-bit 964 // equivalent if we run the pass manager again, so setup two buffers and 965 // a stream to write to them. Note that llc does something similar and it 966 // may be worth to abstract this out in the future. 967 SmallVector<char, 0> Buffer; 968 SmallVector<char, 0> FirstRunBuffer; 969 std::unique_ptr<raw_svector_ostream> BOS; 970 raw_ostream *OS = nullptr; 971 972 const bool ShouldEmitOutput = !NoOutput && !AnalyzeOnly; 973 974 // Write bitcode or assembly to the output as the last step... 975 if (ShouldEmitOutput || RunTwice) { 976 assert(Out); 977 OS = &Out->os(); 978 if (RunTwice) { 979 BOS = std::make_unique<raw_svector_ostream>(Buffer); 980 OS = BOS.get(); 981 } 982 if (OutputAssembly) { 983 if (EmitSummaryIndex) 984 report_fatal_error("Text output is incompatible with -module-summary"); 985 if (EmitModuleHash) 986 report_fatal_error("Text output is incompatible with -module-hash"); 987 Passes.add(createPrintModulePass(*OS, "", PreserveAssemblyUseListOrder)); 988 } else if (OutputThinLTOBC) 989 Passes.add(createWriteThinLTOBitcodePass( 990 *OS, ThinLinkOut ? &ThinLinkOut->os() : nullptr)); 991 else 992 Passes.add(createBitcodeWriterPass(*OS, PreserveBitcodeUseListOrder, 993 EmitSummaryIndex, EmitModuleHash)); 994 } 995 996 // Before executing passes, print the final values of the LLVM options. 997 cl::PrintOptionValues(); 998 999 if (!RunTwice) { 1000 // Now that we have all of the passes ready, run them. 1001 Passes.run(*M); 1002 } else { 1003 // If requested, run all passes twice with the same pass manager to catch 1004 // bugs caused by persistent state in the passes. 1005 std::unique_ptr<Module> M2(CloneModule(*M)); 1006 // Run all passes on the original module first, so the second run processes 1007 // the clone to catch CloneModule bugs. 1008 Passes.run(*M); 1009 FirstRunBuffer = Buffer; 1010 Buffer.clear(); 1011 1012 Passes.run(*M2); 1013 1014 // Compare the two outputs and make sure they're the same 1015 assert(Out); 1016 if (Buffer.size() != FirstRunBuffer.size() || 1017 (memcmp(Buffer.data(), FirstRunBuffer.data(), Buffer.size()) != 0)) { 1018 errs() 1019 << "Running the pass manager twice changed the output.\n" 1020 "Writing the result of the second run to the specified output.\n" 1021 "To generate the one-run comparison binary, just run without\n" 1022 "the compile-twice option\n"; 1023 if (ShouldEmitOutput) { 1024 Out->os() << BOS->str(); 1025 Out->keep(); 1026 } 1027 if (RemarksFile) 1028 RemarksFile->keep(); 1029 return 1; 1030 } 1031 if (ShouldEmitOutput) 1032 Out->os() << BOS->str(); 1033 } 1034 1035 if (DebugifyEach && !DebugifyExport.empty()) 1036 exportDebugifyStats(DebugifyExport, Passes.getDebugifyStatsMap()); 1037 1038 // Declare success. 1039 if (!NoOutput || PrintBreakpoints) 1040 Out->keep(); 1041 1042 if (RemarksFile) 1043 RemarksFile->keep(); 1044 1045 if (ThinLinkOut) 1046 ThinLinkOut->keep(); 1047 1048 return 0; 1049 } 1050