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 if (OptLevel > 2) 322 MPM.add(createAggressiveInstCombinerPass()); 323 addInstructionCombiningPass(MPM); 324 if (SizeLevel == 0 && !DisableLibCallsShrinkWrap) 325 MPM.add(createLibCallsShrinkWrapPass()); 326 addExtensionsToPM(EP_Peephole, MPM); 327 328 // Optimize memory intrinsic calls based on the profiled size information. 329 if (SizeLevel == 0) 330 MPM.add(createPGOMemOPSizeOptLegacyPass()); 331 332 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls 333 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 334 MPM.add(createReassociatePass()); // Reassociate expressions 335 // Rotate Loop - disable header duplication at -Oz 336 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); 337 MPM.add(createLICMPass()); // Hoist loop invariants 338 if (EnableSimpleLoopUnswitch) 339 MPM.add(createSimpleLoopUnswitchLegacyPass()); 340 else 341 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget)); 342 MPM.add(createCFGSimplificationPass()); 343 addInstructionCombiningPass(MPM); 344 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars 345 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset. 346 addExtensionsToPM(EP_LateLoopOptimizations, MPM); 347 MPM.add(createLoopDeletionPass()); // Delete dead loops 348 349 if (EnableLoopInterchange) { 350 MPM.add(createLoopInterchangePass()); // Interchange loops 351 MPM.add(createCFGSimplificationPass()); 352 } 353 if (!DisableUnrollLoops) 354 MPM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops 355 addExtensionsToPM(EP_LoopOptimizerEnd, MPM); 356 357 if (OptLevel > 1) { 358 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds 359 MPM.add(NewGVN ? createNewGVNPass() 360 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies 361 } 362 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset 363 MPM.add(createSCCPPass()); // Constant prop with SCCP 364 365 // Delete dead bit computations (instcombine runs after to fold away the dead 366 // computations, and then ADCE will run later to exploit any new DCE 367 // opportunities that creates). 368 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations 369 370 // Run instcombine after redundancy elimination to exploit opportunities 371 // opened up by them. 372 addInstructionCombiningPass(MPM); 373 addExtensionsToPM(EP_Peephole, MPM); 374 MPM.add(createJumpThreadingPass()); // Thread jumps 375 MPM.add(createCorrelatedValuePropagationPass()); 376 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores 377 MPM.add(createLICMPass()); 378 379 addExtensionsToPM(EP_ScalarOptimizerLate, MPM); 380 381 if (RerollLoops) 382 MPM.add(createLoopRerollPass()); 383 if (!RunSLPAfterLoopVectorization && SLPVectorize) 384 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 385 386 MPM.add(createAggressiveDCEPass()); // Delete dead instructions 387 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 388 // Clean up after everything. 389 addInstructionCombiningPass(MPM); 390 addExtensionsToPM(EP_Peephole, MPM); 391 } 392 393 void PassManagerBuilder::populateModulePassManager( 394 legacy::PassManagerBase &MPM) { 395 if (!PGOSampleUse.empty()) { 396 MPM.add(createPruneEHPass()); 397 MPM.add(createSampleProfileLoaderPass(PGOSampleUse)); 398 } 399 400 // Allow forcing function attributes as a debugging and tuning aid. 401 MPM.add(createForceFunctionAttrsLegacyPass()); 402 403 // If all optimizations are disabled, just run the always-inline pass and, 404 // if enabled, the function merging pass. 405 if (OptLevel == 0) { 406 addPGOInstrPasses(MPM); 407 if (Inliner) { 408 MPM.add(Inliner); 409 Inliner = nullptr; 410 } 411 412 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly 413 // creates a CGSCC pass manager, but we don't want to add extensions into 414 // that pass manager. To prevent this we insert a no-op module pass to reset 415 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0 416 // builds. The function merging pass is 417 if (MergeFunctions) 418 MPM.add(createMergeFunctionsPass()); 419 else if (GlobalExtensionsNotEmpty() || !Extensions.empty()) 420 MPM.add(createBarrierNoopPass()); 421 422 if (PerformThinLTO) { 423 // Drop available_externally and unreferenced globals. This is necessary 424 // with ThinLTO in order to avoid leaving undefined references to dead 425 // globals in the object file. 426 MPM.add(createEliminateAvailableExternallyPass()); 427 MPM.add(createGlobalDCEPass()); 428 } 429 430 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM); 431 432 // Rename anon globals to be able to export them in the summary. 433 // This has to be done after we add the extensions to the pass manager 434 // as there could be passes (e.g. Adddress sanitizer) which introduce 435 // new unnamed globals. 436 if (PrepareForThinLTO) 437 MPM.add(createNameAnonGlobalPass()); 438 return; 439 } 440 441 // Add LibraryInfo if we have some. 442 if (LibraryInfo) 443 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 444 445 addInitialAliasAnalysisPasses(MPM); 446 447 // For ThinLTO there are two passes of indirect call promotion. The 448 // first is during the compile phase when PerformThinLTO=false and 449 // intra-module indirect call targets are promoted. The second is during 450 // the ThinLTO backend when PerformThinLTO=true, when we promote imported 451 // inter-module indirect calls. For that we perform indirect call promotion 452 // earlier in the pass pipeline, here before globalopt. Otherwise imported 453 // available_externally functions look unreferenced and are removed. 454 if (PerformThinLTO) 455 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true, 456 !PGOSampleUse.empty())); 457 458 // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops 459 // as it will change the CFG too much to make the 2nd profile annotation 460 // in backend more difficult. 461 bool PrepareForThinLTOUsingPGOSampleProfile = 462 PrepareForThinLTO && !PGOSampleUse.empty(); 463 if (PrepareForThinLTOUsingPGOSampleProfile) 464 DisableUnrollLoops = true; 465 466 // Infer attributes about declarations if possible. 467 MPM.add(createInferFunctionAttrsLegacyPass()); 468 469 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM); 470 471 if (OptLevel > 2) 472 MPM.add(createCallSiteSplittingPass()); 473 474 MPM.add(createIPSCCPPass()); // IP SCCP 475 MPM.add(createCalledValuePropagationPass()); 476 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars 477 // Promote any localized global vars. 478 MPM.add(createPromoteMemoryToRegisterPass()); 479 480 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination 481 482 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE 483 addExtensionsToPM(EP_Peephole, MPM); 484 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE 485 486 // For SamplePGO in ThinLTO compile phase, we do not want to do indirect 487 // call promotion as it will change the CFG too much to make the 2nd 488 // profile annotation in backend more difficult. 489 // PGO instrumentation is added during the compile phase for ThinLTO, do 490 // not run it a second time 491 if (!PerformThinLTO && !PrepareForThinLTOUsingPGOSampleProfile) 492 addPGOInstrPasses(MPM); 493 494 // We add a module alias analysis pass here. In part due to bugs in the 495 // analysis infrastructure this "works" in that the analysis stays alive 496 // for the entire SCC pass run below. 497 MPM.add(createGlobalsAAWrapperPass()); 498 499 // Start of CallGraph SCC passes. 500 MPM.add(createPruneEHPass()); // Remove dead EH info 501 bool RunInliner = false; 502 if (Inliner) { 503 MPM.add(Inliner); 504 Inliner = nullptr; 505 RunInliner = true; 506 } 507 508 MPM.add(createPostOrderFunctionAttrsLegacyPass()); 509 if (OptLevel > 2) 510 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args 511 512 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM); 513 addFunctionSimplificationPasses(MPM); 514 515 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC 516 // pass manager that we are specifically trying to avoid. To prevent this 517 // we must insert a no-op module pass to reset the pass manager. 518 MPM.add(createBarrierNoopPass()); 519 520 if (RunPartialInlining) 521 MPM.add(createPartialInliningPass()); 522 523 if (OptLevel > 1 && !PrepareForLTO && !PrepareForThinLTO) 524 // Remove avail extern fns and globals definitions if we aren't 525 // compiling an object file for later LTO. For LTO we want to preserve 526 // these so they are eligible for inlining at link-time. Note if they 527 // are unreferenced they will be removed by GlobalDCE later, so 528 // this only impacts referenced available externally globals. 529 // Eventually they will be suppressed during codegen, but eliminating 530 // here enables more opportunity for GlobalDCE as it may make 531 // globals referenced by available external functions dead 532 // and saves running remaining passes on the eliminated functions. 533 MPM.add(createEliminateAvailableExternallyPass()); 534 535 MPM.add(createReversePostOrderFunctionAttrsPass()); 536 537 // The inliner performs some kind of dead code elimination as it goes, 538 // but there are cases that are not really caught by it. We might 539 // at some point consider teaching the inliner about them, but it 540 // is OK for now to run GlobalOpt + GlobalDCE in tandem as their 541 // benefits generally outweight the cost, making the whole pipeline 542 // faster. 543 if (RunInliner) { 544 MPM.add(createGlobalOptimizerPass()); 545 MPM.add(createGlobalDCEPass()); 546 } 547 548 // If we are planning to perform ThinLTO later, let's not bloat the code with 549 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes 550 // during ThinLTO and perform the rest of the optimizations afterward. 551 if (PrepareForThinLTO) { 552 // Ensure we perform any last passes, but do so before renaming anonymous 553 // globals in case the passes add any. 554 addExtensionsToPM(EP_OptimizerLast, MPM); 555 // Rename anon globals to be able to export them in the summary. 556 MPM.add(createNameAnonGlobalPass()); 557 return; 558 } 559 560 if (PerformThinLTO) 561 // Optimize globals now when performing ThinLTO, this enables more 562 // optimizations later. 563 MPM.add(createGlobalOptimizerPass()); 564 565 // Scheduling LoopVersioningLICM when inlining is over, because after that 566 // we may see more accurate aliasing. Reason to run this late is that too 567 // early versioning may prevent further inlining due to increase of code 568 // size. By placing it just after inlining other optimizations which runs 569 // later might get benefit of no-alias assumption in clone loop. 570 if (UseLoopVersioningLICM) { 571 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM 572 MPM.add(createLICMPass()); // Hoist loop invariants 573 } 574 575 // We add a fresh GlobalsModRef run at this point. This is particularly 576 // useful as the above will have inlined, DCE'ed, and function-attr 577 // propagated everything. We should at this point have a reasonably minimal 578 // and richly annotated call graph. By computing aliasing and mod/ref 579 // information for all local globals here, the late loop passes and notably 580 // the vectorizer will be able to use them to help recognize vectorizable 581 // memory operations. 582 // 583 // Note that this relies on a bug in the pass manager which preserves 584 // a module analysis into a function pass pipeline (and throughout it) so 585 // long as the first function pass doesn't invalidate the module analysis. 586 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for 587 // this to work. Fortunately, it is trivial to preserve AliasAnalysis 588 // (doing nothing preserves it as it is required to be conservatively 589 // correct in the face of IR changes). 590 MPM.add(createGlobalsAAWrapperPass()); 591 592 MPM.add(createFloat2IntPass()); 593 594 addExtensionsToPM(EP_VectorizerStart, MPM); 595 596 // Re-rotate loops in all our loop nests. These may have fallout out of 597 // rotated form due to GVN or other transformations, and the vectorizer relies 598 // on the rotated form. Disable header duplication at -Oz. 599 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); 600 601 // Distribute loops to allow partial vectorization. I.e. isolate dependences 602 // into separate loop that would otherwise inhibit vectorization. This is 603 // currently only performed for loops marked with the metadata 604 // llvm.loop.distribute=true or when -enable-loop-distribute is specified. 605 MPM.add(createLoopDistributePass()); 606 607 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize)); 608 609 // Eliminate loads by forwarding stores from the previous iteration to loads 610 // of the current iteration. 611 MPM.add(createLoopLoadEliminationPass()); 612 613 // FIXME: Because of #pragma vectorize enable, the passes below are always 614 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when 615 // on -O1 and no #pragma is found). Would be good to have these two passes 616 // as function calls, so that we can only pass them when the vectorizer 617 // changed the code. 618 addInstructionCombiningPass(MPM); 619 if (OptLevel > 1 && ExtraVectorizerPasses) { 620 // At higher optimization levels, try to clean up any runtime overlap and 621 // alignment checks inserted by the vectorizer. We want to track correllated 622 // runtime checks for two inner loops in the same outer loop, fold any 623 // common computations, hoist loop-invariant aspects out of any outer loop, 624 // and unswitch the runtime checks if possible. Once hoisted, we may have 625 // dead (or speculatable) control flows or more combining opportunities. 626 MPM.add(createEarlyCSEPass()); 627 MPM.add(createCorrelatedValuePropagationPass()); 628 addInstructionCombiningPass(MPM); 629 MPM.add(createLICMPass()); 630 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget)); 631 MPM.add(createCFGSimplificationPass()); 632 addInstructionCombiningPass(MPM); 633 } 634 635 // Cleanup after loop vectorization, etc. Simplification passes like CVP and 636 // GVN, loop transforms, and others have already run, so it's now better to 637 // convert to more optimized IR using more aggressive simplify CFG options. 638 // The extra sinking transform can create larger basic blocks, so do this 639 // before SLP vectorization. 640 MPM.add(createCFGSimplificationPass(1, true, true, false, true)); 641 642 if (RunSLPAfterLoopVectorization && SLPVectorize) { 643 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 644 if (OptLevel > 1 && ExtraVectorizerPasses) { 645 MPM.add(createEarlyCSEPass()); 646 } 647 } 648 649 addExtensionsToPM(EP_Peephole, MPM); 650 addInstructionCombiningPass(MPM); 651 652 if (!DisableUnrollLoops) { 653 MPM.add(createLoopUnrollPass(OptLevel)); // Unroll small loops 654 655 // LoopUnroll may generate some redundency to cleanup. 656 addInstructionCombiningPass(MPM); 657 658 // Runtime unrolling will introduce runtime check in loop prologue. If the 659 // unrolled loop is a inner loop, then the prologue will be inside the 660 // outer loop. LICM pass can help to promote the runtime check out if the 661 // checked value is loop invariant. 662 MPM.add(createLICMPass()); 663 } 664 665 // After vectorization and unrolling, assume intrinsics may tell us more 666 // about pointer alignments. 667 MPM.add(createAlignmentFromAssumptionsPass()); 668 669 // FIXME: We shouldn't bother with this anymore. 670 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes 671 672 // GlobalOpt already deletes dead functions and globals, at -O2 try a 673 // late pass of GlobalDCE. It is capable of deleting dead cycles. 674 if (OptLevel > 1) { 675 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals. 676 MPM.add(createConstantMergePass()); // Merge dup global constants 677 } 678 679 if (MergeFunctions) 680 MPM.add(createMergeFunctionsPass()); 681 682 // LoopSink pass sinks instructions hoisted by LICM, which serves as a 683 // canonicalization pass that enables other optimizations. As a result, 684 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM 685 // result too early. 686 MPM.add(createLoopSinkPass()); 687 // Get rid of LCSSA nodes. 688 MPM.add(createInstructionSimplifierPass()); 689 690 // This hoists/decomposes div/rem ops. It should run after other sink/hoist 691 // passes to avoid re-sinking, but before SimplifyCFG because it can allow 692 // flattening of blocks. 693 MPM.add(createDivRemPairsPass()); 694 695 // LoopSink (and other loop passes since the last simplifyCFG) might have 696 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG. 697 MPM.add(createCFGSimplificationPass()); 698 699 addExtensionsToPM(EP_OptimizerLast, MPM); 700 } 701 702 void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) { 703 // Remove unused virtual tables to improve the quality of code generated by 704 // whole-program devirtualization and bitset lowering. 705 PM.add(createGlobalDCEPass()); 706 707 // Provide AliasAnalysis services for optimizations. 708 addInitialAliasAnalysisPasses(PM); 709 710 // Allow forcing function attributes as a debugging and tuning aid. 711 PM.add(createForceFunctionAttrsLegacyPass()); 712 713 // Infer attributes about declarations if possible. 714 PM.add(createInferFunctionAttrsLegacyPass()); 715 716 if (OptLevel > 1) { 717 // Split call-site with more constrained arguments. 718 PM.add(createCallSiteSplittingPass()); 719 720 // Indirect call promotion. This should promote all the targets that are 721 // left by the earlier promotion pass that promotes intra-module targets. 722 // This two-step promotion is to save the compile time. For LTO, it should 723 // produce the same result as if we only do promotion here. 724 PM.add( 725 createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse.empty())); 726 727 // Propagate constants at call sites into the functions they call. This 728 // opens opportunities for globalopt (and inlining) by substituting function 729 // pointers passed as arguments to direct uses of functions. 730 PM.add(createIPSCCPPass()); 731 732 // Attach metadata to indirect call sites indicating the set of functions 733 // they may target at run-time. This should follow IPSCCP. 734 PM.add(createCalledValuePropagationPass()); 735 } 736 737 // Infer attributes about definitions. The readnone attribute in particular is 738 // required for virtual constant propagation. 739 PM.add(createPostOrderFunctionAttrsLegacyPass()); 740 PM.add(createReversePostOrderFunctionAttrsPass()); 741 742 // Split globals using inrange annotations on GEP indices. This can help 743 // improve the quality of generated code when virtual constant propagation or 744 // control flow integrity are enabled. 745 PM.add(createGlobalSplitPass()); 746 747 // Apply whole-program devirtualization and virtual constant propagation. 748 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr)); 749 750 // That's all we need at opt level 1. 751 if (OptLevel == 1) 752 return; 753 754 // Now that we internalized some globals, see if we can hack on them! 755 PM.add(createGlobalOptimizerPass()); 756 // Promote any localized global vars. 757 PM.add(createPromoteMemoryToRegisterPass()); 758 759 // Linking modules together can lead to duplicated global constants, only 760 // keep one copy of each constant. 761 PM.add(createConstantMergePass()); 762 763 // Remove unused arguments from functions. 764 PM.add(createDeadArgEliminationPass()); 765 766 // Reduce the code after globalopt and ipsccp. Both can open up significant 767 // simplification opportunities, and both can propagate functions through 768 // function pointers. When this happens, we often have to resolve varargs 769 // calls, etc, so let instcombine do this. 770 if (OptLevel > 2) 771 PM.add(createAggressiveInstCombinerPass()); 772 addInstructionCombiningPass(PM); 773 addExtensionsToPM(EP_Peephole, PM); 774 775 // Inline small functions 776 bool RunInliner = Inliner; 777 if (RunInliner) { 778 PM.add(Inliner); 779 Inliner = nullptr; 780 } 781 782 PM.add(createPruneEHPass()); // Remove dead EH info. 783 784 // Optimize globals again if we ran the inliner. 785 if (RunInliner) 786 PM.add(createGlobalOptimizerPass()); 787 PM.add(createGlobalDCEPass()); // Remove dead functions. 788 789 // If we didn't decide to inline a function, check to see if we can 790 // transform it to pass arguments by value instead of by reference. 791 PM.add(createArgumentPromotionPass()); 792 793 // The IPO passes may leave cruft around. Clean up after them. 794 addInstructionCombiningPass(PM); 795 addExtensionsToPM(EP_Peephole, PM); 796 PM.add(createJumpThreadingPass()); 797 798 // Break up allocas 799 PM.add(createSROAPass()); 800 801 // Run a few AA driven optimizations here and now, to cleanup the code. 802 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture. 803 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis. 804 805 PM.add(createLICMPass()); // Hoist loop invariants. 806 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds. 807 PM.add(NewGVN ? createNewGVNPass() 808 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies. 809 PM.add(createMemCpyOptPass()); // Remove dead memcpys. 810 811 // Nuke dead stores. 812 PM.add(createDeadStoreEliminationPass()); 813 814 // More loops are countable; try to optimize them. 815 PM.add(createIndVarSimplifyPass()); 816 PM.add(createLoopDeletionPass()); 817 if (EnableLoopInterchange) 818 PM.add(createLoopInterchangePass()); 819 820 if (!DisableUnrollLoops) 821 PM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops 822 PM.add(createLoopVectorizePass(true, LoopVectorize)); 823 // The vectorizer may have significantly shortened a loop body; unroll again. 824 if (!DisableUnrollLoops) 825 PM.add(createLoopUnrollPass(OptLevel)); 826 827 // Now that we've optimized loops (in particular loop induction variables), 828 // we may have exposed more scalar opportunities. Run parts of the scalar 829 // optimizer again at this point. 830 addInstructionCombiningPass(PM); // Initial cleanup 831 PM.add(createCFGSimplificationPass()); // if-convert 832 PM.add(createSCCPPass()); // Propagate exposed constants 833 addInstructionCombiningPass(PM); // Clean up again 834 PM.add(createBitTrackingDCEPass()); 835 836 // More scalar chains could be vectorized due to more alias information 837 if (RunSLPAfterLoopVectorization) 838 if (SLPVectorize) 839 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 840 841 // After vectorization, assume intrinsics may tell us more about pointer 842 // alignments. 843 PM.add(createAlignmentFromAssumptionsPass()); 844 845 // Cleanup and simplify the code after the scalar optimizations. 846 addInstructionCombiningPass(PM); 847 addExtensionsToPM(EP_Peephole, PM); 848 849 PM.add(createJumpThreadingPass()); 850 } 851 852 void PassManagerBuilder::addLateLTOOptimizationPasses( 853 legacy::PassManagerBase &PM) { 854 // Delete basic blocks, which optimization passes may have killed. 855 PM.add(createCFGSimplificationPass()); 856 857 // Drop bodies of available externally objects to improve GlobalDCE. 858 PM.add(createEliminateAvailableExternallyPass()); 859 860 // Now that we have optimized the program, discard unreachable functions. 861 PM.add(createGlobalDCEPass()); 862 863 // FIXME: this is profitable (for compiler time) to do at -O0 too, but 864 // currently it damages debug info. 865 if (MergeFunctions) 866 PM.add(createMergeFunctionsPass()); 867 } 868 869 void PassManagerBuilder::populateThinLTOPassManager( 870 legacy::PassManagerBase &PM) { 871 PerformThinLTO = true; 872 873 if (VerifyInput) 874 PM.add(createVerifierPass()); 875 876 if (ImportSummary) { 877 // These passes import type identifier resolutions for whole-program 878 // devirtualization and CFI. They must run early because other passes may 879 // disturb the specific instruction patterns that these passes look for, 880 // creating dependencies on resolutions that may not appear in the summary. 881 // 882 // For example, GVN may transform the pattern assume(type.test) appearing in 883 // two basic blocks into assume(phi(type.test, type.test)), which would 884 // transform a dependency on a WPD resolution into a dependency on a type 885 // identifier resolution for CFI. 886 // 887 // Also, WPD has access to more precise information than ICP and can 888 // devirtualize more effectively, so it should operate on the IR first. 889 PM.add(createWholeProgramDevirtPass(nullptr, ImportSummary)); 890 PM.add(createLowerTypeTestsPass(nullptr, ImportSummary)); 891 } 892 893 populateModulePassManager(PM); 894 895 if (VerifyOutput) 896 PM.add(createVerifierPass()); 897 PerformThinLTO = false; 898 } 899 900 void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) { 901 if (LibraryInfo) 902 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 903 904 if (VerifyInput) 905 PM.add(createVerifierPass()); 906 907 if (OptLevel != 0) 908 addLTOOptimizationPasses(PM); 909 else { 910 // The whole-program-devirt pass needs to run at -O0 because only it knows 911 // about the llvm.type.checked.load intrinsic: it needs to both lower the 912 // intrinsic itself and handle it in the summary. 913 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr)); 914 } 915 916 // Create a function that performs CFI checks for cross-DSO calls with targets 917 // in the current module. 918 PM.add(createCrossDSOCFIPass()); 919 920 // Lower type metadata and the type.test intrinsic. This pass supports Clang's 921 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at 922 // link time if CFI is enabled. The pass does nothing if CFI is disabled. 923 PM.add(createLowerTypeTestsPass(ExportSummary, nullptr)); 924 925 if (OptLevel != 0) 926 addLateLTOOptimizationPasses(PM); 927 928 if (VerifyOutput) 929 PM.add(createVerifierPass()); 930 } 931 932 inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) { 933 return reinterpret_cast<PassManagerBuilder*>(P); 934 } 935 936 inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) { 937 return reinterpret_cast<LLVMPassManagerBuilderRef>(P); 938 } 939 940 LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() { 941 PassManagerBuilder *PMB = new PassManagerBuilder(); 942 return wrap(PMB); 943 } 944 945 void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) { 946 PassManagerBuilder *Builder = unwrap(PMB); 947 delete Builder; 948 } 949 950 void 951 LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB, 952 unsigned OptLevel) { 953 PassManagerBuilder *Builder = unwrap(PMB); 954 Builder->OptLevel = OptLevel; 955 } 956 957 void 958 LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB, 959 unsigned SizeLevel) { 960 PassManagerBuilder *Builder = unwrap(PMB); 961 Builder->SizeLevel = SizeLevel; 962 } 963 964 void 965 LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB, 966 LLVMBool Value) { 967 // NOTE: The DisableUnitAtATime switch has been removed. 968 } 969 970 void 971 LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB, 972 LLVMBool Value) { 973 PassManagerBuilder *Builder = unwrap(PMB); 974 Builder->DisableUnrollLoops = Value; 975 } 976 977 void 978 LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB, 979 LLVMBool Value) { 980 // NOTE: The simplify-libcalls pass has been removed. 981 } 982 983 void 984 LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB, 985 unsigned Threshold) { 986 PassManagerBuilder *Builder = unwrap(PMB); 987 Builder->Inliner = createFunctionInliningPass(Threshold); 988 } 989 990 void 991 LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB, 992 LLVMPassManagerRef PM) { 993 PassManagerBuilder *Builder = unwrap(PMB); 994 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM); 995 Builder->populateFunctionPassManager(*FPM); 996 } 997 998 void 999 LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB, 1000 LLVMPassManagerRef PM) { 1001 PassManagerBuilder *Builder = unwrap(PMB); 1002 legacy::PassManagerBase *MPM = unwrap(PM); 1003 Builder->populateModulePassManager(*MPM); 1004 } 1005 1006 void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB, 1007 LLVMPassManagerRef PM, 1008 LLVMBool Internalize, 1009 LLVMBool RunInliner) { 1010 PassManagerBuilder *Builder = unwrap(PMB); 1011 legacy::PassManagerBase *LPM = unwrap(PM); 1012 1013 // A small backwards compatibility hack. populateLTOPassManager used to take 1014 // an RunInliner option. 1015 if (RunInliner && !Builder->Inliner) 1016 Builder->Inliner = createFunctionInliningPass(); 1017 1018 Builder->populateLTOPassManager(*LPM); 1019 } 1020