blob: fb5861c7a1927466af6319396a52096da22375a8 [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"
Andrew Trickb2ab2fa2011-10-01 01:39:05 +000018#include "llvm/Target/TargetData.h"
Dan Gohmane4aeec02009-10-13 18:30:07 +000019#include "llvm/ADT/SmallPtrSet.h"
Eric Christopher4e8af6d2011-02-05 00:49:15 +000020
Dan Gohmane4aeec02009-10-13 18:30:07 +000021using namespace llvm;
22
Dan Gohman52d55bd2010-04-16 15:14:50 +000023/// callIsSmall - If a call is likely to lower to a single target instruction,
24/// or is otherwise deemed small return true.
25/// TODO: Perhaps calls like memcpy, strcpy, etc?
26bool llvm::callIsSmall(const Function *F) {
Eric Christopher745d8c92010-01-14 21:48:00 +000027 if (!F) return false;
Andrew Trick5c655412011-10-01 01:27:56 +000028
Eric Christopher745d8c92010-01-14 21:48:00 +000029 if (F->hasLocalLinkage()) return false;
Andrew Trick5c655412011-10-01 01:27:56 +000030
Eric Christopher83c20d32010-01-14 23:00:10 +000031 if (!F->hasName()) return false;
Andrew Trick5c655412011-10-01 01:27:56 +000032
Eric Christopher83c20d32010-01-14 23:00:10 +000033 StringRef Name = F->getName();
Andrew Trick5c655412011-10-01 01:27:56 +000034
Eric Christopher83c20d32010-01-14 23:00:10 +000035 // These will all likely lower to a single selection DAG node.
Duncan Sands87cd7ed2010-03-15 14:01:44 +000036 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
Eric Christopher83c20d32010-01-14 23:00:10 +000037 Name == "fabs" || Name == "fabsf" || Name == "fabsl" ||
38 Name == "sin" || Name == "sinf" || Name == "sinl" ||
39 Name == "cos" || Name == "cosf" || Name == "cosl" ||
40 Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl" )
41 return true;
Andrew Trick5c655412011-10-01 01:27:56 +000042
Eric Christopher83c20d32010-01-14 23:00:10 +000043 // These are all likely to be optimized into something smaller.
44 if (Name == "pow" || Name == "powf" || Name == "powl" ||
45 Name == "exp2" || Name == "exp2l" || Name == "exp2f" ||
46 Name == "floor" || Name == "floorf" || Name == "ceil" ||
47 Name == "round" || Name == "ffs" || Name == "ffsl" ||
48 Name == "abs" || Name == "labs" || Name == "llabs")
49 return true;
Andrew Trick5c655412011-10-01 01:27:56 +000050
Eric Christopher2d59ae62010-01-14 20:12:34 +000051 return false;
52}
53
Dan Gohmane4aeec02009-10-13 18:30:07 +000054/// analyzeBasicBlock - Fill in the current structure with information gleaned
55/// from the specified block.
Andrew Trickb2ab2fa2011-10-01 01:39:05 +000056void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB,
57 const TargetData *TD) {
Dan Gohmane4aeec02009-10-13 18:30:07 +000058 ++NumBlocks;
Devang Patelafc33fa2010-03-13 01:05:02 +000059 unsigned NumInstsBeforeThisBB = NumInsts;
Dan Gohmane4aeec02009-10-13 18:30:07 +000060 for (BasicBlock::const_iterator II = BB->begin(), E = BB->end();
61 II != E; ++II) {
62 if (isa<PHINode>(II)) continue; // PHI nodes don't count.
63
64 // Special handling for calls.
65 if (isa<CallInst>(II) || isa<InvokeInst>(II)) {
Nick Lewycky6c6fcc42011-12-21 20:26:03 +000066 if (const IntrinsicInst *IntrinsicI = dyn_cast<IntrinsicInst>(II)) {
67 switch (IntrinsicI->getIntrinsicID()) {
68 default: break;
69 case Intrinsic::dbg_declare:
70 case Intrinsic::dbg_value:
71 case Intrinsic::invariant_start:
72 case Intrinsic::invariant_end:
73 case Intrinsic::lifetime_start:
74 case Intrinsic::lifetime_end:
75 case Intrinsic::objectsize:
76 case Intrinsic::ptr_annotation:
77 case Intrinsic::var_annotation:
78 // These intrinsics don't count as size.
79 continue;
80 }
81 }
Gabor Greif0de11e02010-07-27 14:15:29 +000082
83 ImmutableCallSite CS(cast<Instruction>(II));
84
Gabor Greif0de11e02010-07-27 14:15:29 +000085 if (const Function *F = CS.getCalledFunction()) {
Andrew Trick5c655412011-10-01 01:27:56 +000086 // If a function is both internal and has a single use, then it is
87 // extremely likely to get inlined in the future (it was probably
Owen Andersonf9a26b82010-09-09 20:32:23 +000088 // exposed by an interleaved devirtualization pass).
Nick Lewycky20aded52011-12-21 06:06:30 +000089 if (!CS.isNoInline() && F->hasInternalLinkage() && F->hasOneUse())
Owen Andersonf9a26b82010-09-09 20:32:23 +000090 ++NumInlineCandidates;
Rafael Espindolaac53b0a2011-05-16 15:48:45 +000091
Chris Lattner4b7b42c2010-04-30 22:37:22 +000092 // If this call is to function itself, then the function is recursive.
93 // Inlining it into other functions is a bad idea, because this is
94 // basically just a form of loop peeling, and our metrics aren't useful
95 // for that case.
96 if (F == BB->getParent())
Kenneth Uildriks42c7d232010-06-09 15:11:37 +000097 isRecursive = true;
Chris Lattner4b7b42c2010-04-30 22:37:22 +000098 }
Dan Gohmane4aeec02009-10-13 18:30:07 +000099
Nick Lewycky6c6fcc42011-12-21 20:26:03 +0000100 if (!isa<IntrinsicInst>(II) && !callIsSmall(CS.getCalledFunction())) {
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +0000101 // Each argument to a call takes on average one instruction to set up.
102 NumInsts += CS.arg_size();
Jakob Stoklund Olesen8b3ca842010-05-26 22:40:28 +0000103
104 // We don't want inline asm to count as a call - that would prevent loop
105 // unrolling. The argument setup cost is still real, though.
106 if (!isa<InlineAsm>(CS.getCalledValue()))
107 ++NumCalls;
Jakob Stoklund Olesenaa034fa2010-02-05 23:21:18 +0000108 }
Dan Gohmane4aeec02009-10-13 18:30:07 +0000109 }
Andrew Trick5c655412011-10-01 01:27:56 +0000110
Dan Gohmane4aeec02009-10-13 18:30:07 +0000111 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
112 if (!AI->isStaticAlloca())
113 this->usesDynamicAlloca = true;
114 }
115
Duncan Sands1df98592010-02-16 11:11:14 +0000116 if (isa<ExtractElementInst>(II) || II->getType()->isVectorTy())
Andrew Trick5c655412011-10-01 01:27:56 +0000117 ++NumVectorInsts;
118
Dan Gohmane4aeec02009-10-13 18:30:07 +0000119 if (const CastInst *CI = dyn_cast<CastInst>(II)) {
Evan Cheng1a67dd22010-01-14 21:04:31 +0000120 // Noop casts, including ptr <-> int, don't count.
Andrew Trick5c655412011-10-01 01:27:56 +0000121 if (CI->isLosslessCast() || isa<IntToPtrInst>(CI) ||
Dan Gohmane4aeec02009-10-13 18:30:07 +0000122 isa<PtrToIntInst>(CI))
123 continue;
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000124 // trunc to a native type is free (assuming the target has compare and
125 // shift-right of the same width).
126 if (isa<TruncInst>(CI) && TD &&
127 TD->isLegalInteger(TD->getTypeSizeInBits(CI->getType())))
128 continue;
Evan Cheng1a67dd22010-01-14 21:04:31 +0000129 // Result of a cmp instruction is often extended (to be used by other
130 // cmp instructions, logical or return instructions). These are usually
131 // nop on most sane targets.
132 if (isa<CmpInst>(CI->getOperand(0)))
133 continue;
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000134 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(II)){
Dan Gohmane4aeec02009-10-13 18:30:07 +0000135 // If a GEP has all constant indices, it will probably be folded with
136 // a load/store.
137 if (GEPI->hasAllConstantIndices())
138 continue;
139 }
140
Dan Gohmane4aeec02009-10-13 18:30:07 +0000141 ++NumInsts;
142 }
Andrew Trick5c655412011-10-01 01:27:56 +0000143
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000144 if (isa<ReturnInst>(BB->getTerminator()))
145 ++NumRets;
Andrew Trick5c655412011-10-01 01:27:56 +0000146
Chris Lattner66588702009-11-01 18:16:30 +0000147 // We never want to inline functions that contain an indirectbr. This is
Duncan Sandsb0469642009-11-01 19:12:43 +0000148 // incorrect because all the blockaddress's (in static global initializers
149 // for example) would be referring to the original function, and this indirect
Chris Lattner66588702009-11-01 18:16:30 +0000150 // jump would jump from the inlined copy of the function into the original
151 // function which is extremely undefined behavior.
Eli Friedman531afb12011-10-20 04:05:33 +0000152 // FIXME: This logic isn't really right; we can safely inline functions
153 // with indirectbr's as long as no other function or global references the
154 // blockaddress of a block within the current function. And as a QOI issue,
Nick Lewycky144bef42011-12-21 20:21:55 +0000155 // if someone is using a blockaddress without an indirectbr, and that
Eli Friedman531afb12011-10-20 04:05:33 +0000156 // reference somehow ends up in another function or global, we probably
157 // don't want to inline this function.
Chris Lattnerb93a23a2009-11-01 03:07:53 +0000158 if (isa<IndirectBrInst>(BB->getTerminator()))
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000159 containsIndirectBr = true;
Devang Patelcbd05602010-03-13 00:10:20 +0000160
161 // Remember NumInsts for this BB.
Devang Patelafc33fa2010-03-13 01:05:02 +0000162 NumBBInsts[BB] = NumInsts - NumInstsBeforeThisBB;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000163}
164
Owen Anderson082bf2a2010-09-09 16:56:42 +0000165// CountCodeReductionForConstant - Figure out an approximation for how many
166// instructions will be constant folded if the specified value is constant.
167//
168unsigned CodeMetrics::CountCodeReductionForConstant(Value *V) {
169 unsigned Reduction = 0;
170 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
171 User *U = *UI;
172 if (isa<BranchInst>(U) || isa<SwitchInst>(U)) {
173 // We will be able to eliminate all but one of the successors.
174 const TerminatorInst &TI = cast<TerminatorInst>(*U);
175 const unsigned NumSucc = TI.getNumSuccessors();
176 unsigned Instrs = 0;
177 for (unsigned I = 0; I != NumSucc; ++I)
178 Instrs += NumBBInsts[TI.getSuccessor(I)];
179 // We don't know which blocks will be eliminated, so use the average size.
180 Reduction += InlineConstants::InstrCost*Instrs*(NumSucc-1)/NumSucc;
Owen Anderson082bf2a2010-09-09 16:56:42 +0000181 } else {
182 // Figure out if this instruction will be removed due to simple constant
183 // propagation.
184 Instruction &Inst = cast<Instruction>(*U);
185
186 // We can't constant propagate instructions which have effects or
187 // read memory.
188 //
189 // FIXME: It would be nice to capture the fact that a load from a
190 // pointer-to-constant-global is actually a *really* good thing to zap.
191 // Unfortunately, we don't know the pointer that may get propagated here,
192 // so we can't make this decision.
193 if (Inst.mayReadFromMemory() || Inst.mayHaveSideEffects() ||
194 isa<AllocaInst>(Inst))
195 continue;
196
197 bool AllOperandsConstant = true;
198 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
199 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
200 AllOperandsConstant = false;
201 break;
202 }
203
204 if (AllOperandsConstant) {
205 // We will get to remove this instruction...
206 Reduction += InlineConstants::InstrCost;
207
208 // And any other instructions that use it which become constants
209 // themselves.
210 Reduction += CountCodeReductionForConstant(&Inst);
211 }
212 }
213 }
214 return Reduction;
215}
216
217// CountCodeReductionForAlloca - Figure out an approximation of how much smaller
218// the function will be if it is inlined into a context where an argument
219// becomes an alloca.
220//
221unsigned CodeMetrics::CountCodeReductionForAlloca(Value *V) {
222 if (!V->getType()->isPointerTy()) return 0; // Not a pointer
223 unsigned Reduction = 0;
Nick Lewycky38b6d9d2012-01-20 08:35:20 +0000224
225 SmallVector<Value *, 4> Worklist;
226 Worklist.push_back(V);
227 do {
228 Value *V = Worklist.pop_back_val();
229 for (Value::use_iterator UI = V->use_begin(), E = V->use_end();
230 UI != E; ++UI){
231 Instruction *I = cast<Instruction>(*UI);
232 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
233 if (!LI->isSimple())
234 return 0;
235 Reduction += InlineConstants::InstrCost;
236 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
237 if (!SI->isSimple())
238 return 0;
239 Reduction += InlineConstants::InstrCost;
240 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
241 // If the GEP has variable indices, we won't be able to do much with it.
242 if (!GEP->hasAllConstantIndices())
243 return 0;
244 // A non-zero GEP will likely become a mask operation after SROA.
245 if (GEP->hasAllZeroIndices())
246 Reduction += InlineConstants::InstrCost;
247 Worklist.push_back(GEP);
248 } else if (BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
249 // Track pointer through bitcasts.
250 Worklist.push_back(BCI);
251 Reduction += InlineConstants::InstrCost;
252 } else if (SelectInst *SI = dyn_cast<SelectInst>(I)) {
253 // SROA can handle a select of alloca iff all uses of the alloca are
254 // loads, and dereferenceable. We assume it's dereferenceable since
255 // we're told the input is an alloca.
256 for (Value::use_iterator UI = SI->use_begin(), UE = SI->use_end();
257 UI != UE; ++UI) {
258 LoadInst *LI = dyn_cast<LoadInst>(*UI);
259 if (LI == 0 || !LI->isSimple()) return 0;
260 }
261 // We don't know whether we'll be deleting the rest of the chain of
262 // instructions from the SelectInst on, because we don't know whether
263 // the other side of the select is also an alloca or not.
264 continue;
265 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
266 switch (II->getIntrinsicID()) {
267 default:
268 return 0;
269 case Intrinsic::memset:
270 case Intrinsic::memcpy:
271 case Intrinsic::memmove:
272 case Intrinsic::lifetime_start:
273 case Intrinsic::lifetime_end:
274 // SROA can usually chew through these intrinsics.
275 Reduction += InlineConstants::InstrCost;
276 break;
277 }
278 } else {
279 // If there is some other strange instruction, we're not going to be
280 // able to do much if we inline this.
281 return 0;
282 }
Owen Anderson082bf2a2010-09-09 16:56:42 +0000283 }
Nick Lewycky38b6d9d2012-01-20 08:35:20 +0000284 } while (!Worklist.empty());
Owen Anderson082bf2a2010-09-09 16:56:42 +0000285
286 return Reduction;
287}
288
Dan Gohmane4aeec02009-10-13 18:30:07 +0000289/// analyzeFunction - Fill in the current structure with information gleaned
290/// from the specified function.
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000291void CodeMetrics::analyzeFunction(Function *F, const TargetData *TD) {
Bill Wendling728662f2011-10-17 18:22:52 +0000292 // If this function contains a call that "returns twice" (e.g., setjmp or
Joerg Sonnenberger34706932011-12-18 20:35:43 +0000293 // _setjmp) and it isn't marked with "returns twice" itself, never inline it.
294 // This is a hack because we depend on the user marking their local variables
295 // as volatile if they are live across a setjmp call, and they probably
296 // won't do this in callers.
297 exposesReturnsTwice = F->callsFunctionThatReturnsTwice() &&
298 !F->hasFnAttr(Attribute::ReturnsTwice);
Rafael Espindolaac53b0a2011-05-16 15:48:45 +0000299
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000300 // Look at the size of the callee.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000301 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000302 analyzeBasicBlock(&*BB, TD);
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000303}
304
305/// analyzeFunction - Fill in the current structure with information gleaned
306/// from the specified function.
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000307void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F,
308 const TargetData *TD) {
309 Metrics.analyzeFunction(F, TD);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000310
311 // A function with exactly one return has it removed during the inlining
312 // process (see InlineFunction), so don't count it.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000313 // FIXME: This knowledge should really be encoded outside of FunctionInfo.
314 if (Metrics.NumRets==1)
315 --Metrics.NumInsts;
Dan Gohmane4aeec02009-10-13 18:30:07 +0000316
317 // Check out all of the arguments to the function, figuring out how much
318 // code can be eliminated if one of the arguments is a constant.
Jakob Stoklund Olesene3039b62010-01-26 21:31:24 +0000319 ArgumentWeights.reserve(F->arg_size());
Dan Gohmane4aeec02009-10-13 18:30:07 +0000320 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Owen Anderson082bf2a2010-09-09 16:56:42 +0000321 ArgumentWeights.push_back(ArgInfo(Metrics.CountCodeReductionForConstant(I),
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000322 Metrics.CountCodeReductionForAlloca(I)));
Dan Gohmane4aeec02009-10-13 18:30:07 +0000323}
324
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000325/// NeverInline - returns true if the function should never be inlined into
326/// any caller
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000327bool InlineCostAnalyzer::FunctionInfo::NeverInline() {
Joerg Sonnenberger34706932011-12-18 20:35:43 +0000328 return (Metrics.exposesReturnsTwice || Metrics.isRecursive ||
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000329 Metrics.containsIndirectBr);
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000330}
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000331// getSpecializationBonus - The heuristic used to determine the per-call
332// performance boost for using a specialization of Callee with argument
333// specializedArgNo replaced by a constant.
334int InlineCostAnalyzer::getSpecializationBonus(Function *Callee,
335 SmallVectorImpl<unsigned> &SpecializedArgNos)
336{
337 if (Callee->mayBeOverridden())
338 return 0;
Andrew Trick5c655412011-10-01 01:27:56 +0000339
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000340 int Bonus = 0;
341 // If this function uses the coldcc calling convention, prefer not to
342 // specialize it.
343 if (Callee->getCallingConv() == CallingConv::Cold)
344 Bonus -= InlineConstants::ColdccPenalty;
Andrew Trick5c655412011-10-01 01:27:56 +0000345
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000346 // Get information about the callee.
347 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
Andrew Trick5c655412011-10-01 01:27:56 +0000348
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000349 // If we haven't calculated this information yet, do so now.
350 if (CalleeFI->Metrics.NumBlocks == 0)
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000351 CalleeFI->analyzeFunction(Callee, TD);
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000352
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000353 unsigned ArgNo = 0;
354 unsigned i = 0;
355 for (Function::arg_iterator I = Callee->arg_begin(), E = Callee->arg_end();
356 I != E; ++I, ++ArgNo)
357 if (ArgNo == SpecializedArgNos[i]) {
358 ++i;
359 Bonus += CountBonusForConstant(I);
360 }
Eric Christopher7d3a16f2011-01-26 01:09:59 +0000361
Andrew Trick5c655412011-10-01 01:27:56 +0000362 // Calls usually take a long time, so they make the specialization gain
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000363 // smaller.
364 Bonus -= CalleeFI->Metrics.NumCalls * InlineConstants::CallPenalty;
365
366 return Bonus;
367}
368
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000369// ConstantFunctionBonus - Figure out how much of a bonus we can get for
370// possibly devirtualizing a function. We'll subtract the size of the function
371// we may wish to inline from the indirect call bonus providing a limit on
372// growth. Leave an upper limit of 0 for the bonus - we don't want to penalize
373// inlining because we decide we don't want to give a bonus for
374// devirtualizing.
375int InlineCostAnalyzer::ConstantFunctionBonus(CallSite CS, Constant *C) {
Andrew Trick5c655412011-10-01 01:27:56 +0000376
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000377 // This could just be NULL.
378 if (!C) return 0;
Andrew Trick5c655412011-10-01 01:27:56 +0000379
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000380 Function *F = dyn_cast<Function>(C);
381 if (!F) return 0;
Andrew Trick5c655412011-10-01 01:27:56 +0000382
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000383 int Bonus = InlineConstants::IndirectCallBonus + getInlineSize(CS, F);
384 return (Bonus > 0) ? 0 : Bonus;
385}
386
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000387// CountBonusForConstant - Figure out an approximation for how much per-call
388// performance boost we can expect if the specified value is constant.
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000389int InlineCostAnalyzer::CountBonusForConstant(Value *V, Constant *C) {
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000390 unsigned Bonus = 0;
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000391 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;++UI){
392 User *U = *UI;
393 if (CallInst *CI = dyn_cast<CallInst>(U)) {
394 // Turning an indirect call into a direct call is a BIG win
395 if (CI->getCalledValue() == V)
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000396 Bonus += ConstantFunctionBonus(CallSite(CI), C);
397 } else if (InvokeInst *II = dyn_cast<InvokeInst>(U)) {
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000398 // Turning an indirect call into a direct call is a BIG win
399 if (II->getCalledValue() == V)
Eric Christophera818d032011-02-05 02:48:47 +0000400 Bonus += ConstantFunctionBonus(CallSite(II), C);
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000401 }
402 // FIXME: Eliminating conditional branches and switches should
403 // also yield a per-call performance boost.
404 else {
405 // Figure out the bonuses that wll accrue due to simple constant
406 // propagation.
407 Instruction &Inst = cast<Instruction>(*U);
408
409 // We can't constant propagate instructions which have effects or
410 // read memory.
411 //
412 // FIXME: It would be nice to capture the fact that a load from a
413 // pointer-to-constant-global is actually a *really* good thing to zap.
414 // Unfortunately, we don't know the pointer that may get propagated here,
415 // so we can't make this decision.
416 if (Inst.mayReadFromMemory() || Inst.mayHaveSideEffects() ||
417 isa<AllocaInst>(Inst))
418 continue;
419
420 bool AllOperandsConstant = true;
421 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i)
422 if (!isa<Constant>(Inst.getOperand(i)) && Inst.getOperand(i) != V) {
423 AllOperandsConstant = false;
424 break;
425 }
426
427 if (AllOperandsConstant)
428 Bonus += CountBonusForConstant(&Inst);
429 }
430 }
Andrew Trick5c655412011-10-01 01:27:56 +0000431
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000432 return Bonus;
433}
434
435int InlineCostAnalyzer::getInlineSize(CallSite CS, Function *Callee) {
436 // Get information about the callee.
437 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
Andrew Trick5c655412011-10-01 01:27:56 +0000438
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000439 // If we haven't calculated this information yet, do so now.
440 if (CalleeFI->Metrics.NumBlocks == 0)
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000441 CalleeFI->analyzeFunction(Callee, TD);
Andrew Trick5c655412011-10-01 01:27:56 +0000442
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000443 // InlineCost - This value measures how good of an inline candidate this call
444 // site is to inline. A lower inline cost make is more likely for the call to
445 // be inlined. This value may go negative.
446 //
447 int InlineCost = 0;
448
449 // Compute any size reductions we can expect due to arguments being passed into
450 // the function.
451 //
452 unsigned ArgNo = 0;
453 CallSite::arg_iterator I = CS.arg_begin();
454 for (Function::arg_iterator FI = Callee->arg_begin(), FE = Callee->arg_end();
455 FI != FE; ++I, ++FI, ++ArgNo) {
456
457 // If an alloca is passed in, inlining this function is likely to allow
458 // significant future optimization possibilities (like scalar promotion, and
459 // scalarization), so encourage the inlining of the function.
460 //
461 if (isa<AllocaInst>(I))
462 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].AllocaWeight;
463
464 // If this is a constant being passed into the function, use the argument
465 // weights calculated for the callee to determine how much will be folded
466 // away with this information.
467 else if (isa<Constant>(I))
Andrew Trick5c655412011-10-01 01:27:56 +0000468 InlineCost -= CalleeFI->ArgumentWeights[ArgNo].ConstantWeight;
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000469 }
Andrew Trick5c655412011-10-01 01:27:56 +0000470
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000471 // Each argument passed in has a cost at both the caller and the callee
472 // sides. Measurements show that each argument costs about the same as an
473 // instruction.
474 InlineCost -= (CS.arg_size() * InlineConstants::InstrCost);
475
476 // Now that we have considered all of the factors that make the call site more
477 // likely to be inlined, look at factors that make us not want to inline it.
478
479 // Calls usually take a long time, so they make the inlining gain smaller.
480 InlineCost += CalleeFI->Metrics.NumCalls * InlineConstants::CallPenalty;
481
482 // Look at the size of the callee. Each instruction counts as 5.
Nick Lewycky144bef42011-12-21 20:21:55 +0000483 InlineCost += CalleeFI->Metrics.NumInsts * InlineConstants::InstrCost;
Andrew Trick5c655412011-10-01 01:27:56 +0000484
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000485 return InlineCost;
486}
487
488int InlineCostAnalyzer::getInlineBonuses(CallSite CS, Function *Callee) {
489 // Get information about the callee.
490 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
Andrew Trick5c655412011-10-01 01:27:56 +0000491
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000492 // If we haven't calculated this information yet, do so now.
493 if (CalleeFI->Metrics.NumBlocks == 0)
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000494 CalleeFI->analyzeFunction(Callee, TD);
Andrew Trick5c655412011-10-01 01:27:56 +0000495
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000496 bool isDirectCall = CS.getCalledFunction() == Callee;
497 Instruction *TheCall = CS.getInstruction();
498 int Bonus = 0;
Andrew Trick5c655412011-10-01 01:27:56 +0000499
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000500 // If there is only one call of the function, and it has internal linkage,
501 // make it almost guaranteed to be inlined.
502 //
503 if (Callee->hasLocalLinkage() && Callee->hasOneUse() && isDirectCall)
504 Bonus += InlineConstants::LastCallToStaticBonus;
Andrew Trick5c655412011-10-01 01:27:56 +0000505
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000506 // If the instruction after the call, or if the normal destination of the
507 // invoke is an unreachable instruction, the function is noreturn. As such,
508 // there is little point in inlining this.
509 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
510 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
511 Bonus += InlineConstants::NoreturnPenalty;
512 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
513 Bonus += InlineConstants::NoreturnPenalty;
Andrew Trick5c655412011-10-01 01:27:56 +0000514
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000515 // If this function uses the coldcc calling convention, prefer not to inline
516 // it.
517 if (Callee->getCallingConv() == CallingConv::Cold)
518 Bonus += InlineConstants::ColdccPenalty;
Andrew Trick5c655412011-10-01 01:27:56 +0000519
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000520 // Add to the inline quality for properties that make the call valuable to
521 // inline. This includes factors that indicate that the result of inlining
522 // the function will be optimizable. Currently this just looks at arguments
523 // passed into the function.
524 //
525 CallSite::arg_iterator I = CS.arg_begin();
526 for (Function::arg_iterator FI = Callee->arg_begin(), FE = Callee->arg_end();
527 FI != FE; ++I, ++FI)
528 // Compute any constant bonus due to inlining we want to give here.
529 if (isa<Constant>(I))
530 Bonus += CountBonusForConstant(FI, cast<Constant>(I));
Andrew Trick5c655412011-10-01 01:27:56 +0000531
Eric Christopher8e2da0c2011-02-01 01:16:32 +0000532 return Bonus;
533}
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000534
Dan Gohmane4aeec02009-10-13 18:30:07 +0000535// getInlineCost - The heuristic used to determine if we should inline the
536// function call or not.
537//
538InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
Chris Lattner44b04a52010-04-17 17:55:00 +0000539 SmallPtrSet<const Function*, 16> &NeverInline) {
David Chisnall752e2592010-05-01 15:47:41 +0000540 return getInlineCost(CS, CS.getCalledFunction(), NeverInline);
541}
542
543InlineCost InlineCostAnalyzer::getInlineCost(CallSite CS,
544 Function *Callee,
545 SmallPtrSet<const Function*, 16> &NeverInline) {
Dan Gohmane4aeec02009-10-13 18:30:07 +0000546 Instruction *TheCall = CS.getInstruction();
Dan Gohmane4aeec02009-10-13 18:30:07 +0000547 Function *Caller = TheCall->getParent()->getParent();
548
549 // Don't inline functions which can be redefined at link-time to mean
Eric Christopherf27e6082010-03-25 04:49:10 +0000550 // something else. Don't inline functions marked noinline or call sites
551 // marked noinline.
Dan Gohmane4aeec02009-10-13 18:30:07 +0000552 if (Callee->mayBeOverridden() ||
Eric Christopherf27e6082010-03-25 04:49:10 +0000553 Callee->hasFnAttr(Attribute::NoInline) || NeverInline.count(Callee) ||
554 CS.isNoInline())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000555 return llvm::InlineCost::getNever();
556
Chris Lattner44b04a52010-04-17 17:55:00 +0000557 // Get information about the callee.
558 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
Andrew Trick5c655412011-10-01 01:27:56 +0000559
Dan Gohmane4aeec02009-10-13 18:30:07 +0000560 // If we haven't calculated this information yet, do so now.
Chris Lattner44b04a52010-04-17 17:55:00 +0000561 if (CalleeFI->Metrics.NumBlocks == 0)
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000562 CalleeFI->analyzeFunction(Callee, TD);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000563
564 // If we should never inline this, return a huge cost.
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000565 if (CalleeFI->NeverInline())
Dan Gohmane4aeec02009-10-13 18:30:07 +0000566 return InlineCost::getNever();
567
Chris Lattner44b04a52010-04-17 17:55:00 +0000568 // FIXME: It would be nice to kill off CalleeFI->NeverInline. Then we
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000569 // could move this up and avoid computing the FunctionInfo for
Dan Gohmane4aeec02009-10-13 18:30:07 +0000570 // things we are going to just return always inline for. This
571 // requires handling setjmp somewhere else, however.
572 if (!Callee->isDeclaration() && Callee->hasFnAttr(Attribute::AlwaysInline))
573 return InlineCost::getAlways();
Andrew Trick5c655412011-10-01 01:27:56 +0000574
Chris Lattner44b04a52010-04-17 17:55:00 +0000575 if (CalleeFI->Metrics.usesDynamicAlloca) {
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000576 // Get information about the caller.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000577 FunctionInfo &CallerFI = CachedFunctionInfo[Caller];
Dan Gohmane4aeec02009-10-13 18:30:07 +0000578
579 // If we haven't calculated this information yet, do so now.
Chris Lattnerf84755b2010-04-17 17:57:56 +0000580 if (CallerFI.Metrics.NumBlocks == 0) {
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000581 CallerFI.analyzeFunction(Caller, TD);
Andrew Trick5c655412011-10-01 01:27:56 +0000582
Chris Lattnerf84755b2010-04-17 17:57:56 +0000583 // Recompute the CalleeFI pointer, getting Caller could have invalidated
584 // it.
585 CalleeFI = &CachedFunctionInfo[Callee];
586 }
Dan Gohmane4aeec02009-10-13 18:30:07 +0000587
588 // Don't inline a callee with dynamic alloca into a caller without them.
589 // Functions containing dynamic alloca's are inefficient in various ways;
590 // don't create more inefficiency.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000591 if (!CallerFI.Metrics.usesDynamicAlloca)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000592 return InlineCost::getNever();
593 }
594
Eric Christopher1bcb4282011-01-25 01:34:31 +0000595 // InlineCost - This value measures how good of an inline candidate this call
596 // site is to inline. A lower inline cost make is more likely for the call to
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000597 // be inlined. This value may go negative due to the fact that bonuses
598 // are negative numbers.
Eric Christopher1bcb4282011-01-25 01:34:31 +0000599 //
Eric Christopher4e8af6d2011-02-05 00:49:15 +0000600 int InlineCost = getInlineSize(CS, Callee) + getInlineBonuses(CS, Callee);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000601 return llvm::InlineCost::get(InlineCost);
602}
603
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000604// getSpecializationCost - The heuristic used to determine the code-size
605// impact of creating a specialized version of Callee with argument
606// SpecializedArgNo replaced by a constant.
607InlineCost InlineCostAnalyzer::getSpecializationCost(Function *Callee,
608 SmallVectorImpl<unsigned> &SpecializedArgNos)
609{
610 // Don't specialize functions which can be redefined at link-time to mean
611 // something else.
612 if (Callee->mayBeOverridden())
613 return llvm::InlineCost::getNever();
Andrew Trick5c655412011-10-01 01:27:56 +0000614
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000615 // Get information about the callee.
616 FunctionInfo *CalleeFI = &CachedFunctionInfo[Callee];
Andrew Trick5c655412011-10-01 01:27:56 +0000617
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000618 // If we haven't calculated this information yet, do so now.
619 if (CalleeFI->Metrics.NumBlocks == 0)
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000620 CalleeFI->analyzeFunction(Callee, TD);
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000621
622 int Cost = 0;
Andrew Trick5c655412011-10-01 01:27:56 +0000623
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000624 // Look at the original size of the callee. Each instruction counts as 5.
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000625 Cost += CalleeFI->Metrics.NumInsts * InlineConstants::InstrCost;
626
627 // Offset that with the amount of code that can be constant-folded
628 // away with the given arguments replaced by constants.
629 for (SmallVectorImpl<unsigned>::iterator an = SpecializedArgNos.begin(),
630 ae = SpecializedArgNos.end(); an != ae; ++an)
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000631 Cost -= CalleeFI->ArgumentWeights[*an].ConstantWeight;
Kenneth Uildriks74fa7322010-10-09 22:06:36 +0000632
633 return llvm::InlineCost::get(Cost);
634}
635
Dan Gohmane4aeec02009-10-13 18:30:07 +0000636// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
637// higher threshold to determine if the function call should be inlined.
638float InlineCostAnalyzer::getInlineFudgeFactor(CallSite CS) {
639 Function *Callee = CS.getCalledFunction();
Andrew Trick5c655412011-10-01 01:27:56 +0000640
Chris Lattner44b04a52010-04-17 17:55:00 +0000641 // Get information about the callee.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000642 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Andrew Trick5c655412011-10-01 01:27:56 +0000643
Dan Gohmane4aeec02009-10-13 18:30:07 +0000644 // If we haven't calculated this information yet, do so now.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000645 if (CalleeFI.Metrics.NumBlocks == 0)
Andrew Trickb2ab2fa2011-10-01 01:39:05 +0000646 CalleeFI.analyzeFunction(Callee, TD);
Dan Gohmane4aeec02009-10-13 18:30:07 +0000647
648 float Factor = 1.0f;
649 // Single BB functions are often written to be inlined.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000650 if (CalleeFI.Metrics.NumBlocks == 1)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000651 Factor += 0.5f;
652
653 // Be more aggressive if the function contains a good chunk (if it mades up
654 // at least 10% of the instructions) of vector instructions.
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000655 if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/2)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000656 Factor += 2.0f;
Dan Gohmane7f0ed52009-10-13 19:58:07 +0000657 else if (CalleeFI.Metrics.NumVectorInsts > CalleeFI.Metrics.NumInsts/10)
Dan Gohmane4aeec02009-10-13 18:30:07 +0000658 Factor += 1.5f;
659 return Factor;
660}
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000661
662/// growCachedCostInfo - update the cached cost info for Caller after Callee has
663/// been inlined.
664void
Chris Lattner44b04a52010-04-17 17:55:00 +0000665InlineCostAnalyzer::growCachedCostInfo(Function *Caller, Function *Callee) {
666 CodeMetrics &CallerMetrics = CachedFunctionInfo[Caller].Metrics;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000667
668 // For small functions we prefer to recalculate the cost for better accuracy.
Eli Friedmanb1763992011-05-24 20:22:24 +0000669 if (CallerMetrics.NumBlocks < 10 && CallerMetrics.NumInsts < 1000) {
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000670 resetCachedCostInfo(Caller);
671 return;
672 }
673
674 // For large functions, we can save a lot of computation time by skipping
675 // recalculations.
Chris Lattner44b04a52010-04-17 17:55:00 +0000676 if (CallerMetrics.NumCalls > 0)
677 --CallerMetrics.NumCalls;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000678
Chris Lattner44b04a52010-04-17 17:55:00 +0000679 if (Callee == 0) return;
Andrew Trick5c655412011-10-01 01:27:56 +0000680
Chris Lattner44b04a52010-04-17 17:55:00 +0000681 CodeMetrics &CalleeMetrics = CachedFunctionInfo[Callee].Metrics;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000682
Chris Lattner44b04a52010-04-17 17:55:00 +0000683 // If we don't have metrics for the callee, don't recalculate them just to
684 // update an approximation in the caller. Instead, just recalculate the
685 // caller info from scratch.
686 if (CalleeMetrics.NumBlocks == 0) {
687 resetCachedCostInfo(Caller);
688 return;
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000689 }
Andrew Trick5c655412011-10-01 01:27:56 +0000690
Chris Lattnerf84755b2010-04-17 17:57:56 +0000691 // Since CalleeMetrics were already calculated, we know that the CallerMetrics
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000692 // reference isn't invalidated: both were in the DenseMap.
Chris Lattner44b04a52010-04-17 17:55:00 +0000693 CallerMetrics.usesDynamicAlloca |= CalleeMetrics.usesDynamicAlloca;
694
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000695 // FIXME: If any of these three are true for the callee, the callee was
696 // not inlined into the caller, so I think they're redundant here.
Joerg Sonnenberger34706932011-12-18 20:35:43 +0000697 CallerMetrics.exposesReturnsTwice |= CalleeMetrics.exposesReturnsTwice;
Kenneth Uildriks42c7d232010-06-09 15:11:37 +0000698 CallerMetrics.isRecursive |= CalleeMetrics.isRecursive;
699 CallerMetrics.containsIndirectBr |= CalleeMetrics.containsIndirectBr;
700
Chris Lattner44b04a52010-04-17 17:55:00 +0000701 CallerMetrics.NumInsts += CalleeMetrics.NumInsts;
702 CallerMetrics.NumBlocks += CalleeMetrics.NumBlocks;
703 CallerMetrics.NumCalls += CalleeMetrics.NumCalls;
704 CallerMetrics.NumVectorInsts += CalleeMetrics.NumVectorInsts;
705 CallerMetrics.NumRets += CalleeMetrics.NumRets;
706
707 // analyzeBasicBlock counts each function argument as an inst.
708 if (CallerMetrics.NumInsts >= Callee->arg_size())
709 CallerMetrics.NumInsts -= Callee->arg_size();
710 else
711 CallerMetrics.NumInsts = 0;
Andrew Trick5c655412011-10-01 01:27:56 +0000712
Nick Lewycky9a1581b2010-05-12 21:48:15 +0000713 // We are not updating the argument weights. We have already determined that
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +0000714 // Caller is a fairly large function, so we accept the loss of precision.
715}
Nick Lewycky9a1581b2010-05-12 21:48:15 +0000716
717/// clear - empty the cache of inline costs
718void InlineCostAnalyzer::clear() {
719 CachedFunctionInfo.clear();
720}