1 //===- InlineSimple.cpp - Code to perform simple function inlining --------===//
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 implements bottom-up inlining of functions into callees.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/Analysis/AssumptionCache.h"
15 #include "llvm/Analysis/CallGraph.h"
16 #include "llvm/Analysis/InlineCost.h"
17 #include "llvm/Analysis/ProfileSummaryInfo.h"
18 #include "llvm/Analysis/TargetLibraryInfo.h"
19 #include "llvm/Analysis/TargetTransformInfo.h"
20 #include "llvm/IR/CallSite.h"
21 #include "llvm/IR/CallingConv.h"
22 #include "llvm/IR/DataLayout.h"
23 #include "llvm/IR/Instructions.h"
24 #include "llvm/IR/IntrinsicInst.h"
25 #include "llvm/IR/Module.h"
26 #include "llvm/IR/Type.h"
27 #include "llvm/Transforms/IPO.h"
28 #include "llvm/Transforms/IPO/Inliner.h"
29 
30 using namespace llvm;
31 
32 #define DEBUG_TYPE "inline"
33 
34 namespace {
35 
36 /// \brief Actual inliner pass implementation.
37 ///
38 /// The common implementation of the inlining logic is shared between this
39 /// inliner pass and the always inliner pass. The two passes use different cost
40 /// analyses to determine when to inline.
41 class SimpleInliner : public LegacyInlinerBase {
42 
43   InlineParams Params;
44 
45 public:
46   SimpleInliner() : LegacyInlinerBase(ID), Params(llvm::getInlineParams()) {
47     initializeSimpleInlinerPass(*PassRegistry::getPassRegistry());
48   }
49 
50   explicit SimpleInliner(InlineParams Params)
51       : LegacyInlinerBase(ID), Params(std::move(Params)) {
52     initializeSimpleInlinerPass(*PassRegistry::getPassRegistry());
53   }
54 
55   static char ID; // Pass identification, replacement for typeid
56 
57   InlineCost getInlineCost(CallSite CS) override {
58     Function *Callee = CS.getCalledFunction();
59     TargetTransformInfo &TTI = TTIWP->getTTI(*Callee);
60     OptimizationRemarkEmitter ORE(CS.getCaller());
61     std::function<AssumptionCache &(Function &)> GetAssumptionCache =
62         [&](Function &F) -> AssumptionCache & {
63       return ACT->getAssumptionCache(F);
64     };
65     return llvm::getInlineCost(CS, Params, TTI, GetAssumptionCache,
66                                /*GetBFI=*/None, PSI, &ORE);
67   }
68 
69   bool runOnSCC(CallGraphSCC &SCC) override;
70   void getAnalysisUsage(AnalysisUsage &AU) const override;
71 
72 private:
73   TargetTransformInfoWrapperPass *TTIWP;
74 
75 };
76 
77 } // end anonymous namespace
78 
79 char SimpleInliner::ID = 0;
80 INITIALIZE_PASS_BEGIN(SimpleInliner, "inline", "Function Integration/Inlining",
81                       false, false)
82 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
83 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
84 INITIALIZE_PASS_DEPENDENCY(ProfileSummaryInfoWrapperPass)
85 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
86 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
87 INITIALIZE_PASS_END(SimpleInliner, "inline", "Function Integration/Inlining",
88                     false, false)
89 
90 Pass *llvm::createFunctionInliningPass() { return new SimpleInliner(); }
91 
92 Pass *llvm::createFunctionInliningPass(int Threshold) {
93   return new SimpleInliner(llvm::getInlineParams(Threshold));
94 }
95 
96 Pass *llvm::createFunctionInliningPass(unsigned OptLevel,
97                                        unsigned SizeOptLevel,
98                                        bool DisableInlineHotCallSite) {
99   auto Param = llvm::getInlineParams(OptLevel, SizeOptLevel);
100   if (DisableInlineHotCallSite)
101     Param.HotCallSiteThreshold = 0;
102   return new SimpleInliner(Param);
103 }
104 
105 Pass *llvm::createFunctionInliningPass(InlineParams &Params) {
106   return new SimpleInliner(Params);
107 }
108 
109 bool SimpleInliner::runOnSCC(CallGraphSCC &SCC) {
110   TTIWP = &getAnalysis<TargetTransformInfoWrapperPass>();
111   return LegacyInlinerBase::runOnSCC(SCC);
112 }
113 
114 void SimpleInliner::getAnalysisUsage(AnalysisUsage &AU) const {
115   AU.addRequired<TargetTransformInfoWrapperPass>();
116   LegacyInlinerBase::getAnalysisUsage(AU);
117 }
118