blob: b478b503ba99dde8b7d8288254417fa53e9e83d7 [file] [log] [blame]
Dan Gohmanfad07182009-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 Gohman41c6d592009-10-13 19:58:07 +000024unsigned InlineCostAnalyzer::FunctionInfo::
Devang Patel70716e82010-03-13 00:45:31 +000025CountCodeReductionForConstant(Value *V) {
Dan Gohmanfad07182009-10-13 18:30:07 +000026 unsigned Reduction = 0;
Gabor Greifd93a0d72010-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 Olesen4fb02cc2010-01-26 23:21:56 +000030 // We will be able to eliminate all but one of the successors.
Gabor Greifd93a0d72010-04-14 18:13:29 +000031 const TerminatorInst &TI = cast<TerminatorInst>(*U);
Jakob Stoklund Olesen4fb02cc2010-01-26 23:21:56 +000032 const unsigned NumSucc = TI.getNumSuccessors();
33 unsigned Instrs = 0;
34 for (unsigned I = 0; I != NumSucc; ++I)
Devang Patel27cebf52010-03-13 00:10:20 +000035 Instrs += Metrics.NumBBInsts[TI.getSuccessor(I)];
Jakob Stoklund Olesen4fb02cc2010-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 Greifd93a0d72010-04-14 18:13:29 +000038 } else if (CallInst *CI = dyn_cast<CallInst>(U)) {
Dan Gohmanfad07182009-10-13 18:30:07 +000039 // Turning an indirect call into a direct call is a BIG win
Jakob Stoklund Olesen4fb02cc2010-01-26 23:21:56 +000040 if (CI->getCalledValue() == V)
41 Reduction += InlineConstants::IndirectCallBonus;
Gabor Greifd93a0d72010-04-14 18:13:29 +000042 } else if (InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Dan Gohmanfad07182009-10-13 18:30:07 +000043 // Turning an indirect call into a direct call is a BIG win
Jakob Stoklund Olesen4fb02cc2010-01-26 23:21:56 +000044 if (II->getCalledValue() == V)
45 Reduction += InlineConstants::IndirectCallBonus;
Dan Gohmanfad07182009-10-13 18:30:07 +000046 } else {
47 // Figure out if this instruction will be removed due to simple constant
48 // propagation.
Gabor Greifd93a0d72010-04-14 18:13:29 +000049 Instruction &Inst = cast<Instruction>(*U);
Jakob Stoklund Olesen4fb02cc2010-01-26 23:21:56 +000050
Dan Gohmanfad07182009-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 Olesen4fb02cc2010-01-26 23:21:56 +000059 isa<AllocaInst>(Inst))
Dan Gohmanfad07182009-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 Olesen4fb02cc2010-01-26 23:21:56 +000071 Reduction += InlineConstants::InstrCost;
Dan Gohmanfad07182009-10-13 18:30:07 +000072
73 // And any other instructions that use it which become constants
74 // themselves.
Devang Patel70716e82010-03-13 00:45:31 +000075 Reduction += CountCodeReductionForConstant(&Inst);
Dan Gohmanfad07182009-10-13 18:30:07 +000076 }
77 }
Gabor Greifd93a0d72010-04-14 18:13:29 +000078 }
Dan Gohmanfad07182009-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 Gohman41c6d592009-10-13 19:58:07 +000086unsigned InlineCostAnalyzer::FunctionInfo::
Dan Gohmanfad07182009-10-13 18:30:07 +000087 CountCodeReductionForAlloca(Value *V) {
Duncan Sands10343d92010-02-16 11:11:14 +000088 if (!V->getType()->isPointerTy()) return 0; // Not a pointer
Dan Gohmanfad07182009-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 Olesen4fb02cc2010-01-26 23:21:56 +000093 Reduction += InlineConstants::InstrCost;
Dan Gohmanfad07182009-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 Olesenae4f9872010-01-26 21:31:35 +000096 if (GEP->hasAllConstantIndices())
97 Reduction += CountCodeReductionForAlloca(GEP);
Jakob Stoklund Olesen4fb02cc2010-01-26 23:21:56 +000098 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
99 // Track pointer through bitcasts.
100 Reduction += CountCodeReductionForAlloca(BCI);
Dan Gohmanfad07182009-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
Dan Gohman5b1eba52010-04-16 15:14:50 +0000111/// callIsSmall - If a call is likely to lower to a single target instruction,
112/// or is otherwise deemed small return true.
113/// TODO: Perhaps calls like memcpy, strcpy, etc?
114bool llvm::callIsSmall(const Function *F) {
Eric Christopher4162ad82010-01-14 21:48:00 +0000115 if (!F) return false;
116
117 if (F->hasLocalLinkage()) return false;
118
Eric Christophere2fafc32010-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 Sands350b08e2010-03-15 14:01:44 +0000124 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
Eric Christophere2fafc32010-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 Christopher4fb658f2010-01-14 20:12:34 +0000139 return false;
140}
141
Dan Gohmanfad07182009-10-13 18:30:07 +0000142/// analyzeBasicBlock - Fill in the current structure with information gleaned
143/// from the specified block.
Dan Gohman41c6d592009-10-13 19:58:07 +0000144void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB) {
Dan Gohmanfad07182009-10-13 18:30:07 +0000145 ++NumBlocks;
Devang Patel2bd117a2010-03-13 01:05:02 +0000146 unsigned NumInstsBeforeThisBB = NumInsts;
Dan Gohmanfad07182009-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.
Chris Lattnerc8c5f132010-04-30 22:37:22 +0000162 if (Function *F = CS.getCalledFunction()) {
Dan Gohmanfad07182009-10-13 18:30:07 +0000163 if (F->isDeclaration() &&
Dan Gohman9cb17ac2009-10-13 20:10:10 +0000164 (F->getName() == "setjmp" || F->getName() == "_setjmp"))
Dan Gohmanfad07182009-10-13 18:30:07 +0000165 NeverInline = true;
Chris Lattnerc8c5f132010-04-30 22:37:22 +0000166
167 // If this call is to function itself, then the function is recursive.
168 // Inlining it into other functions is a bad idea, because this is
169 // basically just a form of loop peeling, and our metrics aren't useful
170 // for that case.
171 if (F == BB->getParent())
172 NeverInline = true;
173 }
Dan Gohmanfad07182009-10-13 18:30:07 +0000174
Jakob Stoklund Olesen4e3ff442010-02-05 23:21:18 +0000175 if (!isa<IntrinsicInst>(II) && !callIsSmall(CS.getCalledFunction())) {
176 // Each argument to a call takes on average one instruction to set up.
177 NumInsts += CS.arg_size();
178 ++NumCalls;
179 }
Dan Gohmanfad07182009-10-13 18:30:07 +0000180 }
181
Dan Gohmanfad07182009-10-13 18:30:07 +0000182 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
183 if (!AI->isStaticAlloca())
184 this->usesDynamicAlloca = true;
185 }
186
Duncan Sands10343d92010-02-16 11:11:14 +0000187 if (isa<ExtractElementInst>(II) || II->getType()->isVectorTy())
Dan Gohmanfad07182009-10-13 18:30:07 +0000188 ++NumVectorInsts;
189
Dan Gohmanfad07182009-10-13 18:30:07 +0000190 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
Evan Chengd85f5a82010-01-14 21:04:31 +0000191 // Noop casts, including ptr <-> int, don't count.
Dan Gohmanfad07182009-10-13 18:30:07 +0000192 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
193 isa<PtrToIntInst>(CI))
194 continue;
Evan Chengd85f5a82010-01-14 21:04:31 +0000195 // Result of a cmp instruction is often extended (to be used by other
196 // cmp instructions, logical or return instructions). These are usually
197 // nop on most sane targets.
198 if (isa<CmpInst>(CI->getOperand(0)))
199 continue;
Chris Lattnerc1a9f702009-11-01 03:07:53 +0000200 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(II)){
Dan Gohmanfad07182009-10-13 18:30:07 +0000201 // If a GEP has all constant indices, it will probably be folded with
202 // a load/store.
203 if (GEPI->hasAllConstantIndices())
204 continue;
205 }
206
Dan Gohmanfad07182009-10-13 18:30:07 +0000207 ++NumInsts;
208 }
Chris Lattnerc1a9f702009-11-01 03:07:53 +0000209
210 if (isa<ReturnInst>(BB->getTerminator()))
211 ++NumRets;
212
Chris Lattner789eb4a2009-11-01 18:16:30 +0000213 // We never want to inline functions that contain an indirectbr. This is
Duncan Sandsaf5f1d62009-11-01 19:12:43 +0000214 // incorrect because all the blockaddress's (in static global initializers
215 // for example) would be referring to the original function, and this indirect
Chris Lattner789eb4a2009-11-01 18:16:30 +0000216 // jump would jump from the inlined copy of the function into the original
217 // function which is extremely undefined behavior.
Chris Lattnerc1a9f702009-11-01 03:07:53 +0000218 if (isa<IndirectBrInst>(BB->getTerminator()))
219 NeverInline = true;
Devang Patel27cebf52010-03-13 00:10:20 +0000220
221 // Remember NumInsts for this BB.
Devang Patel2bd117a2010-03-13 01:05:02 +0000222 NumBBInsts[BB] = NumInsts - NumInstsBeforeThisBB;
Dan Gohmanfad07182009-10-13 18:30:07 +0000223}
224
225/// analyzeFunction - Fill in the current structure with information gleaned
226/// from the specified function.
Dan Gohman41c6d592009-10-13 19:58:07 +0000227void CodeMetrics::analyzeFunction(Function *F) {
228 // Look at the size of the callee.
Dan Gohmanfad07182009-10-13 18:30:07 +0000229 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
230 analyzeBasicBlock(&*BB);
Dan Gohman41c6d592009-10-13 19:58:07 +0000231}
232
233/// analyzeFunction - Fill in the current structure with information gleaned
234/// from the specified function.
235void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) {
236 Metrics.analyzeFunction(F);
Dan Gohmanfad07182009-10-13 18:30:07 +0000237
238 // A function with exactly one return has it removed during the inlining
239 // process (see InlineFunction), so don't count it.
Dan Gohman41c6d592009-10-13 19:58:07 +0000240 // FIXME: This knowledge should really be encoded outside of FunctionInfo.
241 if (Metrics.NumRets==1)
242 --Metrics.NumInsts;
Dan Gohmanfad07182009-10-13 18:30:07 +0000243
Jakob Stoklund Olesenaacb3772010-01-26 21:31:24 +0000244 // Don't bother calculating argument weights if we are never going to inline
245 // the function anyway.
246 if (Metrics.NeverInline)
247 return;
248
Dan Gohmanfad07182009-10-13 18:30:07 +0000249 // Check out all of the arguments to the function, figuring out how much
250 // code can be eliminated if one of the arguments is a constant.
Jakob Stoklund Olesenaacb3772010-01-26 21:31:24 +0000251 ArgumentWeights.reserve(F->arg_size());
Dan Gohmanfad07182009-10-13 18:30:07 +0000252 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Devang Patel70716e82010-03-13 00:45:31 +0000253 ArgumentWeights.push_back(ArgInfo(CountCodeReductionForConstant(I),
254 CountCodeReductionForAlloca(I)));
Dan Gohmanfad07182009-10-13 18:30:07 +0000255}
256
Dan Gohmanfad07182009-10-13 18:30:07 +0000257// getInlineCost - The heuristic used to determine if we should inline the
258// function call or not.
259//
260InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000261 SmallPtrSet<const Function*, 16> &NeverInline) {
Dan Gohmanfad07182009-10-13 18:30:07 +0000262 Instruction *TheCall = CS.getInstruction();
263 Function *Callee = CS.getCalledFunction();
264 Function *Caller = TheCall->getParent()->getParent();
265
266 // Don't inline functions which can be redefined at link-time to mean
Eric Christopherdca2e6e2010-03-25 04:49:10 +0000267 // something else. Don't inline functions marked noinline or call sites
268 // marked noinline.
Dan Gohmanfad07182009-10-13 18:30:07 +0000269 if (Callee->mayBeOverridden() ||
Eric Christopherdca2e6e2010-03-25 04:49:10 +0000270 Callee->hasFnAttr(Attribute::NoInline) || NeverInline.count(Callee) ||
271 CS.isNoInline())
Dan Gohmanfad07182009-10-13 18:30:07 +0000272 return llvm::InlineCost::getNever();
273
274 // InlineCost - This value measures how good of an inline candidate this call
275 // site is to inline. A lower inline cost make is more likely for the call to
276 // be inlined. This value may go negative.
277 //
278 int InlineCost = 0;
279
280 // If there is only one call of the function, and it has internal linkage,
281 // make it almost guaranteed to be inlined.
282 //
283 if (Callee->hasLocalLinkage() && Callee->hasOneUse())
284 InlineCost += InlineConstants::LastCallToStaticBonus;
285
286 // If this function uses the coldcc calling convention, prefer not to inline
287 // it.
288 if (Callee->getCallingConv() == CallingConv::Cold)
289 InlineCost += InlineConstants::ColdccPenalty;
290
291 // If the instruction after the call, or if the normal destination of the
292 // invoke is an unreachable instruction, the function is noreturn. As such,
293 // there is little point in inlining this.
294 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
295 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
296 InlineCost += InlineConstants::NoreturnPenalty;
297 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
298 InlineCost += InlineConstants::NoreturnPenalty;
299
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000300 // Get information about the callee.
301 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
Dan Gohmanfad07182009-10-13 18:30:07 +0000302
303 // If we haven't calculated this information yet, do so now.
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000304 if (CalleeFI->Metrics.NumBlocks == 0)
305 CalleeFI->analyzeFunction(Callee);
Dan Gohmanfad07182009-10-13 18:30:07 +0000306
307 // If we should never inline this, return a huge cost.
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000308 if (CalleeFI->Metrics.NeverInline)
Dan Gohmanfad07182009-10-13 18:30:07 +0000309 return InlineCost::getNever();
310
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000311 // FIXME: It would be nice to kill off CalleeFI->NeverInline. Then we
Dan Gohman41c6d592009-10-13 19:58:07 +0000312 // could move this up and avoid computing the FunctionInfo for
Dan Gohmanfad07182009-10-13 18:30:07 +0000313 // things we are going to just return always inline for. This
314 // requires handling setjmp somewhere else, however.
315 if (!Callee->isDeclaration() && Callee->hasFnAttr(Attribute::AlwaysInline))
316 return InlineCost::getAlways();
317
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000318 if (CalleeFI->Metrics.usesDynamicAlloca) {
319 // Get infomation about the caller.
Dan Gohman41c6d592009-10-13 19:58:07 +0000320 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
Dan Gohmanfad07182009-10-13 18:30:07 +0000321
322 // If we haven't calculated this information yet, do so now.
Chris Lattner7b94aac2010-04-17 17:57:56 +0000323 if (CallerFI.Metrics.NumBlocks == 0) {
Dan Gohmanfad07182009-10-13 18:30:07 +0000324 CallerFI.analyzeFunction(Caller);
Chris Lattner7b94aac2010-04-17 17:57:56 +0000325
326 // Recompute the CalleeFI pointer, getting Caller could have invalidated
327 // it.
328 CalleeFI = &CachedFunctionInfo[Callee];
329 }
Dan Gohmanfad07182009-10-13 18:30:07 +0000330
331 // Don't inline a callee with dynamic alloca into a caller without them.
332 // Functions containing dynamic alloca's are inefficient in various ways;
333 // don't create more inefficiency.
Dan Gohman41c6d592009-10-13 19:58:07 +0000334 if (!CallerFI.Metrics.usesDynamicAlloca)
Dan Gohmanfad07182009-10-13 18:30:07 +0000335 return InlineCost::getNever();
336 }
337
338 // Add to the inline quality for properties that make the call valuable to
339 // inline. This includes factors that indicate that the result of inlining
340 // the function will be optimizable. Currently this just looks at arguments
341 // passed into the function.
342 //
343 unsigned ArgNo = 0;
344 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
345 I != E; ++I, ++ArgNo) {
346 // Each argument passed in has a cost at both the caller and the callee
Jakob Stoklund Olesen4fb02cc2010-01-26 23:21:56 +0000347 // sides. Measurements show that each argument costs about the same as an
348 // instruction.
349 InlineCost -= InlineConstants::InstrCost;
350
Dan Gohmanfad07182009-10-13 18:30:07 +0000351 // If an alloca is passed in, inlining this function is likely to allow
352 // significant future optimization possibilities (like scalar promotion, and
353 // scalarization), so encourage the inlining of the function.
354 //
Jakob Stoklund Olesen4fb02cc2010-01-26 23:21:56 +0000355 if (isa<AllocaInst>(I)) {
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000356 if (ArgNo < CalleeFI->ArgumentWeights.size())
357 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].AllocaWeight;
Jakob Stoklund Olesen4fb02cc2010-01-26 23:21:56 +0000358
Dan Gohmanfad07182009-10-13 18:30:07 +0000359 // If this is a constant being passed into the function, use the argument
360 // weights calculated for the callee to determine how much will be folded
361 // away with this information.
362 } else if (isa<Constant>(I)) {
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000363 if (ArgNo < CalleeFI->ArgumentWeights.size())
364 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].ConstantWeight;
Dan Gohmanfad07182009-10-13 18:30:07 +0000365 }
366 }
367
368 // Now that we have considered all of the factors that make the call site more
369 // likely to be inlined, look at factors that make us not want to inline it.
Jakob Stoklund Olesen4e3ff442010-02-05 23:21:18 +0000370
371 // Calls usually take a long time, so they make the inlining gain smaller.
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000372 InlineCost += CalleeFI->Metrics.NumCalls * InlineConstants::CallPenalty;
Jakob Stoklund Olesen4e3ff442010-02-05 23:21:18 +0000373
Dan Gohmanfad07182009-10-13 18:30:07 +0000374 // Look at the size of the callee. Each instruction counts as 5.
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000375 InlineCost += CalleeFI->Metrics.NumInsts*InlineConstants::InstrCost;
Dan Gohmanfad07182009-10-13 18:30:07 +0000376
377 return llvm::InlineCost::get(InlineCost);
378}
379
380// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
381// higher threshold to determine if the function call should be inlined.
382float InlineCostAnalyzer::getInlineFudgeFactor(CallSite CS) {
383 Function *Callee = CS.getCalledFunction();
384
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000385 // Get information about the callee.
Dan Gohman41c6d592009-10-13 19:58:07 +0000386 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Dan Gohmanfad07182009-10-13 18:30:07 +0000387
388 // If we haven't calculated this information yet, do so now.
Dan Gohman41c6d592009-10-13 19:58:07 +0000389 if (CalleeFI.Metrics.NumBlocks == 0)
Dan Gohmanfad07182009-10-13 18:30:07 +0000390 CalleeFI.analyzeFunction(Callee);
391
392 float Factor = 1.0f;
393 // Single BB functions are often written to be inlined.
Dan Gohman41c6d592009-10-13 19:58:07 +0000394 if (CalleeFI.Metrics.NumBlocks == 1)
Dan Gohmanfad07182009-10-13 18:30:07 +0000395 Factor += 0.5f;
396
397 // Be more aggressive if the function contains a good chunk (if it mades up
398 // at least 10% of the instructions) of vector instructions.
Dan Gohman41c6d592009-10-13 19:58:07 +0000399 if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/2)
Dan Gohmanfad07182009-10-13 18:30:07 +0000400 Factor += 2.0f;
Dan Gohman41c6d592009-10-13 19:58:07 +0000401 else if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/10)
Dan Gohmanfad07182009-10-13 18:30:07 +0000402 Factor += 1.5f;
403 return Factor;
404}
Jakob Stoklund Olesen2d11fe62010-03-09 23:02:17 +0000405
406/// growCachedCostInfo - update the cached cost info for Caller after Callee has
407/// been inlined.
408void
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000409InlineCostAnalyzer::growCachedCostInfo(Function *Caller, Function *Callee) {
410 CodeMetrics &CallerMetrics = CachedFunctionInfo[Caller].Metrics;
Jakob Stoklund Olesen2d11fe62010-03-09 23:02:17 +0000411
412 // For small functions we prefer to recalculate the cost for better accuracy.
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000413 if (CallerMetrics.NumBlocks < 10 || CallerMetrics.NumInsts < 1000) {
Jakob Stoklund Olesen2d11fe62010-03-09 23:02:17 +0000414 resetCachedCostInfo(Caller);
415 return;
416 }
417
418 // For large functions, we can save a lot of computation time by skipping
419 // recalculations.
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000420 if (CallerMetrics.NumCalls > 0)
421 --CallerMetrics.NumCalls;
Jakob Stoklund Olesen2d11fe62010-03-09 23:02:17 +0000422
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000423 if (Callee == 0) return;
424
425 CodeMetrics &CalleeMetrics = CachedFunctionInfo[Callee].Metrics;
Jakob Stoklund Olesen2d11fe62010-03-09 23:02:17 +0000426
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000427 // If we don't have metrics for the callee, don't recalculate them just to
428 // update an approximation in the caller. Instead, just recalculate the
429 // caller info from scratch.
430 if (CalleeMetrics.NumBlocks == 0) {
431 resetCachedCostInfo(Caller);
432 return;
Jakob Stoklund Olesen2d11fe62010-03-09 23:02:17 +0000433 }
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000434
Chris Lattner7b94aac2010-04-17 17:57:56 +0000435 // Since CalleeMetrics were already calculated, we know that the CallerMetrics
436 // reference isn't invalidated: both were in the DenseMap.
Chris Lattnerd8ef9542010-04-17 17:55:00 +0000437 CallerMetrics.NeverInline |= CalleeMetrics.NeverInline;
438 CallerMetrics.usesDynamicAlloca |= CalleeMetrics.usesDynamicAlloca;
439
440 CallerMetrics.NumInsts += CalleeMetrics.NumInsts;
441 CallerMetrics.NumBlocks += CalleeMetrics.NumBlocks;
442 CallerMetrics.NumCalls += CalleeMetrics.NumCalls;
443 CallerMetrics.NumVectorInsts += CalleeMetrics.NumVectorInsts;
444 CallerMetrics.NumRets += CalleeMetrics.NumRets;
445
446 // analyzeBasicBlock counts each function argument as an inst.
447 if (CallerMetrics.NumInsts >= Callee->arg_size())
448 CallerMetrics.NumInsts -= Callee->arg_size();
449 else
450 CallerMetrics.NumInsts = 0;
451
Jakob Stoklund Olesen2d11fe62010-03-09 23:02:17 +0000452 // We are not updating the argumentweights. We have already determined that
453 // Caller is a fairly large function, so we accept the loss of precision.
454}