1 //===- opt.cpp - The LLVM Modular Optimizer -------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // Optimizations may be specified an arbitrary number of times on the command 11 // line, They are run in the order specified. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "BreakpointPrinter.h" 16 #include "NewPMDriver.h" 17 #include "PassPrinters.h" 18 #include "llvm/ADT/Triple.h" 19 #include "llvm/Analysis/CallGraph.h" 20 #include "llvm/Analysis/CallGraphSCCPass.h" 21 #include "llvm/Analysis/LoopPass.h" 22 #include "llvm/Analysis/RegionPass.h" 23 #include "llvm/Analysis/TargetLibraryInfo.h" 24 #include "llvm/Analysis/TargetTransformInfo.h" 25 #include "llvm/Bitcode/BitcodeWriterPass.h" 26 #include "llvm/CodeGen/CommandFlags.h" 27 #include "llvm/IR/DataLayout.h" 28 #include "llvm/IR/DebugInfo.h" 29 #include "llvm/IR/IRPrintingPasses.h" 30 #include "llvm/IR/LLVMContext.h" 31 #include "llvm/IR/LegacyPassNameParser.h" 32 #include "llvm/IR/Module.h" 33 #include "llvm/IR/Verifier.h" 34 #include "llvm/IRReader/IRReader.h" 35 #include "llvm/InitializePasses.h" 36 #include "llvm/LinkAllIR.h" 37 #include "llvm/LinkAllPasses.h" 38 #include "llvm/MC/SubtargetFeature.h" 39 #include "llvm/IR/LegacyPassManager.h" 40 #include "llvm/Support/Debug.h" 41 #include "llvm/Support/FileSystem.h" 42 #include "llvm/Support/Host.h" 43 #include "llvm/Support/ManagedStatic.h" 44 #include "llvm/Support/PluginLoader.h" 45 #include "llvm/Support/PrettyStackTrace.h" 46 #include "llvm/Support/Signals.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/Target/TargetMachine.h" 53 #include "llvm/Transforms/IPO/PassManagerBuilder.h" 54 #include <algorithm> 55 #include <memory> 56 using namespace llvm; 57 using namespace opt_tool; 58 59 // The OptimizationList is automatically populated with registered Passes by the 60 // PassNameParser. 61 // 62 static cl::list<const PassInfo*, bool, PassNameParser> 63 PassList(cl::desc("Optimizations available:")); 64 65 // This flag specifies a textual description of the optimization pass pipeline 66 // to run over the module. This flag switches opt to use the new pass manager 67 // infrastructure, completely disabling all of the flags specific to the old 68 // pass management. 69 static cl::opt<std::string> PassPipeline( 70 "passes", 71 cl::desc("A textual description of the pass pipeline for optimizing"), 72 cl::Hidden); 73 74 // Other command line options... 75 // 76 static cl::opt<std::string> 77 InputFilename(cl::Positional, cl::desc("<input bitcode file>"), 78 cl::init("-"), cl::value_desc("filename")); 79 80 static cl::opt<std::string> 81 OutputFilename("o", cl::desc("Override output filename"), 82 cl::value_desc("filename")); 83 84 static cl::opt<bool> 85 Force("f", cl::desc("Enable binary output on terminals")); 86 87 static cl::opt<bool> 88 PrintEachXForm("p", cl::desc("Print module after each transformation")); 89 90 static cl::opt<bool> 91 NoOutput("disable-output", 92 cl::desc("Do not write result bitcode file"), cl::Hidden); 93 94 static cl::opt<bool> 95 OutputAssembly("S", cl::desc("Write output as LLVM assembly")); 96 97 static cl::opt<bool> 98 NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden); 99 100 static cl::opt<bool> 101 VerifyEach("verify-each", cl::desc("Verify after each transform")); 102 103 static cl::opt<bool> 104 StripDebug("strip-debug", 105 cl::desc("Strip debugger symbol info from translation unit")); 106 107 static cl::opt<bool> 108 DisableInline("disable-inlining", cl::desc("Do not run the inliner pass")); 109 110 static cl::opt<bool> 111 DisableOptimizations("disable-opt", 112 cl::desc("Do not run any optimization passes")); 113 114 static cl::opt<bool> 115 StandardLinkOpts("std-link-opts", 116 cl::desc("Include the standard link time optimizations")); 117 118 static cl::opt<bool> 119 OptLevelO1("O1", 120 cl::desc("Optimization level 1. Similar to clang -O1")); 121 122 static cl::opt<bool> 123 OptLevelO2("O2", 124 cl::desc("Optimization level 2. Similar to clang -O2")); 125 126 static cl::opt<bool> 127 OptLevelOs("Os", 128 cl::desc("Like -O2 with extra optimizations for size. Similar to clang -Os")); 129 130 static cl::opt<bool> 131 OptLevelOz("Oz", 132 cl::desc("Like -Os but reduces code size further. Similar to clang -Oz")); 133 134 static cl::opt<bool> 135 OptLevelO3("O3", 136 cl::desc("Optimization level 3. Similar to clang -O3")); 137 138 static cl::opt<std::string> 139 TargetTriple("mtriple", cl::desc("Override target triple for module")); 140 141 static cl::opt<bool> 142 UnitAtATime("funit-at-a-time", 143 cl::desc("Enable IPO. This corresponds to gcc's -funit-at-a-time"), 144 cl::init(true)); 145 146 static cl::opt<bool> 147 DisableLoopUnrolling("disable-loop-unrolling", 148 cl::desc("Disable loop unrolling in all relevant passes"), 149 cl::init(false)); 150 static cl::opt<bool> 151 DisableLoopVectorization("disable-loop-vectorization", 152 cl::desc("Disable the loop vectorization pass"), 153 cl::init(false)); 154 155 static cl::opt<bool> 156 DisableSLPVectorization("disable-slp-vectorization", 157 cl::desc("Disable the slp vectorization pass"), 158 cl::init(false)); 159 160 161 static cl::opt<bool> 162 DisableSimplifyLibCalls("disable-simplify-libcalls", 163 cl::desc("Disable simplify-libcalls")); 164 165 static cl::opt<bool> 166 Quiet("q", cl::desc("Obsolete option"), cl::Hidden); 167 168 static cl::alias 169 QuietA("quiet", cl::desc("Alias for -q"), cl::aliasopt(Quiet)); 170 171 static cl::opt<bool> 172 AnalyzeOnly("analyze", cl::desc("Only perform analysis, no optimization")); 173 174 static cl::opt<bool> 175 PrintBreakpoints("print-breakpoints-for-testing", 176 cl::desc("Print select breakpoints location for testing")); 177 178 static cl::opt<std::string> 179 DefaultDataLayout("default-data-layout", 180 cl::desc("data layout string to use if not specified by module"), 181 cl::value_desc("layout-string"), cl::init("")); 182 183 static cl::opt<bool> PreserveBitcodeUseListOrder( 184 "preserve-bc-uselistorder", 185 cl::desc("Preserve use-list order when writing LLVM bitcode."), 186 cl::init(true), cl::Hidden); 187 188 static cl::opt<bool> PreserveAssemblyUseListOrder( 189 "preserve-ll-uselistorder", 190 cl::desc("Preserve use-list order when writing LLVM assembly."), 191 cl::init(false), cl::Hidden); 192 193 static inline void addPass(legacy::PassManagerBase &PM, Pass *P) { 194 // Add the pass to the pass manager... 195 PM.add(P); 196 197 // If we are verifying all of the intermediate steps, add the verifier... 198 if (VerifyEach) 199 PM.add(createVerifierPass()); 200 } 201 202 /// This routine adds optimization passes based on selected optimization level, 203 /// OptLevel. 204 /// 205 /// OptLevel - Optimization Level 206 static void AddOptimizationPasses(legacy::PassManagerBase &MPM, 207 legacy::FunctionPassManager &FPM, 208 unsigned OptLevel, unsigned SizeLevel) { 209 FPM.add(createVerifierPass()); // Verify that input is correct 210 211 PassManagerBuilder Builder; 212 Builder.OptLevel = OptLevel; 213 Builder.SizeLevel = SizeLevel; 214 215 if (DisableInline) { 216 // No inlining pass 217 } else if (OptLevel > 1) { 218 Builder.Inliner = createFunctionInliningPass(OptLevel, SizeLevel); 219 } else { 220 Builder.Inliner = createAlwaysInlinerPass(); 221 } 222 Builder.DisableUnitAtATime = !UnitAtATime; 223 Builder.DisableUnrollLoops = (DisableLoopUnrolling.getNumOccurrences() > 0) ? 224 DisableLoopUnrolling : OptLevel == 0; 225 226 // This is final, unless there is a #pragma vectorize enable 227 if (DisableLoopVectorization) 228 Builder.LoopVectorize = false; 229 // If option wasn't forced via cmd line (-vectorize-loops, -loop-vectorize) 230 else if (!Builder.LoopVectorize) 231 Builder.LoopVectorize = OptLevel > 1 && SizeLevel < 2; 232 233 // When #pragma vectorize is on for SLP, do the same as above 234 Builder.SLPVectorize = 235 DisableSLPVectorization ? false : OptLevel > 1 && SizeLevel < 2; 236 237 Builder.populateFunctionPassManager(FPM); 238 Builder.populateModulePassManager(MPM); 239 } 240 241 static void AddStandardLinkPasses(legacy::PassManagerBase &PM) { 242 PassManagerBuilder Builder; 243 Builder.VerifyInput = true; 244 if (DisableOptimizations) 245 Builder.OptLevel = 0; 246 247 if (!DisableInline) 248 Builder.Inliner = createFunctionInliningPass(); 249 Builder.populateLTOPassManager(PM); 250 } 251 252 //===----------------------------------------------------------------------===// 253 // CodeGen-related helper functions. 254 // 255 256 static CodeGenOpt::Level GetCodeGenOptLevel() { 257 if (OptLevelO1) 258 return CodeGenOpt::Less; 259 if (OptLevelO2) 260 return CodeGenOpt::Default; 261 if (OptLevelO3) 262 return CodeGenOpt::Aggressive; 263 return CodeGenOpt::None; 264 } 265 266 // Returns the TargetMachine instance or zero if no triple is provided. 267 static TargetMachine* GetTargetMachine(Triple TheTriple, StringRef CPUStr, 268 StringRef FeaturesStr, 269 const TargetOptions &Options) { 270 std::string Error; 271 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple, 272 Error); 273 // Some modules don't specify a triple, and this is okay. 274 if (!TheTarget) { 275 return nullptr; 276 } 277 278 return TheTarget->createTargetMachine(TheTriple.getTriple(), 279 CPUStr, FeaturesStr, Options, 280 RelocModel, CMModel, 281 GetCodeGenOptLevel()); 282 } 283 284 #ifdef LINK_POLLY_INTO_TOOLS 285 namespace polly { 286 void initializePollyPasses(llvm::PassRegistry &Registry); 287 } 288 #endif 289 290 //===----------------------------------------------------------------------===// 291 // main for opt 292 // 293 int main(int argc, char **argv) { 294 sys::PrintStackTraceOnErrorSignal(); 295 llvm::PrettyStackTraceProgram X(argc, argv); 296 297 // Enable debug stream buffering. 298 EnableDebugBuffering = true; 299 300 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. 301 LLVMContext &Context = getGlobalContext(); 302 303 InitializeAllTargets(); 304 InitializeAllTargetMCs(); 305 InitializeAllAsmPrinters(); 306 307 // Initialize passes 308 PassRegistry &Registry = *PassRegistry::getPassRegistry(); 309 initializeCore(Registry); 310 initializeScalarOpts(Registry); 311 initializeObjCARCOpts(Registry); 312 initializeVectorization(Registry); 313 initializeIPO(Registry); 314 initializeAnalysis(Registry); 315 initializeTransformUtils(Registry); 316 initializeInstCombine(Registry); 317 initializeInstrumentation(Registry); 318 initializeTarget(Registry); 319 // For codegen passes, only passes that do IR to IR transformation are 320 // supported. 321 initializeCodeGenPreparePass(Registry); 322 initializeAtomicExpandPass(Registry); 323 initializeRewriteSymbolsPass(Registry); 324 initializeWinEHPreparePass(Registry); 325 initializeDwarfEHPreparePass(Registry); 326 initializeSjLjEHPreparePass(Registry); 327 328 #ifdef LINK_POLLY_INTO_TOOLS 329 polly::initializePollyPasses(Registry); 330 #endif 331 332 cl::ParseCommandLineOptions(argc, argv, 333 "llvm .bc -> .bc modular optimizer and analysis printer\n"); 334 335 if (AnalyzeOnly && NoOutput) { 336 errs() << argv[0] << ": analyze mode conflicts with no-output mode.\n"; 337 return 1; 338 } 339 340 SMDiagnostic Err; 341 342 // Load the input module... 343 std::unique_ptr<Module> M = parseIRFile(InputFilename, Err, Context); 344 345 if (!M) { 346 Err.print(argv[0], errs()); 347 return 1; 348 } 349 350 // Strip debug info before running the verifier. 351 if (StripDebug) 352 StripDebugInfo(*M); 353 354 // Immediately run the verifier to catch any problems before starting up the 355 // pass pipelines. Otherwise we can crash on broken code during 356 // doInitialization(). 357 if (!NoVerify && verifyModule(*M, &errs())) { 358 errs() << argv[0] << ": " << InputFilename 359 << ": error: input module is broken!\n"; 360 return 1; 361 } 362 363 // If we are supposed to override the target triple, do so now. 364 if (!TargetTriple.empty()) 365 M->setTargetTriple(Triple::normalize(TargetTriple)); 366 367 // Figure out what stream we are supposed to write to... 368 std::unique_ptr<tool_output_file> Out; 369 if (NoOutput) { 370 if (!OutputFilename.empty()) 371 errs() << "WARNING: The -o (output filename) option is ignored when\n" 372 "the --disable-output option is used.\n"; 373 } else { 374 // Default to standard output. 375 if (OutputFilename.empty()) 376 OutputFilename = "-"; 377 378 std::error_code EC; 379 Out.reset(new tool_output_file(OutputFilename, EC, sys::fs::F_None)); 380 if (EC) { 381 errs() << EC.message() << '\n'; 382 return 1; 383 } 384 } 385 386 Triple ModuleTriple(M->getTargetTriple()); 387 std::string CPUStr, FeaturesStr; 388 TargetMachine *Machine = nullptr; 389 const TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); 390 391 if (ModuleTriple.getArch()) { 392 CPUStr = getCPUStr(); 393 FeaturesStr = getFeaturesStr(); 394 Machine = GetTargetMachine(ModuleTriple, CPUStr, FeaturesStr, Options); 395 } 396 397 std::unique_ptr<TargetMachine> TM(Machine); 398 399 // Override function attributes based on CPUStr, FeaturesStr, and command line 400 // flags. 401 setFunctionAttributes(CPUStr, FeaturesStr, *M); 402 403 // If the output is set to be emitted to standard out, and standard out is a 404 // console, print out a warning message and refuse to do it. We don't 405 // impress anyone by spewing tons of binary goo to a terminal. 406 if (!Force && !NoOutput && !AnalyzeOnly && !OutputAssembly) 407 if (CheckBitcodeOutputToConsole(Out->os(), !Quiet)) 408 NoOutput = true; 409 410 if (PassPipeline.getNumOccurrences() > 0) { 411 OutputKind OK = OK_NoOutput; 412 if (!NoOutput) 413 OK = OutputAssembly ? OK_OutputAssembly : OK_OutputBitcode; 414 415 VerifierKind VK = VK_VerifyInAndOut; 416 if (NoVerify) 417 VK = VK_NoVerifier; 418 else if (VerifyEach) 419 VK = VK_VerifyEachPass; 420 421 // The user has asked to use the new pass manager and provided a pipeline 422 // string. Hand off the rest of the functionality to the new code for that 423 // layer. 424 return runPassPipeline(argv[0], Context, *M, TM.get(), Out.get(), 425 PassPipeline, OK, VK, PreserveAssemblyUseListOrder, 426 PreserveBitcodeUseListOrder) 427 ? 0 428 : 1; 429 } 430 431 // Create a PassManager to hold and optimize the collection of passes we are 432 // about to build. 433 // 434 legacy::PassManager Passes; 435 436 // Add an appropriate TargetLibraryInfo pass for the module's triple. 437 TargetLibraryInfoImpl TLII(ModuleTriple); 438 439 // The -disable-simplify-libcalls flag actually disables all builtin optzns. 440 if (DisableSimplifyLibCalls) 441 TLII.disableAllFunctions(); 442 Passes.add(new TargetLibraryInfoWrapperPass(TLII)); 443 444 // Add an appropriate DataLayout instance for this module. 445 const DataLayout &DL = M->getDataLayout(); 446 if (DL.isDefault() && !DefaultDataLayout.empty()) { 447 M->setDataLayout(DefaultDataLayout); 448 } 449 450 // Add internal analysis passes from the target machine. 451 Passes.add(createTargetTransformInfoWrapperPass(TM ? TM->getTargetIRAnalysis() 452 : TargetIRAnalysis())); 453 454 std::unique_ptr<legacy::FunctionPassManager> FPasses; 455 if (OptLevelO1 || OptLevelO2 || OptLevelOs || OptLevelOz || OptLevelO3) { 456 FPasses.reset(new legacy::FunctionPassManager(M.get())); 457 FPasses->add(createTargetTransformInfoWrapperPass( 458 TM ? TM->getTargetIRAnalysis() : TargetIRAnalysis())); 459 } 460 461 if (PrintBreakpoints) { 462 // Default to standard output. 463 if (!Out) { 464 if (OutputFilename.empty()) 465 OutputFilename = "-"; 466 467 std::error_code EC; 468 Out = llvm::make_unique<tool_output_file>(OutputFilename, EC, 469 sys::fs::F_None); 470 if (EC) { 471 errs() << EC.message() << '\n'; 472 return 1; 473 } 474 } 475 Passes.add(createBreakpointPrinter(Out->os())); 476 NoOutput = true; 477 } 478 479 // Create a new optimization pass for each one specified on the command line 480 for (unsigned i = 0; i < PassList.size(); ++i) { 481 if (StandardLinkOpts && 482 StandardLinkOpts.getPosition() < PassList.getPosition(i)) { 483 AddStandardLinkPasses(Passes); 484 StandardLinkOpts = false; 485 } 486 487 if (OptLevelO1 && OptLevelO1.getPosition() < PassList.getPosition(i)) { 488 AddOptimizationPasses(Passes, *FPasses, 1, 0); 489 OptLevelO1 = false; 490 } 491 492 if (OptLevelO2 && OptLevelO2.getPosition() < PassList.getPosition(i)) { 493 AddOptimizationPasses(Passes, *FPasses, 2, 0); 494 OptLevelO2 = false; 495 } 496 497 if (OptLevelOs && OptLevelOs.getPosition() < PassList.getPosition(i)) { 498 AddOptimizationPasses(Passes, *FPasses, 2, 1); 499 OptLevelOs = false; 500 } 501 502 if (OptLevelOz && OptLevelOz.getPosition() < PassList.getPosition(i)) { 503 AddOptimizationPasses(Passes, *FPasses, 2, 2); 504 OptLevelOz = false; 505 } 506 507 if (OptLevelO3 && OptLevelO3.getPosition() < PassList.getPosition(i)) { 508 AddOptimizationPasses(Passes, *FPasses, 3, 0); 509 OptLevelO3 = false; 510 } 511 512 const PassInfo *PassInf = PassList[i]; 513 Pass *P = nullptr; 514 if (PassInf->getTargetMachineCtor()) 515 P = PassInf->getTargetMachineCtor()(TM.get()); 516 else if (PassInf->getNormalCtor()) 517 P = PassInf->getNormalCtor()(); 518 else 519 errs() << argv[0] << ": cannot create pass: " 520 << PassInf->getPassName() << "\n"; 521 if (P) { 522 PassKind Kind = P->getPassKind(); 523 addPass(Passes, P); 524 525 if (AnalyzeOnly) { 526 switch (Kind) { 527 case PT_BasicBlock: 528 Passes.add(createBasicBlockPassPrinter(PassInf, Out->os(), Quiet)); 529 break; 530 case PT_Region: 531 Passes.add(createRegionPassPrinter(PassInf, Out->os(), Quiet)); 532 break; 533 case PT_Loop: 534 Passes.add(createLoopPassPrinter(PassInf, Out->os(), Quiet)); 535 break; 536 case PT_Function: 537 Passes.add(createFunctionPassPrinter(PassInf, Out->os(), Quiet)); 538 break; 539 case PT_CallGraphSCC: 540 Passes.add(createCallGraphPassPrinter(PassInf, Out->os(), Quiet)); 541 break; 542 default: 543 Passes.add(createModulePassPrinter(PassInf, Out->os(), Quiet)); 544 break; 545 } 546 } 547 } 548 549 if (PrintEachXForm) 550 Passes.add( 551 createPrintModulePass(errs(), "", PreserveAssemblyUseListOrder)); 552 } 553 554 if (StandardLinkOpts) { 555 AddStandardLinkPasses(Passes); 556 StandardLinkOpts = false; 557 } 558 559 if (OptLevelO1) 560 AddOptimizationPasses(Passes, *FPasses, 1, 0); 561 562 if (OptLevelO2) 563 AddOptimizationPasses(Passes, *FPasses, 2, 0); 564 565 if (OptLevelOs) 566 AddOptimizationPasses(Passes, *FPasses, 2, 1); 567 568 if (OptLevelOz) 569 AddOptimizationPasses(Passes, *FPasses, 2, 2); 570 571 if (OptLevelO3) 572 AddOptimizationPasses(Passes, *FPasses, 3, 0); 573 574 if (OptLevelO1 || OptLevelO2 || OptLevelOs || OptLevelOz || OptLevelO3) { 575 FPasses->doInitialization(); 576 for (Function &F : *M) 577 FPasses->run(F); 578 FPasses->doFinalization(); 579 } 580 581 // Check that the module is well formed on completion of optimization 582 if (!NoVerify && !VerifyEach) 583 Passes.add(createVerifierPass()); 584 585 // Write bitcode or assembly to the output as the last step... 586 if (!NoOutput && !AnalyzeOnly) { 587 if (OutputAssembly) 588 Passes.add( 589 createPrintModulePass(Out->os(), "", PreserveAssemblyUseListOrder)); 590 else 591 Passes.add( 592 createBitcodeWriterPass(Out->os(), PreserveBitcodeUseListOrder)); 593 } 594 595 // Before executing passes, print the final values of the LLVM options. 596 cl::PrintOptionValues(); 597 598 // Now that we have all of the passes ready, run them. 599 Passes.run(*M); 600 601 // Declare success. 602 if (!NoOutput || PrintBreakpoints) 603 Out->keep(); 604 605 return 0; 606 } 607