1 //===- InlineCost.h - Cost analysis for inliner -----------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements heuristics for inlining decisions.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_ANALYSIS_INLINECOST_H
15 #define LLVM_ANALYSIS_INLINECOST_H
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/SmallPtrSet.h"
19 #include "llvm/ADT/ValueMap.h"
20 #include "llvm/Analysis/CodeMetrics.h"
21 #include "llvm/IR/Function.h"
31 namespace InlineConstants {
32 // Various magic constants used to adjust heuristics.
33 const int InstrCost = 5;
34 const int IndirectCallThreshold = 100;
35 const int CallPenalty = 25;
36 const int LastCallToStaticBonus = -15000;
37 const int ColdccPenalty = 2000;
38 const int NoreturnPenalty = 10000;
39 /// Do not inline functions which allocate this many bytes on the stack
40 /// when the caller is recursive.
41 const unsigned TotalAllocaSizeRecursiveCaller = 1024;
44 /// \brief Represents the cost of inlining a function.
46 /// This supports special values for functions which should "always" or
47 /// "never" be inlined. Otherwise, the cost represents a unitless amount;
48 /// smaller values increase the likelihood of the function being inlined.
50 /// Objects of this type also provide the adjusted threshold for inlining
51 /// based on the information available for a particular callsite. They can be
52 /// directly tested to determine if inlining should occur given the cost and
53 /// threshold for this cost metric.
56 AlwaysInlineCost = INT_MIN,
57 NeverInlineCost = INT_MAX
60 /// \brief The estimated cost of inlining this callsite.
63 /// \brief The adjusted threshold against which this cost was computed.
66 // Trivial constructor, interesting logic in the factory functions below.
67 InlineCost(int Cost, int Threshold)
68 : Cost(Cost), Threshold(Threshold) {}
71 static InlineCost get(int Cost, int Threshold) {
72 assert(Cost > AlwaysInlineCost && "Cost crosses sentinel value");
73 assert(Cost < NeverInlineCost && "Cost crosses sentinel value");
74 return InlineCost(Cost, Threshold);
76 static InlineCost getAlways() {
77 return InlineCost(AlwaysInlineCost, 0);
79 static InlineCost getNever() {
80 return InlineCost(NeverInlineCost, 0);
83 /// \brief Test whether the inline cost is low enough for inlining.
84 operator bool() const {
85 return Cost < Threshold;
88 bool isAlways() const { return Cost == AlwaysInlineCost; }
89 bool isNever() const { return Cost == NeverInlineCost; }
90 bool isVariable() const { return !isAlways() && !isNever(); }
92 /// \brief Get the inline cost estimate.
93 /// It is an error to call this on an "always" or "never" InlineCost.
95 assert(isVariable() && "Invalid access of InlineCost");
99 /// \brief Get the cost delta from the threshold for inlining.
100 /// Only valid if the cost is of the variable kind. Returns a negative
101 /// value if the cost is too high to inline.
102 int getCostDelta() const { return Threshold - getCost(); }
105 /// InlineCostAnalyzer - Cost analyzer used by inliner.
106 class InlineCostAnalyzer {
107 // DataLayout if available, or null.
108 const DataLayout *TD;
111 InlineCostAnalyzer(): TD(0) {}
113 void setDataLayout(const DataLayout *TData) { TD = TData; }
115 /// \brief Get an InlineCost object representing the cost of inlining this
118 /// Note that threshold is passed into this function. Only costs below the
119 /// threshold are computed with any accuracy. The threshold can be used to
120 /// bound the computation necessary to determine whether the cost is
121 /// sufficiently low to warrant inlining.
122 InlineCost getInlineCost(CallSite CS, int Threshold);
124 /// \brief Get an InlineCost with the callee explicitly specified.
125 /// This allows you to calculate the cost of inlining a function via a
126 /// pointer. This behaves exactly as the version with no explicit callee
127 /// parameter in all other respects.
129 // Note: This is used by out-of-tree passes, please do not remove without
130 // adding a replacement API.
131 InlineCost getInlineCost(CallSite CS, Function *Callee, int Threshold);
133 /// \brief Minimal filter to detect invalid constructs for inlining.
134 bool isInlineViable(Function &Callee);