blob: cacf70d041bf6a69c1ec1caca0a951c8f8b2d2fc [file] [log] [blame]
Dan Gohman4552e3c2009-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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/STLExtras.h"
16#include "llvm/ADT/SetVector.h"
17#include "llvm/ADT/SmallPtrSet.h"
18#include "llvm/ADT/SmallVector.h"
19#include "llvm/ADT/Statistic.h"
Chandler Carruth66b31302015-01-04 12:03:27 +000020#include "llvm/Analysis/AssumptionCache.h"
Hal Finkel57f03dd2014-09-07 13:49:57 +000021#include "llvm/Analysis/CodeMetrics.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000022#include "llvm/Analysis/ConstantFolding.h"
Chandler Carruth0539c072012-03-31 12:42:41 +000023#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruth42f3dce2013-01-21 11:55:09 +000024#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000025#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/CallingConv.h"
27#include "llvm/IR/DataLayout.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000028#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/GlobalAlias.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000030#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/IntrinsicInst.h"
32#include "llvm/IR/Operator.h"
Chandler Carruth0539c072012-03-31 12:42:41 +000033#include "llvm/Support/Debug.h"
Chandler Carruth0539c072012-03-31 12:42:41 +000034#include "llvm/Support/raw_ostream.h"
Eric Christopher2dfbd7e2011-02-05 00:49:15 +000035
Dan Gohman4552e3c2009-10-13 18:30:07 +000036using namespace llvm;
37
Chandler Carruthf1221bd2014-04-22 02:48:03 +000038#define DEBUG_TYPE "inline-cost"
39
Chandler Carruth7ae90d42012-04-11 10:15:10 +000040STATISTIC(NumCallsAnalyzed, "Number of call sites analyzed");
41
Chandler Carruth0539c072012-03-31 12:42:41 +000042namespace {
Chandler Carrutha3089552012-03-14 07:32:53 +000043
Chandler Carruth0539c072012-03-31 12:42:41 +000044class CallAnalyzer : public InstVisitor<CallAnalyzer, bool> {
45 typedef InstVisitor<CallAnalyzer, bool> Base;
46 friend class InstVisitor<CallAnalyzer, bool>;
Owen Andersona08318a2010-09-09 16:56:42 +000047
Chandler Carruth42f3dce2013-01-21 11:55:09 +000048 /// The TargetTransformInfo available for this compilation.
49 const TargetTransformInfo &TTI;
50
Hal Finkel57f03dd2014-09-07 13:49:57 +000051 /// The cache of @llvm.assume intrinsics.
Bjorn Steinbrink6f972a12015-02-12 21:04:22 +000052 AssumptionCacheTracker *ACT;
Hal Finkel57f03dd2014-09-07 13:49:57 +000053
Chandler Carruth0539c072012-03-31 12:42:41 +000054 // The called function.
55 Function &F;
Owen Andersona08318a2010-09-09 16:56:42 +000056
Chandler Carruth0539c072012-03-31 12:42:41 +000057 int Threshold;
58 int Cost;
Owen Andersona08318a2010-09-09 16:56:42 +000059
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +000060 bool IsCallerRecursive;
61 bool IsRecursiveCall;
Chandler Carruth0539c072012-03-31 12:42:41 +000062 bool ExposesReturnsTwice;
63 bool HasDynamicAlloca;
James Molloy4f6fb952012-12-20 16:04:27 +000064 bool ContainsNoDuplicateCall;
Chandler Carruth0814d2a2013-12-13 07:59:56 +000065 bool HasReturn;
66 bool HasIndirectBr;
Reid Kleckner223de262015-04-14 20:38:14 +000067 bool HasFrameEscape;
James Molloy4f6fb952012-12-20 16:04:27 +000068
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +000069 /// Number of bytes allocated statically by the callee.
70 uint64_t AllocatedSize;
Chandler Carruth0539c072012-03-31 12:42:41 +000071 unsigned NumInstructions, NumVectorInstructions;
72 int FiftyPercentVectorBonus, TenPercentVectorBonus;
73 int VectorBonus;
74
75 // While we walk the potentially-inlined instructions, we build up and
76 // maintain a mapping of simplified values specific to this callsite. The
77 // idea is to propagate any special information we have about arguments to
78 // this call through the inlinable section of the function, and account for
79 // likely simplifications post-inlining. The most important aspect we track
80 // is CFG altering simplifications -- when we prove a basic block dead, that
81 // can cause dramatic shifts in the cost of inlining a function.
82 DenseMap<Value *, Constant *> SimplifiedValues;
83
84 // Keep track of the values which map back (through function arguments) to
85 // allocas on the caller stack which could be simplified through SROA.
86 DenseMap<Value *, Value *> SROAArgValues;
87
88 // The mapping of caller Alloca values to their accumulated cost savings. If
89 // we have to disable SROA for one of the allocas, this tells us how much
90 // cost must be added.
91 DenseMap<Value *, int> SROAArgCosts;
92
93 // Keep track of values which map to a pointer base and constant offset.
94 DenseMap<Value *, std::pair<Value *, APInt> > ConstantOffsetPtrs;
95
96 // Custom simplification helper routines.
97 bool isAllocaDerivedArg(Value *V);
98 bool lookupSROAArgAndCost(Value *V, Value *&Arg,
99 DenseMap<Value *, int>::iterator &CostIt);
100 void disableSROA(DenseMap<Value *, int>::iterator CostIt);
101 void disableSROA(Value *V);
102 void accumulateSROACost(DenseMap<Value *, int>::iterator CostIt,
103 int InstructionCost);
Chandler Carruth0539c072012-03-31 12:42:41 +0000104 bool isGEPOffsetConstant(GetElementPtrInst &GEP);
105 bool accumulateGEPOffset(GEPOperator &GEP, APInt &Offset);
Chandler Carruth753e21d2012-12-28 14:23:32 +0000106 bool simplifyCallSite(Function *F, CallSite CS);
Chandler Carruth0539c072012-03-31 12:42:41 +0000107 ConstantInt *stripAndComputeInBoundsConstantOffsets(Value *&V);
108
109 // Custom analysis routines.
Hal Finkel57f03dd2014-09-07 13:49:57 +0000110 bool analyzeBlock(BasicBlock *BB, SmallPtrSetImpl<const Value *> &EphValues);
Chandler Carruth0539c072012-03-31 12:42:41 +0000111
112 // Disable several entry points to the visitor so we don't accidentally use
113 // them by declaring but not defining them here.
114 void visit(Module *); void visit(Module &);
115 void visit(Function *); void visit(Function &);
116 void visit(BasicBlock *); void visit(BasicBlock &);
117
118 // Provide base case for our instruction visit.
119 bool visitInstruction(Instruction &I);
120
121 // Our visit overrides.
122 bool visitAlloca(AllocaInst &I);
123 bool visitPHI(PHINode &I);
124 bool visitGetElementPtr(GetElementPtrInst &I);
125 bool visitBitCast(BitCastInst &I);
126 bool visitPtrToInt(PtrToIntInst &I);
127 bool visitIntToPtr(IntToPtrInst &I);
128 bool visitCastInst(CastInst &I);
129 bool visitUnaryInstruction(UnaryInstruction &I);
Matt Arsenault727aa342013-07-20 04:09:00 +0000130 bool visitCmpInst(CmpInst &I);
Chandler Carruth0539c072012-03-31 12:42:41 +0000131 bool visitSub(BinaryOperator &I);
132 bool visitBinaryOperator(BinaryOperator &I);
133 bool visitLoad(LoadInst &I);
134 bool visitStore(StoreInst &I);
Chandler Carruth753e21d2012-12-28 14:23:32 +0000135 bool visitExtractValue(ExtractValueInst &I);
136 bool visitInsertValue(InsertValueInst &I);
Chandler Carruth0539c072012-03-31 12:42:41 +0000137 bool visitCallSite(CallSite CS);
Chandler Carruth0814d2a2013-12-13 07:59:56 +0000138 bool visitReturnInst(ReturnInst &RI);
139 bool visitBranchInst(BranchInst &BI);
140 bool visitSwitchInst(SwitchInst &SI);
141 bool visitIndirectBrInst(IndirectBrInst &IBI);
142 bool visitResumeInst(ResumeInst &RI);
143 bool visitUnreachableInst(UnreachableInst &I);
Chandler Carruth0539c072012-03-31 12:42:41 +0000144
145public:
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000146 CallAnalyzer(const TargetTransformInfo &TTI, AssumptionCacheTracker *ACT,
147 Function &Callee, int Threshold)
148 : TTI(TTI), ACT(ACT), F(Callee), Threshold(Threshold), Cost(0),
Chandler Carruth42f3dce2013-01-21 11:55:09 +0000149 IsCallerRecursive(false), IsRecursiveCall(false),
150 ExposesReturnsTwice(false), HasDynamicAlloca(false),
Chandler Carruth0814d2a2013-12-13 07:59:56 +0000151 ContainsNoDuplicateCall(false), HasReturn(false), HasIndirectBr(false),
Reid Kleckner223de262015-04-14 20:38:14 +0000152 HasFrameEscape(false), AllocatedSize(0), NumInstructions(0),
153 NumVectorInstructions(0), FiftyPercentVectorBonus(0),
154 TenPercentVectorBonus(0), VectorBonus(0), NumConstantArgs(0),
155 NumConstantOffsetPtrArgs(0), NumAllocaArgs(0), NumConstantPtrCmps(0),
156 NumConstantPtrDiffs(0), NumInstructionsSimplified(0),
157 SROACostSavings(0), SROACostSavingsLost(0) {}
Chandler Carruth0539c072012-03-31 12:42:41 +0000158
159 bool analyzeCall(CallSite CS);
160
161 int getThreshold() { return Threshold; }
162 int getCost() { return Cost; }
163
164 // Keep a bunch of stats about the cost savings found so we can print them
165 // out when debugging.
166 unsigned NumConstantArgs;
167 unsigned NumConstantOffsetPtrArgs;
168 unsigned NumAllocaArgs;
169 unsigned NumConstantPtrCmps;
170 unsigned NumConstantPtrDiffs;
171 unsigned NumInstructionsSimplified;
172 unsigned SROACostSavings;
173 unsigned SROACostSavingsLost;
174
175 void dump();
176};
177
178} // namespace
179
180/// \brief Test whether the given value is an Alloca-derived function argument.
181bool CallAnalyzer::isAllocaDerivedArg(Value *V) {
182 return SROAArgValues.count(V);
Owen Andersona08318a2010-09-09 16:56:42 +0000183}
184
Chandler Carruth0539c072012-03-31 12:42:41 +0000185/// \brief Lookup the SROA-candidate argument and cost iterator which V maps to.
186/// Returns false if V does not map to a SROA-candidate.
187bool CallAnalyzer::lookupSROAArgAndCost(
188 Value *V, Value *&Arg, DenseMap<Value *, int>::iterator &CostIt) {
189 if (SROAArgValues.empty() || SROAArgCosts.empty())
190 return false;
Chandler Carruth783b7192012-03-09 02:49:36 +0000191
Chandler Carruth0539c072012-03-31 12:42:41 +0000192 DenseMap<Value *, Value *>::iterator ArgIt = SROAArgValues.find(V);
193 if (ArgIt == SROAArgValues.end())
194 return false;
Chandler Carruth783b7192012-03-09 02:49:36 +0000195
Chandler Carruth0539c072012-03-31 12:42:41 +0000196 Arg = ArgIt->second;
197 CostIt = SROAArgCosts.find(Arg);
198 return CostIt != SROAArgCosts.end();
Chandler Carruth783b7192012-03-09 02:49:36 +0000199}
200
Chandler Carruth0539c072012-03-31 12:42:41 +0000201/// \brief Disable SROA for the candidate marked by this cost iterator.
Chandler Carruth783b7192012-03-09 02:49:36 +0000202///
Benjamin Kramerbde91762012-06-02 10:20:22 +0000203/// This marks the candidate as no longer viable for SROA, and adds the cost
Chandler Carruth0539c072012-03-31 12:42:41 +0000204/// savings associated with it back into the inline cost measurement.
205void CallAnalyzer::disableSROA(DenseMap<Value *, int>::iterator CostIt) {
206 // If we're no longer able to perform SROA we need to undo its cost savings
207 // and prevent subsequent analysis.
208 Cost += CostIt->second;
209 SROACostSavings -= CostIt->second;
210 SROACostSavingsLost += CostIt->second;
211 SROAArgCosts.erase(CostIt);
212}
213
214/// \brief If 'V' maps to a SROA candidate, disable SROA for it.
215void CallAnalyzer::disableSROA(Value *V) {
216 Value *SROAArg;
217 DenseMap<Value *, int>::iterator CostIt;
218 if (lookupSROAArgAndCost(V, SROAArg, CostIt))
219 disableSROA(CostIt);
220}
221
222/// \brief Accumulate the given cost for a particular SROA candidate.
223void CallAnalyzer::accumulateSROACost(DenseMap<Value *, int>::iterator CostIt,
224 int InstructionCost) {
225 CostIt->second += InstructionCost;
226 SROACostSavings += InstructionCost;
227}
228
Chandler Carruth0539c072012-03-31 12:42:41 +0000229/// \brief Check whether a GEP's indices are all constant.
230///
231/// Respects any simplified values known during the analysis of this callsite.
232bool CallAnalyzer::isGEPOffsetConstant(GetElementPtrInst &GEP) {
233 for (User::op_iterator I = GEP.idx_begin(), E = GEP.idx_end(); I != E; ++I)
234 if (!isa<Constant>(*I) && !SimplifiedValues.lookup(*I))
Chandler Carruth783b7192012-03-09 02:49:36 +0000235 return false;
Chandler Carruth783b7192012-03-09 02:49:36 +0000236
Chandler Carruth0539c072012-03-31 12:42:41 +0000237 return true;
238}
239
240/// \brief Accumulate a constant GEP offset into an APInt if possible.
241///
242/// Returns false if unable to compute the offset for any reason. Respects any
243/// simplified values known during the analysis of this callsite.
244bool CallAnalyzer::accumulateGEPOffset(GEPOperator &GEP, APInt &Offset) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000245 const DataLayout &DL = F.getParent()->getDataLayout();
246 unsigned IntPtrWidth = DL.getPointerSizeInBits();
Chandler Carruth0539c072012-03-31 12:42:41 +0000247 assert(IntPtrWidth == Offset.getBitWidth());
248
249 for (gep_type_iterator GTI = gep_type_begin(GEP), GTE = gep_type_end(GEP);
250 GTI != GTE; ++GTI) {
251 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand());
252 if (!OpC)
253 if (Constant *SimpleOp = SimplifiedValues.lookup(GTI.getOperand()))
254 OpC = dyn_cast<ConstantInt>(SimpleOp);
255 if (!OpC)
Chandler Carruth783b7192012-03-09 02:49:36 +0000256 return false;
Chandler Carruth0539c072012-03-31 12:42:41 +0000257 if (OpC->isZero()) continue;
Chandler Carruth783b7192012-03-09 02:49:36 +0000258
Chandler Carruth0539c072012-03-31 12:42:41 +0000259 // Handle a struct index, which adds its field offset to the pointer.
260 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
261 unsigned ElementIdx = OpC->getZExtValue();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000262 const StructLayout *SL = DL.getStructLayout(STy);
Chandler Carruth0539c072012-03-31 12:42:41 +0000263 Offset += APInt(IntPtrWidth, SL->getElementOffset(ElementIdx));
264 continue;
Chandler Carruth783b7192012-03-09 02:49:36 +0000265 }
Chandler Carruth783b7192012-03-09 02:49:36 +0000266
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000267 APInt TypeSize(IntPtrWidth, DL.getTypeAllocSize(GTI.getIndexedType()));
Chandler Carruth0539c072012-03-31 12:42:41 +0000268 Offset += OpC->getValue().sextOrTrunc(IntPtrWidth) * TypeSize;
269 }
270 return true;
271}
272
273bool CallAnalyzer::visitAlloca(AllocaInst &I) {
Eric Christopherbeb2cd62014-04-07 13:36:21 +0000274 // Check whether inlining will turn a dynamic alloca into a static
Chandler Carruth0539c072012-03-31 12:42:41 +0000275 // alloca, and handle that case.
Eric Christopherbeb2cd62014-04-07 13:36:21 +0000276 if (I.isArrayAllocation()) {
277 if (Constant *Size = SimplifiedValues.lookup(I.getArraySize())) {
278 ConstantInt *AllocSize = dyn_cast<ConstantInt>(Size);
279 assert(AllocSize && "Allocation size not a constant int?");
280 Type *Ty = I.getAllocatedType();
281 AllocatedSize += Ty->getPrimitiveSizeInBits() * AllocSize->getZExtValue();
282 return Base::visitAlloca(I);
283 }
284 }
Chandler Carruth0539c072012-03-31 12:42:41 +0000285
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +0000286 // Accumulate the allocated size.
287 if (I.isStaticAlloca()) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000288 const DataLayout &DL = F.getParent()->getDataLayout();
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +0000289 Type *Ty = I.getAllocatedType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000290 AllocatedSize += DL.getTypeAllocSize(Ty);
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +0000291 }
292
Bob Wilsona5b0dc82012-11-19 07:04:35 +0000293 // We will happily inline static alloca instructions.
294 if (I.isStaticAlloca())
Chandler Carruth0539c072012-03-31 12:42:41 +0000295 return Base::visitAlloca(I);
296
297 // FIXME: This is overly conservative. Dynamic allocas are inefficient for
298 // a variety of reasons, and so we would like to not inline them into
299 // functions which don't currently have a dynamic alloca. This simply
300 // disables inlining altogether in the presence of a dynamic alloca.
301 HasDynamicAlloca = true;
302 return false;
303}
304
305bool CallAnalyzer::visitPHI(PHINode &I) {
306 // FIXME: We should potentially be tracking values through phi nodes,
307 // especially when they collapse to a single value due to deleted CFG edges
308 // during inlining.
309
310 // FIXME: We need to propagate SROA *disabling* through phi nodes, even
311 // though we don't want to propagate it's bonuses. The idea is to disable
312 // SROA if it *might* be used in an inappropriate manner.
313
314 // Phi nodes are always zero-cost.
315 return true;
316}
317
318bool CallAnalyzer::visitGetElementPtr(GetElementPtrInst &I) {
319 Value *SROAArg;
320 DenseMap<Value *, int>::iterator CostIt;
321 bool SROACandidate = lookupSROAArgAndCost(I.getPointerOperand(),
322 SROAArg, CostIt);
323
324 // Try to fold GEPs of constant-offset call site argument pointers. This
325 // requires target data and inbounds GEPs.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000326 if (I.isInBounds()) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000327 // Check if we have a base + offset for the pointer.
328 Value *Ptr = I.getPointerOperand();
329 std::pair<Value *, APInt> BaseAndOffset = ConstantOffsetPtrs.lookup(Ptr);
330 if (BaseAndOffset.first) {
331 // Check if the offset of this GEP is constant, and if so accumulate it
332 // into Offset.
333 if (!accumulateGEPOffset(cast<GEPOperator>(I), BaseAndOffset.second)) {
334 // Non-constant GEPs aren't folded, and disable SROA.
335 if (SROACandidate)
336 disableSROA(CostIt);
337 return false;
338 }
339
340 // Add the result as a new mapping to Base + Offset.
341 ConstantOffsetPtrs[&I] = BaseAndOffset;
342
343 // Also handle SROA candidates here, we already know that the GEP is
344 // all-constant indexed.
345 if (SROACandidate)
346 SROAArgValues[&I] = SROAArg;
347
Chandler Carruth783b7192012-03-09 02:49:36 +0000348 return true;
349 }
350 }
351
Chandler Carruth0539c072012-03-31 12:42:41 +0000352 if (isGEPOffsetConstant(I)) {
353 if (SROACandidate)
354 SROAArgValues[&I] = SROAArg;
355
356 // Constant GEPs are modeled as free.
357 return true;
358 }
359
360 // Variable GEPs will require math and will disable SROA.
361 if (SROACandidate)
362 disableSROA(CostIt);
Chandler Carruth783b7192012-03-09 02:49:36 +0000363 return false;
364}
365
Chandler Carruth0539c072012-03-31 12:42:41 +0000366bool CallAnalyzer::visitBitCast(BitCastInst &I) {
367 // Propagate constants through bitcasts.
Chandler Carruth86ed5302012-12-28 14:43:42 +0000368 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
369 if (!COp)
370 COp = SimplifiedValues.lookup(I.getOperand(0));
371 if (COp)
Chandler Carruth0539c072012-03-31 12:42:41 +0000372 if (Constant *C = ConstantExpr::getBitCast(COp, I.getType())) {
373 SimplifiedValues[&I] = C;
374 return true;
Owen Andersona08318a2010-09-09 16:56:42 +0000375 }
Owen Andersona08318a2010-09-09 16:56:42 +0000376
Chandler Carruth0539c072012-03-31 12:42:41 +0000377 // Track base/offsets through casts
378 std::pair<Value *, APInt> BaseAndOffset
379 = ConstantOffsetPtrs.lookup(I.getOperand(0));
380 // Casts don't change the offset, just wrap it up.
381 if (BaseAndOffset.first)
382 ConstantOffsetPtrs[&I] = BaseAndOffset;
383
384 // Also look for SROA candidates here.
385 Value *SROAArg;
386 DenseMap<Value *, int>::iterator CostIt;
387 if (lookupSROAArgAndCost(I.getOperand(0), SROAArg, CostIt))
388 SROAArgValues[&I] = SROAArg;
389
390 // Bitcasts are always zero cost.
391 return true;
Owen Andersona08318a2010-09-09 16:56:42 +0000392}
393
Chandler Carruth0539c072012-03-31 12:42:41 +0000394bool CallAnalyzer::visitPtrToInt(PtrToIntInst &I) {
395 // Propagate constants through ptrtoint.
Chandler Carruth86ed5302012-12-28 14:43:42 +0000396 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
397 if (!COp)
398 COp = SimplifiedValues.lookup(I.getOperand(0));
399 if (COp)
Chandler Carruth0539c072012-03-31 12:42:41 +0000400 if (Constant *C = ConstantExpr::getPtrToInt(COp, I.getType())) {
401 SimplifiedValues[&I] = C;
402 return true;
Chandler Carruth4d1d34f2012-03-14 23:19:53 +0000403 }
Chandler Carruth0539c072012-03-31 12:42:41 +0000404
405 // Track base/offset pairs when converted to a plain integer provided the
406 // integer is large enough to represent the pointer.
407 unsigned IntegerSize = I.getType()->getScalarSizeInBits();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000408 const DataLayout &DL = F.getParent()->getDataLayout();
Mehdi Amini46a43552015-03-04 18:43:29 +0000409 if (IntegerSize >= DL.getPointerSizeInBits()) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000410 std::pair<Value *, APInt> BaseAndOffset
411 = ConstantOffsetPtrs.lookup(I.getOperand(0));
412 if (BaseAndOffset.first)
413 ConstantOffsetPtrs[&I] = BaseAndOffset;
414 }
415
416 // This is really weird. Technically, ptrtoint will disable SROA. However,
417 // unless that ptrtoint is *used* somewhere in the live basic blocks after
418 // inlining, it will be nuked, and SROA should proceed. All of the uses which
419 // would block SROA would also block SROA if applied directly to a pointer,
420 // and so we can just add the integer in here. The only places where SROA is
421 // preserved either cannot fire on an integer, or won't in-and-of themselves
422 // disable SROA (ext) w/o some later use that we would see and disable.
423 Value *SROAArg;
424 DenseMap<Value *, int>::iterator CostIt;
425 if (lookupSROAArgAndCost(I.getOperand(0), SROAArg, CostIt))
426 SROAArgValues[&I] = SROAArg;
427
Chandler Carruthb8cf5102013-01-21 12:05:16 +0000428 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I);
Chandler Carruth4d1d34f2012-03-14 23:19:53 +0000429}
430
Chandler Carruth0539c072012-03-31 12:42:41 +0000431bool CallAnalyzer::visitIntToPtr(IntToPtrInst &I) {
432 // Propagate constants through ptrtoint.
Chandler Carruth86ed5302012-12-28 14:43:42 +0000433 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
434 if (!COp)
435 COp = SimplifiedValues.lookup(I.getOperand(0));
436 if (COp)
Chandler Carruth0539c072012-03-31 12:42:41 +0000437 if (Constant *C = ConstantExpr::getIntToPtr(COp, I.getType())) {
438 SimplifiedValues[&I] = C;
439 return true;
440 }
Dan Gohman4552e3c2009-10-13 18:30:07 +0000441
Chandler Carruth0539c072012-03-31 12:42:41 +0000442 // Track base/offset pairs when round-tripped through a pointer without
443 // modifications provided the integer is not too large.
444 Value *Op = I.getOperand(0);
445 unsigned IntegerSize = Op->getType()->getScalarSizeInBits();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000446 const DataLayout &DL = F.getParent()->getDataLayout();
Mehdi Amini46a43552015-03-04 18:43:29 +0000447 if (IntegerSize <= DL.getPointerSizeInBits()) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000448 std::pair<Value *, APInt> BaseAndOffset = ConstantOffsetPtrs.lookup(Op);
449 if (BaseAndOffset.first)
450 ConstantOffsetPtrs[&I] = BaseAndOffset;
451 }
Dan Gohman4552e3c2009-10-13 18:30:07 +0000452
Chandler Carruth0539c072012-03-31 12:42:41 +0000453 // "Propagate" SROA here in the same manner as we do for ptrtoint above.
454 Value *SROAArg;
455 DenseMap<Value *, int>::iterator CostIt;
456 if (lookupSROAArgAndCost(Op, SROAArg, CostIt))
457 SROAArgValues[&I] = SROAArg;
Chandler Carruth4d1d34f2012-03-14 23:19:53 +0000458
Chandler Carruthb8cf5102013-01-21 12:05:16 +0000459 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I);
Chandler Carruth0539c072012-03-31 12:42:41 +0000460}
461
462bool CallAnalyzer::visitCastInst(CastInst &I) {
463 // Propagate constants through ptrtoint.
Chandler Carruth86ed5302012-12-28 14:43:42 +0000464 Constant *COp = dyn_cast<Constant>(I.getOperand(0));
465 if (!COp)
466 COp = SimplifiedValues.lookup(I.getOperand(0));
467 if (COp)
Chandler Carruth0539c072012-03-31 12:42:41 +0000468 if (Constant *C = ConstantExpr::getCast(I.getOpcode(), COp, I.getType())) {
469 SimplifiedValues[&I] = C;
470 return true;
471 }
472
473 // Disable SROA in the face of arbitrary casts we don't whitelist elsewhere.
474 disableSROA(I.getOperand(0));
475
Chandler Carruthb8cf5102013-01-21 12:05:16 +0000476 return TargetTransformInfo::TCC_Free == TTI.getUserCost(&I);
Chandler Carruth0539c072012-03-31 12:42:41 +0000477}
478
479bool CallAnalyzer::visitUnaryInstruction(UnaryInstruction &I) {
480 Value *Operand = I.getOperand(0);
Jakub Staszak7b9e0b92013-03-07 20:01:19 +0000481 Constant *COp = dyn_cast<Constant>(Operand);
482 if (!COp)
483 COp = SimplifiedValues.lookup(Operand);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000484 if (COp) {
485 const DataLayout &DL = F.getParent()->getDataLayout();
Chandler Carruth0539c072012-03-31 12:42:41 +0000486 if (Constant *C = ConstantFoldInstOperands(I.getOpcode(), I.getType(),
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000487 COp, DL)) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000488 SimplifiedValues[&I] = C;
489 return true;
490 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000491 }
Chandler Carruth0539c072012-03-31 12:42:41 +0000492
493 // Disable any SROA on the argument to arbitrary unary operators.
494 disableSROA(Operand);
495
496 return false;
497}
498
Matt Arsenault727aa342013-07-20 04:09:00 +0000499bool CallAnalyzer::visitCmpInst(CmpInst &I) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000500 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
501 // First try to handle simplified comparisons.
502 if (!isa<Constant>(LHS))
503 if (Constant *SimpleLHS = SimplifiedValues.lookup(LHS))
504 LHS = SimpleLHS;
505 if (!isa<Constant>(RHS))
506 if (Constant *SimpleRHS = SimplifiedValues.lookup(RHS))
507 RHS = SimpleRHS;
Matt Arsenault727aa342013-07-20 04:09:00 +0000508 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000509 if (Constant *CRHS = dyn_cast<Constant>(RHS))
Matt Arsenault727aa342013-07-20 04:09:00 +0000510 if (Constant *C = ConstantExpr::getCompare(I.getPredicate(), CLHS, CRHS)) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000511 SimplifiedValues[&I] = C;
512 return true;
513 }
Matt Arsenault727aa342013-07-20 04:09:00 +0000514 }
515
516 if (I.getOpcode() == Instruction::FCmp)
517 return false;
Chandler Carruth0539c072012-03-31 12:42:41 +0000518
519 // Otherwise look for a comparison between constant offset pointers with
520 // a common base.
521 Value *LHSBase, *RHSBase;
522 APInt LHSOffset, RHSOffset;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000523 std::tie(LHSBase, LHSOffset) = ConstantOffsetPtrs.lookup(LHS);
Chandler Carruth0539c072012-03-31 12:42:41 +0000524 if (LHSBase) {
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000525 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS);
Chandler Carruth0539c072012-03-31 12:42:41 +0000526 if (RHSBase && LHSBase == RHSBase) {
527 // We have common bases, fold the icmp to a constant based on the
528 // offsets.
529 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
530 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
531 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
532 SimplifiedValues[&I] = C;
533 ++NumConstantPtrCmps;
534 return true;
535 }
536 }
537 }
538
539 // If the comparison is an equality comparison with null, we can simplify it
540 // for any alloca-derived argument.
541 if (I.isEquality() && isa<ConstantPointerNull>(I.getOperand(1)))
542 if (isAllocaDerivedArg(I.getOperand(0))) {
543 // We can actually predict the result of comparisons between an
544 // alloca-derived value and null. Note that this fires regardless of
545 // SROA firing.
546 bool IsNotEqual = I.getPredicate() == CmpInst::ICMP_NE;
547 SimplifiedValues[&I] = IsNotEqual ? ConstantInt::getTrue(I.getType())
548 : ConstantInt::getFalse(I.getType());
549 return true;
550 }
551
552 // Finally check for SROA candidates in comparisons.
553 Value *SROAArg;
554 DenseMap<Value *, int>::iterator CostIt;
555 if (lookupSROAArgAndCost(I.getOperand(0), SROAArg, CostIt)) {
556 if (isa<ConstantPointerNull>(I.getOperand(1))) {
557 accumulateSROACost(CostIt, InlineConstants::InstrCost);
558 return true;
559 }
560
561 disableSROA(CostIt);
562 }
563
564 return false;
565}
566
567bool CallAnalyzer::visitSub(BinaryOperator &I) {
568 // Try to handle a special case: we can fold computing the difference of two
569 // constant-related pointers.
570 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
571 Value *LHSBase, *RHSBase;
572 APInt LHSOffset, RHSOffset;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000573 std::tie(LHSBase, LHSOffset) = ConstantOffsetPtrs.lookup(LHS);
Chandler Carruth0539c072012-03-31 12:42:41 +0000574 if (LHSBase) {
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000575 std::tie(RHSBase, RHSOffset) = ConstantOffsetPtrs.lookup(RHS);
Chandler Carruth0539c072012-03-31 12:42:41 +0000576 if (RHSBase && LHSBase == RHSBase) {
577 // We have common bases, fold the subtract to a constant based on the
578 // offsets.
579 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
580 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
581 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
582 SimplifiedValues[&I] = C;
583 ++NumConstantPtrDiffs;
584 return true;
585 }
586 }
587 }
588
589 // Otherwise, fall back to the generic logic for simplifying and handling
590 // instructions.
591 return Base::visitSub(I);
592}
593
594bool CallAnalyzer::visitBinaryOperator(BinaryOperator &I) {
595 Value *LHS = I.getOperand(0), *RHS = I.getOperand(1);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000596 const DataLayout &DL = F.getParent()->getDataLayout();
Chandler Carruth0539c072012-03-31 12:42:41 +0000597 if (!isa<Constant>(LHS))
598 if (Constant *SimpleLHS = SimplifiedValues.lookup(LHS))
599 LHS = SimpleLHS;
600 if (!isa<Constant>(RHS))
601 if (Constant *SimpleRHS = SimplifiedValues.lookup(RHS))
602 RHS = SimpleRHS;
Michael Zolotukhin4e8598e2015-02-06 20:02:51 +0000603 Value *SimpleV = nullptr;
604 if (auto FI = dyn_cast<FPMathOperator>(&I))
605 SimpleV =
606 SimplifyFPBinOp(I.getOpcode(), LHS, RHS, FI->getFastMathFlags(), DL);
607 else
608 SimpleV = SimplifyBinOp(I.getOpcode(), LHS, RHS, DL);
609
Chandler Carruth0539c072012-03-31 12:42:41 +0000610 if (Constant *C = dyn_cast_or_null<Constant>(SimpleV)) {
611 SimplifiedValues[&I] = C;
612 return true;
613 }
614
615 // Disable any SROA on arguments to arbitrary, unsimplified binary operators.
616 disableSROA(LHS);
617 disableSROA(RHS);
618
619 return false;
620}
621
622bool CallAnalyzer::visitLoad(LoadInst &I) {
623 Value *SROAArg;
624 DenseMap<Value *, int>::iterator CostIt;
Wei Mi6c428d62015-03-20 18:33:12 +0000625 if (lookupSROAArgAndCost(I.getPointerOperand(), SROAArg, CostIt)) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000626 if (I.isSimple()) {
627 accumulateSROACost(CostIt, InlineConstants::InstrCost);
628 return true;
629 }
630
631 disableSROA(CostIt);
632 }
633
634 return false;
635}
636
637bool CallAnalyzer::visitStore(StoreInst &I) {
638 Value *SROAArg;
639 DenseMap<Value *, int>::iterator CostIt;
Wei Mi6c428d62015-03-20 18:33:12 +0000640 if (lookupSROAArgAndCost(I.getPointerOperand(), SROAArg, CostIt)) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000641 if (I.isSimple()) {
642 accumulateSROACost(CostIt, InlineConstants::InstrCost);
643 return true;
644 }
645
646 disableSROA(CostIt);
647 }
648
649 return false;
650}
651
Chandler Carruth753e21d2012-12-28 14:23:32 +0000652bool CallAnalyzer::visitExtractValue(ExtractValueInst &I) {
653 // Constant folding for extract value is trivial.
654 Constant *C = dyn_cast<Constant>(I.getAggregateOperand());
655 if (!C)
656 C = SimplifiedValues.lookup(I.getAggregateOperand());
657 if (C) {
658 SimplifiedValues[&I] = ConstantExpr::getExtractValue(C, I.getIndices());
659 return true;
660 }
661
662 // SROA can look through these but give them a cost.
663 return false;
664}
665
666bool CallAnalyzer::visitInsertValue(InsertValueInst &I) {
667 // Constant folding for insert value is trivial.
668 Constant *AggC = dyn_cast<Constant>(I.getAggregateOperand());
669 if (!AggC)
670 AggC = SimplifiedValues.lookup(I.getAggregateOperand());
671 Constant *InsertedC = dyn_cast<Constant>(I.getInsertedValueOperand());
672 if (!InsertedC)
673 InsertedC = SimplifiedValues.lookup(I.getInsertedValueOperand());
674 if (AggC && InsertedC) {
675 SimplifiedValues[&I] = ConstantExpr::getInsertValue(AggC, InsertedC,
676 I.getIndices());
677 return true;
678 }
679
680 // SROA can look through these but give them a cost.
681 return false;
682}
683
684/// \brief Try to simplify a call site.
685///
686/// Takes a concrete function and callsite and tries to actually simplify it by
687/// analyzing the arguments and call itself with instsimplify. Returns true if
688/// it has simplified the callsite to some other entity (a constant), making it
689/// free.
690bool CallAnalyzer::simplifyCallSite(Function *F, CallSite CS) {
691 // FIXME: Using the instsimplify logic directly for this is inefficient
692 // because we have to continually rebuild the argument list even when no
693 // simplifications can be performed. Until that is fixed with remapping
694 // inside of instsimplify, directly constant fold calls here.
695 if (!canConstantFoldCallTo(F))
696 return false;
697
698 // Try to re-map the arguments to constants.
699 SmallVector<Constant *, 4> ConstantArgs;
700 ConstantArgs.reserve(CS.arg_size());
701 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
702 I != E; ++I) {
703 Constant *C = dyn_cast<Constant>(*I);
704 if (!C)
705 C = dyn_cast_or_null<Constant>(SimplifiedValues.lookup(*I));
706 if (!C)
707 return false; // This argument doesn't map to a constant.
708
709 ConstantArgs.push_back(C);
710 }
711 if (Constant *C = ConstantFoldCall(F, ConstantArgs)) {
712 SimplifiedValues[CS.getInstruction()] = C;
713 return true;
714 }
715
716 return false;
717}
718
Chandler Carruth0539c072012-03-31 12:42:41 +0000719bool CallAnalyzer::visitCallSite(CallSite CS) {
Chandler Carruth37d25de2013-12-13 08:00:01 +0000720 if (CS.hasFnAttr(Attribute::ReturnsTwice) &&
Duncan P. N. Exon Smithb3fc83c2015-02-14 00:12:15 +0000721 !F.hasFnAttribute(Attribute::ReturnsTwice)) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000722 // This aborts the entire analysis.
723 ExposesReturnsTwice = true;
724 return false;
725 }
James Molloy4f6fb952012-12-20 16:04:27 +0000726 if (CS.isCall() &&
Eli Bendersky576ef3c2014-03-17 16:19:07 +0000727 cast<CallInst>(CS.getInstruction())->cannotDuplicate())
James Molloy4f6fb952012-12-20 16:04:27 +0000728 ContainsNoDuplicateCall = true;
Chandler Carruth0539c072012-03-31 12:42:41 +0000729
Chandler Carruth0539c072012-03-31 12:42:41 +0000730 if (Function *F = CS.getCalledFunction()) {
Chandler Carruth753e21d2012-12-28 14:23:32 +0000731 // When we have a concrete function, first try to simplify it directly.
732 if (simplifyCallSite(F, CS))
733 return true;
734
735 // Next check if it is an intrinsic we know about.
736 // FIXME: Lift this into part of the InstVisitor.
737 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
738 switch (II->getIntrinsicID()) {
739 default:
740 return Base::visitCallSite(CS);
741
742 case Intrinsic::memset:
743 case Intrinsic::memcpy:
744 case Intrinsic::memmove:
745 // SROA can usually chew through these intrinsics, but they aren't free.
746 return false;
Reid Kleckner223de262015-04-14 20:38:14 +0000747 case Intrinsic::frameescape:
748 HasFrameEscape = true;
749 return false;
Chandler Carruth753e21d2012-12-28 14:23:32 +0000750 }
751 }
752
Chandler Carruth0539c072012-03-31 12:42:41 +0000753 if (F == CS.getInstruction()->getParent()->getParent()) {
754 // This flag will fully abort the analysis, so don't bother with anything
755 // else.
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +0000756 IsRecursiveCall = true;
Chandler Carruth0539c072012-03-31 12:42:41 +0000757 return false;
758 }
759
Chandler Carruth0ba8db42013-01-22 11:26:02 +0000760 if (TTI.isLoweredToCall(F)) {
Chandler Carruth0539c072012-03-31 12:42:41 +0000761 // We account for the average 1 instruction per call argument setup
762 // here.
763 Cost += CS.arg_size() * InlineConstants::InstrCost;
764
765 // Everything other than inline ASM will also have a significant cost
766 // merely from making the call.
767 if (!isa<InlineAsm>(CS.getCalledValue()))
768 Cost += InlineConstants::CallPenalty;
769 }
770
771 return Base::visitCallSite(CS);
772 }
773
774 // Otherwise we're in a very special case -- an indirect function call. See
775 // if we can be particularly clever about this.
776 Value *Callee = CS.getCalledValue();
777
778 // First, pay the price of the argument setup. We account for the average
779 // 1 instruction per call argument setup here.
780 Cost += CS.arg_size() * InlineConstants::InstrCost;
781
782 // Next, check if this happens to be an indirect function call to a known
783 // function in this inline context. If not, we've done all we can.
784 Function *F = dyn_cast_or_null<Function>(SimplifiedValues.lookup(Callee));
785 if (!F)
786 return Base::visitCallSite(CS);
787
788 // If we have a constant that we are calling as a function, we can peer
789 // through it and see the function target. This happens not infrequently
790 // during devirtualization and so we want to give it a hefty bonus for
791 // inlining, but cap that bonus in the event that inlining wouldn't pan
792 // out. Pretend to inline the function, with a custom threshold.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000793 CallAnalyzer CA(TTI, ACT, *F, InlineConstants::IndirectCallThreshold);
Chandler Carruth0539c072012-03-31 12:42:41 +0000794 if (CA.analyzeCall(CS)) {
795 // We were able to inline the indirect call! Subtract the cost from the
796 // bonus we want to apply, but don't go below zero.
797 Cost -= std::max(0, InlineConstants::IndirectCallThreshold - CA.getCost());
798 }
799
800 return Base::visitCallSite(CS);
801}
802
Chandler Carruth0814d2a2013-12-13 07:59:56 +0000803bool CallAnalyzer::visitReturnInst(ReturnInst &RI) {
804 // At least one return instruction will be free after inlining.
805 bool Free = !HasReturn;
806 HasReturn = true;
807 return Free;
808}
809
810bool CallAnalyzer::visitBranchInst(BranchInst &BI) {
811 // We model unconditional branches as essentially free -- they really
812 // shouldn't exist at all, but handling them makes the behavior of the
813 // inliner more regular and predictable. Interestingly, conditional branches
814 // which will fold away are also free.
815 return BI.isUnconditional() || isa<ConstantInt>(BI.getCondition()) ||
816 dyn_cast_or_null<ConstantInt>(
817 SimplifiedValues.lookup(BI.getCondition()));
818}
819
820bool CallAnalyzer::visitSwitchInst(SwitchInst &SI) {
821 // We model unconditional switches as free, see the comments on handling
822 // branches.
Chandler Carruthe01fd5f2014-04-28 08:52:44 +0000823 if (isa<ConstantInt>(SI.getCondition()))
824 return true;
825 if (Value *V = SimplifiedValues.lookup(SI.getCondition()))
826 if (isa<ConstantInt>(V))
827 return true;
828
829 // Otherwise, we need to accumulate a cost proportional to the number of
830 // distinct successor blocks. This fan-out in the CFG cannot be represented
831 // for free even if we can represent the core switch as a jumptable that
832 // takes a single instruction.
833 //
834 // NB: We convert large switches which are just used to initialize large phi
835 // nodes to lookup tables instead in simplify-cfg, so this shouldn't prevent
836 // inlining those. It will prevent inlining in cases where the optimization
837 // does not (yet) fire.
838 SmallPtrSet<BasicBlock *, 8> SuccessorBlocks;
839 SuccessorBlocks.insert(SI.getDefaultDest());
840 for (auto I = SI.case_begin(), E = SI.case_end(); I != E; ++I)
841 SuccessorBlocks.insert(I.getCaseSuccessor());
842 // Add cost corresponding to the number of distinct destinations. The first
843 // we model as free because of fallthrough.
844 Cost += (SuccessorBlocks.size() - 1) * InlineConstants::InstrCost;
845 return false;
Chandler Carruth0814d2a2013-12-13 07:59:56 +0000846}
847
848bool CallAnalyzer::visitIndirectBrInst(IndirectBrInst &IBI) {
849 // We never want to inline functions that contain an indirectbr. This is
850 // incorrect because all the blockaddress's (in static global initializers
851 // for example) would be referring to the original function, and this
852 // indirect jump would jump from the inlined copy of the function into the
853 // original function which is extremely undefined behavior.
854 // FIXME: This logic isn't really right; we can safely inline functions with
855 // indirectbr's as long as no other function or global references the
Gerolf Hoflehner734f4c82014-07-01 00:19:34 +0000856 // blockaddress of a block within the current function.
Chandler Carruth0814d2a2013-12-13 07:59:56 +0000857 HasIndirectBr = true;
858 return false;
859}
860
861bool CallAnalyzer::visitResumeInst(ResumeInst &RI) {
862 // FIXME: It's not clear that a single instruction is an accurate model for
863 // the inline cost of a resume instruction.
864 return false;
865}
866
867bool CallAnalyzer::visitUnreachableInst(UnreachableInst &I) {
868 // FIXME: It might be reasonably to discount the cost of instructions leading
869 // to unreachable as they have the lowest possible impact on both runtime and
870 // code size.
871 return true; // No actual code is needed for unreachable.
872}
873
Chandler Carruth0539c072012-03-31 12:42:41 +0000874bool CallAnalyzer::visitInstruction(Instruction &I) {
Chandler Carruthda7513a2012-05-04 00:58:03 +0000875 // Some instructions are free. All of the free intrinsics can also be
876 // handled by SROA, etc.
Chandler Carruthb8cf5102013-01-21 12:05:16 +0000877 if (TargetTransformInfo::TCC_Free == TTI.getUserCost(&I))
Chandler Carruthda7513a2012-05-04 00:58:03 +0000878 return true;
879
Chandler Carruth0539c072012-03-31 12:42:41 +0000880 // We found something we don't understand or can't handle. Mark any SROA-able
881 // values in the operand list as no longer viable.
882 for (User::op_iterator OI = I.op_begin(), OE = I.op_end(); OI != OE; ++OI)
883 disableSROA(*OI);
884
885 return false;
886}
887
888
889/// \brief Analyze a basic block for its contribution to the inline cost.
890///
891/// This method walks the analyzer over every instruction in the given basic
892/// block and accounts for their cost during inlining at this callsite. It
893/// aborts early if the threshold has been exceeded or an impossible to inline
894/// construct has been detected. It returns false if inlining is no longer
895/// viable, and true if inlining remains viable.
Hal Finkel57f03dd2014-09-07 13:49:57 +0000896bool CallAnalyzer::analyzeBlock(BasicBlock *BB,
897 SmallPtrSetImpl<const Value *> &EphValues) {
Chandler Carruth0814d2a2013-12-13 07:59:56 +0000898 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
Chandler Carruth6b4cc8b2014-02-01 10:38:17 +0000899 // FIXME: Currently, the number of instructions in a function regardless of
900 // our ability to simplify them during inline to constants or dead code,
901 // are actually used by the vector bonus heuristic. As long as that's true,
902 // we have to special case debug intrinsics here to prevent differences in
903 // inlining due to debug symbols. Eventually, the number of unsimplified
904 // instructions shouldn't factor into the cost computation, but until then,
905 // hack around it here.
906 if (isa<DbgInfoIntrinsic>(I))
907 continue;
908
Hal Finkel57f03dd2014-09-07 13:49:57 +0000909 // Skip ephemeral values.
910 if (EphValues.count(I))
911 continue;
912
Chandler Carruth0539c072012-03-31 12:42:41 +0000913 ++NumInstructions;
914 if (isa<ExtractElementInst>(I) || I->getType()->isVectorTy())
915 ++NumVectorInstructions;
916
Cameron Esfahani17177d12015-02-05 02:09:33 +0000917 // If the instruction is floating point, and the target says this operation is
918 // expensive or the function has the "use-soft-float" attribute, this may
919 // eventually become a library call. Treat the cost as such.
920 if (I->getType()->isFloatingPointTy()) {
921 bool hasSoftFloatAttr = false;
922
923 // If the function has the "use-soft-float" attribute, mark it as expensive.
924 if (F.hasFnAttribute("use-soft-float")) {
925 Attribute Attr = F.getFnAttribute("use-soft-float");
926 StringRef Val = Attr.getValueAsString();
927 if (Val == "true")
928 hasSoftFloatAttr = true;
929 }
930
931 if (TTI.getFPOpCost(I->getType()) == TargetTransformInfo::TCC_Expensive ||
932 hasSoftFloatAttr)
933 Cost += InlineConstants::CallPenalty;
934 }
935
Chandler Carruth0539c072012-03-31 12:42:41 +0000936 // If the instruction simplified to a constant, there is no cost to this
937 // instruction. Visit the instructions using our InstVisitor to account for
938 // all of the per-instruction logic. The visit tree returns true if we
939 // consumed the instruction in any way, and false if the instruction's base
940 // cost should count against inlining.
941 if (Base::visit(I))
942 ++NumInstructionsSimplified;
943 else
944 Cost += InlineConstants::InstrCost;
945
946 // If the visit this instruction detected an uninlinable pattern, abort.
Chandler Carruth0814d2a2013-12-13 07:59:56 +0000947 if (IsRecursiveCall || ExposesReturnsTwice || HasDynamicAlloca ||
Reid Kleckner223de262015-04-14 20:38:14 +0000948 HasIndirectBr || HasFrameEscape)
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +0000949 return false;
950
951 // If the caller is a recursive function then we don't want to inline
952 // functions which allocate a lot of stack space because it would increase
953 // the caller stack usage dramatically.
954 if (IsCallerRecursive &&
955 AllocatedSize > InlineConstants::TotalAllocaSizeRecursiveCaller)
Chandler Carruth0539c072012-03-31 12:42:41 +0000956 return false;
957
958 if (NumVectorInstructions > NumInstructions/2)
959 VectorBonus = FiftyPercentVectorBonus;
960 else if (NumVectorInstructions > NumInstructions/10)
961 VectorBonus = TenPercentVectorBonus;
962 else
963 VectorBonus = 0;
964
965 // Check if we've past the threshold so we don't spin in huge basic
966 // blocks that will never inline.
Bob Wilsona5b0dc82012-11-19 07:04:35 +0000967 if (Cost > (Threshold + VectorBonus))
Chandler Carruth0539c072012-03-31 12:42:41 +0000968 return false;
969 }
970
971 return true;
972}
973
974/// \brief Compute the base pointer and cumulative constant offsets for V.
975///
976/// This strips all constant offsets off of V, leaving it the base pointer, and
977/// accumulates the total constant offset applied in the returned constant. It
978/// returns 0 if V is not a pointer, and returns the constant '0' if there are
979/// no constant offsets applied.
980ConstantInt *CallAnalyzer::stripAndComputeInBoundsConstantOffsets(Value *&V) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000981 if (!V->getType()->isPointerTy())
Craig Topper353eda42014-04-24 06:44:33 +0000982 return nullptr;
Chandler Carruth0539c072012-03-31 12:42:41 +0000983
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000984 const DataLayout &DL = F.getParent()->getDataLayout();
985 unsigned IntPtrWidth = DL.getPointerSizeInBits();
Chandler Carruth0539c072012-03-31 12:42:41 +0000986 APInt Offset = APInt::getNullValue(IntPtrWidth);
987
988 // Even though we don't look through PHI nodes, we could be called on an
989 // instruction in an unreachable block, which may be on a cycle.
990 SmallPtrSet<Value *, 4> Visited;
991 Visited.insert(V);
992 do {
993 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
994 if (!GEP->isInBounds() || !accumulateGEPOffset(*GEP, Offset))
Craig Topper353eda42014-04-24 06:44:33 +0000995 return nullptr;
Chandler Carruth0539c072012-03-31 12:42:41 +0000996 V = GEP->getPointerOperand();
997 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
998 V = cast<Operator>(V)->getOperand(0);
999 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
1000 if (GA->mayBeOverridden())
1001 break;
1002 V = GA->getAliasee();
1003 } else {
1004 break;
1005 }
1006 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
David Blaikie70573dc2014-11-19 07:49:26 +00001007 } while (Visited.insert(V).second);
Chandler Carruth0539c072012-03-31 12:42:41 +00001008
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001009 Type *IntPtrTy = DL.getIntPtrType(V->getContext());
Chandler Carruth0539c072012-03-31 12:42:41 +00001010 return cast<ConstantInt>(ConstantInt::get(IntPtrTy, Offset));
1011}
1012
1013/// \brief Analyze a call site for potential inlining.
1014///
1015/// Returns true if inlining this call is viable, and false if it is not
1016/// viable. It computes the cost and adjusts the threshold based on numerous
1017/// factors and heuristics. If this method returns false but the computed cost
1018/// is below the computed threshold, then inlining was forcibly disabled by
Bob Wilson266802d2012-11-19 07:04:30 +00001019/// some artifact of the routine.
Chandler Carruth0539c072012-03-31 12:42:41 +00001020bool CallAnalyzer::analyzeCall(CallSite CS) {
Chandler Carruth7ae90d42012-04-11 10:15:10 +00001021 ++NumCallsAnalyzed;
1022
Chandler Carruth0539c072012-03-31 12:42:41 +00001023 // Track whether the post-inlining function would have more than one basic
1024 // block. A single basic block is often intended for inlining. Balloon the
1025 // threshold by 50% until we pass the single-BB phase.
1026 bool SingleBB = true;
1027 int SingleBBBonus = Threshold / 2;
1028 Threshold += SingleBBBonus;
1029
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001030 // Perform some tweaks to the cost and threshold based on the direct
1031 // callsite information.
Chandler Carruth0539c072012-03-31 12:42:41 +00001032
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001033 // We want to more aggressively inline vector-dense kernels, so up the
1034 // threshold, and we'll lower it if the % of vector instructions gets too
1035 // low.
1036 assert(NumInstructions == 0);
1037 assert(NumVectorInstructions == 0);
1038 FiftyPercentVectorBonus = Threshold;
1039 TenPercentVectorBonus = Threshold / 2;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001040 const DataLayout &DL = F.getParent()->getDataLayout();
Benjamin Kramerc99d0e92012-08-07 11:13:19 +00001041
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001042 // Give out bonuses per argument, as the instructions setting them up will
1043 // be gone after inlining.
1044 for (unsigned I = 0, E = CS.arg_size(); I != E; ++I) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001045 if (CS.isByValArgument(I)) {
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001046 // We approximate the number of loads and stores needed by dividing the
1047 // size of the byval type by the target's pointer size.
1048 PointerType *PTy = cast<PointerType>(CS.getArgument(I)->getType());
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001049 unsigned TypeSize = DL.getTypeSizeInBits(PTy->getElementType());
1050 unsigned PointerSize = DL.getPointerSizeInBits();
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001051 // Ceiling division.
1052 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize;
Benjamin Kramerc99d0e92012-08-07 11:13:19 +00001053
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001054 // If it generates more than 8 stores it is likely to be expanded as an
1055 // inline memcpy so we take that as an upper bound. Otherwise we assume
1056 // one load and one store per word copied.
1057 // FIXME: The maxStoresPerMemcpy setting from the target should be used
1058 // here instead of a magic number of 8, but it's not available via
1059 // DataLayout.
1060 NumStores = std::min(NumStores, 8U);
1061
1062 Cost -= 2 * NumStores * InlineConstants::InstrCost;
1063 } else {
1064 // For non-byval arguments subtract off one instruction per call
1065 // argument.
1066 Cost -= InlineConstants::InstrCost;
Benjamin Kramerc99d0e92012-08-07 11:13:19 +00001067 }
Chandler Carruth0539c072012-03-31 12:42:41 +00001068 }
1069
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001070 // If there is only one call of the function, and it has internal linkage,
1071 // the cost of inlining it drops dramatically.
James Molloy4f6fb952012-12-20 16:04:27 +00001072 bool OnlyOneCallAndLocalLinkage = F.hasLocalLinkage() && F.hasOneUse() &&
1073 &F == CS.getCalledFunction();
1074 if (OnlyOneCallAndLocalLinkage)
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001075 Cost += InlineConstants::LastCallToStaticBonus;
1076
1077 // If the instruction after the call, or if the normal destination of the
1078 // invoke is an unreachable instruction, the function is noreturn. As such,
1079 // there is little point in inlining this unless there is literally zero
1080 // cost.
1081 Instruction *Instr = CS.getInstruction();
1082 if (InvokeInst *II = dyn_cast<InvokeInst>(Instr)) {
1083 if (isa<UnreachableInst>(II->getNormalDest()->begin()))
1084 Threshold = 1;
1085 } else if (isa<UnreachableInst>(++BasicBlock::iterator(Instr)))
1086 Threshold = 1;
1087
1088 // If this function uses the coldcc calling convention, prefer not to inline
1089 // it.
1090 if (F.getCallingConv() == CallingConv::Cold)
1091 Cost += InlineConstants::ColdccPenalty;
1092
1093 // Check if we're done. This can happen due to bonuses and penalties.
1094 if (Cost > Threshold)
1095 return false;
1096
Chandler Carruth0539c072012-03-31 12:42:41 +00001097 if (F.empty())
1098 return true;
1099
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +00001100 Function *Caller = CS.getInstruction()->getParent()->getParent();
1101 // Check if the caller function is recursive itself.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001102 for (User *U : Caller->users()) {
1103 CallSite Site(U);
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +00001104 if (!Site)
1105 continue;
1106 Instruction *I = Site.getInstruction();
1107 if (I->getParent()->getParent() == Caller) {
1108 IsCallerRecursive = true;
1109 break;
1110 }
1111 }
1112
Chandler Carruth0539c072012-03-31 12:42:41 +00001113 // Populate our simplified values by mapping from function arguments to call
1114 // arguments with known important simplifications.
1115 CallSite::arg_iterator CAI = CS.arg_begin();
1116 for (Function::arg_iterator FAI = F.arg_begin(), FAE = F.arg_end();
1117 FAI != FAE; ++FAI, ++CAI) {
1118 assert(CAI != CS.arg_end());
1119 if (Constant *C = dyn_cast<Constant>(CAI))
1120 SimplifiedValues[FAI] = C;
1121
1122 Value *PtrArg = *CAI;
1123 if (ConstantInt *C = stripAndComputeInBoundsConstantOffsets(PtrArg)) {
1124 ConstantOffsetPtrs[FAI] = std::make_pair(PtrArg, C->getValue());
1125
1126 // We can SROA any pointer arguments derived from alloca instructions.
1127 if (isa<AllocaInst>(PtrArg)) {
1128 SROAArgValues[FAI] = PtrArg;
1129 SROAArgCosts[PtrArg] = 0;
1130 }
1131 }
1132 }
1133 NumConstantArgs = SimplifiedValues.size();
1134 NumConstantOffsetPtrArgs = ConstantOffsetPtrs.size();
1135 NumAllocaArgs = SROAArgValues.size();
1136
Hal Finkel57f03dd2014-09-07 13:49:57 +00001137 // FIXME: If a caller has multiple calls to a callee, we end up recomputing
1138 // the ephemeral values multiple times (and they're completely determined by
1139 // the callee, so this is purely duplicate work).
1140 SmallPtrSet<const Value *, 32> EphValues;
Bjorn Steinbrink6f972a12015-02-12 21:04:22 +00001141 CodeMetrics::collectEphemeralValues(&F, &ACT->getAssumptionCache(F), EphValues);
Hal Finkel57f03dd2014-09-07 13:49:57 +00001142
Chandler Carruth0539c072012-03-31 12:42:41 +00001143 // The worklist of live basic blocks in the callee *after* inlining. We avoid
1144 // adding basic blocks of the callee which can be proven to be dead for this
1145 // particular call site in order to get more accurate cost estimates. This
1146 // requires a somewhat heavyweight iteration pattern: we need to walk the
1147 // basic blocks in a breadth-first order as we insert live successors. To
1148 // accomplish this, prioritizing for small iterations because we exit after
1149 // crossing our threshold, we use a small-size optimized SetVector.
1150 typedef SetVector<BasicBlock *, SmallVector<BasicBlock *, 16>,
1151 SmallPtrSet<BasicBlock *, 16> > BBSetVector;
1152 BBSetVector BBWorklist;
1153 BBWorklist.insert(&F.getEntryBlock());
1154 // Note that we *must not* cache the size, this loop grows the worklist.
1155 for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) {
1156 // Bail out the moment we cross the threshold. This means we'll under-count
1157 // the cost, but only when undercounting doesn't matter.
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001158 if (Cost > (Threshold + VectorBonus))
Chandler Carruth0539c072012-03-31 12:42:41 +00001159 break;
1160
1161 BasicBlock *BB = BBWorklist[Idx];
1162 if (BB->empty())
Chandler Carruth4d1d34f2012-03-14 23:19:53 +00001163 continue;
Dan Gohman4552e3c2009-10-13 18:30:07 +00001164
Gerolf Hoflehner734f4c82014-07-01 00:19:34 +00001165 // Disallow inlining a blockaddress. A blockaddress only has defined
1166 // behavior for an indirect branch in the same function, and we do not
1167 // currently support inlining indirect branches. But, the inliner may not
1168 // see an indirect branch that ends up being dead code at a particular call
1169 // site. If the blockaddress escapes the function, e.g., via a global
1170 // variable, inlining may lead to an invalid cross-function reference.
1171 if (BB->hasAddressTaken())
1172 return false;
1173
Chandler Carruth0539c072012-03-31 12:42:41 +00001174 // Analyze the cost of this block. If we blow through the threshold, this
1175 // returns false, and we can bail on out.
Hal Finkel57f03dd2014-09-07 13:49:57 +00001176 if (!analyzeBlock(BB, EphValues)) {
Chandler Carruth0814d2a2013-12-13 07:59:56 +00001177 if (IsRecursiveCall || ExposesReturnsTwice || HasDynamicAlloca ||
Reid Kleckner223de262015-04-14 20:38:14 +00001178 HasIndirectBr || HasFrameEscape)
Chandler Carruth0539c072012-03-31 12:42:41 +00001179 return false;
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +00001180
1181 // If the caller is a recursive function then we don't want to inline
1182 // functions which allocate a lot of stack space because it would increase
1183 // the caller stack usage dramatically.
1184 if (IsCallerRecursive &&
1185 AllocatedSize > InlineConstants::TotalAllocaSizeRecursiveCaller)
1186 return false;
1187
Chandler Carruth0539c072012-03-31 12:42:41 +00001188 break;
Eric Christopher46308e62011-02-01 01:16:32 +00001189 }
Eric Christopher46308e62011-02-01 01:16:32 +00001190
Chandler Carruth0814d2a2013-12-13 07:59:56 +00001191 TerminatorInst *TI = BB->getTerminator();
1192
Chandler Carruth0539c072012-03-31 12:42:41 +00001193 // Add in the live successors by first checking whether we have terminator
1194 // that may be simplified based on the values simplified by this call.
1195 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
1196 if (BI->isConditional()) {
1197 Value *Cond = BI->getCondition();
1198 if (ConstantInt *SimpleCond
1199 = dyn_cast_or_null<ConstantInt>(SimplifiedValues.lookup(Cond))) {
1200 BBWorklist.insert(BI->getSuccessor(SimpleCond->isZero() ? 1 : 0));
1201 continue;
Eric Christopher46308e62011-02-01 01:16:32 +00001202 }
Chandler Carruth0539c072012-03-31 12:42:41 +00001203 }
1204 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
1205 Value *Cond = SI->getCondition();
1206 if (ConstantInt *SimpleCond
1207 = dyn_cast_or_null<ConstantInt>(SimplifiedValues.lookup(Cond))) {
1208 BBWorklist.insert(SI->findCaseValue(SimpleCond).getCaseSuccessor());
1209 continue;
1210 }
1211 }
Eric Christopher46308e62011-02-01 01:16:32 +00001212
Chandler Carruth0539c072012-03-31 12:42:41 +00001213 // If we're unable to select a particular successor, just count all of
1214 // them.
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +00001215 for (unsigned TIdx = 0, TSize = TI->getNumSuccessors(); TIdx != TSize;
1216 ++TIdx)
Chandler Carruth0539c072012-03-31 12:42:41 +00001217 BBWorklist.insert(TI->getSuccessor(TIdx));
1218
1219 // If we had any successors at this point, than post-inlining is likely to
1220 // have them as well. Note that we assume any basic blocks which existed
1221 // due to branches or switches which folded above will also fold after
1222 // inlining.
1223 if (SingleBB && TI->getNumSuccessors() > 1) {
1224 // Take off the bonus we applied to the threshold.
1225 Threshold -= SingleBBBonus;
1226 SingleBB = false;
Eric Christopher46308e62011-02-01 01:16:32 +00001227 }
1228 }
Andrew Trickcaa500b2011-10-01 01:27:56 +00001229
Chandler Carruthcb5beb32013-12-12 11:59:26 +00001230 // If this is a noduplicate call, we can still inline as long as
James Molloy4f6fb952012-12-20 16:04:27 +00001231 // inlining this would cause the removal of the caller (so the instruction
1232 // is not actually duplicated, just moved).
1233 if (!OnlyOneCallAndLocalLinkage && ContainsNoDuplicateCall)
1234 return false;
1235
Chandler Carruth0539c072012-03-31 12:42:41 +00001236 Threshold += VectorBonus;
1237
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001238 return Cost < Threshold;
Eric Christopher2dfbd7e2011-02-05 00:49:15 +00001239}
1240
Manman Ren49d684e2012-09-12 05:06:18 +00001241#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth0539c072012-03-31 12:42:41 +00001242/// \brief Dump stats about this call's analysis.
1243void CallAnalyzer::dump() {
Eric Christophera13839f2014-02-26 23:27:16 +00001244#define DEBUG_PRINT_STAT(x) dbgs() << " " #x ": " << x << "\n"
Chandler Carruth0539c072012-03-31 12:42:41 +00001245 DEBUG_PRINT_STAT(NumConstantArgs);
1246 DEBUG_PRINT_STAT(NumConstantOffsetPtrArgs);
1247 DEBUG_PRINT_STAT(NumAllocaArgs);
1248 DEBUG_PRINT_STAT(NumConstantPtrCmps);
1249 DEBUG_PRINT_STAT(NumConstantPtrDiffs);
1250 DEBUG_PRINT_STAT(NumInstructionsSimplified);
1251 DEBUG_PRINT_STAT(SROACostSavings);
1252 DEBUG_PRINT_STAT(SROACostSavingsLost);
James Molloy4f6fb952012-12-20 16:04:27 +00001253 DEBUG_PRINT_STAT(ContainsNoDuplicateCall);
Chandler Carruth394e34f2014-01-31 22:32:32 +00001254 DEBUG_PRINT_STAT(Cost);
1255 DEBUG_PRINT_STAT(Threshold);
1256 DEBUG_PRINT_STAT(VectorBonus);
Chandler Carruth0539c072012-03-31 12:42:41 +00001257#undef DEBUG_PRINT_STAT
Eric Christopher2dfbd7e2011-02-05 00:49:15 +00001258}
Manman Renc3366cc2012-09-06 19:55:56 +00001259#endif
Eric Christopher2dfbd7e2011-02-05 00:49:15 +00001260
Chandler Carruth4319e292013-01-21 11:39:18 +00001261INITIALIZE_PASS_BEGIN(InlineCostAnalysis, "inline-cost", "Inline Cost Analysis",
1262 true, true)
Chandler Carruth705b1852015-01-31 03:43:40 +00001263INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Chandler Carruth66b31302015-01-04 12:03:27 +00001264INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth4319e292013-01-21 11:39:18 +00001265INITIALIZE_PASS_END(InlineCostAnalysis, "inline-cost", "Inline Cost Analysis",
1266 true, true)
1267
1268char InlineCostAnalysis::ID = 0;
1269
Rafael Espindola339430f2014-02-25 23:25:17 +00001270InlineCostAnalysis::InlineCostAnalysis() : CallGraphSCCPass(ID) {}
Chandler Carruth4319e292013-01-21 11:39:18 +00001271
1272InlineCostAnalysis::~InlineCostAnalysis() {}
1273
1274void InlineCostAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
1275 AU.setPreservesAll();
Chandler Carruth66b31302015-01-04 12:03:27 +00001276 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruth705b1852015-01-31 03:43:40 +00001277 AU.addRequired<TargetTransformInfoWrapperPass>();
Chandler Carruth4319e292013-01-21 11:39:18 +00001278 CallGraphSCCPass::getAnalysisUsage(AU);
1279}
1280
1281bool InlineCostAnalysis::runOnSCC(CallGraphSCC &SCC) {
Chandler Carruthfdb9c572015-02-01 12:01:35 +00001282 TTIWP = &getAnalysis<TargetTransformInfoWrapperPass>();
Chandler Carruth66b31302015-01-04 12:03:27 +00001283 ACT = &getAnalysis<AssumptionCacheTracker>();
Chandler Carruth4319e292013-01-21 11:39:18 +00001284 return false;
1285}
1286
1287InlineCost InlineCostAnalysis::getInlineCost(CallSite CS, int Threshold) {
David Chisnallc1c9cda2012-04-06 17:27:41 +00001288 return getInlineCost(CS, CS.getCalledFunction(), Threshold);
1289}
Dan Gohman4552e3c2009-10-13 18:30:07 +00001290
Evgeniy Stepanov2ad36982013-08-08 08:22:39 +00001291/// \brief Test that two functions either have or have not the given attribute
1292/// at the same time.
Akira Hatanakaf99e1912015-04-13 18:43:38 +00001293template<typename AttrKind>
1294static bool attributeMatches(Function *F1, Function *F2, AttrKind Attr) {
1295 return F1->getFnAttribute(Attr) == F2->getFnAttribute(Attr);
Evgeniy Stepanov2ad36982013-08-08 08:22:39 +00001296}
1297
1298/// \brief Test that there are no attribute conflicts between Caller and Callee
1299/// that prevent inlining.
1300static bool functionsHaveCompatibleAttributes(Function *Caller,
1301 Function *Callee) {
Akira Hatanakaf99e1912015-04-13 18:43:38 +00001302 return attributeMatches(Caller, Callee, "target-cpu") &&
1303 attributeMatches(Caller, Callee, "target-features") &&
1304 attributeMatches(Caller, Callee, Attribute::SanitizeAddress) &&
Evgeniy Stepanov2ad36982013-08-08 08:22:39 +00001305 attributeMatches(Caller, Callee, Attribute::SanitizeMemory) &&
1306 attributeMatches(Caller, Callee, Attribute::SanitizeThread);
1307}
1308
Chandler Carruth4319e292013-01-21 11:39:18 +00001309InlineCost InlineCostAnalysis::getInlineCost(CallSite CS, Function *Callee,
David Chisnallc1c9cda2012-04-06 17:27:41 +00001310 int Threshold) {
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001311 // Cannot inline indirect calls.
1312 if (!Callee)
1313 return llvm::InlineCost::getNever();
1314
1315 // Calls to functions with always-inline attributes should be inlined
1316 // whenever possible.
Peter Collingbourne68a88972014-05-19 18:25:54 +00001317 if (CS.hasFnAttr(Attribute::AlwaysInline)) {
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001318 if (isInlineViable(*Callee))
1319 return llvm::InlineCost::getAlways();
1320 return llvm::InlineCost::getNever();
1321 }
1322
Evgeniy Stepanov2ad36982013-08-08 08:22:39 +00001323 // Never inline functions with conflicting attributes (unless callee has
1324 // always-inline attribute).
1325 if (!functionsHaveCompatibleAttributes(CS.getCaller(), Callee))
1326 return llvm::InlineCost::getNever();
1327
Paul Robinsondcbe35b2013-11-18 21:44:03 +00001328 // Don't inline this call if the caller has the optnone attribute.
1329 if (CS.getCaller()->hasFnAttribute(Attribute::OptimizeNone))
1330 return llvm::InlineCost::getNever();
1331
Dan Gohman4552e3c2009-10-13 18:30:07 +00001332 // Don't inline functions which can be redefined at link-time to mean
Eric Christopherb1a382d2010-03-25 04:49:10 +00001333 // something else. Don't inline functions marked noinline or call sites
1334 // marked noinline.
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001335 if (Callee->mayBeOverridden() ||
Evgeniy Stepanov2ad36982013-08-08 08:22:39 +00001336 Callee->hasFnAttribute(Attribute::NoInline) || CS.isNoInline())
Dan Gohman4552e3c2009-10-13 18:30:07 +00001337 return llvm::InlineCost::getNever();
1338
Nadav Rotem4eb3d4b2012-09-19 08:08:04 +00001339 DEBUG(llvm::dbgs() << " Analyzing call of " << Callee->getName()
1340 << "...\n");
Andrew Trickcaa500b2011-10-01 01:27:56 +00001341
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001342 CallAnalyzer CA(TTIWP->getTTI(*Callee), ACT, *Callee, Threshold);
Chandler Carruth0539c072012-03-31 12:42:41 +00001343 bool ShouldInline = CA.analyzeCall(CS);
Dan Gohman4552e3c2009-10-13 18:30:07 +00001344
Chandler Carruth0539c072012-03-31 12:42:41 +00001345 DEBUG(CA.dump());
1346
1347 // Check if there was a reason to force inlining or no inlining.
1348 if (!ShouldInline && CA.getCost() < CA.getThreshold())
Dan Gohman4552e3c2009-10-13 18:30:07 +00001349 return InlineCost::getNever();
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001350 if (ShouldInline && CA.getCost() >= CA.getThreshold())
Dan Gohman4552e3c2009-10-13 18:30:07 +00001351 return InlineCost::getAlways();
Andrew Trickcaa500b2011-10-01 01:27:56 +00001352
Chandler Carruth0539c072012-03-31 12:42:41 +00001353 return llvm::InlineCost::get(CA.getCost(), CA.getThreshold());
Dan Gohman4552e3c2009-10-13 18:30:07 +00001354}
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001355
Chandler Carruth4319e292013-01-21 11:39:18 +00001356bool InlineCostAnalysis::isInlineViable(Function &F) {
Duncan P. N. Exon Smithb3fc83c2015-02-14 00:12:15 +00001357 bool ReturnsTwice = F.hasFnAttribute(Attribute::ReturnsTwice);
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001358 for (Function::iterator BI = F.begin(), BE = F.end(); BI != BE; ++BI) {
Gerolf Hoflehner734f4c82014-07-01 00:19:34 +00001359 // Disallow inlining of functions which contain indirect branches or
1360 // blockaddresses.
1361 if (isa<IndirectBrInst>(BI->getTerminator()) || BI->hasAddressTaken())
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001362 return false;
1363
1364 for (BasicBlock::iterator II = BI->begin(), IE = BI->end(); II != IE;
1365 ++II) {
1366 CallSite CS(II);
1367 if (!CS)
1368 continue;
1369
1370 // Disallow recursive calls.
1371 if (&F == CS.getCalledFunction())
1372 return false;
1373
1374 // Disallow calls which expose returns-twice to a function not previously
1375 // attributed as such.
1376 if (!ReturnsTwice && CS.isCall() &&
1377 cast<CallInst>(CS.getInstruction())->canReturnTwice())
1378 return false;
Reid Kleckner223de262015-04-14 20:38:14 +00001379
1380 // Disallow inlining functions that call @llvm.frameescape. Doing this
1381 // correctly would require major changes to the inliner.
1382 if (CS.getCalledFunction() &&
1383 CS.getCalledFunction()->getIntrinsicID() ==
1384 llvm::Intrinsic::frameescape)
1385 return false;
Bob Wilsona5b0dc82012-11-19 07:04:35 +00001386 }
1387 }
1388
1389 return true;
1390}