blob: f6664ed7888433f1db86e37069451e044e240047 [file] [log] [blame]
Dan Gohmane4aeec02009-10-13 18:30:07 +00001//===- InlineCost.cpp - Cost analysis for inliner -------------------------===//
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 inline cost analysis.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Analysis/InlineCost.h"
15#include "llvm/Support/CallSite.h"
16#include "llvm/CallingConv.h"
17#include "llvm/IntrinsicInst.h"
18#include "llvm/ADT/SmallPtrSet.h"
19using namespace llvm;
20
21// CountCodeReductionForConstant - Figure out an approximation for how many
22// instructions will be constant folded if the specified value is constant.
23//
Dan Gohmane7f0ed52009-10-13 19:58:07 +000024unsigned InlineCostAnalyzer::FunctionInfo::
Dan Gohmane4aeec02009-10-13 18:30:07 +000025 CountCodeReductionForConstant(Value *V) {
26 unsigned Reduction = 0;
27 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ++UI)
28 if (isa<BranchInst>(*UI))
29 Reduction += 40; // Eliminating a conditional branch is a big win
30 else if (SwitchInst *SI = dyn_cast<SwitchInst>(*UI))
31 // Eliminating a switch is a big win, proportional to the number of edges
32 // deleted.
33 Reduction += (SI->getNumSuccessors()-1) * 40;
Chris Lattnerab21db72009-10-28 00:19:10 +000034 else if (isa<IndirectBrInst>(*UI))
Chris Lattner2688bcb2009-10-27 21:27:42 +000035 // Eliminating an indirect branch is a big win.
36 Reduction += 200;
Dan Gohmane4aeec02009-10-13 18:30:07 +000037 else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
38 // Turning an indirect call into a direct call is a BIG win
39 Reduction += CI->getCalledValue() == V ? 500 : 0;
40 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
41 // Turning an indirect call into a direct call is a BIG win
42 Reduction += II->getCalledValue() == V ? 500 : 0;
43 } else {
44 // Figure out if this instruction will be removed due to simple constant
45 // propagation.
46 Instruction &Inst = cast<Instruction>(**UI);
47
48 // We can't constant propagate instructions which have effects or
49 // read memory.
50 //
51 // FIXME: It would be nice to capture the fact that a load from a
52 // pointer-to-constant-global is actually a *really* good thing to zap.
53 // Unfortunately, we don't know the pointer that may get propagated here,
54 // so we can't make this decision.
55 if (Inst.mayReadFromMemory() || Inst.mayHaveSideEffects() ||
Victor Hernandez7b929da2009-10-23 21:09:37 +000056 isa<AllocaInst>(Inst))
Dan Gohmane4aeec02009-10-13 18:30:07 +000057 continue;
58
59 bool AllOperandsConstant = true;
60 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
61 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
62 AllOperandsConstant = false;
63 break;
64 }
65
66 if (AllOperandsConstant) {
67 // We will get to remove this instruction...
68 Reduction += 7;
69
70 // And any other instructions that use it which become constants
71 // themselves.
72 Reduction += CountCodeReductionForConstant(&Inst);
73 }
74 }
75
76 return Reduction;
77}
78
79// CountCodeReductionForAlloca - Figure out an approximation of how much smaller
80// the function will be if it is inlined into a context where an argument
81// becomes an alloca.
82//
Dan Gohmane7f0ed52009-10-13 19:58:07 +000083unsigned InlineCostAnalyzer::FunctionInfo::
Dan Gohmane4aeec02009-10-13 18:30:07 +000084 CountCodeReductionForAlloca(Value *V) {
85 if (!isa<PointerType>(V->getType())) return 0; // Not a pointer
86 unsigned Reduction = 0;
87 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
88 Instruction *I = cast<Instruction>(*UI);
89 if (isa<LoadInst>(I) || isa<StoreInst>(I))
90 Reduction += 10;
91 else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
92 // If the GEP has variable indices, we won't be able to do much with it.
93 if (!GEP->hasAllConstantIndices())
94 Reduction += CountCodeReductionForAlloca(GEP)+15;
95 } else {
96 // If there is some other strange instruction, we're not going to be able
97 // to do much if we inline this.
98 return 0;
99 }
100 }
101
102 return Reduction;
103}
104
105/// analyzeBasicBlock - Fill in the current structure with information gleaned
106/// from the specified block.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000107void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000108 ++NumBlocks;
109
110 for (BasicBlock::const_iterator II = BB->begin(), E = BB->end();
111 II != E; ++II) {
112 if (isa<PHINode>(II)) continue; // PHI nodes don't count.
113
114 // Special handling for calls.
115 if (isa<CallInst>(II) || isa<InvokeInst>(II)) {
116 if (isa<DbgInfoIntrinsic>(II))
117 continue; // Debug intrinsics don't count as size.
118
119 CallSite CS = CallSite::get(const_cast<Instruction*>(&*II));
120
121 // If this function contains a call to setjmp or _setjmp, never inline
122 // it. This is a hack because we depend on the user marking their local
123 // variables as volatile if they are live across a setjmp call, and they
124 // probably won't do this in callers.
125 if (Function *F = CS.getCalledFunction())
126 if (F->isDeclaration() &&
Dan Gohman497f6192009-10-13 20:10:10 +0000127 (F->getName() == "setjmp" || F->getName() == "_setjmp"))
Dan Gohmane4aeec02009-10-13 18:30:07 +0000128 NeverInline = true;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000129
130 // Calls often compile into many machine instructions. Bump up their
131 // cost to reflect this.
132 if (!isa<IntrinsicInst>(II))
133 NumInsts += InlineConstants::CallPenalty;
134 }
135
Dan Gohmane4aeec02009-10-13 18:30:07 +0000136 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
137 if (!AI->isStaticAlloca())
138 this->usesDynamicAlloca = true;
139 }
140
141 if (isa<ExtractElementInst>(II) || isa<VectorType>(II->getType()))
142 ++NumVectorInsts;
143
144 // Noop casts, including ptr <-> int, don't count.
145 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
146 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
147 isa<PtrToIntInst>(CI))
148 continue;
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000149 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(II)){
Dan Gohmane4aeec02009-10-13 18:30:07 +0000150 // If a GEP has all constant indices, it will probably be folded with
151 // a load/store.
152 if (GEPI->hasAllConstantIndices())
153 continue;
154 }
155
Dan Gohmane4aeec02009-10-13 18:30:07 +0000156 ++NumInsts;
157 }
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000158
159 if (isa<ReturnInst>(BB->getTerminator()))
160 ++NumRets;
161
162 if (isa<IndirectBrInst>(BB->getTerminator()))
163 NeverInline = true;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000164}
165
166/// analyzeFunction - Fill in the current structure with information gleaned
167/// from the specified function.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000168void CodeMetrics::analyzeFunction(Function *F) {
169 // Look at the size of the callee.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000170 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
171 analyzeBasicBlock(&*BB);
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000172}
173
174/// analyzeFunction - Fill in the current structure with information gleaned
175/// from the specified function.
176void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
177 Metrics.analyzeFunction(F);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000178
179 // A function with exactly one return has it removed during the inlining
180 // process (see InlineFunction), so don't count it.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000181 // FIXME: This knowledge should really be encoded outside of FunctionInfo.
182 if (Metrics.NumRets==1)
183 --Metrics.NumInsts;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000184
185 // Check out all of the arguments to the function, figuring out how much
186 // code can be eliminated if one of the arguments is a constant.
187 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
188 ArgumentWeights.push_back(ArgInfo(CountCodeReductionForConstant(I),
189 CountCodeReductionForAlloca(I)));
190}
191
Dan Gohmane4aeec02009-10-13 18:30:07 +0000192// getInlineCost - The heuristic used to determine if we should inline the
193// function call or not.
194//
195InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
196 SmallPtrSet<const Function *, 16> &NeverInline) {
197 Instruction *TheCall = CS.getInstruction();
198 Function *Callee = CS.getCalledFunction();
199 Function *Caller = TheCall->getParent()->getParent();
200
201 // Don't inline functions which can be redefined at link-time to mean
202 // something else. Don't inline functions marked noinline.
203 if (Callee->mayBeOverridden() ||
204 Callee->hasFnAttr(Attribute::NoInline) || NeverInline.count(Callee))
205 return llvm::InlineCost::getNever();
206
207 // InlineCost - This value measures how good of an inline candidate this call
208 // site is to inline. A lower inline cost make is more likely for the call to
209 // be inlined. This value may go negative.
210 //
211 int InlineCost = 0;
212
213 // If there is only one call of the function, and it has internal linkage,
214 // make it almost guaranteed to be inlined.
215 //
216 if (Callee->hasLocalLinkage() && Callee->hasOneUse())
217 InlineCost += InlineConstants::LastCallToStaticBonus;
218
219 // If this function uses the coldcc calling convention, prefer not to inline
220 // it.
221 if (Callee->getCallingConv() == CallingConv::Cold)
222 InlineCost += InlineConstants::ColdccPenalty;
223
224 // If the instruction after the call, or if the normal destination of the
225 // invoke is an unreachable instruction, the function is noreturn. As such,
226 // there is little point in inlining this.
227 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
228 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
229 InlineCost += InlineConstants::NoreturnPenalty;
230 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
231 InlineCost += InlineConstants::NoreturnPenalty;
232
233 // Get information about the callee...
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000234 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000235
236 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000237 if (CalleeFI.Metrics.NumBlocks == 0)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000238 CalleeFI.analyzeFunction(Callee);
239
240 // If we should never inline this, return a huge cost.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000241 if (CalleeFI.Metrics.NeverInline)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000242 return InlineCost::getNever();
243
244 // FIXME: It would be nice to kill off CalleeFI.NeverInline. Then we
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000245 // could move this up and avoid computing the FunctionInfo for
Dan Gohmane4aeec02009-10-13 18:30:07 +0000246 // things we are going to just return always inline for. This
247 // requires handling setjmp somewhere else, however.
248 if (!Callee->isDeclaration() && Callee->hasFnAttr(Attribute::AlwaysInline))
249 return InlineCost::getAlways();
250
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000251 if (CalleeFI.Metrics.usesDynamicAlloca) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000252 // Get infomation about the caller...
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000253 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000254
255 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000256 if (CallerFI.Metrics.NumBlocks == 0)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000257 CallerFI.analyzeFunction(Caller);
258
259 // Don't inline a callee with dynamic alloca into a caller without them.
260 // Functions containing dynamic alloca's are inefficient in various ways;
261 // don't create more inefficiency.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000262 if (!CallerFI.Metrics.usesDynamicAlloca)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000263 return InlineCost::getNever();
264 }
265
266 // Add to the inline quality for properties that make the call valuable to
267 // inline. This includes factors that indicate that the result of inlining
268 // the function will be optimizable. Currently this just looks at arguments
269 // passed into the function.
270 //
271 unsigned ArgNo = 0;
272 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
273 I != E; ++I, ++ArgNo) {
274 // Each argument passed in has a cost at both the caller and the callee
275 // sides. This favors functions that take many arguments over functions
276 // that take few arguments.
277 InlineCost -= 20;
278
279 // If this is a function being passed in, it is very likely that we will be
280 // able to turn an indirect function call into a direct function call.
281 if (isa<Function>(I))
282 InlineCost -= 100;
283
284 // If an alloca is passed in, inlining this function is likely to allow
285 // significant future optimization possibilities (like scalar promotion, and
286 // scalarization), so encourage the inlining of the function.
287 //
288 else if (isa<AllocaInst>(I)) {
289 if (ArgNo < CalleeFI.ArgumentWeights.size())
290 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].AllocaWeight;
291
292 // If this is a constant being passed into the function, use the argument
293 // weights calculated for the callee to determine how much will be folded
294 // away with this information.
295 } else if (isa<Constant>(I)) {
296 if (ArgNo < CalleeFI.ArgumentWeights.size())
297 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].ConstantWeight;
298 }
299 }
300
301 // Now that we have considered all of the factors that make the call site more
302 // likely to be inlined, look at factors that make us not want to inline it.
303
304 // Don't inline into something too big, which would make it bigger.
305 // "size" here is the number of basic blocks, not instructions.
306 //
307 InlineCost += Caller->size()/15;
308
309 // Look at the size of the callee. Each instruction counts as 5.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000310 InlineCost += CalleeFI.Metrics.NumInsts*5;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000311
312 return llvm::InlineCost::get(InlineCost);
313}
314
315// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
316// higher threshold to determine if the function call should be inlined.
317float InlineCostAnalyzer::getInlineFudgeFactor(CallSite CS) {
318 Function *Callee = CS.getCalledFunction();
319
320 // Get information about the callee...
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000321 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000322
323 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000324 if (CalleeFI.Metrics.NumBlocks == 0)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000325 CalleeFI.analyzeFunction(Callee);
326
327 float Factor = 1.0f;
328 // Single BB functions are often written to be inlined.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000329 if (CalleeFI.Metrics.NumBlocks == 1)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000330 Factor += 0.5f;
331
332 // Be more aggressive if the function contains a good chunk (if it mades up
333 // at least 10% of the instructions) of vector instructions.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000334 if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/2)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000335 Factor += 2.0f;
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000336 else if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/10)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000337 Factor += 1.5f;
338 return Factor;
339}