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