Refactor code-size reduction estimation methods out of InlineCostAnalyzer and into...
[oota-llvm.git] / include / llvm / Analysis / InlineCost.h
1 //===- InlineCost.h - Cost analysis for inliner -----------------*- C++ -*-===//
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 heuristics for inlining decisions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ANALYSIS_INLINECOST_H
15 #define LLVM_ANALYSIS_INLINECOST_H
16
17 #include <cassert>
18 #include <climits>
19 #include <vector>
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/ValueMap.h"
22 #include "llvm/Analysis/CodeMetrics.h"
23
24 namespace llvm {
25
26   class Value;
27   class Function;
28   class BasicBlock;
29   class CallSite;
30   template<class PtrType, unsigned SmallSize>
31   class SmallPtrSet;
32
33   namespace InlineConstants {
34     // Various magic constants used to adjust heuristics.
35     const int InstrCost = 5;
36     const int IndirectCallBonus = 500;
37     const int CallPenalty = 25;
38     const int LastCallToStaticBonus = -15000;
39     const int ColdccPenalty = 2000;
40     const int NoreturnPenalty = 10000;
41   }
42
43   /// InlineCost - Represent the cost of inlining a function. This
44   /// supports special values for functions which should "always" or
45   /// "never" be inlined. Otherwise, the cost represents a unitless
46   /// amount; smaller values increase the likelyhood of the function
47   /// being inlined.
48   class InlineCost {
49     enum Kind {
50       Value,
51       Always,
52       Never
53     };
54
55     // This is a do-it-yourself implementation of
56     //   int Cost : 30;
57     //   unsigned Type : 2;
58     // We used to use bitfields, but they were sometimes miscompiled (PR3822).
59     enum { TYPE_BITS = 2 };
60     enum { COST_BITS = unsigned(sizeof(unsigned)) * CHAR_BIT - TYPE_BITS };
61     unsigned TypedCost; // int Cost : COST_BITS; unsigned Type : TYPE_BITS;
62
63     Kind getType() const {
64       return Kind(TypedCost >> COST_BITS);
65     }
66
67     int getCost() const {
68       // Sign-extend the bottom COST_BITS bits.
69       return (int(TypedCost << TYPE_BITS)) >> TYPE_BITS;
70     }
71
72     InlineCost(int C, int T) {
73       TypedCost = (unsigned(C << TYPE_BITS) >> TYPE_BITS) | (T << COST_BITS);
74       assert(getCost() == C && "Cost exceeds InlineCost precision");
75     }
76   public:
77     static InlineCost get(int Cost) { return InlineCost(Cost, Value); }
78     static InlineCost getAlways() { return InlineCost(0, Always); }
79     static InlineCost getNever() { return InlineCost(0, Never); }
80
81     bool isVariable() const { return getType() == Value; }
82     bool isAlways() const { return getType() == Always; }
83     bool isNever() const { return getType() == Never; }
84
85     /// getValue() - Return a "variable" inline cost's amount. It is
86     /// an error to call this on an "always" or "never" InlineCost.
87     int getValue() const {
88       assert(getType() == Value && "Invalid access of InlineCost");
89       return getCost();
90     }
91   };
92
93   /// InlineCostAnalyzer - Cost analyzer used by inliner.
94   class InlineCostAnalyzer {
95     struct ArgInfo {
96     public:
97       unsigned ConstantWeight;
98       unsigned AllocaWeight;
99
100       ArgInfo(unsigned CWeight, unsigned AWeight)
101         : ConstantWeight(CWeight), AllocaWeight(AWeight) {}
102     };
103
104     struct FunctionInfo {
105       CodeMetrics Metrics;
106
107       /// ArgumentWeights - Each formal argument of the function is inspected to
108       /// see if it is used in any contexts where making it a constant or alloca
109       /// would reduce the code size.  If so, we add some value to the argument
110       /// entry here.
111       std::vector<ArgInfo> ArgumentWeights;
112
113
114
115       /// analyzeFunction - Add information about the specified function
116       /// to the current structure.
117       void analyzeFunction(Function *F);
118
119       /// NeverInline - Returns true if the function should never be
120       /// inlined into any caller.
121       bool NeverInline();
122     };
123
124     // The Function* for a function can be changed (by ArgumentPromotion);
125     // the ValueMap will update itself when this happens.
126     ValueMap<const Function *, FunctionInfo> CachedFunctionInfo;
127
128   public:
129
130     /// getInlineCost - The heuristic used to determine if we should inline the
131     /// function call or not.
132     ///
133     InlineCost getInlineCost(CallSite CS,
134                              SmallPtrSet<const Function *, 16> &NeverInline);
135     /// getCalledFunction - The heuristic used to determine if we should inline
136     /// the function call or not.  The callee is explicitly specified, to allow
137     /// you to calculate the cost of inlining a function via a pointer.  The
138     /// result assumes that the inlined version will always be used.  You should
139     /// weight it yourself in cases where this callee will not always be called.
140     InlineCost getInlineCost(CallSite CS,
141                              Function *Callee,
142                              SmallPtrSet<const Function *, 16> &NeverInline);
143
144     /// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
145     /// higher threshold to determine if the function call should be inlined.
146     float getInlineFudgeFactor(CallSite CS);
147
148     /// resetCachedFunctionInfo - erase any cached cost info for this function.
149     void resetCachedCostInfo(Function* Caller) {
150       CachedFunctionInfo[Caller] = FunctionInfo();
151     }
152
153     /// growCachedCostInfo - update the cached cost info for Caller after Callee
154     /// has been inlined. If Callee is NULL it means a dead call has been
155     /// eliminated.
156     void growCachedCostInfo(Function* Caller, Function* Callee);
157
158     /// clear - empty the cache of inline costs
159     void clear();
160   };
161
162   /// callIsSmall - If a call is likely to lower to a single target instruction,
163   /// or is otherwise deemed small return true.
164   bool callIsSmall(const Function *Callee);
165 }
166
167 #endif