blob: afdf474c616ae4eba55e3234a1b708e6c486b132 [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
Dan Gohman52d55bd2010-04-16 15:14:50 +000021/// callIsSmall - If a call is likely to lower to a single target instruction,
22/// or is otherwise deemed small return true.
23/// TODO: Perhaps calls like memcpy, strcpy, etc?
24bool llvm::callIsSmall(const Function *F) {
Eric Christopher745d8c92010-01-14 21:48:00 +000025 if (!F) return false;
26
27 if (F->hasLocalLinkage()) return false;
28
Eric Christopher83c20d32010-01-14 23:00:10 +000029 if (!F->hasName()) return false;
30
31 StringRef Name = F->getName();
32
33 // These will all likely lower to a single selection DAG node.
Duncan Sands87cd7ed2010-03-15 14:01:44 +000034 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
Eric Christopher83c20d32010-01-14 23:00:10 +000035 Name == "fabs" || Name == "fabsf" || Name == "fabsl" ||
36 Name == "sin" || Name == "sinf" || Name == "sinl" ||
37 Name == "cos" || Name == "cosf" || Name == "cosl" ||
38 Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl" )
39 return true;
40
41 // These are all likely to be optimized into something smaller.
42 if (Name == "pow" || Name == "powf" || Name == "powl" ||
43 Name == "exp2" || Name == "exp2l" || Name == "exp2f" ||
44 Name == "floor" || Name == "floorf" || Name == "ceil" ||
45 Name == "round" || Name == "ffs" || Name == "ffsl" ||
46 Name == "abs" || Name == "labs" || Name == "llabs")
47 return true;
48
Eric Christopher2d59ae62010-01-14 20:12:34 +000049 return false;
50}
51
Dan Gohmane4aeec02009-10-13 18:30:07 +000052/// analyzeBasicBlock - Fill in the current structure with information gleaned
53/// from the specified block.
Dan Gohmane7f0ed52009-10-13 19:58:07 +000054void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB) {
Dan Gohmane4aeec02009-10-13 18:30:07 +000055 ++NumBlocks;
Devang Patelafc33fa2010-03-13 01:05:02 +000056 unsigned NumInstsBeforeThisBB = NumInsts;
Dan Gohmane4aeec02009-10-13 18:30:07 +000057 for (BasicBlock::const_iterator II = BB->begin(), E = BB->end();
58 II != E; ++II) {
59 if (isa<PHINode>(II)) continue; // PHI nodes don't count.
60
61 // Special handling for calls.
62 if (isa<CallInst>(II) || isa<InvokeInst>(II)) {
63 if (isa<DbgInfoIntrinsic>(II))
64 continue; // Debug intrinsics don't count as size.
Gabor Greif0de11e02010-07-27 14:15:29 +000065
66 ImmutableCallSite CS(cast<Instruction>(II));
67
Dan Gohmane4aeec02009-10-13 18:30:07 +000068 // If this function contains a call to setjmp or _setjmp, never inline
69 // it. This is a hack because we depend on the user marking their local
70 // variables as volatile if they are live across a setjmp call, and they
71 // probably won't do this in callers.
Gabor Greif0de11e02010-07-27 14:15:29 +000072 if (const Function *F = CS.getCalledFunction()) {
Owen Andersonf9a26b82010-09-09 20:32:23 +000073 // If a function is both internal and has a single use, then it is
74 // extremely likely to get inlined in the future (it was probably
75 // exposed by an interleaved devirtualization pass).
76 if (F->hasInternalLinkage() && F->hasOneUse())
77 ++NumInlineCandidates;
78
Dan Gohmane4aeec02009-10-13 18:30:07 +000079 if (F->isDeclaration() &&
Dan Gohman497f6192009-10-13 20:10:10 +000080 (F->getName() == "setjmp" || F->getName() == "_setjmp"))
Kenneth Uildriks42c7d232010-06-09 15:11:37 +000081 callsSetJmp = true;
Chris Lattner4b7b42c2010-04-30 22:37:22 +000082
83 // If this call is to function itself, then the function is recursive.
84 // Inlining it into other functions is a bad idea, because this is
85 // basically just a form of loop peeling, and our metrics aren't useful
86 // for that case.
87 if (F == BB->getParent())
Kenneth Uildriks42c7d232010-06-09 15:11:37 +000088 isRecursive = true;
Chris Lattner4b7b42c2010-04-30 22:37:22 +000089 }
Dan Gohmane4aeec02009-10-13 18:30:07 +000090
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +000091 if (!isa<IntrinsicInst>(II) && !callIsSmall(CS.getCalledFunction())) {
92 // Each argument to a call takes on average one instruction to set up.
93 NumInsts += CS.arg_size();
Jakob Stoklund Olesen8b3ca842010-05-26 22:40:28 +000094
95 // We don't want inline asm to count as a call - that would prevent loop
96 // unrolling. The argument setup cost is still real, though.
97 if (!isa<InlineAsm>(CS.getCalledValue()))
98 ++NumCalls;
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +000099 }
Dan Gohmane4aeec02009-10-13 18:30:07 +0000100 }
101
Dan Gohmane4aeec02009-10-13 18:30:07 +0000102 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
103 if (!AI->isStaticAlloca())
104 this->usesDynamicAlloca = true;
105 }
106
Duncan Sands1df98592010-02-16 11:11:14 +0000107 if (isa<ExtractElementInst>(II) || II->getType()->isVectorTy())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000108 ++NumVectorInsts;
109
Dan Gohmane4aeec02009-10-13 18:30:07 +0000110 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
Evan Cheng1a67dd22010-01-14 21:04:31 +0000111 // Noop casts, including ptr <-> int, don't count.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000112 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
113 isa<PtrToIntInst>(CI))
114 continue;
Evan Cheng1a67dd22010-01-14 21:04:31 +0000115 // Result of a cmp instruction is often extended (to be used by other
116 // cmp instructions, logical or return instructions). These are usually
117 // nop on most sane targets.
118 if (isa<CmpInst>(CI->getOperand(0)))
119 continue;
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000120 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(II)){
Dan Gohmane4aeec02009-10-13 18:30:07 +0000121 // If a GEP has all constant indices, it will probably be folded with
122 // a load/store.
123 if (GEPI->hasAllConstantIndices())
124 continue;
125 }
126
Dan Gohmane4aeec02009-10-13 18:30:07 +0000127 ++NumInsts;
128 }
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000129
130 if (isa<ReturnInst>(BB->getTerminator()))
131 ++NumRets;
132
Chris Lattner66588702009-11-01 18:16:30 +0000133 // We never want to inline functions that contain an indirectbr. This is
Duncan Sandsb0469642009-11-01 19:12:43 +0000134 // incorrect because all the blockaddress's (in static global initializers
135 // for example) would be referring to the original function, and this indirect
Chris Lattner66588702009-11-01 18:16:30 +0000136 // jump would jump from the inlined copy of the function into the original
137 // function which is extremely undefined behavior.
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000138 if (isa<IndirectBrInst>(BB->getTerminator()))
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000139 containsIndirectBr = true;
Devang Patelcbd05602010-03-13 00:10:20 +0000140
141 // Remember NumInsts for this BB.
Devang Patelafc33fa2010-03-13 01:05:02 +0000142 NumBBInsts[BB] = NumInsts - NumInstsBeforeThisBB;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000143}
144
Owen Anderson082bf2a2010-09-09 16:56:42 +0000145// CountCodeReductionForConstant - Figure out an approximation for how many
146// instructions will be constant folded if the specified value is constant.
147//
148unsigned CodeMetrics::CountCodeReductionForConstant(Value *V) {
149 unsigned Reduction = 0;
150 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
151 User *U = *UI;
152 if (isa<BranchInst>(U) || isa<SwitchInst>(U)) {
153 // We will be able to eliminate all but one of the successors.
154 const TerminatorInst &TI = cast<TerminatorInst>(*U);
155 const unsigned NumSucc = TI.getNumSuccessors();
156 unsigned Instrs = 0;
157 for (unsigned I = 0; I != NumSucc; ++I)
158 Instrs += NumBBInsts[TI.getSuccessor(I)];
159 // We don't know which blocks will be eliminated, so use the average size.
160 Reduction += InlineConstants::InstrCost*Instrs*(NumSucc-1)/NumSucc;
161 } else if (CallInst *CI = dyn_cast<CallInst>(U)) {
162 // Turning an indirect call into a direct call is a BIG win
163 if (CI->getCalledValue() == V)
164 Reduction += InlineConstants::IndirectCallBonus;
165 } else if (InvokeInst *II = dyn_cast<InvokeInst>(U)) {
166 // Turning an indirect call into a direct call is a BIG win
167 if (II->getCalledValue() == V)
168 Reduction += InlineConstants::IndirectCallBonus;
169 } else {
170 // Figure out if this instruction will be removed due to simple constant
171 // propagation.
172 Instruction &Inst = cast<Instruction>(*U);
173
174 // We can't constant propagate instructions which have effects or
175 // read memory.
176 //
177 // FIXME: It would be nice to capture the fact that a load from a
178 // pointer-to-constant-global is actually a *really* good thing to zap.
179 // Unfortunately, we don't know the pointer that may get propagated here,
180 // so we can't make this decision.
181 if (Inst.mayReadFromMemory() || Inst.mayHaveSideEffects() ||
182 isa<AllocaInst>(Inst))
183 continue;
184
185 bool AllOperandsConstant = true;
186 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
187 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
188 AllOperandsConstant = false;
189 break;
190 }
191
192 if (AllOperandsConstant) {
193 // We will get to remove this instruction...
194 Reduction += InlineConstants::InstrCost;
195
196 // And any other instructions that use it which become constants
197 // themselves.
198 Reduction += CountCodeReductionForConstant(&Inst);
199 }
200 }
201 }
202 return Reduction;
203}
204
205// CountCodeReductionForAlloca - Figure out an approximation of how much smaller
206// the function will be if it is inlined into a context where an argument
207// becomes an alloca.
208//
209unsigned CodeMetrics::CountCodeReductionForAlloca(Value *V) {
210 if (!V->getType()->isPointerTy()) return 0; // Not a pointer
211 unsigned Reduction = 0;
212 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
213 Instruction *I = cast<Instruction>(*UI);
214 if (isa<LoadInst>(I) || isa<StoreInst>(I))
215 Reduction += InlineConstants::InstrCost;
216 else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
217 // If the GEP has variable indices, we won't be able to do much with it.
218 if (GEP->hasAllConstantIndices())
219 Reduction += CountCodeReductionForAlloca(GEP);
220 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
221 // Track pointer through bitcasts.
222 Reduction += CountCodeReductionForAlloca(BCI);
223 } else {
224 // If there is some other strange instruction, we're not going to be able
225 // to do much if we inline this.
226 return 0;
227 }
228 }
229
230 return Reduction;
231}
232
Dan Gohmane4aeec02009-10-13 18:30:07 +0000233/// analyzeFunction - Fill in the current structure with information gleaned
234/// from the specified function.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000235void CodeMetrics::analyzeFunction(Function *F) {
236 // Look at the size of the callee.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000237 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
238 analyzeBasicBlock(&*BB);
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000239}
240
241/// analyzeFunction - Fill in the current structure with information gleaned
242/// from the specified function.
243void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
244 Metrics.analyzeFunction(F);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000245
246 // A function with exactly one return has it removed during the inlining
247 // process (see InlineFunction), so don't count it.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000248 // FIXME: This knowledge should really be encoded outside of FunctionInfo.
249 if (Metrics.NumRets==1)
250 --Metrics.NumInsts;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000251
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000252 // Don't bother calculating argument weights if we are never going to inline
253 // the function anyway.
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000254 if (NeverInline())
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000255 return;
256
Dan Gohmane4aeec02009-10-13 18:30:07 +0000257 // Check out all of the arguments to the function, figuring out how much
258 // code can be eliminated if one of the arguments is a constant.
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000259 ArgumentWeights.reserve(F->arg_size());
Dan Gohmane4aeec02009-10-13 18:30:07 +0000260 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Owen Anderson082bf2a2010-09-09 16:56:42 +0000261 ArgumentWeights.push_back(ArgInfo(Metrics.CountCodeReductionForConstant(I),
262 Metrics.CountCodeReductionForAlloca(I)));
Dan Gohmane4aeec02009-10-13 18:30:07 +0000263}
264
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000265/// NeverInline - returns true if the function should never be inlined into
266/// any caller
267bool InlineCostAnalyzer::FunctionInfo::NeverInline()
268{
269 return (Metrics.callsSetJmp || Metrics.isRecursive ||
270 Metrics.containsIndirectBr);
271
272}
Dan Gohmane4aeec02009-10-13 18:30:07 +0000273// getInlineCost - The heuristic used to determine if we should inline the
274// function call or not.
275//
276InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
Chris Lattner44b04a52010-04-17 17:55:00 +0000277 SmallPtrSet<const Function*, 16> &NeverInline) {
David Chisnall752e2592010-05-01 15:47:41 +0000278 return getInlineCost(CS, CS.getCalledFunction(), NeverInline);
279}
280
281InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
282 Function *Callee,
283 SmallPtrSet<const Function*, 16> &NeverInline) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000284 Instruction *TheCall = CS.getInstruction();
Dan Gohmane4aeec02009-10-13 18:30:07 +0000285 Function *Caller = TheCall->getParent()->getParent();
David Chisnall752e2592010-05-01 15:47:41 +0000286 bool isDirectCall = CS.getCalledFunction() == Callee;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000287
288 // Don't inline functions which can be redefined at link-time to mean
Eric Christopherf27e6082010-03-25 04:49:10 +0000289 // something else. Don't inline functions marked noinline or call sites
290 // marked noinline.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000291 if (Callee->mayBeOverridden() ||
Eric Christopherf27e6082010-03-25 04:49:10 +0000292 Callee->hasFnAttr(Attribute::NoInline) || NeverInline.count(Callee) ||
293 CS.isNoInline())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000294 return llvm::InlineCost::getNever();
295
296 // InlineCost - This value measures how good of an inline candidate this call
297 // site is to inline. A lower inline cost make is more likely for the call to
298 // be inlined. This value may go negative.
299 //
300 int InlineCost = 0;
David Chisnall752e2592010-05-01 15:47:41 +0000301
Dan Gohmane4aeec02009-10-13 18:30:07 +0000302 // If there is only one call of the function, and it has internal linkage,
303 // make it almost guaranteed to be inlined.
304 //
David Chisnall752e2592010-05-01 15:47:41 +0000305 if (Callee->hasLocalLinkage() && Callee->hasOneUse() && isDirectCall)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000306 InlineCost += InlineConstants::LastCallToStaticBonus;
307
308 // If this function uses the coldcc calling convention, prefer not to inline
309 // it.
310 if (Callee->getCallingConv() == CallingConv::Cold)
311 InlineCost += InlineConstants::ColdccPenalty;
312
313 // If the instruction after the call, or if the normal destination of the
314 // invoke is an unreachable instruction, the function is noreturn. As such,
315 // there is little point in inlining this.
316 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
317 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
318 InlineCost += InlineConstants::NoreturnPenalty;
319 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
320 InlineCost += InlineConstants::NoreturnPenalty;
321
Chris Lattner44b04a52010-04-17 17:55:00 +0000322 // Get information about the callee.
323 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000324
325 // If we haven't calculated this information yet, do so now.
Chris Lattner44b04a52010-04-17 17:55:00 +0000326 if (CalleeFI->Metrics.NumBlocks == 0)
327 CalleeFI->analyzeFunction(Callee);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000328
329 // If we should never inline this, return a huge cost.
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000330 if (CalleeFI->NeverInline())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000331 return InlineCost::getNever();
332
Chris Lattner44b04a52010-04-17 17:55:00 +0000333 // FIXME: It would be nice to kill off CalleeFI->NeverInline. Then we
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000334 // could move this up and avoid computing the FunctionInfo for
Dan Gohmane4aeec02009-10-13 18:30:07 +0000335 // things we are going to just return always inline for. This
336 // requires handling setjmp somewhere else, however.
337 if (!Callee->isDeclaration() && Callee->hasFnAttr(Attribute::AlwaysInline))
338 return InlineCost::getAlways();
339
Chris Lattner44b04a52010-04-17 17:55:00 +0000340 if (CalleeFI->Metrics.usesDynamicAlloca) {
341 // Get infomation about the caller.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000342 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000343
344 // If we haven't calculated this information yet, do so now.
Chris Lattnerf84755b2010-04-17 17:57:56 +0000345 if (CallerFI.Metrics.NumBlocks == 0) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000346 CallerFI.analyzeFunction(Caller);
Chris Lattnerf84755b2010-04-17 17:57:56 +0000347
348 // Recompute the CalleeFI pointer, getting Caller could have invalidated
349 // it.
350 CalleeFI = &CachedFunctionInfo[Callee];
351 }
Dan Gohmane4aeec02009-10-13 18:30:07 +0000352
353 // Don't inline a callee with dynamic alloca into a caller without them.
354 // Functions containing dynamic alloca's are inefficient in various ways;
355 // don't create more inefficiency.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000356 if (!CallerFI.Metrics.usesDynamicAlloca)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000357 return InlineCost::getNever();
358 }
359
360 // Add to the inline quality for properties that make the call valuable to
361 // inline. This includes factors that indicate that the result of inlining
362 // the function will be optimizable. Currently this just looks at arguments
363 // passed into the function.
364 //
365 unsigned ArgNo = 0;
366 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
367 I != E; ++I, ++ArgNo) {
368 // Each argument passed in has a cost at both the caller and the callee
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000369 // sides. Measurements show that each argument costs about the same as an
370 // instruction.
371 InlineCost -= InlineConstants::InstrCost;
372
Dan Gohmane4aeec02009-10-13 18:30:07 +0000373 // If an alloca is passed in, inlining this function is likely to allow
374 // significant future optimization possibilities (like scalar promotion, and
375 // scalarization), so encourage the inlining of the function.
376 //
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000377 if (isa<AllocaInst>(I)) {
Chris Lattner44b04a52010-04-17 17:55:00 +0000378 if (ArgNo < CalleeFI->ArgumentWeights.size())
379 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].AllocaWeight;
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000380
Dan Gohmane4aeec02009-10-13 18:30:07 +0000381 // If this is a constant being passed into the function, use the argument
382 // weights calculated for the callee to determine how much will be folded
383 // away with this information.
384 } else if (isa<Constant>(I)) {
Chris Lattner44b04a52010-04-17 17:55:00 +0000385 if (ArgNo < CalleeFI->ArgumentWeights.size())
386 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].ConstantWeight;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000387 }
388 }
389
390 // Now that we have considered all of the factors that make the call site more
391 // likely to be inlined, look at factors that make us not want to inline it.
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +0000392
393 // Calls usually take a long time, so they make the inlining gain smaller.
Chris Lattner44b04a52010-04-17 17:55:00 +0000394 InlineCost += CalleeFI->Metrics.NumCalls * InlineConstants::CallPenalty;
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +0000395
Dan Gohmane4aeec02009-10-13 18:30:07 +0000396 // Look at the size of the callee. Each instruction counts as 5.
Chris Lattner44b04a52010-04-17 17:55:00 +0000397 InlineCost += CalleeFI->Metrics.NumInsts*InlineConstants::InstrCost;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000398
399 return llvm::InlineCost::get(InlineCost);
400}
401
402// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
403// higher threshold to determine if the function call should be inlined.
404float InlineCostAnalyzer::getInlineFudgeFactor(CallSite CS) {
405 Function *Callee = CS.getCalledFunction();
406
Chris Lattner44b04a52010-04-17 17:55:00 +0000407 // Get information about the callee.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000408 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000409
410 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000411 if (CalleeFI.Metrics.NumBlocks == 0)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000412 CalleeFI.analyzeFunction(Callee);
413
414 float Factor = 1.0f;
415 // Single BB functions are often written to be inlined.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000416 if (CalleeFI.Metrics.NumBlocks == 1)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000417 Factor += 0.5f;
418
419 // Be more aggressive if the function contains a good chunk (if it mades up
420 // at least 10% of the instructions) of vector instructions.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000421 if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/2)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000422 Factor += 2.0f;
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000423 else if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/10)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000424 Factor += 1.5f;
425 return Factor;
426}
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000427
428/// growCachedCostInfo - update the cached cost info for Caller after Callee has
429/// been inlined.
430void
Chris Lattner44b04a52010-04-17 17:55:00 +0000431InlineCostAnalyzer::growCachedCostInfo(Function *Caller, Function *Callee) {
432 CodeMetrics &CallerMetrics = CachedFunctionInfo[Caller].Metrics;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000433
434 // For small functions we prefer to recalculate the cost for better accuracy.
Chris Lattner44b04a52010-04-17 17:55:00 +0000435 if (CallerMetrics.NumBlocks < 10 || CallerMetrics.NumInsts < 1000) {
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000436 resetCachedCostInfo(Caller);
437 return;
438 }
439
440 // For large functions, we can save a lot of computation time by skipping
441 // recalculations.
Chris Lattner44b04a52010-04-17 17:55:00 +0000442 if (CallerMetrics.NumCalls > 0)
443 --CallerMetrics.NumCalls;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000444
Chris Lattner44b04a52010-04-17 17:55:00 +0000445 if (Callee == 0) return;
446
447 CodeMetrics &CalleeMetrics = CachedFunctionInfo[Callee].Metrics;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000448
Chris Lattner44b04a52010-04-17 17:55:00 +0000449 // If we don't have metrics for the callee, don't recalculate them just to
450 // update an approximation in the caller. Instead, just recalculate the
451 // caller info from scratch.
452 if (CalleeMetrics.NumBlocks == 0) {
453 resetCachedCostInfo(Caller);
454 return;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000455 }
Chris Lattner44b04a52010-04-17 17:55:00 +0000456
Chris Lattnerf84755b2010-04-17 17:57:56 +0000457 // Since CalleeMetrics were already calculated, we know that the CallerMetrics
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000458 // reference isn't invalidated: both were in the DenseMap.
Chris Lattner44b04a52010-04-17 17:55:00 +0000459 CallerMetrics.usesDynamicAlloca |= CalleeMetrics.usesDynamicAlloca;
460
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000461 // FIXME: If any of these three are true for the callee, the callee was
462 // not inlined into the caller, so I think they're redundant here.
463 CallerMetrics.callsSetJmp |= CalleeMetrics.callsSetJmp;
464 CallerMetrics.isRecursive |= CalleeMetrics.isRecursive;
465 CallerMetrics.containsIndirectBr |= CalleeMetrics.containsIndirectBr;
466
Chris Lattner44b04a52010-04-17 17:55:00 +0000467 CallerMetrics.NumInsts += CalleeMetrics.NumInsts;
468 CallerMetrics.NumBlocks += CalleeMetrics.NumBlocks;
469 CallerMetrics.NumCalls += CalleeMetrics.NumCalls;
470 CallerMetrics.NumVectorInsts += CalleeMetrics.NumVectorInsts;
471 CallerMetrics.NumRets += CalleeMetrics.NumRets;
472
473 // analyzeBasicBlock counts each function argument as an inst.
474 if (CallerMetrics.NumInsts >= Callee->arg_size())
475 CallerMetrics.NumInsts -= Callee->arg_size();
476 else
477 CallerMetrics.NumInsts = 0;
478
Nick Lewycky9a1581b2010-05-12 21:48:15 +0000479 // We are not updating the argument weights. We have already determined that
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000480 // Caller is a fairly large function, so we accept the loss of precision.
481}
Nick Lewycky9a1581b2010-05-12 21:48:15 +0000482
483/// clear - empty the cache of inline costs
484void InlineCostAnalyzer::clear() {
485 CachedFunctionInfo.clear();
486}