blob: 85061d7fb0dfa92cb3f7cc7658dd06530bec36a8 [file] [log] [blame]
Chris Lattner237ef562003-08-31 19:10:30 +00001//===- InlineSimple.cpp - Code to perform simple function inlining --------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
Chris Lattnerca398dc2003-05-29 15:11:31 +000010// This file implements bottom-up inlining of functions into callees.
Chris Lattner01545052002-04-18 18:52:03 +000011//
Chris Lattner00950542001-06-06 20:29:01 +000012//===----------------------------------------------------------------------===//
13
Chris Lattner237ef562003-08-31 19:10:30 +000014#include "Inliner.h"
Chris Lattner49fbff42005-05-18 04:30:33 +000015#include "llvm/CallingConv.h"
Chris Lattner869adc22003-11-21 21:46:09 +000016#include "llvm/Instructions.h"
Chris Lattner8db93f12004-11-22 17:21:44 +000017#include "llvm/IntrinsicInst.h"
Chris Lattner237ef562003-08-31 19:10:30 +000018#include "llvm/Function.h"
Chris Lattner619d3542004-03-13 23:15:45 +000019#include "llvm/Type.h"
Chris Lattnere5445332003-08-24 06:59:28 +000020#include "llvm/Support/CallSite.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000021#include "llvm/Support/Compiler.h"
Chris Lattner237ef562003-08-31 19:10:30 +000022#include "llvm/Transforms/IPO.h"
Chris Lattner869adc22003-11-21 21:46:09 +000023using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000024
Chris Lattnerbd0ef772002-02-26 21:46:54 +000025namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000026 struct VISIBILITY_HIDDEN ArgInfo {
Chris Lattner619d3542004-03-13 23:15:45 +000027 unsigned ConstantWeight;
28 unsigned AllocaWeight;
29
30 ArgInfo(unsigned CWeight, unsigned AWeight)
31 : ConstantWeight(CWeight), AllocaWeight(AWeight) {}
32 };
33
Chris Lattner884d6c42003-10-06 15:52:43 +000034 // FunctionInfo - For each function, calculate the size of it in blocks and
35 // instructions.
Reid Spencer9133fe22007-02-05 23:32:05 +000036 struct VISIBILITY_HIDDEN FunctionInfo {
Chris Lattner869adc22003-11-21 21:46:09 +000037 // NumInsts, NumBlocks - Keep track of how large each function is, which is
38 // used to estimate the code size cost of inlining it.
Chris Lattner884d6c42003-10-06 15:52:43 +000039 unsigned NumInsts, NumBlocks;
40
Chris Lattner619d3542004-03-13 23:15:45 +000041 // ArgumentWeights - Each formal argument of the function is inspected to
42 // see if it is used in any contexts where making it a constant or alloca
Chris Lattner869adc22003-11-21 21:46:09 +000043 // would reduce the code size. If so, we add some value to the argument
44 // entry here.
Chris Lattner619d3542004-03-13 23:15:45 +000045 std::vector<ArgInfo> ArgumentWeights;
Chris Lattner869adc22003-11-21 21:46:09 +000046
Chris Lattnerccca3ca2006-01-13 19:35:43 +000047 FunctionInfo() : NumInsts(0), NumBlocks(0) {}
Chris Lattneree45f4c2004-08-12 05:45:09 +000048
49 /// analyzeFunction - Fill in the current structure with information gleaned
50 /// from the specified function.
51 void analyzeFunction(Function *F);
Chris Lattner884d6c42003-10-06 15:52:43 +000052 };
53
Reid Spencer9133fe22007-02-05 23:32:05 +000054 class VISIBILITY_HIDDEN SimpleInliner : public Inliner {
Chris Lattner884d6c42003-10-06 15:52:43 +000055 std::map<const Function*, FunctionInfo> CachedFunctionInfo;
56 public:
Devang Patel19974732007-05-03 01:11:54 +000057 static char ID; // Pass identifcation, replacement for typeid
Chris Lattner237ef562003-08-31 19:10:30 +000058 int getInlineCost(CallSite CS);
Chris Lattnerbd0ef772002-02-26 21:46:54 +000059 };
Devang Patel19974732007-05-03 01:11:54 +000060 char SimpleInliner::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000061 RegisterPass<SimpleInliner> X("inline", "Function Integration/Inlining");
Chris Lattnerbd0ef772002-02-26 21:46:54 +000062}
63
Devang Patelc71ca3c2007-01-26 00:47:38 +000064Pass *llvm::createFunctionInliningPass() { return new SimpleInliner(); }
Chris Lattner869adc22003-11-21 21:46:09 +000065
66// CountCodeReductionForConstant - Figure out an approximation for how many
67// instructions will be constant folded if the specified value is constant.
68//
69static unsigned CountCodeReductionForConstant(Value *V) {
70 unsigned Reduction = 0;
71 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
72 if (isa<BranchInst>(*UI))
73 Reduction += 40; // Eliminating a conditional branch is a big win
74 else if (SwitchInst *SI = dyn_cast<SwitchInst>(*UI))
75 // Eliminating a switch is a big win, proportional to the number of edges
76 // deleted.
77 Reduction += (SI->getNumSuccessors()-1) * 40;
78 else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
79 // Turning an indirect call into a direct call is a BIG win
80 Reduction += CI->getCalledValue() == V ? 500 : 0;
81 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
82 // Turning an indirect call into a direct call is a BIG win
Chris Lattner6d1db012003-11-21 21:57:29 +000083 Reduction += II->getCalledValue() == V ? 500 : 0;
Chris Lattner869adc22003-11-21 21:46:09 +000084 } else {
85 // Figure out if this instruction will be removed due to simple constant
86 // propagation.
87 Instruction &Inst = cast<Instruction>(**UI);
88 bool AllOperandsConstant = true;
89 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
Reid Spencer460f16c2004-07-18 00:32:14 +000090 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
Chris Lattner869adc22003-11-21 21:46:09 +000091 AllOperandsConstant = false;
92 break;
93 }
94
95 if (AllOperandsConstant) {
96 // We will get to remove this instruction...
97 Reduction += 7;
Misha Brukmanfd939082005-04-21 23:48:37 +000098
Chris Lattner869adc22003-11-21 21:46:09 +000099 // And any other instructions that use it which become constants
100 // themselves.
101 Reduction += CountCodeReductionForConstant(&Inst);
102 }
103 }
104
105 return Reduction;
106}
Chris Lattnerca398dc2003-05-29 15:11:31 +0000107
Chris Lattner619d3542004-03-13 23:15:45 +0000108// CountCodeReductionForAlloca - Figure out an approximation of how much smaller
109// the function will be if it is inlined into a context where an argument
110// becomes an alloca.
111//
112static unsigned CountCodeReductionForAlloca(Value *V) {
113 if (!isa<PointerType>(V->getType())) return 0; // Not a pointer
114 unsigned Reduction = 0;
115 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
116 Instruction *I = cast<Instruction>(*UI);
117 if (isa<LoadInst>(I) || isa<StoreInst>(I))
118 Reduction += 10;
119 else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
120 // If the GEP has variable indices, we won't be able to do much with it.
121 for (Instruction::op_iterator I = GEP->op_begin()+1, E = GEP->op_end();
122 I != E; ++I)
123 if (!isa<Constant>(*I)) return 0;
124 Reduction += CountCodeReductionForAlloca(GEP)+15;
125 } else {
126 // If there is some other strange instruction, we're not going to be able
127 // to do much if we inline this.
128 return 0;
129 }
130 }
131
132 return Reduction;
133}
134
Chris Lattneree45f4c2004-08-12 05:45:09 +0000135/// analyzeFunction - Fill in the current structure with information gleaned
136/// from the specified function.
137void FunctionInfo::analyzeFunction(Function *F) {
138 unsigned NumInsts = 0, NumBlocks = 0;
139
140 // Look at the size of the callee. Each basic block counts as 20 units, and
141 // each instruction counts as 10.
142 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
143 for (BasicBlock::const_iterator II = BB->begin(), E = BB->end();
Chris Lattner7b166d92006-09-09 20:40:44 +0000144 II != E; ++II) {
145 if (isa<DbgInfoIntrinsic>(II)) continue; // Debug intrinsics don't count.
146
Reid Spencer3da59db2006-11-27 01:05:10 +0000147 // Noop casts, including ptr <-> int, don't count.
Chris Lattner7b166d92006-09-09 20:40:44 +0000148 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000149 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
150 isa<PtrToIntInst>(CI))
Chris Lattner7b166d92006-09-09 20:40:44 +0000151 continue;
Chris Lattner7b166d92006-09-09 20:40:44 +0000152 } else if (const GetElementPtrInst *GEPI =
153 dyn_cast<GetElementPtrInst>(II)) {
154 // If a GEP has all constant indices, it will probably be folded with
155 // a load/store.
156 bool AllConstant = true;
157 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
158 if (!isa<ConstantInt>(GEPI->getOperand(i))) {
159 AllConstant = false;
160 break;
161 }
162 if (AllConstant) continue;
163 }
164
165 ++NumInsts;
166 }
Chris Lattneree45f4c2004-08-12 05:45:09 +0000167
168 ++NumBlocks;
169 }
170
171 this->NumBlocks = NumBlocks;
172 this->NumInsts = NumInsts;
173
174 // Check out all of the arguments to the function, figuring out how much
175 // code can be eliminated if one of the arguments is a constant.
Chris Lattnere4d5c442005-03-15 04:54:21 +0000176 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattneree45f4c2004-08-12 05:45:09 +0000177 ArgumentWeights.push_back(ArgInfo(CountCodeReductionForConstant(I),
178 CountCodeReductionForAlloca(I)));
179}
180
181
Chris Lattner237ef562003-08-31 19:10:30 +0000182// getInlineCost - The heuristic used to determine if we should inline the
183// function call or not.
Chris Lattnerca398dc2003-05-29 15:11:31 +0000184//
Chris Lattner237ef562003-08-31 19:10:30 +0000185int SimpleInliner::getInlineCost(CallSite CS) {
Chris Lattnere5445332003-08-24 06:59:28 +0000186 Instruction *TheCall = CS.getInstruction();
Chris Lattner869adc22003-11-21 21:46:09 +0000187 Function *Callee = CS.getCalledFunction();
Chris Lattnere5445332003-08-24 06:59:28 +0000188 const Function *Caller = TheCall->getParent()->getParent();
Chris Lattnerca398dc2003-05-29 15:11:31 +0000189
Chris Lattner237ef562003-08-31 19:10:30 +0000190 // Don't inline a directly recursive call.
191 if (Caller == Callee) return 2000000000;
192
193 // InlineCost - This value measures how good of an inline candidate this call
194 // site is to inline. A lower inline cost make is more likely for the call to
195 // be inlined. This value may go negative.
Chris Lattnerca398dc2003-05-29 15:11:31 +0000196 //
Chris Lattner237ef562003-08-31 19:10:30 +0000197 int InlineCost = 0;
Chris Lattnerca398dc2003-05-29 15:11:31 +0000198
199 // If there is only one call of the function, and it has internal linkage,
200 // make it almost guaranteed to be inlined.
201 //
Chris Lattnerbacc7732003-10-20 05:54:26 +0000202 if (Callee->hasInternalLinkage() && Callee->hasOneUse())
Chris Lattnera8e47502004-11-09 08:05:23 +0000203 InlineCost -= 30000;
Chris Lattnerca398dc2003-05-29 15:11:31 +0000204
Chris Lattner49fbff42005-05-18 04:30:33 +0000205 // If this function uses the coldcc calling convention, prefer not to inline
206 // it.
207 if (Callee->getCallingConv() == CallingConv::Cold)
208 InlineCost += 2000;
209
210 // If the instruction after the call, or if the normal destination of the
211 // invoke is an unreachable instruction, the function is noreturn. As such,
212 // there is little point in inlining this.
213 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
214 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
215 InlineCost += 10000;
216 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
217 InlineCost += 10000;
218
Chris Lattner869adc22003-11-21 21:46:09 +0000219 // Get information about the callee...
Chris Lattner884d6c42003-10-06 15:52:43 +0000220 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Chris Lattnerca398dc2003-05-29 15:11:31 +0000221
Chris Lattneree45f4c2004-08-12 05:45:09 +0000222 // If we haven't calculated this information yet, do so now.
223 if (CalleeFI.NumBlocks == 0)
224 CalleeFI.analyzeFunction(Callee);
Chris Lattner884d6c42003-10-06 15:52:43 +0000225
Chris Lattner869adc22003-11-21 21:46:09 +0000226 // Add to the inline quality for properties that make the call valuable to
227 // inline. This includes factors that indicate that the result of inlining
228 // the function will be optimizable. Currently this just looks at arguments
229 // passed into the function.
230 //
231 unsigned ArgNo = 0;
232 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
233 I != E; ++I, ++ArgNo) {
234 // Each argument passed in has a cost at both the caller and the callee
235 // sides. This favors functions that take many arguments over functions
236 // that take few arguments.
237 InlineCost -= 20;
238
239 // If this is a function being passed in, it is very likely that we will be
240 // able to turn an indirect function call into a direct function call.
241 if (isa<Function>(I))
242 InlineCost -= 100;
243
244 // If an alloca is passed in, inlining this function is likely to allow
245 // significant future optimization possibilities (like scalar promotion, and
246 // scalarization), so encourage the inlining of the function.
247 //
Reid Spencer3ed469c2006-11-02 20:25:50 +0000248 else if (isa<AllocaInst>(I)) {
Chris Lattner619d3542004-03-13 23:15:45 +0000249 if (ArgNo < CalleeFI.ArgumentWeights.size())
250 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].AllocaWeight;
Chris Lattner869adc22003-11-21 21:46:09 +0000251
252 // If this is a constant being passed into the function, use the argument
253 // weights calculated for the callee to determine how much will be folded
254 // away with this information.
Reid Spencer460f16c2004-07-18 00:32:14 +0000255 } else if (isa<Constant>(I)) {
Chris Lattner619d3542004-03-13 23:15:45 +0000256 if (ArgNo < CalleeFI.ArgumentWeights.size())
257 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].ConstantWeight;
Chris Lattner869adc22003-11-21 21:46:09 +0000258 }
259 }
260
261 // Now that we have considered all of the factors that make the call site more
262 // likely to be inlined, look at factors that make us not want to inline it.
263
Chris Lattnerda78b002003-10-07 19:33:31 +0000264 // Don't inline into something too big, which would make it bigger. Here, we
265 // count each basic block as a single unit.
Chris Lattner6dd196f2004-03-15 06:38:14 +0000266 //
Chris Lattner775cbdd2004-04-08 06:34:31 +0000267 InlineCost += Caller->size()/20;
Chris Lattnerda78b002003-10-07 19:33:31 +0000268
269
270 // Look at the size of the callee. Each basic block counts as 20 units, and
Chris Lattner869adc22003-11-21 21:46:09 +0000271 // each instruction counts as 5.
272 InlineCost += CalleeFI.NumInsts*5 + CalleeFI.NumBlocks*20;
Chris Lattner237ef562003-08-31 19:10:30 +0000273 return InlineCost;
Chris Lattnerca398dc2003-05-29 15:11:31 +0000274}
Brian Gaeked0fde302003-11-11 22:41:34 +0000275