5f78021f3d212bea67528c3184c27284cf373514
[oota-llvm.git] / include / llvm / Analysis / CodeMetrics.h
1 //===- CodeMetrics.h - Measures the weight of a function---------*- 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 various weight measurements for code, helping
11 // the Inliner and other passes decide whether to duplicate its contents.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_ANALYSIS_CODEMETRICS_H
16 #define LLVM_ANALYSIS_CODEMETRICS_H
17
18 #include "llvm/ADT/DenseMap.h"
19
20 namespace llvm {
21
22   class BasicBlock;
23   class Function;
24   class TargetData;
25   class Value;
26
27   // CodeMetrics - Calculate size and a few similar metrics for a set of
28   // basic blocks.
29   struct CodeMetrics {
30     /// NeverInline - True if this callee should never be inlined into a
31     /// caller.
32     // bool NeverInline;
33
34     // True if this function contains a call to setjmp or _setjmp
35     bool callsSetJmp;
36
37     // True if this function calls itself
38     bool isRecursive;
39
40     // True if this function contains one or more indirect branches
41     bool containsIndirectBr;
42
43     /// usesDynamicAlloca - True if this function calls alloca (in the C sense).
44     bool usesDynamicAlloca;
45
46     /// NumInsts, NumBlocks - Keep track of how large each function is, which
47     /// is used to estimate the code size cost of inlining it.
48     unsigned NumInsts, NumBlocks;
49
50     /// NumBBInsts - Keeps track of basic block code size estimates.
51     DenseMap<const BasicBlock *, unsigned> NumBBInsts;
52
53     /// NumCalls - Keep track of the number of calls to 'big' functions.
54     unsigned NumCalls;
55
56     /// NumInlineCandidates - Keep track of the number of calls to internal
57     /// functions with only a single caller.  These are likely targets for
58     /// future inlining, likely exposed by interleaved devirtualization.
59     unsigned NumInlineCandidates;
60
61     /// NumVectorInsts - Keep track of how many instructions produce vector
62     /// values.  The inliner is being more aggressive with inlining vector
63     /// kernels.
64     unsigned NumVectorInsts;
65
66     /// NumRets - Keep track of how many Ret instructions the block contains.
67     unsigned NumRets;
68
69     CodeMetrics() : callsSetJmp(false), isRecursive(false),
70                     containsIndirectBr(false), usesDynamicAlloca(false),
71                     NumInsts(0), NumBlocks(0), NumCalls(0),
72                     NumInlineCandidates(0), NumVectorInsts(0),
73                     NumRets(0) {}
74
75     /// analyzeBasicBlock - Add information about the specified basic block
76     /// to the current structure.
77     void analyzeBasicBlock(const BasicBlock *BB, const TargetData *TD = 0);
78
79     /// analyzeFunction - Add information about the specified function
80     /// to the current structure.
81     void analyzeFunction(Function *F, const TargetData *TD = 0);
82
83     /// CountCodeReductionForConstant - Figure out an approximation for how
84     /// many instructions will be constant folded if the specified value is
85     /// constant.
86     unsigned CountCodeReductionForConstant(Value *V);
87
88     /// CountBonusForConstant - Figure out an approximation for how much
89     /// per-call performance boost we can expect if the specified value is
90     /// constant.
91     unsigned CountBonusForConstant(Value *V);
92
93     /// CountCodeReductionForAlloca - Figure out an approximation of how much
94     /// smaller the function will be if it is inlined into a context where an
95     /// argument becomes an alloca.
96     ///
97     unsigned CountCodeReductionForAlloca(Value *V);
98   };
99 }
100
101 #endif