blob: da1238685bcc5a0c565257405261d87f81930854 [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::
Devang Patelf96769b2010-03-13 00:45:31 +000025CountCodeReductionForConstant(Value *V) {
Dan Gohmane4aeec02009-10-13 18:30:07 +000026 unsigned Reduction = 0;
Gabor Greif6ed58e02010-04-14 18:13:29 +000027 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
28 User *U = *UI;
29 if (isa<BranchInst>(U) || isa<SwitchInst>(U)) {
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000030 // We will be able to eliminate all but one of the successors.
Gabor Greif6ed58e02010-04-14 18:13:29 +000031 const TerminatorInst &TI = cast<TerminatorInst>(*U);
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000032 const unsigned NumSucc = TI.getNumSuccessors();
33 unsigned Instrs = 0;
34 for (unsigned I = 0; I != NumSucc; ++I)
Devang Patelcbd05602010-03-13 00:10:20 +000035 Instrs += Metrics.NumBBInsts[TI.getSuccessor(I)];
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000036 // We don't know which blocks will be eliminated, so use the average size.
37 Reduction += InlineConstants::InstrCost*Instrs*(NumSucc-1)/NumSucc;
Gabor Greif6ed58e02010-04-14 18:13:29 +000038 } else if (CallInst *CI = dyn_cast<CallInst>(U)) {
Dan Gohmane4aeec02009-10-13 18:30:07 +000039 // Turning an indirect call into a direct call is a BIG win
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000040 if (CI->getCalledValue() == V)
41 Reduction += InlineConstants::IndirectCallBonus;
Gabor Greif6ed58e02010-04-14 18:13:29 +000042 } else if (InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Dan Gohmane4aeec02009-10-13 18:30:07 +000043 // Turning an indirect call into a direct call is a BIG win
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000044 if (II->getCalledValue() == V)
45 Reduction += InlineConstants::IndirectCallBonus;
Dan Gohmane4aeec02009-10-13 18:30:07 +000046 } else {
47 // Figure out if this instruction will be removed due to simple constant
48 // propagation.
Gabor Greif6ed58e02010-04-14 18:13:29 +000049 Instruction &Inst = cast<Instruction>(*U);
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000050
Dan Gohmane4aeec02009-10-13 18:30:07 +000051 // We can't constant propagate instructions which have effects or
52 // read memory.
53 //
54 // FIXME: It would be nice to capture the fact that a load from a
55 // pointer-to-constant-global is actually a *really* good thing to zap.
56 // Unfortunately, we don't know the pointer that may get propagated here,
57 // so we can't make this decision.
58 if (Inst.mayReadFromMemory() || Inst.mayHaveSideEffects() ||
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000059 isa<AllocaInst>(Inst))
Dan Gohmane4aeec02009-10-13 18:30:07 +000060 continue;
61
62 bool AllOperandsConstant = true;
63 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
64 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
65 AllOperandsConstant = false;
66 break;
67 }
68
69 if (AllOperandsConstant) {
70 // We will get to remove this instruction...
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000071 Reduction += InlineConstants::InstrCost;
Dan Gohmane4aeec02009-10-13 18:30:07 +000072
73 // And any other instructions that use it which become constants
74 // themselves.
Devang Patelf96769b2010-03-13 00:45:31 +000075 Reduction += CountCodeReductionForConstant(&Inst);
Dan Gohmane4aeec02009-10-13 18:30:07 +000076 }
77 }
Gabor Greif6ed58e02010-04-14 18:13:29 +000078 }
Dan Gohmane4aeec02009-10-13 18:30:07 +000079 return Reduction;
80}
81
82// CountCodeReductionForAlloca - Figure out an approximation of how much smaller
83// the function will be if it is inlined into a context where an argument
84// becomes an alloca.
85//
Dan Gohmane7f0ed52009-10-13 19:58:07 +000086unsigned InlineCostAnalyzer::FunctionInfo::
Dan Gohmane4aeec02009-10-13 18:30:07 +000087 CountCodeReductionForAlloca(Value *V) {
Duncan Sands1df98592010-02-16 11:11:14 +000088 if (!V->getType()->isPointerTy()) return 0; // Not a pointer
Dan Gohmane4aeec02009-10-13 18:30:07 +000089 unsigned Reduction = 0;
90 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
91 Instruction *I = cast<Instruction>(*UI);
92 if (isa<LoadInst>(I) || isa<StoreInst>(I))
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000093 Reduction += InlineConstants::InstrCost;
Dan Gohmane4aeec02009-10-13 18:30:07 +000094 else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
95 // If the GEP has variable indices, we won't be able to do much with it.
Jakob Stoklund Olesen026ac3a2010-01-26 21:31:35 +000096 if (GEP->hasAllConstantIndices())
97 Reduction += CountCodeReductionForAlloca(GEP);
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +000098 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
99 // Track pointer through bitcasts.
100 Reduction += CountCodeReductionForAlloca(BCI);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000101 } else {
102 // If there is some other strange instruction, we're not going to be able
103 // to do much if we inline this.
104 return 0;
105 }
106 }
107
108 return Reduction;
109}
110
Eric Christopher745d8c92010-01-14 21:48:00 +0000111// callIsSmall - If a call is likely to lower to a single target instruction, or
Eric Christopher2d59ae62010-01-14 20:12:34 +0000112// is otherwise deemed small return true.
113// TODO: Perhaps calls like memcpy, strcpy, etc?
114static bool callIsSmall(const Function *F) {
Eric Christopher745d8c92010-01-14 21:48:00 +0000115 if (!F) return false;
116
117 if (F->hasLocalLinkage()) return false;
118
Eric Christopher83c20d32010-01-14 23:00:10 +0000119 if (!F->hasName()) return false;
120
121 StringRef Name = F->getName();
122
123 // These will all likely lower to a single selection DAG node.
Duncan Sands87cd7ed2010-03-15 14:01:44 +0000124 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
Eric Christopher83c20d32010-01-14 23:00:10 +0000125 Name == "fabs" || Name == "fabsf" || Name == "fabsl" ||
126 Name == "sin" || Name == "sinf" || Name == "sinl" ||
127 Name == "cos" || Name == "cosf" || Name == "cosl" ||
128 Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl" )
129 return true;
130
131 // These are all likely to be optimized into something smaller.
132 if (Name == "pow" || Name == "powf" || Name == "powl" ||
133 Name == "exp2" || Name == "exp2l" || Name == "exp2f" ||
134 Name == "floor" || Name == "floorf" || Name == "ceil" ||
135 Name == "round" || Name == "ffs" || Name == "ffsl" ||
136 Name == "abs" || Name == "labs" || Name == "llabs")
137 return true;
138
Eric Christopher2d59ae62010-01-14 20:12:34 +0000139 return false;
140}
141
Dan Gohmane4aeec02009-10-13 18:30:07 +0000142/// analyzeBasicBlock - Fill in the current structure with information gleaned
143/// from the specified block.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000144void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000145 ++NumBlocks;
Devang Patelafc33fa2010-03-13 01:05:02 +0000146 unsigned NumInstsBeforeThisBB = NumInsts;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000147 for (BasicBlock::const_iterator II = BB->begin(), E = BB->end();
148 II != E; ++II) {
149 if (isa<PHINode>(II)) continue; // PHI nodes don't count.
150
151 // Special handling for calls.
152 if (isa<CallInst>(II) || isa<InvokeInst>(II)) {
153 if (isa<DbgInfoIntrinsic>(II))
154 continue; // Debug intrinsics don't count as size.
155
156 CallSite CS = CallSite::get(const_cast<Instruction*>(&*II));
157
158 // If this function contains a call to setjmp or _setjmp, never inline
159 // it. This is a hack because we depend on the user marking their local
160 // variables as volatile if they are live across a setjmp call, and they
161 // probably won't do this in callers.
162 if (Function *F = CS.getCalledFunction())
163 if (F->isDeclaration() &&
Dan Gohman497f6192009-10-13 20:10:10 +0000164 (F->getName() == "setjmp" || F->getName() == "_setjmp"))
Dan Gohmane4aeec02009-10-13 18:30:07 +0000165 NeverInline = true;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000166
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +0000167 if (!isa<IntrinsicInst>(II) && !callIsSmall(CS.getCalledFunction())) {
168 // Each argument to a call takes on average one instruction to set up.
169 NumInsts += CS.arg_size();
170 ++NumCalls;
171 }
Dan Gohmane4aeec02009-10-13 18:30:07 +0000172 }
173
Dan Gohmane4aeec02009-10-13 18:30:07 +0000174 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
175 if (!AI->isStaticAlloca())
176 this->usesDynamicAlloca = true;
177 }
178
Duncan Sands1df98592010-02-16 11:11:14 +0000179 if (isa<ExtractElementInst>(II) || II->getType()->isVectorTy())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000180 ++NumVectorInsts;
181
Dan Gohmane4aeec02009-10-13 18:30:07 +0000182 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
Evan Cheng1a67dd22010-01-14 21:04:31 +0000183 // Noop casts, including ptr <-> int, don't count.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000184 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
185 isa<PtrToIntInst>(CI))
186 continue;
Evan Cheng1a67dd22010-01-14 21:04:31 +0000187 // Result of a cmp instruction is often extended (to be used by other
188 // cmp instructions, logical or return instructions). These are usually
189 // nop on most sane targets.
190 if (isa<CmpInst>(CI->getOperand(0)))
191 continue;
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000192 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(II)){
Dan Gohmane4aeec02009-10-13 18:30:07 +0000193 // If a GEP has all constant indices, it will probably be folded with
194 // a load/store.
195 if (GEPI->hasAllConstantIndices())
196 continue;
197 }
198
Dan Gohmane4aeec02009-10-13 18:30:07 +0000199 ++NumInsts;
200 }
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000201
202 if (isa<ReturnInst>(BB->getTerminator()))
203 ++NumRets;
204
Chris Lattner66588702009-11-01 18:16:30 +0000205 // We never want to inline functions that contain an indirectbr. This is
Duncan Sandsb0469642009-11-01 19:12:43 +0000206 // incorrect because all the blockaddress's (in static global initializers
207 // for example) would be referring to the original function, and this indirect
Chris Lattner66588702009-11-01 18:16:30 +0000208 // jump would jump from the inlined copy of the function into the original
209 // function which is extremely undefined behavior.
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000210 if (isa<IndirectBrInst>(BB->getTerminator()))
211 NeverInline = true;
Devang Patelcbd05602010-03-13 00:10:20 +0000212
213 // Remember NumInsts for this BB.
Devang Patelafc33fa2010-03-13 01:05:02 +0000214 NumBBInsts[BB] = NumInsts - NumInstsBeforeThisBB;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000215}
216
217/// analyzeFunction - Fill in the current structure with information gleaned
218/// from the specified function.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000219void CodeMetrics::analyzeFunction(Function *F) {
220 // Look at the size of the callee.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000221 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
222 analyzeBasicBlock(&*BB);
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000223}
224
225/// analyzeFunction - Fill in the current structure with information gleaned
226/// from the specified function.
227void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
228 Metrics.analyzeFunction(F);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000229
230 // A function with exactly one return has it removed during the inlining
231 // process (see InlineFunction), so don't count it.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000232 // FIXME: This knowledge should really be encoded outside of FunctionInfo.
233 if (Metrics.NumRets==1)
234 --Metrics.NumInsts;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000235
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000236 // Don't bother calculating argument weights if we are never going to inline
237 // the function anyway.
238 if (Metrics.NeverInline)
239 return;
240
Dan Gohmane4aeec02009-10-13 18:30:07 +0000241 // Check out all of the arguments to the function, figuring out how much
242 // code can be eliminated if one of the arguments is a constant.
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000243 ArgumentWeights.reserve(F->arg_size());
Dan Gohmane4aeec02009-10-13 18:30:07 +0000244 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Devang Patelf96769b2010-03-13 00:45:31 +0000245 ArgumentWeights.push_back(ArgInfo(CountCodeReductionForConstant(I),
246 CountCodeReductionForAlloca(I)));
Dan Gohmane4aeec02009-10-13 18:30:07 +0000247}
248
Dan Gohmane4aeec02009-10-13 18:30:07 +0000249// getInlineCost - The heuristic used to determine if we should inline the
250// function call or not.
251//
252InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
253 SmallPtrSet<const Function *, 16> &NeverInline) {
254 Instruction *TheCall = CS.getInstruction();
255 Function *Callee = CS.getCalledFunction();
256 Function *Caller = TheCall->getParent()->getParent();
257
258 // Don't inline functions which can be redefined at link-time to mean
Eric Christopherf27e6082010-03-25 04:49:10 +0000259 // something else. Don't inline functions marked noinline or call sites
260 // marked noinline.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000261 if (Callee->mayBeOverridden() ||
Eric Christopherf27e6082010-03-25 04:49:10 +0000262 Callee->hasFnAttr(Attribute::NoInline) || NeverInline.count(Callee) ||
263 CS.isNoInline())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000264 return llvm::InlineCost::getNever();
265
266 // InlineCost - This value measures how good of an inline candidate this call
267 // site is to inline. A lower inline cost make is more likely for the call to
268 // be inlined. This value may go negative.
269 //
270 int InlineCost = 0;
271
272 // If there is only one call of the function, and it has internal linkage,
273 // make it almost guaranteed to be inlined.
274 //
275 if (Callee->hasLocalLinkage() && Callee->hasOneUse())
276 InlineCost += InlineConstants::LastCallToStaticBonus;
277
278 // If this function uses the coldcc calling convention, prefer not to inline
279 // it.
280 if (Callee->getCallingConv() == CallingConv::Cold)
281 InlineCost += InlineConstants::ColdccPenalty;
282
283 // If the instruction after the call, or if the normal destination of the
284 // invoke is an unreachable instruction, the function is noreturn. As such,
285 // there is little point in inlining this.
286 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
287 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
288 InlineCost += InlineConstants::NoreturnPenalty;
289 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
290 InlineCost += InlineConstants::NoreturnPenalty;
291
292 // Get information about the callee...
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000293 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000294
295 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000296 if (CalleeFI.Metrics.NumBlocks == 0)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000297 CalleeFI.analyzeFunction(Callee);
298
299 // If we should never inline this, return a huge cost.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000300 if (CalleeFI.Metrics.NeverInline)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000301 return InlineCost::getNever();
302
303 // FIXME: It would be nice to kill off CalleeFI.NeverInline. Then we
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000304 // could move this up and avoid computing the FunctionInfo for
Dan Gohmane4aeec02009-10-13 18:30:07 +0000305 // things we are going to just return always inline for. This
306 // requires handling setjmp somewhere else, however.
307 if (!Callee->isDeclaration() && Callee->hasFnAttr(Attribute::AlwaysInline))
308 return InlineCost::getAlways();
309
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000310 if (CalleeFI.Metrics.usesDynamicAlloca) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000311 // Get infomation about the caller...
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000312 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000313
314 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000315 if (CallerFI.Metrics.NumBlocks == 0)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000316 CallerFI.analyzeFunction(Caller);
317
318 // Don't inline a callee with dynamic alloca into a caller without them.
319 // Functions containing dynamic alloca's are inefficient in various ways;
320 // don't create more inefficiency.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000321 if (!CallerFI.Metrics.usesDynamicAlloca)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000322 return InlineCost::getNever();
323 }
324
325 // Add to the inline quality for properties that make the call valuable to
326 // inline. This includes factors that indicate that the result of inlining
327 // the function will be optimizable. Currently this just looks at arguments
328 // passed into the function.
329 //
330 unsigned ArgNo = 0;
331 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
332 I != E; ++I, ++ArgNo) {
333 // Each argument passed in has a cost at both the caller and the callee
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000334 // sides. Measurements show that each argument costs about the same as an
335 // instruction.
336 InlineCost -= InlineConstants::InstrCost;
337
Dan Gohmane4aeec02009-10-13 18:30:07 +0000338 // If an alloca is passed in, inlining this function is likely to allow
339 // significant future optimization possibilities (like scalar promotion, and
340 // scalarization), so encourage the inlining of the function.
341 //
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000342 if (isa<AllocaInst>(I)) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000343 if (ArgNo < CalleeFI.ArgumentWeights.size())
344 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].AllocaWeight;
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000345
Dan Gohmane4aeec02009-10-13 18:30:07 +0000346 // If this is a constant being passed into the function, use the argument
347 // weights calculated for the callee to determine how much will be folded
348 // away with this information.
349 } else if (isa<Constant>(I)) {
350 if (ArgNo < CalleeFI.ArgumentWeights.size())
351 InlineCost -= CalleeFI.ArgumentWeights[ArgNo].ConstantWeight;
352 }
353 }
354
355 // Now that we have considered all of the factors that make the call site more
356 // likely to be inlined, look at factors that make us not want to inline it.
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +0000357
358 // Calls usually take a long time, so they make the inlining gain smaller.
359 InlineCost += CalleeFI.Metrics.NumCalls * InlineConstants::CallPenalty;
360
Dan Gohmane4aeec02009-10-13 18:30:07 +0000361 // Look at the size of the callee. Each instruction counts as 5.
Jakob Stoklund Olesen43cda022010-01-26 23:21:56 +0000362 InlineCost += CalleeFI.Metrics.NumInsts*InlineConstants::InstrCost;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000363
364 return llvm::InlineCost::get(InlineCost);
365}
366
367// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
368// higher threshold to determine if the function call should be inlined.
369float InlineCostAnalyzer::getInlineFudgeFactor(CallSite CS) {
370 Function *Callee = CS.getCalledFunction();
371
372 // Get information about the callee...
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000373 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000374
375 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000376 if (CalleeFI.Metrics.NumBlocks == 0)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000377 CalleeFI.analyzeFunction(Callee);
378
379 float Factor = 1.0f;
380 // Single BB functions are often written to be inlined.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000381 if (CalleeFI.Metrics.NumBlocks == 1)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000382 Factor += 0.5f;
383
384 // Be more aggressive if the function contains a good chunk (if it mades up
385 // at least 10% of the instructions) of vector instructions.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000386 if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/2)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000387 Factor += 2.0f;
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000388 else if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/10)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000389 Factor += 1.5f;
390 return Factor;
391}
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000392
393/// growCachedCostInfo - update the cached cost info for Caller after Callee has
394/// been inlined.
395void
396InlineCostAnalyzer::growCachedCostInfo(Function* Caller, Function* Callee) {
397 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
398
399 // For small functions we prefer to recalculate the cost for better accuracy.
400 if (CallerFI.Metrics.NumBlocks < 10 || CallerFI.Metrics.NumInsts < 1000) {
401 resetCachedCostInfo(Caller);
402 return;
403 }
404
405 // For large functions, we can save a lot of computation time by skipping
406 // recalculations.
407 if (CallerFI.Metrics.NumCalls > 0)
408 --CallerFI.Metrics.NumCalls;
409
410 if (Callee) {
411 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
412 if (!CalleeFI.Metrics.NumBlocks) {
413 resetCachedCostInfo(Caller);
414 return;
415 }
416 CallerFI.Metrics.NeverInline |= CalleeFI.Metrics.NeverInline;
417 CallerFI.Metrics.usesDynamicAlloca |= CalleeFI.Metrics.usesDynamicAlloca;
418
419 CallerFI.Metrics.NumInsts += CalleeFI.Metrics.NumInsts;
420 CallerFI.Metrics.NumBlocks += CalleeFI.Metrics.NumBlocks;
421 CallerFI.Metrics.NumCalls += CalleeFI.Metrics.NumCalls;
422 CallerFI.Metrics.NumVectorInsts += CalleeFI.Metrics.NumVectorInsts;
423 CallerFI.Metrics.NumRets += CalleeFI.Metrics.NumRets;
424
425 // analyzeBasicBlock counts each function argument as an inst.
426 if (CallerFI.Metrics.NumInsts >= Callee->arg_size())
427 CallerFI.Metrics.NumInsts -= Callee->arg_size();
428 else
429 CallerFI.Metrics.NumInsts = 0;
430 }
431 // We are not updating the argumentweights. We have already determined that
432 // Caller is a fairly large function, so we accept the loss of precision.
433}