1 //===- PassManagerBuilder.cpp - Build Standard Pass -----------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file defines the PassManagerBuilder class, which is used to set up a 11 // "standard" optimization sequence suitable for languages like C and C++. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "llvm/Transforms/IPO/PassManagerBuilder.h" 16 #include "llvm-c/Transforms/PassManagerBuilder.h" 17 #include "llvm/ADT/SmallVector.h" 18 #include "llvm/Analysis/BasicAliasAnalysis.h" 19 #include "llvm/Analysis/CFLAndersAliasAnalysis.h" 20 #include "llvm/Analysis/CFLSteensAliasAnalysis.h" 21 #include "llvm/Analysis/GlobalsModRef.h" 22 #include "llvm/Analysis/InlineCost.h" 23 #include "llvm/Analysis/Passes.h" 24 #include "llvm/Analysis/ScopedNoAliasAA.h" 25 #include "llvm/Analysis/TargetLibraryInfo.h" 26 #include "llvm/Analysis/TypeBasedAliasAnalysis.h" 27 #include "llvm/IR/DataLayout.h" 28 #include "llvm/IR/LegacyPassManager.h" 29 #include "llvm/IR/Verifier.h" 30 #include "llvm/Support/CommandLine.h" 31 #include "llvm/Support/ManagedStatic.h" 32 #include "llvm/Transforms/IPO.h" 33 #include "llvm/Transforms/IPO/ForceFunctionAttrs.h" 34 #include "llvm/Transforms/IPO/FunctionAttrs.h" 35 #include "llvm/Transforms/IPO/InferFunctionAttrs.h" 36 #include "llvm/Transforms/Instrumentation.h" 37 #include "llvm/Transforms/Scalar.h" 38 #include "llvm/Transforms/Scalar/GVN.h" 39 #include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h" 40 #include "llvm/Transforms/Vectorize.h" 41 42 using namespace llvm; 43 44 static cl::opt<bool> 45 RunPartialInlining("enable-partial-inlining", cl::init(false), cl::Hidden, 46 cl::ZeroOrMore, cl::desc("Run Partial inlinining pass")); 47 48 static cl::opt<bool> 49 RunLoopVectorization("vectorize-loops", cl::Hidden, 50 cl::desc("Run the Loop vectorization passes")); 51 52 static cl::opt<bool> 53 RunSLPVectorization("vectorize-slp", cl::Hidden, 54 cl::desc("Run the SLP vectorization passes")); 55 56 static cl::opt<bool> 57 UseGVNAfterVectorization("use-gvn-after-vectorization", 58 cl::init(false), cl::Hidden, 59 cl::desc("Run GVN instead of Early CSE after vectorization passes")); 60 61 static cl::opt<bool> ExtraVectorizerPasses( 62 "extra-vectorizer-passes", cl::init(false), cl::Hidden, 63 cl::desc("Run cleanup optimization passes after vectorization.")); 64 65 static cl::opt<bool> 66 RunLoopRerolling("reroll-loops", cl::Hidden, 67 cl::desc("Run the loop rerolling pass")); 68 69 static cl::opt<bool> RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden, 70 cl::desc("Run the NewGVN pass")); 71 72 static cl::opt<bool> 73 RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization", 74 cl::init(true), cl::Hidden, 75 cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop " 76 "vectorizer instead of before")); 77 78 // Experimental option to use CFL-AA 79 enum class CFLAAType { None, Steensgaard, Andersen, Both }; 80 static cl::opt<CFLAAType> 81 UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden, 82 cl::desc("Enable the new, experimental CFL alias analysis"), 83 cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"), 84 clEnumValN(CFLAAType::Steensgaard, "steens", 85 "Enable unification-based CFL-AA"), 86 clEnumValN(CFLAAType::Andersen, "anders", 87 "Enable inclusion-based CFL-AA"), 88 clEnumValN(CFLAAType::Both, "both", 89 "Enable both variants of CFL-AA"))); 90 91 static cl::opt<bool> EnableLoopInterchange( 92 "enable-loopinterchange", cl::init(false), cl::Hidden, 93 cl::desc("Enable the new, experimental LoopInterchange Pass")); 94 95 static cl::opt<bool> 96 EnablePrepareForThinLTO("prepare-for-thinlto", cl::init(false), cl::Hidden, 97 cl::desc("Enable preparation for ThinLTO.")); 98 99 static cl::opt<bool> RunPGOInstrGen( 100 "profile-generate", cl::init(false), cl::Hidden, 101 cl::desc("Enable PGO instrumentation.")); 102 103 static cl::opt<std::string> 104 PGOOutputFile("profile-generate-file", cl::init(""), cl::Hidden, 105 cl::desc("Specify the path of profile data file.")); 106 107 static cl::opt<std::string> RunPGOInstrUse( 108 "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"), 109 cl::desc("Enable use phase of PGO instrumentation and specify the path " 110 "of profile data file")); 111 112 static cl::opt<bool> UseLoopVersioningLICM( 113 "enable-loop-versioning-licm", cl::init(false), cl::Hidden, 114 cl::desc("Enable the experimental Loop Versioning LICM pass")); 115 116 static cl::opt<bool> 117 DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden, 118 cl::desc("Disable pre-instrumentation inliner")); 119 120 static cl::opt<int> PreInlineThreshold( 121 "preinline-threshold", cl::Hidden, cl::init(75), cl::ZeroOrMore, 122 cl::desc("Control the amount of inlining in pre-instrumentation inliner " 123 "(default = 75)")); 124 125 static cl::opt<bool> EnableEarlyCSEMemSSA( 126 "enable-earlycse-memssa", cl::init(true), cl::Hidden, 127 cl::desc("Enable the EarlyCSE w/ MemorySSA pass (default = on)")); 128 129 static cl::opt<bool> EnableGVNHoist( 130 "enable-gvn-hoist", cl::init(false), cl::Hidden, 131 cl::desc("Enable the GVN hoisting pass (default = off)")); 132 133 static cl::opt<bool> 134 DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false), 135 cl::Hidden, 136 cl::desc("Disable shrink-wrap library calls")); 137 138 static cl::opt<bool> 139 EnableSimpleLoopUnswitch("enable-simple-loop-unswitch", cl::init(false), 140 cl::Hidden, 141 cl::desc("Enable the simple loop unswitch pass.")); 142 143 static cl::opt<bool> EnableGVNSink( 144 "enable-gvn-sink", cl::init(false), cl::Hidden, 145 cl::desc("Enable the GVN sinking pass (default = off)")); 146 147 PassManagerBuilder::PassManagerBuilder() { 148 OptLevel = 2; 149 SizeLevel = 0; 150 LibraryInfo = nullptr; 151 Inliner = nullptr; 152 DisableUnrollLoops = false; 153 SLPVectorize = RunSLPVectorization; 154 LoopVectorize = RunLoopVectorization; 155 RerollLoops = RunLoopRerolling; 156 NewGVN = RunNewGVN; 157 DisableGVNLoadPRE = false; 158 VerifyInput = false; 159 VerifyOutput = false; 160 MergeFunctions = false; 161 PrepareForLTO = false; 162 EnablePGOInstrGen = RunPGOInstrGen; 163 PGOInstrGen = PGOOutputFile; 164 PGOInstrUse = RunPGOInstrUse; 165 PrepareForThinLTO = EnablePrepareForThinLTO; 166 PerformThinLTO = false; 167 DivergentTarget = false; 168 } 169 170 PassManagerBuilder::~PassManagerBuilder() { 171 delete LibraryInfo; 172 delete Inliner; 173 } 174 175 /// Set of global extensions, automatically added as part of the standard set. 176 static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy, 177 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions; 178 179 /// Check if GlobalExtensions is constructed and not empty. 180 /// Since GlobalExtensions is a managed static, calling 'empty()' will trigger 181 /// the construction of the object. 182 static bool GlobalExtensionsNotEmpty() { 183 return GlobalExtensions.isConstructed() && !GlobalExtensions->empty(); 184 } 185 186 void PassManagerBuilder::addGlobalExtension( 187 PassManagerBuilder::ExtensionPointTy Ty, 188 PassManagerBuilder::ExtensionFn Fn) { 189 GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn))); 190 } 191 192 void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) { 193 Extensions.push_back(std::make_pair(Ty, std::move(Fn))); 194 } 195 196 void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy, 197 legacy::PassManagerBase &PM) const { 198 if (GlobalExtensionsNotEmpty()) { 199 for (auto &Ext : *GlobalExtensions) { 200 if (Ext.first == ETy) 201 Ext.second(*this, PM); 202 } 203 } 204 for (unsigned i = 0, e = Extensions.size(); i != e; ++i) 205 if (Extensions[i].first == ETy) 206 Extensions[i].second(*this, PM); 207 } 208 209 void PassManagerBuilder::addInitialAliasAnalysisPasses( 210 legacy::PassManagerBase &PM) const { 211 switch (UseCFLAA) { 212 case CFLAAType::Steensgaard: 213 PM.add(createCFLSteensAAWrapperPass()); 214 break; 215 case CFLAAType::Andersen: 216 PM.add(createCFLAndersAAWrapperPass()); 217 break; 218 case CFLAAType::Both: 219 PM.add(createCFLSteensAAWrapperPass()); 220 PM.add(createCFLAndersAAWrapperPass()); 221 break; 222 default: 223 break; 224 } 225 226 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that 227 // BasicAliasAnalysis wins if they disagree. This is intended to help 228 // support "obvious" type-punning idioms. 229 PM.add(createTypeBasedAAWrapperPass()); 230 PM.add(createScopedNoAliasAAWrapperPass()); 231 } 232 233 void PassManagerBuilder::addInstructionCombiningPass( 234 legacy::PassManagerBase &PM) const { 235 bool ExpensiveCombines = OptLevel > 2; 236 PM.add(createInstructionCombiningPass(ExpensiveCombines)); 237 } 238 239 void PassManagerBuilder::populateFunctionPassManager( 240 legacy::FunctionPassManager &FPM) { 241 addExtensionsToPM(EP_EarlyAsPossible, FPM); 242 FPM.add(createEntryExitInstrumenterPass()); 243 244 // Add LibraryInfo if we have some. 245 if (LibraryInfo) 246 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 247 248 if (OptLevel == 0) return; 249 250 addInitialAliasAnalysisPasses(FPM); 251 252 FPM.add(createCFGSimplificationPass()); 253 FPM.add(createSROAPass()); 254 FPM.add(createEarlyCSEPass()); 255 FPM.add(createLowerExpectIntrinsicPass()); 256 } 257 258 // Do PGO instrumentation generation or use pass as the option specified. 259 void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) { 260 if (!EnablePGOInstrGen && PGOInstrUse.empty() && PGOSampleUse.empty()) 261 return; 262 // Perform the preinline and cleanup passes for O1 and above. 263 // And avoid doing them if optimizing for size. 264 if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner && 265 PGOSampleUse.empty()) { 266 // Create preinline pass. We construct an InlineParams object and specify 267 // the threshold here to avoid the command line options of the regular 268 // inliner to influence pre-inlining. The only fields of InlineParams we 269 // care about are DefaultThreshold and HintThreshold. 270 InlineParams IP; 271 IP.DefaultThreshold = PreInlineThreshold; 272 // FIXME: The hint threshold has the same value used by the regular inliner. 273 // This should probably be lowered after performance testing. 274 IP.HintThreshold = 325; 275 276 MPM.add(createFunctionInliningPass(IP)); 277 MPM.add(createSROAPass()); 278 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies 279 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 280 MPM.add(createInstructionCombiningPass()); // Combine silly seq's 281 addExtensionsToPM(EP_Peephole, MPM); 282 } 283 if (EnablePGOInstrGen) { 284 MPM.add(createPGOInstrumentationGenLegacyPass()); 285 // Add the profile lowering pass. 286 InstrProfOptions Options; 287 if (!PGOInstrGen.empty()) 288 Options.InstrProfileOutput = PGOInstrGen; 289 Options.DoCounterPromotion = true; 290 MPM.add(createLoopRotatePass()); 291 MPM.add(createInstrProfilingLegacyPass(Options)); 292 } 293 if (!PGOInstrUse.empty()) 294 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse)); 295 // Indirect call promotion that promotes intra-module targets only. 296 // For ThinLTO this is done earlier due to interactions with globalopt 297 // for imported functions. We don't run this at -O0. 298 if (OptLevel > 0) 299 MPM.add( 300 createPGOIndirectCallPromotionLegacyPass(false, !PGOSampleUse.empty())); 301 } 302 void PassManagerBuilder::addFunctionSimplificationPasses( 303 legacy::PassManagerBase &MPM) { 304 // Start of function pass. 305 // Break up aggregate allocas, using SSAUpdater. 306 MPM.add(createSROAPass()); 307 MPM.add(createEarlyCSEPass(EnableEarlyCSEMemSSA)); // Catch trivial redundancies 308 if (EnableGVNHoist) 309 MPM.add(createGVNHoistPass()); 310 if (EnableGVNSink) { 311 MPM.add(createGVNSinkPass()); 312 MPM.add(createCFGSimplificationPass()); 313 } 314 315 // Speculative execution if the target has divergent branches; otherwise nop. 316 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass()); 317 MPM.add(createJumpThreadingPass()); // Thread jumps. 318 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals 319 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 320 // Combine silly seq's 321 addInstructionCombiningPass(MPM); 322 if (SizeLevel == 0 && !DisableLibCallsShrinkWrap) 323 MPM.add(createLibCallsShrinkWrapPass()); 324 addExtensionsToPM(EP_Peephole, MPM); 325 326 // Optimize memory intrinsic calls based on the profiled size information. 327 if (SizeLevel == 0) 328 MPM.add(createPGOMemOPSizeOptLegacyPass()); 329 330 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls 331 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 332 MPM.add(createReassociatePass()); // Reassociate expressions 333 // Rotate Loop - disable header duplication at -Oz 334 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); 335 MPM.add(createLICMPass()); // Hoist loop invariants 336 if (EnableSimpleLoopUnswitch) 337 MPM.add(createSimpleLoopUnswitchLegacyPass()); 338 else 339 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget)); 340 MPM.add(createCFGSimplificationPass()); 341 addInstructionCombiningPass(MPM); 342 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars 343 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset. 344 addExtensionsToPM(EP_LateLoopOptimizations, MPM); 345 MPM.add(createLoopDeletionPass()); // Delete dead loops 346 347 if (EnableLoopInterchange) { 348 MPM.add(createLoopInterchangePass()); // Interchange loops 349 MPM.add(createCFGSimplificationPass()); 350 } 351 if (!DisableUnrollLoops) 352 MPM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops 353 addExtensionsToPM(EP_LoopOptimizerEnd, MPM); 354 355 if (OptLevel > 1) { 356 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds 357 MPM.add(NewGVN ? createNewGVNPass() 358 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies 359 } 360 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset 361 MPM.add(createSCCPPass()); // Constant prop with SCCP 362 363 // Delete dead bit computations (instcombine runs after to fold away the dead 364 // computations, and then ADCE will run later to exploit any new DCE 365 // opportunities that creates). 366 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations 367 368 // Run instcombine after redundancy elimination to exploit opportunities 369 // opened up by them. 370 addInstructionCombiningPass(MPM); 371 addExtensionsToPM(EP_Peephole, MPM); 372 MPM.add(createJumpThreadingPass()); // Thread jumps 373 MPM.add(createCorrelatedValuePropagationPass()); 374 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores 375 MPM.add(createLICMPass()); 376 377 addExtensionsToPM(EP_ScalarOptimizerLate, MPM); 378 379 if (RerollLoops) 380 MPM.add(createLoopRerollPass()); 381 if (!RunSLPAfterLoopVectorization && SLPVectorize) 382 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 383 384 MPM.add(createAggressiveDCEPass()); // Delete dead instructions 385 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 386 // Clean up after everything. 387 addInstructionCombiningPass(MPM); 388 addExtensionsToPM(EP_Peephole, MPM); 389 } 390 391 void PassManagerBuilder::populateModulePassManager( 392 legacy::PassManagerBase &MPM) { 393 if (!PGOSampleUse.empty()) { 394 MPM.add(createPruneEHPass()); 395 MPM.add(createSampleProfileLoaderPass(PGOSampleUse)); 396 } 397 398 // Allow forcing function attributes as a debugging and tuning aid. 399 MPM.add(createForceFunctionAttrsLegacyPass()); 400 401 // If all optimizations are disabled, just run the always-inline pass and, 402 // if enabled, the function merging pass. 403 if (OptLevel == 0) { 404 addPGOInstrPasses(MPM); 405 if (Inliner) { 406 MPM.add(Inliner); 407 Inliner = nullptr; 408 } 409 410 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly 411 // creates a CGSCC pass manager, but we don't want to add extensions into 412 // that pass manager. To prevent this we insert a no-op module pass to reset 413 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0 414 // builds. The function merging pass is 415 if (MergeFunctions) 416 MPM.add(createMergeFunctionsPass()); 417 else if (GlobalExtensionsNotEmpty() || !Extensions.empty()) 418 MPM.add(createBarrierNoopPass()); 419 420 if (PerformThinLTO) { 421 // Drop available_externally and unreferenced globals. This is necessary 422 // with ThinLTO in order to avoid leaving undefined references to dead 423 // globals in the object file. 424 MPM.add(createEliminateAvailableExternallyPass()); 425 MPM.add(createGlobalDCEPass()); 426 } 427 428 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM); 429 430 // Rename anon globals to be able to export them in the summary. 431 // This has to be done after we add the extensions to the pass manager 432 // as there could be passes (e.g. Adddress sanitizer) which introduce 433 // new unnamed globals. 434 if (PrepareForThinLTO) 435 MPM.add(createNameAnonGlobalPass()); 436 return; 437 } 438 439 // Add LibraryInfo if we have some. 440 if (LibraryInfo) 441 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 442 443 addInitialAliasAnalysisPasses(MPM); 444 445 // For ThinLTO there are two passes of indirect call promotion. The 446 // first is during the compile phase when PerformThinLTO=false and 447 // intra-module indirect call targets are promoted. The second is during 448 // the ThinLTO backend when PerformThinLTO=true, when we promote imported 449 // inter-module indirect calls. For that we perform indirect call promotion 450 // earlier in the pass pipeline, here before globalopt. Otherwise imported 451 // available_externally functions look unreferenced and are removed. 452 if (PerformThinLTO) 453 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true, 454 !PGOSampleUse.empty())); 455 456 // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops 457 // as it will change the CFG too much to make the 2nd profile annotation 458 // in backend more difficult. 459 bool PrepareForThinLTOUsingPGOSampleProfile = 460 PrepareForThinLTO && !PGOSampleUse.empty(); 461 if (PrepareForThinLTOUsingPGOSampleProfile) 462 DisableUnrollLoops = true; 463 464 // Infer attributes about declarations if possible. 465 MPM.add(createInferFunctionAttrsLegacyPass()); 466 467 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM); 468 469 if (OptLevel > 2) 470 MPM.add(createCallSiteSplittingPass()); 471 472 MPM.add(createIPSCCPPass()); // IP SCCP 473 MPM.add(createCalledValuePropagationPass()); 474 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars 475 // Promote any localized global vars. 476 MPM.add(createPromoteMemoryToRegisterPass()); 477 478 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination 479 480 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE 481 addExtensionsToPM(EP_Peephole, MPM); 482 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE 483 484 // For SamplePGO in ThinLTO compile phase, we do not want to do indirect 485 // call promotion as it will change the CFG too much to make the 2nd 486 // profile annotation in backend more difficult. 487 // PGO instrumentation is added during the compile phase for ThinLTO, do 488 // not run it a second time 489 if (!PerformThinLTO && !PrepareForThinLTOUsingPGOSampleProfile) 490 addPGOInstrPasses(MPM); 491 492 // We add a module alias analysis pass here. In part due to bugs in the 493 // analysis infrastructure this "works" in that the analysis stays alive 494 // for the entire SCC pass run below. 495 MPM.add(createGlobalsAAWrapperPass()); 496 497 // Start of CallGraph SCC passes. 498 MPM.add(createPruneEHPass()); // Remove dead EH info 499 bool RunInliner = false; 500 if (Inliner) { 501 MPM.add(Inliner); 502 Inliner = nullptr; 503 RunInliner = true; 504 } 505 506 MPM.add(createPostOrderFunctionAttrsLegacyPass()); 507 if (OptLevel > 2) 508 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args 509 510 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM); 511 addFunctionSimplificationPasses(MPM); 512 513 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC 514 // pass manager that we are specifically trying to avoid. To prevent this 515 // we must insert a no-op module pass to reset the pass manager. 516 MPM.add(createBarrierNoopPass()); 517 518 if (RunPartialInlining) 519 MPM.add(createPartialInliningPass()); 520 521 if (OptLevel > 1 && !PrepareForLTO && !PrepareForThinLTO) 522 // Remove avail extern fns and globals definitions if we aren't 523 // compiling an object file for later LTO. For LTO we want to preserve 524 // these so they are eligible for inlining at link-time. Note if they 525 // are unreferenced they will be removed by GlobalDCE later, so 526 // this only impacts referenced available externally globals. 527 // Eventually they will be suppressed during codegen, but eliminating 528 // here enables more opportunity for GlobalDCE as it may make 529 // globals referenced by available external functions dead 530 // and saves running remaining passes on the eliminated functions. 531 MPM.add(createEliminateAvailableExternallyPass()); 532 533 MPM.add(createReversePostOrderFunctionAttrsPass()); 534 535 // The inliner performs some kind of dead code elimination as it goes, 536 // but there are cases that are not really caught by it. We might 537 // at some point consider teaching the inliner about them, but it 538 // is OK for now to run GlobalOpt + GlobalDCE in tandem as their 539 // benefits generally outweight the cost, making the whole pipeline 540 // faster. 541 if (RunInliner) { 542 MPM.add(createGlobalOptimizerPass()); 543 MPM.add(createGlobalDCEPass()); 544 } 545 546 // If we are planning to perform ThinLTO later, let's not bloat the code with 547 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes 548 // during ThinLTO and perform the rest of the optimizations afterward. 549 if (PrepareForThinLTO) { 550 // Ensure we perform any last passes, but do so before renaming anonymous 551 // globals in case the passes add any. 552 addExtensionsToPM(EP_OptimizerLast, MPM); 553 // Rename anon globals to be able to export them in the summary. 554 MPM.add(createNameAnonGlobalPass()); 555 return; 556 } 557 558 if (PerformThinLTO) 559 // Optimize globals now when performing ThinLTO, this enables more 560 // optimizations later. 561 MPM.add(createGlobalOptimizerPass()); 562 563 // Scheduling LoopVersioningLICM when inlining is over, because after that 564 // we may see more accurate aliasing. Reason to run this late is that too 565 // early versioning may prevent further inlining due to increase of code 566 // size. By placing it just after inlining other optimizations which runs 567 // later might get benefit of no-alias assumption in clone loop. 568 if (UseLoopVersioningLICM) { 569 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM 570 MPM.add(createLICMPass()); // Hoist loop invariants 571 } 572 573 // We add a fresh GlobalsModRef run at this point. This is particularly 574 // useful as the above will have inlined, DCE'ed, and function-attr 575 // propagated everything. We should at this point have a reasonably minimal 576 // and richly annotated call graph. By computing aliasing and mod/ref 577 // information for all local globals here, the late loop passes and notably 578 // the vectorizer will be able to use them to help recognize vectorizable 579 // memory operations. 580 // 581 // Note that this relies on a bug in the pass manager which preserves 582 // a module analysis into a function pass pipeline (and throughout it) so 583 // long as the first function pass doesn't invalidate the module analysis. 584 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for 585 // this to work. Fortunately, it is trivial to preserve AliasAnalysis 586 // (doing nothing preserves it as it is required to be conservatively 587 // correct in the face of IR changes). 588 MPM.add(createGlobalsAAWrapperPass()); 589 590 MPM.add(createFloat2IntPass()); 591 592 addExtensionsToPM(EP_VectorizerStart, MPM); 593 594 // Re-rotate loops in all our loop nests. These may have fallout out of 595 // rotated form due to GVN or other transformations, and the vectorizer relies 596 // on the rotated form. Disable header duplication at -Oz. 597 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); 598 599 // Distribute loops to allow partial vectorization. I.e. isolate dependences 600 // into separate loop that would otherwise inhibit vectorization. This is 601 // currently only performed for loops marked with the metadata 602 // llvm.loop.distribute=true or when -enable-loop-distribute is specified. 603 MPM.add(createLoopDistributePass()); 604 605 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize)); 606 607 // Eliminate loads by forwarding stores from the previous iteration to loads 608 // of the current iteration. 609 MPM.add(createLoopLoadEliminationPass()); 610 611 // FIXME: Because of #pragma vectorize enable, the passes below are always 612 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when 613 // on -O1 and no #pragma is found). Would be good to have these two passes 614 // as function calls, so that we can only pass them when the vectorizer 615 // changed the code. 616 addInstructionCombiningPass(MPM); 617 if (OptLevel > 1 && ExtraVectorizerPasses) { 618 // At higher optimization levels, try to clean up any runtime overlap and 619 // alignment checks inserted by the vectorizer. We want to track correllated 620 // runtime checks for two inner loops in the same outer loop, fold any 621 // common computations, hoist loop-invariant aspects out of any outer loop, 622 // and unswitch the runtime checks if possible. Once hoisted, we may have 623 // dead (or speculatable) control flows or more combining opportunities. 624 MPM.add(createEarlyCSEPass()); 625 MPM.add(createCorrelatedValuePropagationPass()); 626 addInstructionCombiningPass(MPM); 627 MPM.add(createLICMPass()); 628 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget)); 629 MPM.add(createCFGSimplificationPass()); 630 addInstructionCombiningPass(MPM); 631 } 632 633 // Cleanup after loop vectorization, etc. Simplification passes like CVP and 634 // GVN, loop transforms, and others have already run, so it's now better to 635 // convert to more optimized IR using more aggressive simplify CFG options. 636 // The extra sinking transform can create larger basic blocks, so do this 637 // before SLP vectorization. 638 MPM.add(createCFGSimplificationPass(1, true, true, false, true)); 639 640 if (RunSLPAfterLoopVectorization && SLPVectorize) { 641 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 642 if (OptLevel > 1 && ExtraVectorizerPasses) { 643 MPM.add(createEarlyCSEPass()); 644 } 645 } 646 647 addExtensionsToPM(EP_Peephole, MPM); 648 addInstructionCombiningPass(MPM); 649 650 if (!DisableUnrollLoops) { 651 MPM.add(createLoopUnrollPass(OptLevel)); // Unroll small loops 652 653 // LoopUnroll may generate some redundency to cleanup. 654 addInstructionCombiningPass(MPM); 655 656 // Runtime unrolling will introduce runtime check in loop prologue. If the 657 // unrolled loop is a inner loop, then the prologue will be inside the 658 // outer loop. LICM pass can help to promote the runtime check out if the 659 // checked value is loop invariant. 660 MPM.add(createLICMPass()); 661 } 662 663 // After vectorization and unrolling, assume intrinsics may tell us more 664 // about pointer alignments. 665 MPM.add(createAlignmentFromAssumptionsPass()); 666 667 // FIXME: We shouldn't bother with this anymore. 668 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes 669 670 // GlobalOpt already deletes dead functions and globals, at -O2 try a 671 // late pass of GlobalDCE. It is capable of deleting dead cycles. 672 if (OptLevel > 1) { 673 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals. 674 MPM.add(createConstantMergePass()); // Merge dup global constants 675 } 676 677 if (MergeFunctions) 678 MPM.add(createMergeFunctionsPass()); 679 680 // LoopSink pass sinks instructions hoisted by LICM, which serves as a 681 // canonicalization pass that enables other optimizations. As a result, 682 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM 683 // result too early. 684 MPM.add(createLoopSinkPass()); 685 // Get rid of LCSSA nodes. 686 MPM.add(createInstructionSimplifierPass()); 687 688 // This hoists/decomposes div/rem ops. It should run after other sink/hoist 689 // passes to avoid re-sinking, but before SimplifyCFG because it can allow 690 // flattening of blocks. 691 MPM.add(createDivRemPairsPass()); 692 693 // LoopSink (and other loop passes since the last simplifyCFG) might have 694 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG. 695 MPM.add(createCFGSimplificationPass()); 696 697 addExtensionsToPM(EP_OptimizerLast, MPM); 698 } 699 700 void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) { 701 // Remove unused virtual tables to improve the quality of code generated by 702 // whole-program devirtualization and bitset lowering. 703 PM.add(createGlobalDCEPass()); 704 705 // Provide AliasAnalysis services for optimizations. 706 addInitialAliasAnalysisPasses(PM); 707 708 // Allow forcing function attributes as a debugging and tuning aid. 709 PM.add(createForceFunctionAttrsLegacyPass()); 710 711 // Infer attributes about declarations if possible. 712 PM.add(createInferFunctionAttrsLegacyPass()); 713 714 if (OptLevel > 1) { 715 // Split call-site with more constrained arguments. 716 PM.add(createCallSiteSplittingPass()); 717 718 // Indirect call promotion. This should promote all the targets that are 719 // left by the earlier promotion pass that promotes intra-module targets. 720 // This two-step promotion is to save the compile time. For LTO, it should 721 // produce the same result as if we only do promotion here. 722 PM.add( 723 createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse.empty())); 724 725 // Propagate constants at call sites into the functions they call. This 726 // opens opportunities for globalopt (and inlining) by substituting function 727 // pointers passed as arguments to direct uses of functions. 728 PM.add(createIPSCCPPass()); 729 730 // Attach metadata to indirect call sites indicating the set of functions 731 // they may target at run-time. This should follow IPSCCP. 732 PM.add(createCalledValuePropagationPass()); 733 } 734 735 // Infer attributes about definitions. The readnone attribute in particular is 736 // required for virtual constant propagation. 737 PM.add(createPostOrderFunctionAttrsLegacyPass()); 738 PM.add(createReversePostOrderFunctionAttrsPass()); 739 740 // Split globals using inrange annotations on GEP indices. This can help 741 // improve the quality of generated code when virtual constant propagation or 742 // control flow integrity are enabled. 743 PM.add(createGlobalSplitPass()); 744 745 // Apply whole-program devirtualization and virtual constant propagation. 746 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr)); 747 748 // That's all we need at opt level 1. 749 if (OptLevel == 1) 750 return; 751 752 // Now that we internalized some globals, see if we can hack on them! 753 PM.add(createGlobalOptimizerPass()); 754 // Promote any localized global vars. 755 PM.add(createPromoteMemoryToRegisterPass()); 756 757 // Linking modules together can lead to duplicated global constants, only 758 // keep one copy of each constant. 759 PM.add(createConstantMergePass()); 760 761 // Remove unused arguments from functions. 762 PM.add(createDeadArgEliminationPass()); 763 764 // Reduce the code after globalopt and ipsccp. Both can open up significant 765 // simplification opportunities, and both can propagate functions through 766 // function pointers. When this happens, we often have to resolve varargs 767 // calls, etc, so let instcombine do this. 768 addInstructionCombiningPass(PM); 769 addExtensionsToPM(EP_Peephole, PM); 770 771 // Inline small functions 772 bool RunInliner = Inliner; 773 if (RunInliner) { 774 PM.add(Inliner); 775 Inliner = nullptr; 776 } 777 778 PM.add(createPruneEHPass()); // Remove dead EH info. 779 780 // Optimize globals again if we ran the inliner. 781 if (RunInliner) 782 PM.add(createGlobalOptimizerPass()); 783 PM.add(createGlobalDCEPass()); // Remove dead functions. 784 785 // If we didn't decide to inline a function, check to see if we can 786 // transform it to pass arguments by value instead of by reference. 787 PM.add(createArgumentPromotionPass()); 788 789 // The IPO passes may leave cruft around. Clean up after them. 790 addInstructionCombiningPass(PM); 791 addExtensionsToPM(EP_Peephole, PM); 792 PM.add(createJumpThreadingPass()); 793 794 // Break up allocas 795 PM.add(createSROAPass()); 796 797 // Run a few AA driven optimizations here and now, to cleanup the code. 798 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture. 799 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis. 800 801 PM.add(createLICMPass()); // Hoist loop invariants. 802 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds. 803 PM.add(NewGVN ? createNewGVNPass() 804 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies. 805 PM.add(createMemCpyOptPass()); // Remove dead memcpys. 806 807 // Nuke dead stores. 808 PM.add(createDeadStoreEliminationPass()); 809 810 // More loops are countable; try to optimize them. 811 PM.add(createIndVarSimplifyPass()); 812 PM.add(createLoopDeletionPass()); 813 if (EnableLoopInterchange) 814 PM.add(createLoopInterchangePass()); 815 816 if (!DisableUnrollLoops) 817 PM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops 818 PM.add(createLoopVectorizePass(true, LoopVectorize)); 819 // The vectorizer may have significantly shortened a loop body; unroll again. 820 if (!DisableUnrollLoops) 821 PM.add(createLoopUnrollPass(OptLevel)); 822 823 // Now that we've optimized loops (in particular loop induction variables), 824 // we may have exposed more scalar opportunities. Run parts of the scalar 825 // optimizer again at this point. 826 addInstructionCombiningPass(PM); // Initial cleanup 827 PM.add(createCFGSimplificationPass()); // if-convert 828 PM.add(createSCCPPass()); // Propagate exposed constants 829 addInstructionCombiningPass(PM); // Clean up again 830 PM.add(createBitTrackingDCEPass()); 831 832 // More scalar chains could be vectorized due to more alias information 833 if (RunSLPAfterLoopVectorization) 834 if (SLPVectorize) 835 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 836 837 // After vectorization, assume intrinsics may tell us more about pointer 838 // alignments. 839 PM.add(createAlignmentFromAssumptionsPass()); 840 841 // Cleanup and simplify the code after the scalar optimizations. 842 addInstructionCombiningPass(PM); 843 addExtensionsToPM(EP_Peephole, PM); 844 845 PM.add(createJumpThreadingPass()); 846 } 847 848 void PassManagerBuilder::addLateLTOOptimizationPasses( 849 legacy::PassManagerBase &PM) { 850 // Delete basic blocks, which optimization passes may have killed. 851 PM.add(createCFGSimplificationPass()); 852 853 // Drop bodies of available externally objects to improve GlobalDCE. 854 PM.add(createEliminateAvailableExternallyPass()); 855 856 // Now that we have optimized the program, discard unreachable functions. 857 PM.add(createGlobalDCEPass()); 858 859 // FIXME: this is profitable (for compiler time) to do at -O0 too, but 860 // currently it damages debug info. 861 if (MergeFunctions) 862 PM.add(createMergeFunctionsPass()); 863 } 864 865 void PassManagerBuilder::populateThinLTOPassManager( 866 legacy::PassManagerBase &PM) { 867 PerformThinLTO = true; 868 869 if (VerifyInput) 870 PM.add(createVerifierPass()); 871 872 if (ImportSummary) { 873 // These passes import type identifier resolutions for whole-program 874 // devirtualization and CFI. They must run early because other passes may 875 // disturb the specific instruction patterns that these passes look for, 876 // creating dependencies on resolutions that may not appear in the summary. 877 // 878 // For example, GVN may transform the pattern assume(type.test) appearing in 879 // two basic blocks into assume(phi(type.test, type.test)), which would 880 // transform a dependency on a WPD resolution into a dependency on a type 881 // identifier resolution for CFI. 882 // 883 // Also, WPD has access to more precise information than ICP and can 884 // devirtualize more effectively, so it should operate on the IR first. 885 PM.add(createWholeProgramDevirtPass(nullptr, ImportSummary)); 886 PM.add(createLowerTypeTestsPass(nullptr, ImportSummary)); 887 } 888 889 populateModulePassManager(PM); 890 891 if (VerifyOutput) 892 PM.add(createVerifierPass()); 893 PerformThinLTO = false; 894 } 895 896 void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) { 897 if (LibraryInfo) 898 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 899 900 if (VerifyInput) 901 PM.add(createVerifierPass()); 902 903 if (OptLevel != 0) 904 addLTOOptimizationPasses(PM); 905 else { 906 // The whole-program-devirt pass needs to run at -O0 because only it knows 907 // about the llvm.type.checked.load intrinsic: it needs to both lower the 908 // intrinsic itself and handle it in the summary. 909 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr)); 910 } 911 912 // Create a function that performs CFI checks for cross-DSO calls with targets 913 // in the current module. 914 PM.add(createCrossDSOCFIPass()); 915 916 // Lower type metadata and the type.test intrinsic. This pass supports Clang's 917 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at 918 // link time if CFI is enabled. The pass does nothing if CFI is disabled. 919 PM.add(createLowerTypeTestsPass(ExportSummary, nullptr)); 920 921 if (OptLevel != 0) 922 addLateLTOOptimizationPasses(PM); 923 924 if (VerifyOutput) 925 PM.add(createVerifierPass()); 926 } 927 928 inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) { 929 return reinterpret_cast<PassManagerBuilder*>(P); 930 } 931 932 inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) { 933 return reinterpret_cast<LLVMPassManagerBuilderRef>(P); 934 } 935 936 LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() { 937 PassManagerBuilder *PMB = new PassManagerBuilder(); 938 return wrap(PMB); 939 } 940 941 void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) { 942 PassManagerBuilder *Builder = unwrap(PMB); 943 delete Builder; 944 } 945 946 void 947 LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB, 948 unsigned OptLevel) { 949 PassManagerBuilder *Builder = unwrap(PMB); 950 Builder->OptLevel = OptLevel; 951 } 952 953 void 954 LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB, 955 unsigned SizeLevel) { 956 PassManagerBuilder *Builder = unwrap(PMB); 957 Builder->SizeLevel = SizeLevel; 958 } 959 960 void 961 LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB, 962 LLVMBool Value) { 963 // NOTE: The DisableUnitAtATime switch has been removed. 964 } 965 966 void 967 LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB, 968 LLVMBool Value) { 969 PassManagerBuilder *Builder = unwrap(PMB); 970 Builder->DisableUnrollLoops = Value; 971 } 972 973 void 974 LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB, 975 LLVMBool Value) { 976 // NOTE: The simplify-libcalls pass has been removed. 977 } 978 979 void 980 LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB, 981 unsigned Threshold) { 982 PassManagerBuilder *Builder = unwrap(PMB); 983 Builder->Inliner = createFunctionInliningPass(Threshold); 984 } 985 986 void 987 LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB, 988 LLVMPassManagerRef PM) { 989 PassManagerBuilder *Builder = unwrap(PMB); 990 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM); 991 Builder->populateFunctionPassManager(*FPM); 992 } 993 994 void 995 LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB, 996 LLVMPassManagerRef PM) { 997 PassManagerBuilder *Builder = unwrap(PMB); 998 legacy::PassManagerBase *MPM = unwrap(PM); 999 Builder->populateModulePassManager(*MPM); 1000 } 1001 1002 void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB, 1003 LLVMPassManagerRef PM, 1004 LLVMBool Internalize, 1005 LLVMBool RunInliner) { 1006 PassManagerBuilder *Builder = unwrap(PMB); 1007 legacy::PassManagerBase *LPM = unwrap(PM); 1008 1009 // A small backwards compatibility hack. populateLTOPassManager used to take 1010 // an RunInliner option. 1011 if (RunInliner && !Builder->Inliner) 1012 Builder->Inliner = createFunctionInliningPass(); 1013 1014 Builder->populateLTOPassManager(*LPM); 1015 } 1016