1 //===- PassManagerBuilder.cpp - Build Standard Pass -----------------------===// 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 // This file defines the PassManagerBuilder class, which is used to set up a 10 // "standard" optimization sequence suitable for languages like C and C++. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/Transforms/IPO/PassManagerBuilder.h" 15 #include "llvm-c/Transforms/PassManagerBuilder.h" 16 #include "llvm/ADT/STLExtras.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/AggressiveInstCombine/AggressiveInstCombine.h" 33 #include "llvm/Transforms/IPO.h" 34 #include "llvm/Transforms/IPO/Attributor.h" 35 #include "llvm/Transforms/IPO/ForceFunctionAttrs.h" 36 #include "llvm/Transforms/IPO/FunctionAttrs.h" 37 #include "llvm/Transforms/IPO/InferFunctionAttrs.h" 38 #include "llvm/Transforms/InstCombine/InstCombine.h" 39 #include "llvm/Transforms/Instrumentation.h" 40 #include "llvm/Transforms/Scalar.h" 41 #include "llvm/Transforms/Scalar/GVN.h" 42 #include "llvm/Transforms/Scalar/InstSimplifyPass.h" 43 #include "llvm/Transforms/Scalar/LICM.h" 44 #include "llvm/Transforms/Scalar/LoopUnrollPass.h" 45 #include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h" 46 #include "llvm/Transforms/Utils.h" 47 #include "llvm/Transforms/Vectorize.h" 48 #include "llvm/Transforms/Vectorize/LoopVectorize.h" 49 #include "llvm/Transforms/Vectorize/SLPVectorizer.h" 50 #include "llvm/Transforms/Vectorize/VectorCombine.h" 51 52 using namespace llvm; 53 54 static cl::opt<bool> 55 RunPartialInlining("enable-partial-inlining", cl::init(false), cl::Hidden, 56 cl::ZeroOrMore, cl::desc("Run Partial inlinining pass")); 57 58 static cl::opt<bool> 59 UseGVNAfterVectorization("use-gvn-after-vectorization", 60 cl::init(false), cl::Hidden, 61 cl::desc("Run GVN instead of Early CSE after vectorization passes")); 62 63 static cl::opt<bool> ExtraVectorizerPasses( 64 "extra-vectorizer-passes", cl::init(false), cl::Hidden, 65 cl::desc("Run cleanup optimization passes after vectorization.")); 66 67 static cl::opt<bool> 68 RunLoopRerolling("reroll-loops", cl::Hidden, 69 cl::desc("Run the loop rerolling pass")); 70 71 static cl::opt<bool> RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden, 72 cl::desc("Run the NewGVN pass")); 73 74 // Experimental option to use CFL-AA 75 enum class CFLAAType { None, Steensgaard, Andersen, Both }; 76 static cl::opt<CFLAAType> 77 UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden, 78 cl::desc("Enable the new, experimental CFL alias analysis"), 79 cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"), 80 clEnumValN(CFLAAType::Steensgaard, "steens", 81 "Enable unification-based CFL-AA"), 82 clEnumValN(CFLAAType::Andersen, "anders", 83 "Enable inclusion-based CFL-AA"), 84 clEnumValN(CFLAAType::Both, "both", 85 "Enable both variants of CFL-AA"))); 86 87 static cl::opt<bool> EnableLoopInterchange( 88 "enable-loopinterchange", cl::init(false), cl::Hidden, 89 cl::desc("Enable the new, experimental LoopInterchange Pass")); 90 91 static cl::opt<bool> EnableUnrollAndJam("enable-unroll-and-jam", 92 cl::init(false), cl::Hidden, 93 cl::desc("Enable Unroll And Jam Pass")); 94 95 static cl::opt<bool> EnableLoopFlatten("enable-loop-flatten", cl::init(false), 96 cl::Hidden, 97 cl::desc("Enable the LoopFlatten Pass")); 98 99 static cl::opt<bool> 100 EnablePrepareForThinLTO("prepare-for-thinlto", cl::init(false), cl::Hidden, 101 cl::desc("Enable preparation for ThinLTO.")); 102 103 static cl::opt<bool> 104 EnablePerformThinLTO("perform-thinlto", cl::init(false), cl::Hidden, 105 cl::desc("Enable performing ThinLTO.")); 106 107 cl::opt<bool> EnableHotColdSplit("hot-cold-split", cl::init(false), 108 cl::ZeroOrMore, cl::desc("Enable hot-cold splitting pass")); 109 110 static cl::opt<bool> UseLoopVersioningLICM( 111 "enable-loop-versioning-licm", cl::init(false), cl::Hidden, 112 cl::desc("Enable the experimental Loop Versioning LICM pass")); 113 114 static cl::opt<bool> 115 DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden, 116 cl::desc("Disable pre-instrumentation inliner")); 117 118 static cl::opt<int> PreInlineThreshold( 119 "preinline-threshold", cl::Hidden, cl::init(75), cl::ZeroOrMore, 120 cl::desc("Control the amount of inlining in pre-instrumentation inliner " 121 "(default = 75)")); 122 123 static cl::opt<bool> EnableGVNHoist( 124 "enable-gvn-hoist", cl::init(false), cl::ZeroOrMore, 125 cl::desc("Enable the GVN hoisting pass (default = off)")); 126 127 static cl::opt<bool> 128 DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false), 129 cl::Hidden, 130 cl::desc("Disable shrink-wrap library calls")); 131 132 static cl::opt<bool> EnableSimpleLoopUnswitch( 133 "enable-simple-loop-unswitch", cl::init(false), cl::Hidden, 134 cl::desc("Enable the simple loop unswitch pass. Also enables independent " 135 "cleanup passes integrated into the loop pass manager pipeline.")); 136 137 static cl::opt<bool> EnableGVNSink( 138 "enable-gvn-sink", cl::init(false), cl::ZeroOrMore, 139 cl::desc("Enable the GVN sinking pass (default = off)")); 140 141 // This option is used in simplifying testing SampleFDO optimizations for 142 // profile loading. 143 static cl::opt<bool> 144 EnableCHR("enable-chr", cl::init(true), cl::Hidden, 145 cl::desc("Enable control height reduction optimization (CHR)")); 146 147 cl::opt<bool> FlattenedProfileUsed( 148 "flattened-profile-used", cl::init(false), cl::Hidden, 149 cl::desc("Indicate the sample profile being used is flattened, i.e., " 150 "no inline hierachy exists in the profile. ")); 151 152 cl::opt<bool> EnableOrderFileInstrumentation( 153 "enable-order-file-instrumentation", cl::init(false), cl::Hidden, 154 cl::desc("Enable order file instrumentation (default = off)")); 155 156 cl::opt<bool> EnableMatrix( 157 "enable-matrix", cl::init(false), cl::Hidden, 158 cl::desc("Enable lowering of the matrix intrinsics")); 159 160 cl::opt<bool> EnableConstraintElimination( 161 "enable-constraint-elimination", cl::init(false), cl::Hidden, 162 cl::desc( 163 "Enable pass to eliminate conditions based on linear constraints.")); 164 165 cl::opt<AttributorRunOption> AttributorRun( 166 "attributor-enable", cl::Hidden, cl::init(AttributorRunOption::NONE), 167 cl::desc("Enable the attributor inter-procedural deduction pass."), 168 cl::values(clEnumValN(AttributorRunOption::ALL, "all", 169 "enable all attributor runs"), 170 clEnumValN(AttributorRunOption::MODULE, "module", 171 "enable module-wide attributor runs"), 172 clEnumValN(AttributorRunOption::CGSCC, "cgscc", 173 "enable call graph SCC attributor runs"), 174 clEnumValN(AttributorRunOption::NONE, "none", 175 "disable attributor runs"))); 176 177 extern cl::opt<bool> EnableKnowledgeRetention; 178 179 PassManagerBuilder::PassManagerBuilder() { 180 OptLevel = 2; 181 SizeLevel = 0; 182 LibraryInfo = nullptr; 183 Inliner = nullptr; 184 DisableUnrollLoops = false; 185 SLPVectorize = false; 186 LoopVectorize = true; 187 LoopsInterleaved = true; 188 RerollLoops = RunLoopRerolling; 189 NewGVN = RunNewGVN; 190 LicmMssaOptCap = SetLicmMssaOptCap; 191 LicmMssaNoAccForPromotionCap = SetLicmMssaNoAccForPromotionCap; 192 DisableGVNLoadPRE = false; 193 ForgetAllSCEVInLoopUnroll = ForgetSCEVInLoopUnroll; 194 VerifyInput = false; 195 VerifyOutput = false; 196 MergeFunctions = false; 197 PrepareForLTO = false; 198 EnablePGOInstrGen = false; 199 EnablePGOCSInstrGen = false; 200 EnablePGOCSInstrUse = false; 201 PGOInstrGen = ""; 202 PGOInstrUse = ""; 203 PGOSampleUse = ""; 204 PrepareForThinLTO = EnablePrepareForThinLTO; 205 PerformThinLTO = EnablePerformThinLTO; 206 DivergentTarget = false; 207 CallGraphProfile = true; 208 } 209 210 PassManagerBuilder::~PassManagerBuilder() { 211 delete LibraryInfo; 212 delete Inliner; 213 } 214 215 /// Set of global extensions, automatically added as part of the standard set. 216 static ManagedStatic< 217 SmallVector<std::tuple<PassManagerBuilder::ExtensionPointTy, 218 PassManagerBuilder::ExtensionFn, 219 PassManagerBuilder::GlobalExtensionID>, 220 8>> 221 GlobalExtensions; 222 static PassManagerBuilder::GlobalExtensionID GlobalExtensionsCounter; 223 224 /// Check if GlobalExtensions is constructed and not empty. 225 /// Since GlobalExtensions is a managed static, calling 'empty()' will trigger 226 /// the construction of the object. 227 static bool GlobalExtensionsNotEmpty() { 228 return GlobalExtensions.isConstructed() && !GlobalExtensions->empty(); 229 } 230 231 PassManagerBuilder::GlobalExtensionID 232 PassManagerBuilder::addGlobalExtension(PassManagerBuilder::ExtensionPointTy Ty, 233 PassManagerBuilder::ExtensionFn Fn) { 234 auto ExtensionID = GlobalExtensionsCounter++; 235 GlobalExtensions->push_back(std::make_tuple(Ty, std::move(Fn), ExtensionID)); 236 return ExtensionID; 237 } 238 239 void PassManagerBuilder::removeGlobalExtension( 240 PassManagerBuilder::GlobalExtensionID ExtensionID) { 241 // RegisterStandardPasses may try to call this function after GlobalExtensions 242 // has already been destroyed; doing so should not generate an error. 243 if (!GlobalExtensions.isConstructed()) 244 return; 245 246 auto GlobalExtension = 247 llvm::find_if(*GlobalExtensions, [ExtensionID](const auto &elem) { 248 return std::get<2>(elem) == ExtensionID; 249 }); 250 assert(GlobalExtension != GlobalExtensions->end() && 251 "The extension ID to be removed should always be valid."); 252 253 GlobalExtensions->erase(GlobalExtension); 254 } 255 256 void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) { 257 Extensions.push_back(std::make_pair(Ty, std::move(Fn))); 258 } 259 260 void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy, 261 legacy::PassManagerBase &PM) const { 262 if (GlobalExtensionsNotEmpty()) { 263 for (auto &Ext : *GlobalExtensions) { 264 if (std::get<0>(Ext) == ETy) 265 std::get<1>(Ext)(*this, PM); 266 } 267 } 268 for (unsigned i = 0, e = Extensions.size(); i != e; ++i) 269 if (Extensions[i].first == ETy) 270 Extensions[i].second(*this, PM); 271 } 272 273 void PassManagerBuilder::addInitialAliasAnalysisPasses( 274 legacy::PassManagerBase &PM) const { 275 switch (UseCFLAA) { 276 case CFLAAType::Steensgaard: 277 PM.add(createCFLSteensAAWrapperPass()); 278 break; 279 case CFLAAType::Andersen: 280 PM.add(createCFLAndersAAWrapperPass()); 281 break; 282 case CFLAAType::Both: 283 PM.add(createCFLSteensAAWrapperPass()); 284 PM.add(createCFLAndersAAWrapperPass()); 285 break; 286 default: 287 break; 288 } 289 290 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that 291 // BasicAliasAnalysis wins if they disagree. This is intended to help 292 // support "obvious" type-punning idioms. 293 PM.add(createTypeBasedAAWrapperPass()); 294 PM.add(createScopedNoAliasAAWrapperPass()); 295 } 296 297 void PassManagerBuilder::populateFunctionPassManager( 298 legacy::FunctionPassManager &FPM) { 299 addExtensionsToPM(EP_EarlyAsPossible, FPM); 300 FPM.add(createEntryExitInstrumenterPass()); 301 302 // Add LibraryInfo if we have some. 303 if (LibraryInfo) 304 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 305 306 // The backends do not handle matrix intrinsics currently. 307 // Make sure they are also lowered in O0. 308 // FIXME: A lightweight version of the pass should run in the backend 309 // pipeline on demand. 310 if (EnableMatrix && OptLevel == 0) 311 FPM.add(createLowerMatrixIntrinsicsMinimalPass()); 312 313 if (OptLevel == 0) return; 314 315 addInitialAliasAnalysisPasses(FPM); 316 317 FPM.add(createCFGSimplificationPass()); 318 FPM.add(createSROAPass()); 319 FPM.add(createEarlyCSEPass()); 320 FPM.add(createLowerExpectIntrinsicPass()); 321 } 322 323 // Do PGO instrumentation generation or use pass as the option specified. 324 void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM, 325 bool IsCS = false) { 326 if (IsCS) { 327 if (!EnablePGOCSInstrGen && !EnablePGOCSInstrUse) 328 return; 329 } else if (!EnablePGOInstrGen && PGOInstrUse.empty() && PGOSampleUse.empty()) 330 return; 331 332 // Perform the preinline and cleanup passes for O1 and above. 333 // And avoid doing them if optimizing for size. 334 // We will not do this inline for context sensitive PGO (when IsCS is true). 335 if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner && 336 PGOSampleUse.empty() && !IsCS) { 337 // Create preinline pass. We construct an InlineParams object and specify 338 // the threshold here to avoid the command line options of the regular 339 // inliner to influence pre-inlining. The only fields of InlineParams we 340 // care about are DefaultThreshold and HintThreshold. 341 InlineParams IP; 342 IP.DefaultThreshold = PreInlineThreshold; 343 // FIXME: The hint threshold has the same value used by the regular inliner. 344 // This should probably be lowered after performance testing. 345 IP.HintThreshold = 325; 346 347 MPM.add(createFunctionInliningPass(IP)); 348 MPM.add(createSROAPass()); 349 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies 350 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 351 MPM.add(createInstructionCombiningPass()); // Combine silly seq's 352 addExtensionsToPM(EP_Peephole, MPM); 353 } 354 if ((EnablePGOInstrGen && !IsCS) || (EnablePGOCSInstrGen && IsCS)) { 355 MPM.add(createPGOInstrumentationGenLegacyPass(IsCS)); 356 // Add the profile lowering pass. 357 InstrProfOptions Options; 358 if (!PGOInstrGen.empty()) 359 Options.InstrProfileOutput = PGOInstrGen; 360 Options.DoCounterPromotion = true; 361 Options.UseBFIInPromotion = IsCS; 362 MPM.add(createLoopRotatePass()); 363 MPM.add(createInstrProfilingLegacyPass(Options, IsCS)); 364 } 365 if (!PGOInstrUse.empty()) 366 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse, IsCS)); 367 // Indirect call promotion that promotes intra-module targets only. 368 // For ThinLTO this is done earlier due to interactions with globalopt 369 // for imported functions. We don't run this at -O0. 370 if (OptLevel > 0 && !IsCS) 371 MPM.add( 372 createPGOIndirectCallPromotionLegacyPass(false, !PGOSampleUse.empty())); 373 } 374 void PassManagerBuilder::addFunctionSimplificationPasses( 375 legacy::PassManagerBase &MPM) { 376 // Start of function pass. 377 // Break up aggregate allocas, using SSAUpdater. 378 assert(OptLevel >= 1 && "Calling function optimizer with no optimization level!"); 379 MPM.add(createSROAPass()); 380 MPM.add(createEarlyCSEPass(true /* Enable mem-ssa. */)); // Catch trivial redundancies 381 if (EnableKnowledgeRetention) 382 MPM.add(createAssumeSimplifyPass()); 383 384 if (OptLevel > 1) { 385 if (EnableGVNHoist) 386 MPM.add(createGVNHoistPass()); 387 if (EnableGVNSink) { 388 MPM.add(createGVNSinkPass()); 389 MPM.add(createCFGSimplificationPass()); 390 } 391 } 392 393 if (EnableConstraintElimination) 394 MPM.add(createConstraintEliminationPass()); 395 396 if (OptLevel > 1) { 397 // Speculative execution if the target has divergent branches; otherwise nop. 398 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass()); 399 400 MPM.add(createJumpThreadingPass()); // Thread jumps. 401 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals 402 } 403 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 404 // Combine silly seq's 405 if (OptLevel > 2) 406 MPM.add(createAggressiveInstCombinerPass()); 407 MPM.add(createInstructionCombiningPass()); 408 if (SizeLevel == 0 && !DisableLibCallsShrinkWrap) 409 MPM.add(createLibCallsShrinkWrapPass()); 410 addExtensionsToPM(EP_Peephole, MPM); 411 412 // Optimize memory intrinsic calls based on the profiled size information. 413 if (SizeLevel == 0) 414 MPM.add(createPGOMemOPSizeOptLegacyPass()); 415 416 // TODO: Investigate the cost/benefit of tail call elimination on debugging. 417 if (OptLevel > 1) 418 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls 419 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 420 MPM.add(createReassociatePass()); // Reassociate expressions 421 422 // Begin the loop pass pipeline. 423 if (EnableSimpleLoopUnswitch) { 424 // The simple loop unswitch pass relies on separate cleanup passes. Schedule 425 // them first so when we re-process a loop they run before other loop 426 // passes. 427 MPM.add(createLoopInstSimplifyPass()); 428 MPM.add(createLoopSimplifyCFGPass()); 429 } 430 // Rotate Loop - disable header duplication at -Oz 431 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); 432 // TODO: Investigate promotion cap for O1. 433 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); 434 if (EnableSimpleLoopUnswitch) 435 MPM.add(createSimpleLoopUnswitchLegacyPass()); 436 else 437 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget)); 438 // FIXME: We break the loop pass pipeline here in order to do full 439 // simplify-cfg. Eventually loop-simplifycfg should be enhanced to replace the 440 // need for this. 441 MPM.add(createCFGSimplificationPass()); 442 MPM.add(createInstructionCombiningPass()); 443 // We resume loop passes creating a second loop pipeline here. 444 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars 445 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset. 446 addExtensionsToPM(EP_LateLoopOptimizations, MPM); 447 MPM.add(createLoopDeletionPass()); // Delete dead loops 448 449 if (EnableLoopInterchange) 450 MPM.add(createLoopInterchangePass()); // Interchange loops 451 if (EnableLoopFlatten) { 452 MPM.add(createLoopFlattenPass()); // Flatten loops 453 MPM.add(createLoopSimplifyCFGPass()); 454 } 455 456 // Unroll small loops 457 MPM.add(createSimpleLoopUnrollPass(OptLevel, DisableUnrollLoops, 458 ForgetAllSCEVInLoopUnroll)); 459 addExtensionsToPM(EP_LoopOptimizerEnd, MPM); 460 // This ends the loop pass pipelines. 461 462 // Break up allocas that may now be splittable after loop unrolling. 463 MPM.add(createSROAPass()); 464 465 if (OptLevel > 1) { 466 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds 467 MPM.add(NewGVN ? createNewGVNPass() 468 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies 469 } 470 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset 471 MPM.add(createSCCPPass()); // Constant prop with SCCP 472 473 // Delete dead bit computations (instcombine runs after to fold away the dead 474 // computations, and then ADCE will run later to exploit any new DCE 475 // opportunities that creates). 476 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations 477 478 // Run instcombine after redundancy elimination to exploit opportunities 479 // opened up by them. 480 MPM.add(createInstructionCombiningPass()); 481 addExtensionsToPM(EP_Peephole, MPM); 482 if (OptLevel > 1) { 483 MPM.add(createJumpThreadingPass()); // Thread jumps 484 MPM.add(createCorrelatedValuePropagationPass()); 485 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores 486 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); 487 } 488 489 addExtensionsToPM(EP_ScalarOptimizerLate, MPM); 490 491 if (RerollLoops) 492 MPM.add(createLoopRerollPass()); 493 494 // TODO: Investigate if this is too expensive at O1. 495 MPM.add(createAggressiveDCEPass()); // Delete dead instructions 496 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 497 // Clean up after everything. 498 MPM.add(createInstructionCombiningPass()); 499 addExtensionsToPM(EP_Peephole, MPM); 500 501 if (EnableCHR && OptLevel >= 3 && 502 (!PGOInstrUse.empty() || !PGOSampleUse.empty() || EnablePGOCSInstrGen)) 503 MPM.add(createControlHeightReductionLegacyPass()); 504 } 505 506 void PassManagerBuilder::populateModulePassManager( 507 legacy::PassManagerBase &MPM) { 508 // Whether this is a default or *LTO pre-link pipeline. The FullLTO post-link 509 // is handled separately, so just check this is not the ThinLTO post-link. 510 bool DefaultOrPreLinkPipeline = !PerformThinLTO; 511 512 if (!PGOSampleUse.empty()) { 513 MPM.add(createPruneEHPass()); 514 // In ThinLTO mode, when flattened profile is used, all the available 515 // profile information will be annotated in PreLink phase so there is 516 // no need to load the profile again in PostLink. 517 if (!(FlattenedProfileUsed && PerformThinLTO)) 518 MPM.add(createSampleProfileLoaderPass(PGOSampleUse)); 519 } 520 521 // Allow forcing function attributes as a debugging and tuning aid. 522 MPM.add(createForceFunctionAttrsLegacyPass()); 523 524 // If all optimizations are disabled, just run the always-inline pass and, 525 // if enabled, the function merging pass. 526 if (OptLevel == 0) { 527 addPGOInstrPasses(MPM); 528 if (Inliner) { 529 MPM.add(Inliner); 530 Inliner = nullptr; 531 } 532 533 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly 534 // creates a CGSCC pass manager, but we don't want to add extensions into 535 // that pass manager. To prevent this we insert a no-op module pass to reset 536 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0 537 // builds. The function merging pass is 538 if (MergeFunctions) 539 MPM.add(createMergeFunctionsPass()); 540 else if (GlobalExtensionsNotEmpty() || !Extensions.empty()) 541 MPM.add(createBarrierNoopPass()); 542 543 if (PerformThinLTO) { 544 MPM.add(createLowerTypeTestsPass(nullptr, nullptr, true)); 545 // Drop available_externally and unreferenced globals. This is necessary 546 // with ThinLTO in order to avoid leaving undefined references to dead 547 // globals in the object file. 548 MPM.add(createEliminateAvailableExternallyPass()); 549 MPM.add(createGlobalDCEPass()); 550 } 551 552 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM); 553 554 if (PrepareForLTO || PrepareForThinLTO) { 555 MPM.add(createCanonicalizeAliasesPass()); 556 // Rename anon globals to be able to export them in the summary. 557 // This has to be done after we add the extensions to the pass manager 558 // as there could be passes (e.g. Adddress sanitizer) which introduce 559 // new unnamed globals. 560 MPM.add(createNameAnonGlobalPass()); 561 } 562 return; 563 } 564 565 // Add LibraryInfo if we have some. 566 if (LibraryInfo) 567 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 568 569 addInitialAliasAnalysisPasses(MPM); 570 571 // For ThinLTO there are two passes of indirect call promotion. The 572 // first is during the compile phase when PerformThinLTO=false and 573 // intra-module indirect call targets are promoted. The second is during 574 // the ThinLTO backend when PerformThinLTO=true, when we promote imported 575 // inter-module indirect calls. For that we perform indirect call promotion 576 // earlier in the pass pipeline, here before globalopt. Otherwise imported 577 // available_externally functions look unreferenced and are removed. 578 if (PerformThinLTO) { 579 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true, 580 !PGOSampleUse.empty())); 581 MPM.add(createLowerTypeTestsPass(nullptr, nullptr, true)); 582 } 583 584 // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops 585 // as it will change the CFG too much to make the 2nd profile annotation 586 // in backend more difficult. 587 bool PrepareForThinLTOUsingPGOSampleProfile = 588 PrepareForThinLTO && !PGOSampleUse.empty(); 589 if (PrepareForThinLTOUsingPGOSampleProfile) 590 DisableUnrollLoops = true; 591 592 // Infer attributes about declarations if possible. 593 MPM.add(createInferFunctionAttrsLegacyPass()); 594 595 // Infer attributes on declarations, call sites, arguments, etc. 596 if (AttributorRun & AttributorRunOption::MODULE) 597 MPM.add(createAttributorLegacyPass()); 598 599 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM); 600 601 if (OptLevel > 2) 602 MPM.add(createCallSiteSplittingPass()); 603 604 MPM.add(createIPSCCPPass()); // IP SCCP 605 MPM.add(createCalledValuePropagationPass()); 606 607 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars 608 // Promote any localized global vars. 609 MPM.add(createPromoteMemoryToRegisterPass()); 610 611 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination 612 613 MPM.add(createInstructionCombiningPass()); // Clean up after IPCP & DAE 614 addExtensionsToPM(EP_Peephole, MPM); 615 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE 616 617 // For SamplePGO in ThinLTO compile phase, we do not want to do indirect 618 // call promotion as it will change the CFG too much to make the 2nd 619 // profile annotation in backend more difficult. 620 // PGO instrumentation is added during the compile phase for ThinLTO, do 621 // not run it a second time 622 if (DefaultOrPreLinkPipeline && !PrepareForThinLTOUsingPGOSampleProfile) 623 addPGOInstrPasses(MPM); 624 625 // Create profile COMDAT variables. Lld linker wants to see all variables 626 // before the LTO/ThinLTO link since it needs to resolve symbols/comdats. 627 if (!PerformThinLTO && EnablePGOCSInstrGen) 628 MPM.add(createPGOInstrumentationGenCreateVarLegacyPass(PGOInstrGen)); 629 630 // We add a module alias analysis pass here. In part due to bugs in the 631 // analysis infrastructure this "works" in that the analysis stays alive 632 // for the entire SCC pass run below. 633 MPM.add(createGlobalsAAWrapperPass()); 634 635 // Start of CallGraph SCC passes. 636 MPM.add(createPruneEHPass()); // Remove dead EH info 637 bool RunInliner = false; 638 if (Inliner) { 639 MPM.add(Inliner); 640 Inliner = nullptr; 641 RunInliner = true; 642 } 643 644 // Infer attributes on declarations, call sites, arguments, etc. for an SCC. 645 if (AttributorRun & AttributorRunOption::CGSCC) 646 MPM.add(createAttributorCGSCCLegacyPass()); 647 648 // Try to perform OpenMP specific optimizations. This is a (quick!) no-op if 649 // there are no OpenMP runtime calls present in the module. 650 if (OptLevel > 1) 651 MPM.add(createOpenMPOptLegacyPass()); 652 653 MPM.add(createPostOrderFunctionAttrsLegacyPass()); 654 if (OptLevel > 2) 655 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args 656 657 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM); 658 addFunctionSimplificationPasses(MPM); 659 660 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC 661 // pass manager that we are specifically trying to avoid. To prevent this 662 // we must insert a no-op module pass to reset the pass manager. 663 MPM.add(createBarrierNoopPass()); 664 665 if (RunPartialInlining) 666 MPM.add(createPartialInliningPass()); 667 668 if (OptLevel > 1 && !PrepareForLTO && !PrepareForThinLTO) 669 // Remove avail extern fns and globals definitions if we aren't 670 // compiling an object file for later LTO. For LTO we want to preserve 671 // these so they are eligible for inlining at link-time. Note if they 672 // are unreferenced they will be removed by GlobalDCE later, so 673 // this only impacts referenced available externally globals. 674 // Eventually they will be suppressed during codegen, but eliminating 675 // here enables more opportunity for GlobalDCE as it may make 676 // globals referenced by available external functions dead 677 // and saves running remaining passes on the eliminated functions. 678 MPM.add(createEliminateAvailableExternallyPass()); 679 680 // CSFDO instrumentation and use pass. Don't invoke this for Prepare pass 681 // for LTO and ThinLTO -- The actual pass will be called after all inlines 682 // are performed. 683 // Need to do this after COMDAT variables have been eliminated, 684 // (i.e. after EliminateAvailableExternallyPass). 685 if (!(PrepareForLTO || PrepareForThinLTO)) 686 addPGOInstrPasses(MPM, /* IsCS */ true); 687 688 if (EnableOrderFileInstrumentation) 689 MPM.add(createInstrOrderFilePass()); 690 691 MPM.add(createReversePostOrderFunctionAttrsPass()); 692 693 // The inliner performs some kind of dead code elimination as it goes, 694 // but there are cases that are not really caught by it. We might 695 // at some point consider teaching the inliner about them, but it 696 // is OK for now to run GlobalOpt + GlobalDCE in tandem as their 697 // benefits generally outweight the cost, making the whole pipeline 698 // faster. 699 if (RunInliner) { 700 MPM.add(createGlobalOptimizerPass()); 701 MPM.add(createGlobalDCEPass()); 702 } 703 704 // If we are planning to perform ThinLTO later, let's not bloat the code with 705 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes 706 // during ThinLTO and perform the rest of the optimizations afterward. 707 if (PrepareForThinLTO) { 708 // Ensure we perform any last passes, but do so before renaming anonymous 709 // globals in case the passes add any. 710 addExtensionsToPM(EP_OptimizerLast, MPM); 711 MPM.add(createCanonicalizeAliasesPass()); 712 // Rename anon globals to be able to export them in the summary. 713 MPM.add(createNameAnonGlobalPass()); 714 return; 715 } 716 717 if (PerformThinLTO) 718 // Optimize globals now when performing ThinLTO, this enables more 719 // optimizations later. 720 MPM.add(createGlobalOptimizerPass()); 721 722 // Scheduling LoopVersioningLICM when inlining is over, because after that 723 // we may see more accurate aliasing. Reason to run this late is that too 724 // early versioning may prevent further inlining due to increase of code 725 // size. By placing it just after inlining other optimizations which runs 726 // later might get benefit of no-alias assumption in clone loop. 727 if (UseLoopVersioningLICM) { 728 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM 729 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); 730 } 731 732 // We add a fresh GlobalsModRef run at this point. This is particularly 733 // useful as the above will have inlined, DCE'ed, and function-attr 734 // propagated everything. We should at this point have a reasonably minimal 735 // and richly annotated call graph. By computing aliasing and mod/ref 736 // information for all local globals here, the late loop passes and notably 737 // the vectorizer will be able to use them to help recognize vectorizable 738 // memory operations. 739 // 740 // Note that this relies on a bug in the pass manager which preserves 741 // a module analysis into a function pass pipeline (and throughout it) so 742 // long as the first function pass doesn't invalidate the module analysis. 743 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for 744 // this to work. Fortunately, it is trivial to preserve AliasAnalysis 745 // (doing nothing preserves it as it is required to be conservatively 746 // correct in the face of IR changes). 747 MPM.add(createGlobalsAAWrapperPass()); 748 749 MPM.add(createFloat2IntPass()); 750 MPM.add(createLowerConstantIntrinsicsPass()); 751 752 if (EnableMatrix) { 753 MPM.add(createLowerMatrixIntrinsicsPass()); 754 // CSE the pointer arithmetic of the column vectors. This allows alias 755 // analysis to establish no-aliasing between loads and stores of different 756 // columns of the same matrix. 757 MPM.add(createEarlyCSEPass(false)); 758 } 759 760 addExtensionsToPM(EP_VectorizerStart, MPM); 761 762 // Re-rotate loops in all our loop nests. These may have fallout out of 763 // rotated form due to GVN or other transformations, and the vectorizer relies 764 // on the rotated form. Disable header duplication at -Oz. 765 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); 766 767 // Distribute loops to allow partial vectorization. I.e. isolate dependences 768 // into separate loop that would otherwise inhibit vectorization. This is 769 // currently only performed for loops marked with the metadata 770 // llvm.loop.distribute=true or when -enable-loop-distribute is specified. 771 MPM.add(createLoopDistributePass()); 772 773 MPM.add(createLoopVectorizePass(!LoopsInterleaved, !LoopVectorize)); 774 775 // Eliminate loads by forwarding stores from the previous iteration to loads 776 // of the current iteration. 777 MPM.add(createLoopLoadEliminationPass()); 778 779 // FIXME: Because of #pragma vectorize enable, the passes below are always 780 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when 781 // on -O1 and no #pragma is found). Would be good to have these two passes 782 // as function calls, so that we can only pass them when the vectorizer 783 // changed the code. 784 MPM.add(createInstructionCombiningPass()); 785 if (OptLevel > 1 && ExtraVectorizerPasses) { 786 // At higher optimization levels, try to clean up any runtime overlap and 787 // alignment checks inserted by the vectorizer. We want to track correllated 788 // runtime checks for two inner loops in the same outer loop, fold any 789 // common computations, hoist loop-invariant aspects out of any outer loop, 790 // and unswitch the runtime checks if possible. Once hoisted, we may have 791 // dead (or speculatable) control flows or more combining opportunities. 792 MPM.add(createEarlyCSEPass()); 793 MPM.add(createCorrelatedValuePropagationPass()); 794 MPM.add(createInstructionCombiningPass()); 795 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); 796 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget)); 797 MPM.add(createCFGSimplificationPass()); 798 MPM.add(createInstructionCombiningPass()); 799 } 800 801 // Cleanup after loop vectorization, etc. Simplification passes like CVP and 802 // GVN, loop transforms, and others have already run, so it's now better to 803 // convert to more optimized IR using more aggressive simplify CFG options. 804 // The extra sinking transform can create larger basic blocks, so do this 805 // before SLP vectorization. 806 // FIXME: study whether hoisting and/or sinking of common instructions should 807 // be delayed until after SLP vectorizer. 808 MPM.add(createCFGSimplificationPass(SimplifyCFGOptions() 809 .forwardSwitchCondToPhi(true) 810 .convertSwitchToLookupTable(true) 811 .needCanonicalLoops(false) 812 .hoistCommonInsts(true) 813 .sinkCommonInsts(true))); 814 815 if (SLPVectorize) { 816 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 817 if (OptLevel > 1 && ExtraVectorizerPasses) { 818 MPM.add(createEarlyCSEPass()); 819 } 820 } 821 822 // Enhance/cleanup vector code. 823 MPM.add(createVectorCombinePass()); 824 825 addExtensionsToPM(EP_Peephole, MPM); 826 MPM.add(createInstructionCombiningPass()); 827 828 if (EnableUnrollAndJam && !DisableUnrollLoops) { 829 // Unroll and Jam. We do this before unroll but need to be in a separate 830 // loop pass manager in order for the outer loop to be processed by 831 // unroll and jam before the inner loop is unrolled. 832 MPM.add(createLoopUnrollAndJamPass(OptLevel)); 833 } 834 835 // Unroll small loops 836 MPM.add(createLoopUnrollPass(OptLevel, DisableUnrollLoops, 837 ForgetAllSCEVInLoopUnroll)); 838 839 if (!DisableUnrollLoops) { 840 // LoopUnroll may generate some redundency to cleanup. 841 MPM.add(createInstructionCombiningPass()); 842 843 // Runtime unrolling will introduce runtime check in loop prologue. If the 844 // unrolled loop is a inner loop, then the prologue will be inside the 845 // outer loop. LICM pass can help to promote the runtime check out if the 846 // checked value is loop invariant. 847 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); 848 } 849 850 MPM.add(createWarnMissedTransformationsPass()); 851 852 // After vectorization and unrolling, assume intrinsics may tell us more 853 // about pointer alignments. 854 MPM.add(createAlignmentFromAssumptionsPass()); 855 856 // FIXME: We shouldn't bother with this anymore. 857 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes 858 859 // GlobalOpt already deletes dead functions and globals, at -O2 try a 860 // late pass of GlobalDCE. It is capable of deleting dead cycles. 861 if (OptLevel > 1) { 862 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals. 863 MPM.add(createConstantMergePass()); // Merge dup global constants 864 } 865 866 // See comment in the new PM for justification of scheduling splitting at 867 // this stage (\ref buildModuleSimplificationPipeline). 868 if (EnableHotColdSplit && !(PrepareForLTO || PrepareForThinLTO)) 869 MPM.add(createHotColdSplittingPass()); 870 871 if (MergeFunctions) 872 MPM.add(createMergeFunctionsPass()); 873 874 // Add Module flag "CG Profile" based on Branch Frequency Information. 875 if (CallGraphProfile) 876 MPM.add(createCGProfileLegacyPass()); 877 878 // LoopSink pass sinks instructions hoisted by LICM, which serves as a 879 // canonicalization pass that enables other optimizations. As a result, 880 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM 881 // result too early. 882 MPM.add(createLoopSinkPass()); 883 // Get rid of LCSSA nodes. 884 MPM.add(createInstSimplifyLegacyPass()); 885 886 // This hoists/decomposes div/rem ops. It should run after other sink/hoist 887 // passes to avoid re-sinking, but before SimplifyCFG because it can allow 888 // flattening of blocks. 889 MPM.add(createDivRemPairsPass()); 890 891 // LoopSink (and other loop passes since the last simplifyCFG) might have 892 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG. 893 MPM.add(createCFGSimplificationPass()); 894 895 addExtensionsToPM(EP_OptimizerLast, MPM); 896 897 if (PrepareForLTO) { 898 MPM.add(createCanonicalizeAliasesPass()); 899 // Rename anon globals to be able to handle them in the summary 900 MPM.add(createNameAnonGlobalPass()); 901 } 902 } 903 904 void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) { 905 // Load sample profile before running the LTO optimization pipeline. 906 if (!PGOSampleUse.empty()) { 907 PM.add(createPruneEHPass()); 908 PM.add(createSampleProfileLoaderPass(PGOSampleUse)); 909 } 910 911 // Remove unused virtual tables to improve the quality of code generated by 912 // whole-program devirtualization and bitset lowering. 913 PM.add(createGlobalDCEPass()); 914 915 // Provide AliasAnalysis services for optimizations. 916 addInitialAliasAnalysisPasses(PM); 917 918 // Allow forcing function attributes as a debugging and tuning aid. 919 PM.add(createForceFunctionAttrsLegacyPass()); 920 921 // Infer attributes about declarations if possible. 922 PM.add(createInferFunctionAttrsLegacyPass()); 923 924 if (OptLevel > 1) { 925 // Split call-site with more constrained arguments. 926 PM.add(createCallSiteSplittingPass()); 927 928 // Indirect call promotion. This should promote all the targets that are 929 // left by the earlier promotion pass that promotes intra-module targets. 930 // This two-step promotion is to save the compile time. For LTO, it should 931 // produce the same result as if we only do promotion here. 932 PM.add( 933 createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse.empty())); 934 935 // Propagate constants at call sites into the functions they call. This 936 // opens opportunities for globalopt (and inlining) by substituting function 937 // pointers passed as arguments to direct uses of functions. 938 PM.add(createIPSCCPPass()); 939 940 // Attach metadata to indirect call sites indicating the set of functions 941 // they may target at run-time. This should follow IPSCCP. 942 PM.add(createCalledValuePropagationPass()); 943 944 // Infer attributes on declarations, call sites, arguments, etc. 945 if (AttributorRun & AttributorRunOption::MODULE) 946 PM.add(createAttributorLegacyPass()); 947 } 948 949 // Infer attributes about definitions. The readnone attribute in particular is 950 // required for virtual constant propagation. 951 PM.add(createPostOrderFunctionAttrsLegacyPass()); 952 PM.add(createReversePostOrderFunctionAttrsPass()); 953 954 // Split globals using inrange annotations on GEP indices. This can help 955 // improve the quality of generated code when virtual constant propagation or 956 // control flow integrity are enabled. 957 PM.add(createGlobalSplitPass()); 958 959 // Apply whole-program devirtualization and virtual constant propagation. 960 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr)); 961 962 // That's all we need at opt level 1. 963 if (OptLevel == 1) 964 return; 965 966 // Now that we internalized some globals, see if we can hack on them! 967 PM.add(createGlobalOptimizerPass()); 968 // Promote any localized global vars. 969 PM.add(createPromoteMemoryToRegisterPass()); 970 971 // Linking modules together can lead to duplicated global constants, only 972 // keep one copy of each constant. 973 PM.add(createConstantMergePass()); 974 975 // Remove unused arguments from functions. 976 PM.add(createDeadArgEliminationPass()); 977 978 // Reduce the code after globalopt and ipsccp. Both can open up significant 979 // simplification opportunities, and both can propagate functions through 980 // function pointers. When this happens, we often have to resolve varargs 981 // calls, etc, so let instcombine do this. 982 if (OptLevel > 2) 983 PM.add(createAggressiveInstCombinerPass()); 984 PM.add(createInstructionCombiningPass()); 985 addExtensionsToPM(EP_Peephole, PM); 986 987 // Inline small functions 988 bool RunInliner = Inliner; 989 if (RunInliner) { 990 PM.add(Inliner); 991 Inliner = nullptr; 992 } 993 994 PM.add(createPruneEHPass()); // Remove dead EH info. 995 996 // CSFDO instrumentation and use pass. 997 addPGOInstrPasses(PM, /* IsCS */ true); 998 999 // Infer attributes on declarations, call sites, arguments, etc. for an SCC. 1000 if (AttributorRun & AttributorRunOption::CGSCC) 1001 PM.add(createAttributorCGSCCLegacyPass()); 1002 1003 // Try to perform OpenMP specific optimizations. This is a (quick!) no-op if 1004 // there are no OpenMP runtime calls present in the module. 1005 if (OptLevel > 1) 1006 PM.add(createOpenMPOptLegacyPass()); 1007 1008 // Optimize globals again if we ran the inliner. 1009 if (RunInliner) 1010 PM.add(createGlobalOptimizerPass()); 1011 PM.add(createGlobalDCEPass()); // Remove dead functions. 1012 1013 // If we didn't decide to inline a function, check to see if we can 1014 // transform it to pass arguments by value instead of by reference. 1015 PM.add(createArgumentPromotionPass()); 1016 1017 // The IPO passes may leave cruft around. Clean up after them. 1018 PM.add(createInstructionCombiningPass()); 1019 addExtensionsToPM(EP_Peephole, PM); 1020 PM.add(createJumpThreadingPass(/*FreezeSelectCond*/ true)); 1021 1022 // Break up allocas 1023 PM.add(createSROAPass()); 1024 1025 // LTO provides additional opportunities for tailcall elimination due to 1026 // link-time inlining, and visibility of nocapture attribute. 1027 if (OptLevel > 1) 1028 PM.add(createTailCallEliminationPass()); 1029 1030 // Infer attributes on declarations, call sites, arguments, etc. 1031 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture. 1032 // Run a few AA driven optimizations here and now, to cleanup the code. 1033 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis. 1034 1035 PM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); 1036 PM.add(NewGVN ? createNewGVNPass() 1037 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies. 1038 PM.add(createMemCpyOptPass()); // Remove dead memcpys. 1039 1040 // Nuke dead stores. 1041 PM.add(createDeadStoreEliminationPass()); 1042 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds. 1043 1044 // More loops are countable; try to optimize them. 1045 PM.add(createIndVarSimplifyPass()); 1046 PM.add(createLoopDeletionPass()); 1047 if (EnableLoopInterchange) 1048 PM.add(createLoopInterchangePass()); 1049 if (EnableLoopFlatten) 1050 PM.add(createLoopFlattenPass()); 1051 1052 // Unroll small loops 1053 PM.add(createSimpleLoopUnrollPass(OptLevel, DisableUnrollLoops, 1054 ForgetAllSCEVInLoopUnroll)); 1055 PM.add(createLoopVectorizePass(true, !LoopVectorize)); 1056 // The vectorizer may have significantly shortened a loop body; unroll again. 1057 PM.add(createLoopUnrollPass(OptLevel, DisableUnrollLoops, 1058 ForgetAllSCEVInLoopUnroll)); 1059 1060 PM.add(createWarnMissedTransformationsPass()); 1061 1062 // Now that we've optimized loops (in particular loop induction variables), 1063 // we may have exposed more scalar opportunities. Run parts of the scalar 1064 // optimizer again at this point. 1065 PM.add(createInstructionCombiningPass()); // Initial cleanup 1066 PM.add(createCFGSimplificationPass()); // if-convert 1067 PM.add(createSCCPPass()); // Propagate exposed constants 1068 PM.add(createInstructionCombiningPass()); // Clean up again 1069 PM.add(createBitTrackingDCEPass()); 1070 1071 // More scalar chains could be vectorized due to more alias information 1072 if (SLPVectorize) 1073 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 1074 1075 PM.add(createVectorCombinePass()); // Clean up partial vectorization. 1076 1077 // After vectorization, assume intrinsics may tell us more about pointer 1078 // alignments. 1079 PM.add(createAlignmentFromAssumptionsPass()); 1080 1081 // Cleanup and simplify the code after the scalar optimizations. 1082 PM.add(createInstructionCombiningPass()); 1083 addExtensionsToPM(EP_Peephole, PM); 1084 1085 PM.add(createJumpThreadingPass(/*FreezeSelectCond*/ true)); 1086 } 1087 1088 void PassManagerBuilder::addLateLTOOptimizationPasses( 1089 legacy::PassManagerBase &PM) { 1090 // See comment in the new PM for justification of scheduling splitting at 1091 // this stage (\ref buildLTODefaultPipeline). 1092 if (EnableHotColdSplit) 1093 PM.add(createHotColdSplittingPass()); 1094 1095 // Delete basic blocks, which optimization passes may have killed. 1096 PM.add(createCFGSimplificationPass()); 1097 1098 // Drop bodies of available externally objects to improve GlobalDCE. 1099 PM.add(createEliminateAvailableExternallyPass()); 1100 1101 // Now that we have optimized the program, discard unreachable functions. 1102 PM.add(createGlobalDCEPass()); 1103 1104 // FIXME: this is profitable (for compiler time) to do at -O0 too, but 1105 // currently it damages debug info. 1106 if (MergeFunctions) 1107 PM.add(createMergeFunctionsPass()); 1108 } 1109 1110 void PassManagerBuilder::populateThinLTOPassManager( 1111 legacy::PassManagerBase &PM) { 1112 PerformThinLTO = true; 1113 if (LibraryInfo) 1114 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 1115 1116 if (VerifyInput) 1117 PM.add(createVerifierPass()); 1118 1119 if (ImportSummary) { 1120 // This pass imports type identifier resolutions for whole-program 1121 // devirtualization and CFI. It must run early because other passes may 1122 // disturb the specific instruction patterns that these passes look for, 1123 // creating dependencies on resolutions that may not appear in the summary. 1124 // 1125 // For example, GVN may transform the pattern assume(type.test) appearing in 1126 // two basic blocks into assume(phi(type.test, type.test)), which would 1127 // transform a dependency on a WPD resolution into a dependency on a type 1128 // identifier resolution for CFI. 1129 // 1130 // Also, WPD has access to more precise information than ICP and can 1131 // devirtualize more effectively, so it should operate on the IR first. 1132 PM.add(createWholeProgramDevirtPass(nullptr, ImportSummary)); 1133 PM.add(createLowerTypeTestsPass(nullptr, ImportSummary)); 1134 } 1135 1136 populateModulePassManager(PM); 1137 1138 if (VerifyOutput) 1139 PM.add(createVerifierPass()); 1140 PerformThinLTO = false; 1141 } 1142 1143 void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) { 1144 if (LibraryInfo) 1145 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 1146 1147 if (VerifyInput) 1148 PM.add(createVerifierPass()); 1149 1150 addExtensionsToPM(EP_FullLinkTimeOptimizationEarly, PM); 1151 1152 if (OptLevel != 0) 1153 addLTOOptimizationPasses(PM); 1154 else { 1155 // The whole-program-devirt pass needs to run at -O0 because only it knows 1156 // about the llvm.type.checked.load intrinsic: it needs to both lower the 1157 // intrinsic itself and handle it in the summary. 1158 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr)); 1159 } 1160 1161 // Create a function that performs CFI checks for cross-DSO calls with targets 1162 // in the current module. 1163 PM.add(createCrossDSOCFIPass()); 1164 1165 // Lower type metadata and the type.test intrinsic. This pass supports Clang's 1166 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at 1167 // link time if CFI is enabled. The pass does nothing if CFI is disabled. 1168 PM.add(createLowerTypeTestsPass(ExportSummary, nullptr)); 1169 // Run a second time to clean up any type tests left behind by WPD for use 1170 // in ICP (which is performed earlier than this in the regular LTO pipeline). 1171 PM.add(createLowerTypeTestsPass(nullptr, nullptr, true)); 1172 1173 if (OptLevel != 0) 1174 addLateLTOOptimizationPasses(PM); 1175 1176 addExtensionsToPM(EP_FullLinkTimeOptimizationLast, PM); 1177 1178 if (VerifyOutput) 1179 PM.add(createVerifierPass()); 1180 } 1181 1182 LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() { 1183 PassManagerBuilder *PMB = new PassManagerBuilder(); 1184 return wrap(PMB); 1185 } 1186 1187 void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) { 1188 PassManagerBuilder *Builder = unwrap(PMB); 1189 delete Builder; 1190 } 1191 1192 void 1193 LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB, 1194 unsigned OptLevel) { 1195 PassManagerBuilder *Builder = unwrap(PMB); 1196 Builder->OptLevel = OptLevel; 1197 } 1198 1199 void 1200 LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB, 1201 unsigned SizeLevel) { 1202 PassManagerBuilder *Builder = unwrap(PMB); 1203 Builder->SizeLevel = SizeLevel; 1204 } 1205 1206 void 1207 LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB, 1208 LLVMBool Value) { 1209 // NOTE: The DisableUnitAtATime switch has been removed. 1210 } 1211 1212 void 1213 LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB, 1214 LLVMBool Value) { 1215 PassManagerBuilder *Builder = unwrap(PMB); 1216 Builder->DisableUnrollLoops = Value; 1217 } 1218 1219 void 1220 LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB, 1221 LLVMBool Value) { 1222 // NOTE: The simplify-libcalls pass has been removed. 1223 } 1224 1225 void 1226 LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB, 1227 unsigned Threshold) { 1228 PassManagerBuilder *Builder = unwrap(PMB); 1229 Builder->Inliner = createFunctionInliningPass(Threshold); 1230 } 1231 1232 void 1233 LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB, 1234 LLVMPassManagerRef PM) { 1235 PassManagerBuilder *Builder = unwrap(PMB); 1236 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM); 1237 Builder->populateFunctionPassManager(*FPM); 1238 } 1239 1240 void 1241 LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB, 1242 LLVMPassManagerRef PM) { 1243 PassManagerBuilder *Builder = unwrap(PMB); 1244 legacy::PassManagerBase *MPM = unwrap(PM); 1245 Builder->populateModulePassManager(*MPM); 1246 } 1247 1248 void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB, 1249 LLVMPassManagerRef PM, 1250 LLVMBool Internalize, 1251 LLVMBool RunInliner) { 1252 PassManagerBuilder *Builder = unwrap(PMB); 1253 legacy::PassManagerBase *LPM = unwrap(PM); 1254 1255 // A small backwards compatibility hack. populateLTOPassManager used to take 1256 // an RunInliner option. 1257 if (RunInliner && !Builder->Inliner) 1258 Builder->Inliner = createFunctionInliningPass(); 1259 1260 Builder->populateLTOPassManager(*LPM); 1261 } 1262