blob: df03b378f07b7ef36ead1daf4ea44749a7c27f15 [file] [log] [blame]
Nick Lewycky586a7c42009-02-16 04:26:53 +00001//===- InlineCost.cpp - Cost analysis for inliner -------------------------===//
Devang Patel6899b312007-07-25 18:00:25 +00002//
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
Devang Patel6899b312007-07-25 18:00:25 +000014#include "llvm/Transforms/Utils/InlineCost.h"
15#include "llvm/Support/CallSite.h"
16#include "llvm/CallingConv.h"
17#include "llvm/IntrinsicInst.h"
Chris Lattner29f42ae2009-08-27 04:43:05 +000018#include "llvm/ADT/SmallPtrSet.h"
Devang Patel6899b312007-07-25 18:00:25 +000019using 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//
24unsigned InlineCostAnalyzer::FunctionInfo::
25 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;
34 else if (CallInst *CI = dyn_cast<CallInst>(*UI)) {
35 // Turning an indirect call into a direct call is a BIG win
36 Reduction += CI->getCalledValue() == V ? 500 : 0;
37 } else if (InvokeInst *II = dyn_cast<InvokeInst>(*UI)) {
38 // Turning an indirect call into a direct call is a BIG win
39 Reduction += II->getCalledValue() == V ? 500 : 0;
40 } else {
41 // Figure out if this instruction will be removed due to simple constant
42 // propagation.
43 Instruction &Inst = cast<Instruction>(**UI);
Eli Friedman4612e592009-07-18 05:26:06 +000044
45 // We can't constant propagate instructions which have effects or
46 // read memory.
Chris Lattner93f24912009-07-18 18:49:04 +000047 //
48 // FIXME: It would be nice to capture the fact that a load from a
49 // pointer-to-constant-global is actually a *really* good thing to zap.
50 // Unfortunately, we don't know the pointer that may get propagated here,
51 // so we can't make this decision.
Eli Friedman4612e592009-07-18 05:26:06 +000052 if (Inst.mayReadFromMemory() || Inst.mayHaveSideEffects() ||
Chris Lattner4412d042009-09-27 21:33:46 +000053 isa<AllocationInst>(Inst))
Eli Friedman4612e592009-07-18 05:26:06 +000054 continue;
55
Devang Patel6899b312007-07-25 18:00:25 +000056 bool AllOperandsConstant = true;
57 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
58 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
59 AllOperandsConstant = false;
60 break;
61 }
62
63 if (AllOperandsConstant) {
64 // We will get to remove this instruction...
65 Reduction += 7;
66
67 // And any other instructions that use it which become constants
68 // themselves.
69 Reduction += CountCodeReductionForConstant(&Inst);
70 }
71 }
72
73 return Reduction;
74}
75
76// CountCodeReductionForAlloca - Figure out an approximation of how much smaller
77// the function will be if it is inlined into a context where an argument
78// becomes an alloca.
79//
80unsigned InlineCostAnalyzer::FunctionInfo::
81 CountCodeReductionForAlloca(Value *V) {
82 if (!isa<PointerType>(V->getType())) return 0; // Not a pointer
83 unsigned Reduction = 0;
84 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
85 Instruction *I = cast<Instruction>(*UI);
86 if (isa<LoadInst>(I) || isa<StoreInst>(I))
87 Reduction += 10;
88 else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
89 // If the GEP has variable indices, we won't be able to do much with it.
Chris Lattner41b1a482009-04-21 23:37:18 +000090 if (!GEP->hasAllConstantIndices())
91 Reduction += CountCodeReductionForAlloca(GEP)+15;
Devang Patel6899b312007-07-25 18:00:25 +000092 } else {
93 // If there is some other strange instruction, we're not going to be able
94 // to do much if we inline this.
95 return 0;
96 }
97 }
98
99 return Reduction;
100}
101
102/// analyzeFunction - Fill in the current structure with information gleaned
103/// from the specified function.
104void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
Dale Johannesend5405a62009-09-23 22:05:24 +0000105 unsigned NumInsts = 0, NumBlocks = 0, NumVectorInsts = 0, NumRets = 0;
Devang Patel6899b312007-07-25 18:00:25 +0000106
107 // Look at the size of the callee. Each basic block counts as 20 units, and
Devang Patel161660e2007-09-17 20:07:40 +0000108 // each instruction counts as 5.
Devang Patel6899b312007-07-25 18:00:25 +0000109 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
110 for (BasicBlock::const_iterator II = BB->begin(), E = BB->end();
111 II != E; ++II) {
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000112 if (isa<PHINode>(II)) continue; // PHI nodes don't count.
113
Chris Lattner46868c02008-07-14 17:32:59 +0000114 // 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() &&
Daniel Dunbar03d76512009-07-25 23:55:21 +0000127 (F->getName() == "setjmp" || F->getName() == "_setjmp")) {
Chris Lattner46868c02008-07-14 17:32:59 +0000128 NeverInline = true;
129 return;
130 }
Dale Johannesen381e6f62009-01-24 21:49:34 +0000131
Evan Cheng066fcf82008-07-17 01:31:49 +0000132 // Calls often compile into many machine instructions. Bump up their
Dale Johannesen381e6f62009-01-24 21:49:34 +0000133 // cost to reflect this.
134 if (!isa<IntrinsicInst>(II))
135 NumInsts += 5;
Chris Lattner46868c02008-07-14 17:32:59 +0000136 }
137
Eric Christopher00d67db2009-10-07 00:54:08 +0000138 // These, too, are calls.
139 if (isa<MallocInst>(II) || isa<FreeInst>(II))
Eric Christopher07043002009-10-07 00:02:18 +0000140 NumInsts += 5;
141
Dale Johannesen43623872009-01-08 21:45:23 +0000142 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
Dale Johannesene3455662009-01-09 01:30:11 +0000143 if (!AI->isStaticAlloca())
Dale Johannesen43623872009-01-08 21:45:23 +0000144 this->usesDynamicAlloca = true;
145 }
146
Chris Lattner42384532008-07-14 00:32:20 +0000147 if (isa<ExtractElementInst>(II) || isa<VectorType>(II->getType()))
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000148 ++NumVectorInsts;
Devang Patel6899b312007-07-25 18:00:25 +0000149
150 // Noop casts, including ptr <-> int, don't count.
151 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
152 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
153 isa<PtrToIntInst>(CI))
154 continue;
155 } else if (const GetElementPtrInst *GEPI =
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000156 dyn_cast<GetElementPtrInst>(II)) {
Devang Patel6899b312007-07-25 18:00:25 +0000157 // If a GEP has all constant indices, it will probably be folded with
158 // a load/store.
Chris Lattner41b1a482009-04-21 23:37:18 +0000159 if (GEPI->hasAllConstantIndices())
160 continue;
Devang Patel6899b312007-07-25 18:00:25 +0000161 }
Dale Johannesend5405a62009-09-23 22:05:24 +0000162
163 if (isa<ReturnInst>(II))
164 ++NumRets;
Devang Patel6899b312007-07-25 18:00:25 +0000165
166 ++NumInsts;
167 }
168
169 ++NumBlocks;
170 }
171
Dale Johannesend5405a62009-09-23 22:05:24 +0000172 // A function with exactly one return has it removed during the inlining
173 // process (see InlineFunction), so don't count it.
174 if (NumRets==1)
175 --NumInsts;
176
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000177 this->NumBlocks = NumBlocks;
178 this->NumInsts = NumInsts;
179 this->NumVectorInsts = NumVectorInsts;
Devang Patel6899b312007-07-25 18:00:25 +0000180
181 // Check out all of the arguments to the function, figuring out how much
182 // code can be eliminated if one of the arguments is a constant.
183 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
184 ArgumentWeights.push_back(ArgInfo(CountCodeReductionForConstant(I),
185 CountCodeReductionForAlloca(I)));
186}
187
188
189
190// getInlineCost - The heuristic used to determine if we should inline the
191// function call or not.
192//
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000193InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
Evan Cheng71d83742008-03-20 00:20:23 +0000194 SmallPtrSet<const Function *, 16> &NeverInline) {
Devang Patel6899b312007-07-25 18:00:25 +0000195 Instruction *TheCall = CS.getInstruction();
196 Function *Callee = CS.getCalledFunction();
Dale Johannesen43623872009-01-08 21:45:23 +0000197 Function *Caller = TheCall->getParent()->getParent();
Duncan Sands5df31862008-09-29 11:25:42 +0000198
Dale Johannesend5405a62009-09-23 22:05:24 +0000199 // Don't inline functions which can be redefined at link-time to mean
200 // something else. Don't inline functions marked noinline.
201 if (Callee->mayBeOverridden() ||
202 Callee->hasFnAttr(Attribute::NoInline) || NeverInline.count(Callee))
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000203 return llvm::InlineCost::getNever();
Duncan Sands5df31862008-09-29 11:25:42 +0000204
Devang Patel6899b312007-07-25 18:00:25 +0000205 // InlineCost - This value measures how good of an inline candidate this call
206 // site is to inline. A lower inline cost make is more likely for the call to
207 // be inlined. This value may go negative.
208 //
209 int InlineCost = 0;
210
211 // If there is only one call of the function, and it has internal linkage,
212 // make it almost guaranteed to be inlined.
213 //
Eli Friedman6dae7572009-07-22 08:12:59 +0000214 if (Callee->hasLocalLinkage() && Callee->hasOneUse())
Evan Cheng79328662008-04-24 18:42:47 +0000215 InlineCost -= 15000;
Devang Patel6899b312007-07-25 18:00:25 +0000216
217 // If this function uses the coldcc calling convention, prefer not to inline
218 // it.
219 if (Callee->getCallingConv() == CallingConv::Cold)
220 InlineCost += 2000;
221
222 // If the instruction after the call, or if the normal destination of the
223 // invoke is an unreachable instruction, the function is noreturn. As such,
224 // there is little point in inlining this.
225 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
226 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
227 InlineCost += 10000;
228 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
229 InlineCost += 10000;
230
231 // Get information about the callee...
232 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
233
234 // If we haven't calculated this information yet, do so now.
235 if (CalleeFI.NumBlocks == 0)
236 CalleeFI.analyzeFunction(Callee);
Dale Johannesen43623872009-01-08 21:45:23 +0000237
Chris Lattner46868c02008-07-14 17:32:59 +0000238 // If we should never inline this, return a huge cost.
239 if (CalleeFI.NeverInline)
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000240 return InlineCost::getNever();
Devang Patel67243392008-09-03 18:47:45 +0000241
Evan Cheng8c7848f2009-03-10 07:57:50 +0000242 // FIXME: It would be nice to kill off CalleeFI.NeverInline. Then we
243 // could move this up and avoid computing the FunctionInfo for
244 // things we are going to just return always inline for. This
245 // requires handling setjmp somewhere else, however.
246 if (!Callee->isDeclaration() && Callee->hasFnAttr(Attribute::AlwaysInline))
247 return InlineCost::getAlways();
248
Dale Johannesene3455662009-01-09 01:30:11 +0000249 if (CalleeFI.usesDynamicAlloca) {
250 // Get infomation about the caller...
251 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
Dale Johannesen43623872009-01-08 21:45:23 +0000252
Dale Johannesene3455662009-01-09 01:30:11 +0000253 // If we haven't calculated this information yet, do so now.
254 if (CallerFI.NumBlocks == 0)
255 CallerFI.analyzeFunction(Caller);
Dale Johannesen43623872009-01-08 21:45:23 +0000256
Dale Johannesene3455662009-01-09 01:30:11 +0000257 // Don't inline a callee with dynamic alloca into a caller without them.
258 // Functions containing dynamic alloca's are inefficient in various ways;
259 // don't create more inefficiency.
260 if (!CallerFI.usesDynamicAlloca)
261 return InlineCost::getNever();
262 }
Dale Johannesen43623872009-01-08 21:45:23 +0000263
Devang Patel6899b312007-07-25 18:00:25 +0000264 // Add to the inline quality for properties that make the call valuable to
265 // inline. This includes factors that indicate that the result of inlining
266 // the function will be optimizable. Currently this just looks at arguments
267 // passed into the function.
268 //
269 unsigned ArgNo = 0;
270 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
271 I != E; ++I, ++ArgNo) {
272 // Each argument passed in has a cost at both the caller and the callee
273 // sides. This favors functions that take many arguments over functions
274 // that take few arguments.
275 InlineCost -= 20;
276
277 // If this is a function being passed in, it is very likely that we will be
278 // able to turn an indirect function call into a direct function call.
279 if (isa<Function>(I))
280 InlineCost -= 100;
281
282 // If an alloca is passed in, inlining this function is likely to allow
283 // significant future optimization possibilities (like scalar promotion, and
284 // scalarization), so encourage the inlining of the function.
285 //
286 else if (isa<AllocaInst>(I)) {
287 if (ArgNo < CalleeFI.ArgumentWeights.size())
288 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].AllocaWeight;
289
290 // If this is a constant being passed into the function, use the argument
291 // weights calculated for the callee to determine how much will be folded
292 // away with this information.
293 } else if (isa<Constant>(I)) {
294 if (ArgNo < CalleeFI.ArgumentWeights.size())
295 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].ConstantWeight;
296 }
297 }
298
299 // Now that we have considered all of the factors that make the call site more
300 // likely to be inlined, look at factors that make us not want to inline it.
301
Evan Cheng7c3becd2008-04-01 23:59:29 +0000302 // Don't inline into something too big, which would make it bigger.
Dale Johannesend5405a62009-09-23 22:05:24 +0000303 // "size" here is the number of basic blocks, not instructions.
Devang Patel6899b312007-07-25 18:00:25 +0000304 //
Evan Cheng79328662008-04-24 18:42:47 +0000305 InlineCost += Caller->size()/15;
Devang Patel6899b312007-07-25 18:00:25 +0000306
Evan Cheng7c3becd2008-04-01 23:59:29 +0000307 // Look at the size of the callee. Each instruction counts as 5.
308 InlineCost += CalleeFI.NumInsts*5;
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000309
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +0000310 return llvm::InlineCost::get(InlineCost);
Devang Patel6899b312007-07-25 18:00:25 +0000311}
312
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000313// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
314// higher threshold to determine if the function call should be inlined.
315float InlineCostAnalyzer::getInlineFudgeFactor(CallSite CS) {
316 Function *Callee = CS.getCalledFunction();
317
318 // Get information about the callee...
319 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
320
321 // If we haven't calculated this information yet, do so now.
322 if (CalleeFI.NumBlocks == 0)
323 CalleeFI.analyzeFunction(Callee);
324
Evan Cheng7c3becd2008-04-01 23:59:29 +0000325 float Factor = 1.0f;
326 // Single BB functions are often written to be inlined.
327 if (CalleeFI.NumBlocks == 1)
328 Factor += 0.5f;
329
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000330 // Be more aggressive if the function contains a good chunk (if it mades up
331 // at least 10% of the instructions) of vector instructions.
Evan Cheng7c3becd2008-04-01 23:59:29 +0000332 if (CalleeFI.NumVectorInsts > CalleeFI.NumInsts/2)
333 Factor += 2.0f;
334 else if (CalleeFI.NumVectorInsts > CalleeFI.NumInsts/10)
335 Factor += 1.5f;
336 return Factor;
Evan Cheng8d84d5b2008-03-24 06:37:48 +0000337}