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 16 #include "llvm/Transforms/IPO/PassManagerBuilder.h" 17 #include "llvm-c/Transforms/PassManagerBuilder.h" 18 #include "llvm/ADT/SmallVector.h" 19 #include "llvm/Analysis/Passes.h" 20 #include "llvm/IR/DataLayout.h" 21 #include "llvm/IR/Verifier.h" 22 #include "llvm/IR/LegacyPassManager.h" 23 #include "llvm/Support/CommandLine.h" 24 #include "llvm/Support/ManagedStatic.h" 25 #include "llvm/Analysis/TargetLibraryInfo.h" 26 #include "llvm/Target/TargetMachine.h" 27 #include "llvm/Transforms/IPO.h" 28 #include "llvm/Transforms/Scalar.h" 29 #include "llvm/Transforms/Vectorize.h" 30 31 using namespace llvm; 32 33 static cl::opt<bool> 34 RunLoopVectorization("vectorize-loops", cl::Hidden, 35 cl::desc("Run the Loop vectorization passes")); 36 37 static cl::opt<bool> 38 RunSLPVectorization("vectorize-slp", cl::Hidden, 39 cl::desc("Run the SLP vectorization passes")); 40 41 static cl::opt<bool> 42 RunBBVectorization("vectorize-slp-aggressive", cl::Hidden, 43 cl::desc("Run the BB vectorization passes")); 44 45 static cl::opt<bool> 46 UseGVNAfterVectorization("use-gvn-after-vectorization", 47 cl::init(false), cl::Hidden, 48 cl::desc("Run GVN instead of Early CSE after vectorization passes")); 49 50 static cl::opt<bool> ExtraVectorizerPasses( 51 "extra-vectorizer-passes", cl::init(false), cl::Hidden, 52 cl::desc("Run cleanup optimization passes after vectorization.")); 53 54 static cl::opt<bool> UseNewSROA("use-new-sroa", 55 cl::init(true), cl::Hidden, 56 cl::desc("Enable the new, experimental SROA pass")); 57 58 static cl::opt<bool> 59 RunLoopRerolling("reroll-loops", cl::Hidden, 60 cl::desc("Run the loop rerolling pass")); 61 62 static cl::opt<bool> RunLoadCombine("combine-loads", cl::init(false), 63 cl::Hidden, 64 cl::desc("Run the load combining pass")); 65 66 static cl::opt<bool> 67 RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization", 68 cl::init(true), cl::Hidden, 69 cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop " 70 "vectorizer instead of before")); 71 72 static cl::opt<bool> UseCFLAA("use-cfl-aa", 73 cl::init(false), cl::Hidden, 74 cl::desc("Enable the new, experimental CFL alias analysis")); 75 76 static cl::opt<bool> 77 EnableMLSM("mlsm", cl::init(true), cl::Hidden, 78 cl::desc("Enable motion of merged load and store")); 79 80 PassManagerBuilder::PassManagerBuilder() { 81 OptLevel = 2; 82 SizeLevel = 0; 83 LibraryInfo = nullptr; 84 Inliner = nullptr; 85 DisableTailCalls = false; 86 DisableUnitAtATime = false; 87 DisableUnrollLoops = false; 88 BBVectorize = RunBBVectorization; 89 SLPVectorize = RunSLPVectorization; 90 LoopVectorize = RunLoopVectorization; 91 RerollLoops = RunLoopRerolling; 92 LoadCombine = RunLoadCombine; 93 DisableGVNLoadPRE = false; 94 VerifyInput = false; 95 VerifyOutput = false; 96 StripDebug = false; 97 MergeFunctions = false; 98 } 99 100 PassManagerBuilder::~PassManagerBuilder() { 101 delete LibraryInfo; 102 delete Inliner; 103 } 104 105 /// Set of global extensions, automatically added as part of the standard set. 106 static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy, 107 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions; 108 109 void PassManagerBuilder::addGlobalExtension( 110 PassManagerBuilder::ExtensionPointTy Ty, 111 PassManagerBuilder::ExtensionFn Fn) { 112 GlobalExtensions->push_back(std::make_pair(Ty, Fn)); 113 } 114 115 void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) { 116 Extensions.push_back(std::make_pair(Ty, Fn)); 117 } 118 119 void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy, 120 legacy::PassManagerBase &PM) const { 121 for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i) 122 if ((*GlobalExtensions)[i].first == ETy) 123 (*GlobalExtensions)[i].second(*this, PM); 124 for (unsigned i = 0, e = Extensions.size(); i != e; ++i) 125 if (Extensions[i].first == ETy) 126 Extensions[i].second(*this, PM); 127 } 128 129 void PassManagerBuilder::addInitialAliasAnalysisPasses( 130 legacy::PassManagerBase &PM) const { 131 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that 132 // BasicAliasAnalysis wins if they disagree. This is intended to help 133 // support "obvious" type-punning idioms. 134 if (UseCFLAA) 135 PM.add(createCFLAliasAnalysisPass()); 136 PM.add(createTypeBasedAliasAnalysisPass()); 137 PM.add(createScopedNoAliasAAPass()); 138 PM.add(createBasicAliasAnalysisPass()); 139 } 140 141 void PassManagerBuilder::populateFunctionPassManager( 142 legacy::FunctionPassManager &FPM) { 143 addExtensionsToPM(EP_EarlyAsPossible, FPM); 144 145 // Add LibraryInfo if we have some. 146 if (LibraryInfo) 147 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 148 149 if (OptLevel == 0) return; 150 151 addInitialAliasAnalysisPasses(FPM); 152 153 FPM.add(createCFGSimplificationPass()); 154 if (UseNewSROA) 155 FPM.add(createSROAPass()); 156 else 157 FPM.add(createScalarReplAggregatesPass()); 158 FPM.add(createEarlyCSEPass()); 159 FPM.add(createLowerExpectIntrinsicPass()); 160 } 161 162 void PassManagerBuilder::populateModulePassManager( 163 legacy::PassManagerBase &MPM) { 164 // If all optimizations are disabled, just run the always-inline pass and, 165 // if enabled, the function merging pass. 166 if (OptLevel == 0) { 167 if (Inliner) { 168 MPM.add(Inliner); 169 Inliner = nullptr; 170 } 171 172 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly 173 // creates a CGSCC pass manager, but we don't want to add extensions into 174 // that pass manager. To prevent this we insert a no-op module pass to reset 175 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0 176 // builds. The function merging pass is 177 if (MergeFunctions) 178 MPM.add(createMergeFunctionsPass()); 179 else if (!GlobalExtensions->empty() || !Extensions.empty()) 180 MPM.add(createBarrierNoopPass()); 181 182 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM); 183 return; 184 } 185 186 // Add LibraryInfo if we have some. 187 if (LibraryInfo) 188 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 189 190 addInitialAliasAnalysisPasses(MPM); 191 192 if (!DisableUnitAtATime) { 193 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM); 194 195 MPM.add(createIPSCCPPass()); // IP SCCP 196 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars 197 198 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination 199 200 MPM.add(createInstructionCombiningPass());// Clean up after IPCP & DAE 201 addExtensionsToPM(EP_Peephole, MPM); 202 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE 203 } 204 205 // Start of CallGraph SCC passes. 206 if (!DisableUnitAtATime) 207 MPM.add(createPruneEHPass()); // Remove dead EH info 208 if (Inliner) { 209 MPM.add(Inliner); 210 Inliner = nullptr; 211 } 212 if (!DisableUnitAtATime) 213 MPM.add(createFunctionAttrsPass()); // Set readonly/readnone attrs 214 if (OptLevel > 2) 215 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args 216 217 // Start of function pass. 218 // Break up aggregate allocas, using SSAUpdater. 219 if (UseNewSROA) 220 MPM.add(createSROAPass(/*RequiresDomTree*/ false)); 221 else 222 MPM.add(createScalarReplAggregatesPass(-1, false)); 223 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies 224 MPM.add(createJumpThreadingPass()); // Thread jumps. 225 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals 226 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 227 MPM.add(createInstructionCombiningPass()); // Combine silly seq's 228 addExtensionsToPM(EP_Peephole, MPM); 229 230 if (!DisableTailCalls) 231 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls 232 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 233 MPM.add(createReassociatePass()); // Reassociate expressions 234 // Rotate Loop - disable header duplication at -Oz 235 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); 236 MPM.add(createLICMPass()); // Hoist loop invariants 237 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3)); 238 MPM.add(createInstructionCombiningPass()); 239 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars 240 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset. 241 MPM.add(createLoopDeletionPass()); // Delete dead loops 242 243 if (!DisableUnrollLoops) 244 MPM.add(createSimpleLoopUnrollPass()); // Unroll small loops 245 addExtensionsToPM(EP_LoopOptimizerEnd, MPM); 246 247 if (OptLevel > 1) { 248 if (EnableMLSM) 249 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds 250 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies 251 } 252 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset 253 MPM.add(createSCCPPass()); // Constant prop with SCCP 254 255 // Delete dead bit computations (instcombine runs after to fold away the dead 256 // computations, and then ADCE will run later to exploit any new DCE 257 // opportunities that creates). 258 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations 259 260 // Run instcombine after redundancy elimination to exploit opportunities 261 // opened up by them. 262 MPM.add(createInstructionCombiningPass()); 263 addExtensionsToPM(EP_Peephole, MPM); 264 MPM.add(createJumpThreadingPass()); // Thread jumps 265 MPM.add(createCorrelatedValuePropagationPass()); 266 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores 267 MPM.add(createLICMPass()); 268 269 addExtensionsToPM(EP_ScalarOptimizerLate, MPM); 270 271 if (RerollLoops) 272 MPM.add(createLoopRerollPass()); 273 if (!RunSLPAfterLoopVectorization) { 274 if (SLPVectorize) 275 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 276 277 if (BBVectorize) { 278 MPM.add(createBBVectorizePass()); 279 MPM.add(createInstructionCombiningPass()); 280 addExtensionsToPM(EP_Peephole, MPM); 281 if (OptLevel > 1 && UseGVNAfterVectorization) 282 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies 283 else 284 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies 285 286 // BBVectorize may have significantly shortened a loop body; unroll again. 287 if (!DisableUnrollLoops) 288 MPM.add(createLoopUnrollPass()); 289 } 290 } 291 292 if (LoadCombine) 293 MPM.add(createLoadCombinePass()); 294 295 MPM.add(createAggressiveDCEPass()); // Delete dead instructions 296 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs 297 MPM.add(createInstructionCombiningPass()); // Clean up after everything. 298 addExtensionsToPM(EP_Peephole, MPM); 299 300 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC 301 // pass manager that we are specifically trying to avoid. To prevent this 302 // we must insert a no-op module pass to reset the pass manager. 303 MPM.add(createBarrierNoopPass()); 304 305 // Re-rotate loops in all our loop nests. These may have fallout out of 306 // rotated form due to GVN or other transformations, and the vectorizer relies 307 // on the rotated form. 308 if (ExtraVectorizerPasses) 309 MPM.add(createLoopRotatePass()); 310 311 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize)); 312 // FIXME: Because of #pragma vectorize enable, the passes below are always 313 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when 314 // on -O1 and no #pragma is found). Would be good to have these two passes 315 // as function calls, so that we can only pass them when the vectorizer 316 // changed the code. 317 MPM.add(createInstructionCombiningPass()); 318 if (OptLevel > 1 && ExtraVectorizerPasses) { 319 // At higher optimization levels, try to clean up any runtime overlap and 320 // alignment checks inserted by the vectorizer. We want to track correllated 321 // runtime checks for two inner loops in the same outer loop, fold any 322 // common computations, hoist loop-invariant aspects out of any outer loop, 323 // and unswitch the runtime checks if possible. Once hoisted, we may have 324 // dead (or speculatable) control flows or more combining opportunities. 325 MPM.add(createEarlyCSEPass()); 326 MPM.add(createCorrelatedValuePropagationPass()); 327 MPM.add(createInstructionCombiningPass()); 328 MPM.add(createLICMPass()); 329 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3)); 330 MPM.add(createCFGSimplificationPass()); 331 MPM.add(createInstructionCombiningPass()); 332 } 333 334 if (RunSLPAfterLoopVectorization) { 335 if (SLPVectorize) { 336 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 337 if (OptLevel > 1 && ExtraVectorizerPasses) { 338 MPM.add(createEarlyCSEPass()); 339 } 340 } 341 342 if (BBVectorize) { 343 MPM.add(createBBVectorizePass()); 344 MPM.add(createInstructionCombiningPass()); 345 addExtensionsToPM(EP_Peephole, MPM); 346 if (OptLevel > 1 && UseGVNAfterVectorization) 347 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies 348 else 349 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies 350 351 // BBVectorize may have significantly shortened a loop body; unroll again. 352 if (!DisableUnrollLoops) 353 MPM.add(createLoopUnrollPass()); 354 } 355 } 356 357 addExtensionsToPM(EP_Peephole, MPM); 358 MPM.add(createCFGSimplificationPass()); 359 MPM.add(createInstructionCombiningPass()); 360 361 if (!DisableUnrollLoops) 362 MPM.add(createLoopUnrollPass()); // Unroll small loops 363 364 // After vectorization and unrolling, assume intrinsics may tell us more 365 // about pointer alignments. 366 MPM.add(createAlignmentFromAssumptionsPass()); 367 368 if (!DisableUnitAtATime) { 369 // FIXME: We shouldn't bother with this anymore. 370 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes 371 372 // GlobalOpt already deletes dead functions and globals, at -O2 try a 373 // late pass of GlobalDCE. It is capable of deleting dead cycles. 374 if (OptLevel > 1) { 375 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals. 376 MPM.add(createConstantMergePass()); // Merge dup global constants 377 } 378 } 379 380 if (MergeFunctions) 381 MPM.add(createMergeFunctionsPass()); 382 383 addExtensionsToPM(EP_OptimizerLast, MPM); 384 } 385 386 void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) { 387 // Provide AliasAnalysis services for optimizations. 388 addInitialAliasAnalysisPasses(PM); 389 390 // Propagate constants at call sites into the functions they call. This 391 // opens opportunities for globalopt (and inlining) by substituting function 392 // pointers passed as arguments to direct uses of functions. 393 PM.add(createIPSCCPPass()); 394 395 // Now that we internalized some globals, see if we can hack on them! 396 PM.add(createGlobalOptimizerPass()); 397 398 // Linking modules together can lead to duplicated global constants, only 399 // keep one copy of each constant. 400 PM.add(createConstantMergePass()); 401 402 // Remove unused arguments from functions. 403 PM.add(createDeadArgEliminationPass()); 404 405 // Reduce the code after globalopt and ipsccp. Both can open up significant 406 // simplification opportunities, and both can propagate functions through 407 // function pointers. When this happens, we often have to resolve varargs 408 // calls, etc, so let instcombine do this. 409 PM.add(createInstructionCombiningPass()); 410 addExtensionsToPM(EP_Peephole, PM); 411 412 // Inline small functions 413 bool RunInliner = Inliner; 414 if (RunInliner) { 415 PM.add(Inliner); 416 Inliner = nullptr; 417 } 418 419 PM.add(createPruneEHPass()); // Remove dead EH info. 420 421 // Optimize globals again if we ran the inliner. 422 if (RunInliner) 423 PM.add(createGlobalOptimizerPass()); 424 PM.add(createGlobalDCEPass()); // Remove dead functions. 425 426 // If we didn't decide to inline a function, check to see if we can 427 // transform it to pass arguments by value instead of by reference. 428 PM.add(createArgumentPromotionPass()); 429 430 // The IPO passes may leave cruft around. Clean up after them. 431 PM.add(createInstructionCombiningPass()); 432 addExtensionsToPM(EP_Peephole, PM); 433 PM.add(createJumpThreadingPass()); 434 435 // Break up allocas 436 if (UseNewSROA) 437 PM.add(createSROAPass()); 438 else 439 PM.add(createScalarReplAggregatesPass()); 440 441 // Run a few AA driven optimizations here and now, to cleanup the code. 442 PM.add(createFunctionAttrsPass()); // Add nocapture. 443 PM.add(createGlobalsModRefPass()); // IP alias analysis. 444 445 PM.add(createLICMPass()); // Hoist loop invariants. 446 if (EnableMLSM) 447 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds. 448 PM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies. 449 PM.add(createMemCpyOptPass()); // Remove dead memcpys. 450 451 // Nuke dead stores. 452 PM.add(createDeadStoreEliminationPass()); 453 454 // More loops are countable; try to optimize them. 455 PM.add(createIndVarSimplifyPass()); 456 PM.add(createLoopDeletionPass()); 457 PM.add(createLoopVectorizePass(true, LoopVectorize)); 458 459 // More scalar chains could be vectorized due to more alias information 460 if (RunSLPAfterLoopVectorization) 461 if (SLPVectorize) 462 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. 463 464 // After vectorization, assume intrinsics may tell us more about pointer 465 // alignments. 466 PM.add(createAlignmentFromAssumptionsPass()); 467 468 if (LoadCombine) 469 PM.add(createLoadCombinePass()); 470 471 // Cleanup and simplify the code after the scalar optimizations. 472 PM.add(createInstructionCombiningPass()); 473 addExtensionsToPM(EP_Peephole, PM); 474 475 PM.add(createJumpThreadingPass()); 476 477 // Lower bitset metadata to bitsets. 478 PM.add(createLowerBitSetsPass()); 479 480 // Delete basic blocks, which optimization passes may have killed. 481 PM.add(createCFGSimplificationPass()); 482 483 // Now that we have optimized the program, discard unreachable functions. 484 PM.add(createGlobalDCEPass()); 485 486 // FIXME: this is profitable (for compiler time) to do at -O0 too, but 487 // currently it damages debug info. 488 if (MergeFunctions) 489 PM.add(createMergeFunctionsPass()); 490 } 491 492 void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) { 493 if (LibraryInfo) 494 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); 495 496 if (VerifyInput) 497 PM.add(createVerifierPass()); 498 499 if (StripDebug) 500 PM.add(createStripSymbolsPass(true)); 501 502 if (VerifyInput) 503 PM.add(createDebugInfoVerifierPass()); 504 505 if (OptLevel != 0) 506 addLTOOptimizationPasses(PM); 507 508 if (VerifyOutput) { 509 PM.add(createVerifierPass()); 510 PM.add(createDebugInfoVerifierPass()); 511 } 512 } 513 514 inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) { 515 return reinterpret_cast<PassManagerBuilder*>(P); 516 } 517 518 inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) { 519 return reinterpret_cast<LLVMPassManagerBuilderRef>(P); 520 } 521 522 LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() { 523 PassManagerBuilder *PMB = new PassManagerBuilder(); 524 return wrap(PMB); 525 } 526 527 void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) { 528 PassManagerBuilder *Builder = unwrap(PMB); 529 delete Builder; 530 } 531 532 void 533 LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB, 534 unsigned OptLevel) { 535 PassManagerBuilder *Builder = unwrap(PMB); 536 Builder->OptLevel = OptLevel; 537 } 538 539 void 540 LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB, 541 unsigned SizeLevel) { 542 PassManagerBuilder *Builder = unwrap(PMB); 543 Builder->SizeLevel = SizeLevel; 544 } 545 546 void 547 LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB, 548 LLVMBool Value) { 549 PassManagerBuilder *Builder = unwrap(PMB); 550 Builder->DisableUnitAtATime = Value; 551 } 552 553 void 554 LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB, 555 LLVMBool Value) { 556 PassManagerBuilder *Builder = unwrap(PMB); 557 Builder->DisableUnrollLoops = Value; 558 } 559 560 void 561 LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB, 562 LLVMBool Value) { 563 // NOTE: The simplify-libcalls pass has been removed. 564 } 565 566 void 567 LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB, 568 unsigned Threshold) { 569 PassManagerBuilder *Builder = unwrap(PMB); 570 Builder->Inliner = createFunctionInliningPass(Threshold); 571 } 572 573 void 574 LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB, 575 LLVMPassManagerRef PM) { 576 PassManagerBuilder *Builder = unwrap(PMB); 577 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM); 578 Builder->populateFunctionPassManager(*FPM); 579 } 580 581 void 582 LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB, 583 LLVMPassManagerRef PM) { 584 PassManagerBuilder *Builder = unwrap(PMB); 585 legacy::PassManagerBase *MPM = unwrap(PM); 586 Builder->populateModulePassManager(*MPM); 587 } 588 589 void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB, 590 LLVMPassManagerRef PM, 591 LLVMBool Internalize, 592 LLVMBool RunInliner) { 593 PassManagerBuilder *Builder = unwrap(PMB); 594 legacy::PassManagerBase *LPM = unwrap(PM); 595 596 // A small backwards compatibility hack. populateLTOPassManager used to take 597 // an RunInliner option. 598 if (RunInliner && !Builder->Inliner) 599 Builder->Inliner = createFunctionInliningPass(); 600 601 Builder->populateLTOPassManager(*LPM); 602 } 603