blob: ee2657c58e5dfb90e3f5beb9f9db51f659abc183 [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()) {
Dan Gohmane4aeec02009-10-13 18:30:07 +000073 if (F->isDeclaration() &&
Dan Gohman497f6192009-10-13 20:10:10 +000074 (F->getName() == "setjmp" || F->getName() == "_setjmp"))
Kenneth Uildriks42c7d232010-06-09 15:11:37 +000075 callsSetJmp = true;
Chris Lattner4b7b42c2010-04-30 22:37:22 +000076
77 // If this call is to function itself, then the function is recursive.
78 // Inlining it into other functions is a bad idea, because this is
79 // basically just a form of loop peeling, and our metrics aren't useful
80 // for that case.
81 if (F == BB->getParent())
Kenneth Uildriks42c7d232010-06-09 15:11:37 +000082 isRecursive = true;
Chris Lattner4b7b42c2010-04-30 22:37:22 +000083 }
Dan Gohmane4aeec02009-10-13 18:30:07 +000084
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +000085 if (!isa<IntrinsicInst>(II) && !callIsSmall(CS.getCalledFunction())) {
86 // Each argument to a call takes on average one instruction to set up.
87 NumInsts += CS.arg_size();
Jakob Stoklund Olesen8b3ca842010-05-26 22:40:28 +000088
89 // We don't want inline asm to count as a call - that would prevent loop
90 // unrolling. The argument setup cost is still real, though.
91 if (!isa<InlineAsm>(CS.getCalledValue()))
92 ++NumCalls;
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +000093 }
Dan Gohmane4aeec02009-10-13 18:30:07 +000094 }
95
Dan Gohmane4aeec02009-10-13 18:30:07 +000096 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
97 if (!AI->isStaticAlloca())
98 this->usesDynamicAlloca = true;
99 }
100
Duncan Sands1df98592010-02-16 11:11:14 +0000101 if (isa<ExtractElementInst>(II) || II->getType()->isVectorTy())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000102 ++NumVectorInsts;
103
Dan Gohmane4aeec02009-10-13 18:30:07 +0000104 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
Evan Cheng1a67dd22010-01-14 21:04:31 +0000105 // Noop casts, including ptr <-> int, don't count.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000106 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
107 isa<PtrToIntInst>(CI))
108 continue;
Evan Cheng1a67dd22010-01-14 21:04:31 +0000109 // Result of a cmp instruction is often extended (to be used by other
110 // cmp instructions, logical or return instructions). These are usually
111 // nop on most sane targets.
112 if (isa<CmpInst>(CI->getOperand(0)))
113 continue;
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000114 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(II)){
Dan Gohmane4aeec02009-10-13 18:30:07 +0000115 // If a GEP has all constant indices, it will probably be folded with
116 // a load/store.
117 if (GEPI->hasAllConstantIndices())
118 continue;
119 }
120
Dan Gohmane4aeec02009-10-13 18:30:07 +0000121 ++NumInsts;
122 }
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000123
124 if (isa<ReturnInst>(BB->getTerminator()))
125 ++NumRets;
126
Chris Lattner66588702009-11-01 18:16:30 +0000127 // We never want to inline functions that contain an indirectbr. This is
Duncan Sandsb0469642009-11-01 19:12:43 +0000128 // incorrect because all the blockaddress's (in static global initializers
129 // for example) would be referring to the original function, and this indirect
Chris Lattner66588702009-11-01 18:16:30 +0000130 // jump would jump from the inlined copy of the function into the original
131 // function which is extremely undefined behavior.
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000132 if (isa<IndirectBrInst>(BB->getTerminator()))
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000133 containsIndirectBr = true;
Devang Patelcbd05602010-03-13 00:10:20 +0000134
135 // Remember NumInsts for this BB.
Devang Patelafc33fa2010-03-13 01:05:02 +0000136 NumBBInsts[BB] = NumInsts - NumInstsBeforeThisBB;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000137}
138
Owen Anderson082bf2a2010-09-09 16:56:42 +0000139// CountCodeReductionForConstant - Figure out an approximation for how many
140// instructions will be constant folded if the specified value is constant.
141//
142unsigned CodeMetrics::CountCodeReductionForConstant(Value *V) {
143 unsigned Reduction = 0;
144 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
145 User *U = *UI;
146 if (isa<BranchInst>(U) || isa<SwitchInst>(U)) {
147 // We will be able to eliminate all but one of the successors.
148 const TerminatorInst &TI = cast<TerminatorInst>(*U);
149 const unsigned NumSucc = TI.getNumSuccessors();
150 unsigned Instrs = 0;
151 for (unsigned I = 0; I != NumSucc; ++I)
152 Instrs += NumBBInsts[TI.getSuccessor(I)];
153 // We don't know which blocks will be eliminated, so use the average size.
154 Reduction += InlineConstants::InstrCost*Instrs*(NumSucc-1)/NumSucc;
155 } else if (CallInst *CI = dyn_cast<CallInst>(U)) {
156 // Turning an indirect call into a direct call is a BIG win
157 if (CI->getCalledValue() == V)
158 Reduction += InlineConstants::IndirectCallBonus;
159 } else if (InvokeInst *II = dyn_cast<InvokeInst>(U)) {
160 // Turning an indirect call into a direct call is a BIG win
161 if (II->getCalledValue() == V)
162 Reduction += InlineConstants::IndirectCallBonus;
163 } else {
164 // Figure out if this instruction will be removed due to simple constant
165 // propagation.
166 Instruction &Inst = cast<Instruction>(*U);
167
168 // We can't constant propagate instructions which have effects or
169 // read memory.
170 //
171 // FIXME: It would be nice to capture the fact that a load from a
172 // pointer-to-constant-global is actually a *really* good thing to zap.
173 // Unfortunately, we don't know the pointer that may get propagated here,
174 // so we can't make this decision.
175 if (Inst.mayReadFromMemory() || Inst.mayHaveSideEffects() ||
176 isa<AllocaInst>(Inst))
177 continue;
178
179 bool AllOperandsConstant = true;
180 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
181 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
182 AllOperandsConstant = false;
183 break;
184 }
185
186 if (AllOperandsConstant) {
187 // We will get to remove this instruction...
188 Reduction += InlineConstants::InstrCost;
189
190 // And any other instructions that use it which become constants
191 // themselves.
192 Reduction += CountCodeReductionForConstant(&Inst);
193 }
194 }
195 }
196 return Reduction;
197}
198
199// CountCodeReductionForAlloca - Figure out an approximation of how much smaller
200// the function will be if it is inlined into a context where an argument
201// becomes an alloca.
202//
203unsigned CodeMetrics::CountCodeReductionForAlloca(Value *V) {
204 if (!V->getType()->isPointerTy()) return 0; // Not a pointer
205 unsigned Reduction = 0;
206 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
207 Instruction *I = cast<Instruction>(*UI);
208 if (isa<LoadInst>(I) || isa<StoreInst>(I))
209 Reduction += InlineConstants::InstrCost;
210 else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
211 // If the GEP has variable indices, we won't be able to do much with it.
212 if (GEP->hasAllConstantIndices())
213 Reduction += CountCodeReductionForAlloca(GEP);
214 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
215 // Track pointer through bitcasts.
216 Reduction += CountCodeReductionForAlloca(BCI);
217 } else {
218 // If there is some other strange instruction, we're not going to be able
219 // to do much if we inline this.
220 return 0;
221 }
222 }
223
224 return Reduction;
225}
226
Dan Gohmane4aeec02009-10-13 18:30:07 +0000227/// analyzeFunction - Fill in the current structure with information gleaned
228/// from the specified function.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000229void CodeMetrics::analyzeFunction(Function *F) {
230 // Look at the size of the callee.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000231 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
232 analyzeBasicBlock(&*BB);
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000233}
234
235/// analyzeFunction - Fill in the current structure with information gleaned
236/// from the specified function.
237void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
238 Metrics.analyzeFunction(F);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000239
240 // A function with exactly one return has it removed during the inlining
241 // process (see InlineFunction), so don't count it.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000242 // FIXME: This knowledge should really be encoded outside of FunctionInfo.
243 if (Metrics.NumRets==1)
244 --Metrics.NumInsts;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000245
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000246 // Don't bother calculating argument weights if we are never going to inline
247 // the function anyway.
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000248 if (NeverInline())
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000249 return;
250
Dan Gohmane4aeec02009-10-13 18:30:07 +0000251 // Check out all of the arguments to the function, figuring out how much
252 // code can be eliminated if one of the arguments is a constant.
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000253 ArgumentWeights.reserve(F->arg_size());
Dan Gohmane4aeec02009-10-13 18:30:07 +0000254 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Owen Anderson082bf2a2010-09-09 16:56:42 +0000255 ArgumentWeights.push_back(ArgInfo(Metrics.CountCodeReductionForConstant(I),
256 Metrics.CountCodeReductionForAlloca(I)));
Dan Gohmane4aeec02009-10-13 18:30:07 +0000257}
258
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000259/// NeverInline - returns true if the function should never be inlined into
260/// any caller
261bool InlineCostAnalyzer::FunctionInfo::NeverInline()
262{
263 return (Metrics.callsSetJmp || Metrics.isRecursive ||
264 Metrics.containsIndirectBr);
265
266}
Dan Gohmane4aeec02009-10-13 18:30:07 +0000267// getInlineCost - The heuristic used to determine if we should inline the
268// function call or not.
269//
270InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
Chris Lattner44b04a52010-04-17 17:55:00 +0000271 SmallPtrSet<const Function*, 16> &NeverInline) {
David Chisnall752e2592010-05-01 15:47:41 +0000272 return getInlineCost(CS, CS.getCalledFunction(), NeverInline);
273}
274
275InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
276 Function *Callee,
277 SmallPtrSet<const Function*, 16> &NeverInline) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000278 Instruction *TheCall = CS.getInstruction();
Dan Gohmane4aeec02009-10-13 18:30:07 +0000279 Function *Caller = TheCall->getParent()->getParent();
David Chisnall752e2592010-05-01 15:47:41 +0000280 bool isDirectCall = CS.getCalledFunction() == Callee;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000281
282 // Don't inline functions which can be redefined at link-time to mean
Eric Christopherf27e6082010-03-25 04:49:10 +0000283 // something else. Don't inline functions marked noinline or call sites
284 // marked noinline.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000285 if (Callee->mayBeOverridden() ||
Eric Christopherf27e6082010-03-25 04:49:10 +0000286 Callee->hasFnAttr(Attribute::NoInline) || NeverInline.count(Callee) ||
287 CS.isNoInline())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000288 return llvm::InlineCost::getNever();
289
290 // InlineCost - This value measures how good of an inline candidate this call
291 // site is to inline. A lower inline cost make is more likely for the call to
292 // be inlined. This value may go negative.
293 //
294 int InlineCost = 0;
David Chisnall752e2592010-05-01 15:47:41 +0000295
Dan Gohmane4aeec02009-10-13 18:30:07 +0000296 // If there is only one call of the function, and it has internal linkage,
297 // make it almost guaranteed to be inlined.
298 //
David Chisnall752e2592010-05-01 15:47:41 +0000299 if (Callee->hasLocalLinkage() && Callee->hasOneUse() && isDirectCall)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000300 InlineCost += InlineConstants::LastCallToStaticBonus;
301
302 // If this function uses the coldcc calling convention, prefer not to inline
303 // it.
304 if (Callee->getCallingConv() == CallingConv::Cold)
305 InlineCost += InlineConstants::ColdccPenalty;
306
307 // If the instruction after the call, or if the normal destination of the
308 // invoke is an unreachable instruction, the function is noreturn. As such,
309 // there is little point in inlining this.
310 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
311 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
312 InlineCost += InlineConstants::NoreturnPenalty;
313 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
314 InlineCost += InlineConstants::NoreturnPenalty;
315
Chris Lattner44b04a52010-04-17 17:55:00 +0000316 // Get information about the callee.
317 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000318
319 // If we haven't calculated this information yet, do so now.
Chris Lattner44b04a52010-04-17 17:55:00 +0000320 if (CalleeFI->Metrics.NumBlocks == 0)
321 CalleeFI->analyzeFunction(Callee);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000322
323 // If we should never inline this, return a huge cost.
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000324 if (CalleeFI->NeverInline())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000325 return InlineCost::getNever();
326
Chris Lattner44b04a52010-04-17 17:55:00 +0000327 // FIXME: It would be nice to kill off CalleeFI->NeverInline. Then we
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000328 // could move this up and avoid computing the FunctionInfo for
Dan Gohmane4aeec02009-10-13 18:30:07 +0000329 // things we are going to just return always inline for. This
330 // requires handling setjmp somewhere else, however.
331 if (!Callee->isDeclaration() && Callee->hasFnAttr(Attribute::AlwaysInline))
332 return InlineCost::getAlways();
333
Chris Lattner44b04a52010-04-17 17:55:00 +0000334 if (CalleeFI->Metrics.usesDynamicAlloca) {
335 // Get infomation about the caller.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000336 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000337
338 // If we haven't calculated this information yet, do so now.
Chris Lattnerf84755b2010-04-17 17:57:56 +0000339 if (CallerFI.Metrics.NumBlocks == 0) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000340 CallerFI.analyzeFunction(Caller);
Chris Lattnerf84755b2010-04-17 17:57:56 +0000341
342 // Recompute the CalleeFI pointer, getting Caller could have invalidated
343 // it.
344 CalleeFI = &CachedFunctionInfo[Callee];
345 }
Dan Gohmane4aeec02009-10-13 18:30:07 +0000346
347 // Don't inline a callee with dynamic alloca into a caller without them.
348 // Functions containing dynamic alloca's are inefficient in various ways;
349 // don't create more inefficiency.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000350 if (!CallerFI.Metrics.usesDynamicAlloca)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000351 return InlineCost::getNever();
352 }
353
354 // Add to the inline quality for properties that make the call valuable to
355 // inline. This includes factors that indicate that the result of inlining
356 // the function will be optimizable. Currently this just looks at arguments
357 // passed into the function.
358 //
359 unsigned ArgNo = 0;
360 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
361 I != E; ++I, ++ArgNo) {
362 // Each argument passed in has a cost at both the caller and the callee
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000363 // sides. Measurements show that each argument costs about the same as an
364 // instruction.
365 InlineCost -= InlineConstants::InstrCost;
366
Dan Gohmane4aeec02009-10-13 18:30:07 +0000367 // If an alloca is passed in, inlining this function is likely to allow
368 // significant future optimization possibilities (like scalar promotion, and
369 // scalarization), so encourage the inlining of the function.
370 //
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000371 if (isa<AllocaInst>(I)) {
Chris Lattner44b04a52010-04-17 17:55:00 +0000372 if (ArgNo < CalleeFI->ArgumentWeights.size())
373 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].AllocaWeight;
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000374
Dan Gohmane4aeec02009-10-13 18:30:07 +0000375 // If this is a constant being passed into the function, use the argument
376 // weights calculated for the callee to determine how much will be folded
377 // away with this information.
378 } else if (isa<Constant>(I)) {
Chris Lattner44b04a52010-04-17 17:55:00 +0000379 if (ArgNo < CalleeFI->ArgumentWeights.size())
380 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].ConstantWeight;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000381 }
382 }
383
384 // Now that we have considered all of the factors that make the call site more
385 // likely to be inlined, look at factors that make us not want to inline it.
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +0000386
387 // Calls usually take a long time, so they make the inlining gain smaller.
Chris Lattner44b04a52010-04-17 17:55:00 +0000388 InlineCost += CalleeFI->Metrics.NumCalls * InlineConstants::CallPenalty;
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +0000389
Dan Gohmane4aeec02009-10-13 18:30:07 +0000390 // Look at the size of the callee. Each instruction counts as 5.
Chris Lattner44b04a52010-04-17 17:55:00 +0000391 InlineCost += CalleeFI->Metrics.NumInsts*InlineConstants::InstrCost;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000392
393 return llvm::InlineCost::get(InlineCost);
394}
395
396// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
397// higher threshold to determine if the function call should be inlined.
398float InlineCostAnalyzer::getInlineFudgeFactor(CallSite CS) {
399 Function *Callee = CS.getCalledFunction();
400
Chris Lattner44b04a52010-04-17 17:55:00 +0000401 // Get information about the callee.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000402 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000403
404 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000405 if (CalleeFI.Metrics.NumBlocks == 0)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000406 CalleeFI.analyzeFunction(Callee);
407
408 float Factor = 1.0f;
409 // Single BB functions are often written to be inlined.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000410 if (CalleeFI.Metrics.NumBlocks == 1)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000411 Factor += 0.5f;
412
413 // Be more aggressive if the function contains a good chunk (if it mades up
414 // at least 10% of the instructions) of vector instructions.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000415 if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/2)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000416 Factor += 2.0f;
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000417 else if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/10)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000418 Factor += 1.5f;
419 return Factor;
420}
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000421
422/// growCachedCostInfo - update the cached cost info for Caller after Callee has
423/// been inlined.
424void
Chris Lattner44b04a52010-04-17 17:55:00 +0000425InlineCostAnalyzer::growCachedCostInfo(Function *Caller, Function *Callee) {
426 CodeMetrics &CallerMetrics = CachedFunctionInfo[Caller].Metrics;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000427
428 // For small functions we prefer to recalculate the cost for better accuracy.
Chris Lattner44b04a52010-04-17 17:55:00 +0000429 if (CallerMetrics.NumBlocks < 10 || CallerMetrics.NumInsts < 1000) {
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000430 resetCachedCostInfo(Caller);
431 return;
432 }
433
434 // For large functions, we can save a lot of computation time by skipping
435 // recalculations.
Chris Lattner44b04a52010-04-17 17:55:00 +0000436 if (CallerMetrics.NumCalls > 0)
437 --CallerMetrics.NumCalls;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000438
Chris Lattner44b04a52010-04-17 17:55:00 +0000439 if (Callee == 0) return;
440
441 CodeMetrics &CalleeMetrics = CachedFunctionInfo[Callee].Metrics;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000442
Chris Lattner44b04a52010-04-17 17:55:00 +0000443 // If we don't have metrics for the callee, don't recalculate them just to
444 // update an approximation in the caller. Instead, just recalculate the
445 // caller info from scratch.
446 if (CalleeMetrics.NumBlocks == 0) {
447 resetCachedCostInfo(Caller);
448 return;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000449 }
Chris Lattner44b04a52010-04-17 17:55:00 +0000450
Chris Lattnerf84755b2010-04-17 17:57:56 +0000451 // Since CalleeMetrics were already calculated, we know that the CallerMetrics
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000452 // reference isn't invalidated: both were in the DenseMap.
Chris Lattner44b04a52010-04-17 17:55:00 +0000453 CallerMetrics.usesDynamicAlloca |= CalleeMetrics.usesDynamicAlloca;
454
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000455 // FIXME: If any of these three are true for the callee, the callee was
456 // not inlined into the caller, so I think they're redundant here.
457 CallerMetrics.callsSetJmp |= CalleeMetrics.callsSetJmp;
458 CallerMetrics.isRecursive |= CalleeMetrics.isRecursive;
459 CallerMetrics.containsIndirectBr |= CalleeMetrics.containsIndirectBr;
460
Chris Lattner44b04a52010-04-17 17:55:00 +0000461 CallerMetrics.NumInsts += CalleeMetrics.NumInsts;
462 CallerMetrics.NumBlocks += CalleeMetrics.NumBlocks;
463 CallerMetrics.NumCalls += CalleeMetrics.NumCalls;
464 CallerMetrics.NumVectorInsts += CalleeMetrics.NumVectorInsts;
465 CallerMetrics.NumRets += CalleeMetrics.NumRets;
466
467 // analyzeBasicBlock counts each function argument as an inst.
468 if (CallerMetrics.NumInsts >= Callee->arg_size())
469 CallerMetrics.NumInsts -= Callee->arg_size();
470 else
471 CallerMetrics.NumInsts = 0;
472
Nick Lewycky9a1581b2010-05-12 21:48:15 +0000473 // We are not updating the argument weights. We have already determined that
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000474 // Caller is a fairly large function, so we accept the loss of precision.
475}
Nick Lewycky9a1581b2010-05-12 21:48:15 +0000476
477/// clear - empty the cache of inline costs
478void InlineCostAnalyzer::clear() {
479 CachedFunctionInfo.clear();
480}