blob: 29d4f79732557d52577e95951371ed99283139ff [file] [log] [blame]
Devang Patel6899b312007-07-25 18:00:25 +00001//===- InlineCoast.cpp - Cost analysis for inliner ------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Devang Patel6899b312007-07-25 18:00:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements inline cost analysis.
11//
12//===----------------------------------------------------------------------===//
13
14
15#include "llvm/Transforms/Utils/InlineCost.h"
16#include "llvm/Support/CallSite.h"
17#include "llvm/CallingConv.h"
18#include "llvm/IntrinsicInst.h"
19
20using namespace llvm;
21
22// CountCodeReductionForConstant - Figure out an approximation for how many
23// instructions will be constant folded if the specified value is constant.
24//
25unsigned InlineCostAnalyzer::FunctionInfo::
26 CountCodeReductionForConstant(Value *V) {
27 unsigned Reduction = 0;
28 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
29 if (isa<BranchInst>(*UI))
30 Reduction += 40; // Eliminating a conditional branch is a big win
31 else if (SwitchInst *SI = dyn_cast<SwitchInst>(*UI))
32 // Eliminating a switch is a big win, proportional to the number of edges
33 // deleted.
34 Reduction += (SI->getNumSuccessors()-1) * 40;
35 else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
36 // Turning an indirect call into a direct call is a BIG win
37 Reduction += CI->getCalledValue() == V ? 500 : 0;
38 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
39 // Turning an indirect call into a direct call is a BIG win
40 Reduction += II->getCalledValue() == V ? 500 : 0;
41 } else {
42 // Figure out if this instruction will be removed due to simple constant
43 // propagation.
44 Instruction &Inst = cast<Instruction>(**UI);
45 bool AllOperandsConstant = true;
46 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
47 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
48 AllOperandsConstant = false;
49 break;
50 }
51
52 if (AllOperandsConstant) {
53 // We will get to remove this instruction...
54 Reduction += 7;
55
56 // And any other instructions that use it which become constants
57 // themselves.
58 Reduction += CountCodeReductionForConstant(&Inst);
59 }
60 }
61
62 return Reduction;
63}
64
65// CountCodeReductionForAlloca - Figure out an approximation of how much smaller
66// the function will be if it is inlined into a context where an argument
67// becomes an alloca.
68//
69unsigned InlineCostAnalyzer::FunctionInfo::
70 CountCodeReductionForAlloca(Value *V) {
71 if (!isa<PointerType>(V->getType())) return 0; // Not a pointer
72 unsigned Reduction = 0;
73 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
74 Instruction *I = cast<Instruction>(*UI);
75 if (isa<LoadInst>(I) || isa<StoreInst>(I))
76 Reduction += 10;
77 else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
78 // If the GEP has variable indices, we won't be able to do much with it.
79 for (Instruction::op_iterator I = GEP->op_begin()+1, E = GEP->op_end();
80 I != E; ++I)
81 if (!isa<Constant>(*I)) return 0;
82 Reduction += CountCodeReductionForAlloca(GEP)+15;
83 } else {
84 // If there is some other strange instruction, we're not going to be able
85 // to do much if we inline this.
86 return 0;
87 }
88 }
89
90 return Reduction;
91}
92
93/// analyzeFunction - Fill in the current structure with information gleaned
94/// from the specified function.
95void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
Evan Cheng8d84d5b2008-03-24 06:37:48 +000096 unsigned NumInsts = 0, NumBlocks = 0, NumVectorInsts = 0;
Devang Patel6899b312007-07-25 18:00:25 +000097
98 // Look at the size of the callee. Each basic block counts as 20 units, and
Devang Patel161660e2007-09-17 20:07:40 +000099 // each instruction counts as 5.
Devang Patel6899b312007-07-25 18:00:25 +0000100 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
101 for (BasicBlock::const_iterator II = BB->begin(), E = BB->end();
102 II != E; ++II) {
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000103 if (isa<PHINode>(II)) continue; // PHI nodes don't count.
104
Chris Lattner46868c02008-07-14 17:32:59 +0000105 // Special handling for calls.
106 if (isa<CallInst>(II) || isa<InvokeInst>(II)) {
107 if (isa<DbgInfoIntrinsic>(II))
108 continue; // Debug intrinsics don't count as size.
109
110 CallSite CS = CallSite::get(const_cast<Instruction*>(&*II));
111
112 // If this function contains a call to setjmp or _setjmp, never inline
113 // it. This is a hack because we depend on the user marking their local
114 // variables as volatile if they are live across a setjmp call, and they
115 // probably won't do this in callers.
116 if (Function *F = CS.getCalledFunction())
117 if (F->isDeclaration() &&
118 (F->isName("setjmp") || F->isName("_setjmp"))) {
119 NeverInline = true;
120 return;
121 }
Evan Cheng066fcf82008-07-17 01:31:49 +0000122
123 // Calls often compile into many machine instructions. Bump up their
124 // cost to reflect this.
125 if (!isa<IntrinsicInst>(II))
126 NumInsts += 5;
Chris Lattner46868c02008-07-14 17:32:59 +0000127 }
128
Chris Lattner42384532008-07-14 00:32:20 +0000129 if (isa<ExtractElementInst>(II) || isa<VectorType>(II->getType()))
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000130 ++NumVectorInsts;
Devang Patel6899b312007-07-25 18:00:25 +0000131
132 // Noop casts, including ptr <-> int, don't count.
133 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
134 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
135 isa<PtrToIntInst>(CI))
136 continue;
137 } else if (const GetElementPtrInst *GEPI =
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000138 dyn_cast<GetElementPtrInst>(II)) {
Devang Patel6899b312007-07-25 18:00:25 +0000139 // If a GEP has all constant indices, it will probably be folded with
140 // a load/store.
141 bool AllConstant = true;
142 for (unsigned i = 1, e = GEPI->getNumOperands(); i != e; ++i)
143 if (!isa<ConstantInt>(GEPI->getOperand(i))) {
144 AllConstant = false;
145 break;
146 }
147 if (AllConstant) continue;
148 }
149
150 ++NumInsts;
151 }
152
153 ++NumBlocks;
154 }
155
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000156 this->NumBlocks = NumBlocks;
157 this->NumInsts = NumInsts;
158 this->NumVectorInsts = NumVectorInsts;
Devang Patel6899b312007-07-25 18:00:25 +0000159
160 // Check out all of the arguments to the function, figuring out how much
161 // code can be eliminated if one of the arguments is a constant.
162 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
163 ArgumentWeights.push_back(ArgInfo(CountCodeReductionForConstant(I),
164 CountCodeReductionForAlloca(I)));
165}
166
167
168
169// getInlineCost - The heuristic used to determine if we should inline the
170// function call or not.
171//
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000172InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
Evan Cheng71d83742008-03-20 00:20:23 +0000173 SmallPtrSet<const Function *, 16> &NeverInline) {
Devang Patel6899b312007-07-25 18:00:25 +0000174 Instruction *TheCall = CS.getInstruction();
175 Function *Callee = CS.getCalledFunction();
176 const Function *Caller = TheCall->getParent()->getParent();
Duncan Sands5df31862008-09-29 11:25:42 +0000177
Devang Patel6899b312007-07-25 18:00:25 +0000178 // Don't inline a directly recursive call.
179 if (Caller == Callee ||
180 // Don't inline functions which can be redefined at link-time to mean
Duncan Sands5df31862008-09-29 11:25:42 +0000181 // something else.
182 // FIXME: We allow link-once linkage since in practice all versions of
183 // the function have the same body (C++ ODR) - but the LLVM definition
184 // of LinkOnceLinkage doesn't require this.
Devang Pateld91ac612008-11-05 01:37:05 +0000185 (Callee->mayBeOverridden() && !Callee->hasLinkOnceLinkage()) ||
Devang Patel6899b312007-07-25 18:00:25 +0000186 // Don't inline functions marked noinline.
Devang Pateld91ac612008-11-05 01:37:05 +0000187 Callee->hasFnAttr(Attribute::NoInline) || NeverInline.count(Callee))
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000188 return llvm::InlineCost::getNever();
Duncan Sands5df31862008-09-29 11:25:42 +0000189
Devang Patel6899b312007-07-25 18:00:25 +0000190 // InlineCost - This value measures how good of an inline candidate this call
191 // site is to inline. A lower inline cost make is more likely for the call to
192 // be inlined. This value may go negative.
193 //
194 int InlineCost = 0;
195
196 // If there is only one call of the function, and it has internal linkage,
197 // make it almost guaranteed to be inlined.
198 //
199 if (Callee->hasInternalLinkage() && Callee->hasOneUse())
Evan Cheng79328662008-04-24 18:42:47 +0000200 InlineCost -= 15000;
Devang Patel6899b312007-07-25 18:00:25 +0000201
202 // If this function uses the coldcc calling convention, prefer not to inline
203 // it.
204 if (Callee->getCallingConv() == CallingConv::Cold)
205 InlineCost += 2000;
206
207 // If the instruction after the call, or if the normal destination of the
208 // invoke is an unreachable instruction, the function is noreturn. As such,
209 // there is little point in inlining this.
210 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
211 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
212 InlineCost += 10000;
213 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
214 InlineCost += 10000;
215
216 // Get information about the callee...
217 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
218
219 // If we haven't calculated this information yet, do so now.
220 if (CalleeFI.NumBlocks == 0)
221 CalleeFI.analyzeFunction(Callee);
Chris Lattner46868c02008-07-14 17:32:59 +0000222
223 // If we should never inline this, return a huge cost.
224 if (CalleeFI.NeverInline)
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000225 return InlineCost::getNever();
Devang Patel67243392008-09-03 18:47:45 +0000226
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000227 // FIXME: It would be nice to kill off CalleeFI.NeverInline. Then we
228 // could move this up and avoid computing the FunctionInfo for
229 // things we are going to just return always inline for. This
230 // requires handling setjmp somewhere else, however.
Devang Patel2c9c3e72008-09-26 23:51:19 +0000231 if (!Callee->isDeclaration() && Callee->hasFnAttr(Attribute::AlwaysInline))
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000232 return InlineCost::getAlways();
Devang Patel6899b312007-07-25 18:00:25 +0000233
234 // Add to the inline quality for properties that make the call valuable to
235 // inline. This includes factors that indicate that the result of inlining
236 // the function will be optimizable. Currently this just looks at arguments
237 // passed into the function.
238 //
239 unsigned ArgNo = 0;
240 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
241 I != E; ++I, ++ArgNo) {
242 // Each argument passed in has a cost at both the caller and the callee
243 // sides. This favors functions that take many arguments over functions
244 // that take few arguments.
245 InlineCost -= 20;
246
247 // If this is a function being passed in, it is very likely that we will be
248 // able to turn an indirect function call into a direct function call.
249 if (isa<Function>(I))
250 InlineCost -= 100;
251
252 // If an alloca is passed in, inlining this function is likely to allow
253 // significant future optimization possibilities (like scalar promotion, and
254 // scalarization), so encourage the inlining of the function.
255 //
256 else if (isa<AllocaInst>(I)) {
257 if (ArgNo < CalleeFI.ArgumentWeights.size())
258 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].AllocaWeight;
259
260 // If this is a constant being passed into the function, use the argument
261 // weights calculated for the callee to determine how much will be folded
262 // away with this information.
263 } else if (isa<Constant>(I)) {
264 if (ArgNo < CalleeFI.ArgumentWeights.size())
265 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].ConstantWeight;
266 }
267 }
268
269 // Now that we have considered all of the factors that make the call site more
270 // likely to be inlined, look at factors that make us not want to inline it.
271
Evan Cheng7c3becd2008-04-01 23:59:29 +0000272 // Don't inline into something too big, which would make it bigger.
Devang Patel6899b312007-07-25 18:00:25 +0000273 //
Evan Cheng79328662008-04-24 18:42:47 +0000274 InlineCost += Caller->size()/15;
Devang Patel6899b312007-07-25 18:00:25 +0000275
Evan Cheng7c3becd2008-04-01 23:59:29 +0000276 // Look at the size of the callee. Each instruction counts as 5.
277 InlineCost += CalleeFI.NumInsts*5;
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000278
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000279 return llvm::InlineCost::get(InlineCost);
Devang Patel6899b312007-07-25 18:00:25 +0000280}
281
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000282// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
283// higher threshold to determine if the function call should be inlined.
284float InlineCostAnalyzer::getInlineFudgeFactor(CallSite CS) {
285 Function *Callee = CS.getCalledFunction();
286
287 // Get information about the callee...
288 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
289
290 // If we haven't calculated this information yet, do so now.
291 if (CalleeFI.NumBlocks == 0)
292 CalleeFI.analyzeFunction(Callee);
293
Evan Cheng7c3becd2008-04-01 23:59:29 +0000294 float Factor = 1.0f;
295 // Single BB functions are often written to be inlined.
296 if (CalleeFI.NumBlocks == 1)
297 Factor += 0.5f;
298
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000299 // Be more aggressive if the function contains a good chunk (if it mades up
300 // at least 10% of the instructions) of vector instructions.
Evan Cheng7c3becd2008-04-01 23:59:29 +0000301 if (CalleeFI.NumVectorInsts > CalleeFI.NumInsts/2)
302 Factor += 2.0f;
303 else if (CalleeFI.NumVectorInsts > CalleeFI.NumInsts/10)
304 Factor += 1.5f;
305 return Factor;
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000306}