EXTRACT_SUBREG coalescing support. The coalescer now treats EXTRACT_SUBREG like
[oota-llvm.git] / include / llvm / CodeGen / LiveIntervalAnalysis.h
1 //===-- LiveIntervalAnalysis.h - Live Interval Analysis ---------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the LiveInterval analysis pass.  Given some numbering of
11 // each the machine instructions (in this implemention depth-first order) an
12 // interval [i, j) is said to be a live interval for register v if there is no
13 // instruction with number j' > j such that v is live at j' abd there is no
14 // instruction with number i' < i such that v is live at i'. In this
15 // implementation intervals can have holes, i.e. an interval might look like
16 // [1,20), [50,65), [1000,1001).
17 //
18 //===----------------------------------------------------------------------===//
19
20 #ifndef LLVM_CODEGEN_LIVEINTERVAL_ANALYSIS_H
21 #define LLVM_CODEGEN_LIVEINTERVAL_ANALYSIS_H
22
23 #include "llvm/CodeGen/MachineFunctionPass.h"
24 #include "llvm/CodeGen/LiveInterval.h"
25 #include "llvm/ADT/BitVector.h"
26 #include "llvm/ADT/DenseMap.h"
27 #include "llvm/ADT/IndexedMap.h"
28 #include "llvm/ADT/SmallPtrSet.h"
29 #include "llvm/ADT/SmallVector.h"
30 #include "llvm/Support/Allocator.h"
31
32 namespace llvm {
33
34   class LiveVariables;
35   class MRegisterInfo;
36   class TargetInstrInfo;
37   class TargetRegisterClass;
38   class VirtRegMap;
39
40   class LiveIntervals : public MachineFunctionPass {
41     MachineFunction* mf_;
42     const TargetMachine* tm_;
43     const MRegisterInfo* mri_;
44     const TargetInstrInfo* tii_;
45     LiveVariables* lv_;
46
47     /// Special pool allocator for VNInfo's (LiveInterval val#).
48     ///
49     BumpPtrAllocator VNInfoAllocator;
50
51     /// MBB2IdxMap - The indexes of the first and last instructions in the
52     /// specified basic block.
53     std::vector<std::pair<unsigned, unsigned> > MBB2IdxMap;
54
55     typedef std::map<MachineInstr*, unsigned> Mi2IndexMap;
56     Mi2IndexMap mi2iMap_;
57
58     typedef std::vector<MachineInstr*> Index2MiMap;
59     Index2MiMap i2miMap_;
60
61     typedef std::map<unsigned, LiveInterval> Reg2IntervalMap;
62     Reg2IntervalMap r2iMap_;
63
64     BitVector allocatableRegs_;
65
66     std::vector<MachineInstr*> ClonedMIs;
67
68   public:
69     static char ID; // Pass identification, replacement for typeid
70     LiveIntervals() : MachineFunctionPass((intptr_t)&ID) {}
71
72     struct InstrSlots {
73       enum {
74         LOAD  = 0,
75         USE   = 1,
76         DEF   = 2,
77         STORE = 3,
78         NUM   = 4
79       };
80     };
81
82     static unsigned getBaseIndex(unsigned index) {
83       return index - (index % InstrSlots::NUM);
84     }
85     static unsigned getBoundaryIndex(unsigned index) {
86       return getBaseIndex(index + InstrSlots::NUM - 1);
87     }
88     static unsigned getLoadIndex(unsigned index) {
89       return getBaseIndex(index) + InstrSlots::LOAD;
90     }
91     static unsigned getUseIndex(unsigned index) {
92       return getBaseIndex(index) + InstrSlots::USE;
93     }
94     static unsigned getDefIndex(unsigned index) {
95       return getBaseIndex(index) + InstrSlots::DEF;
96     }
97     static unsigned getStoreIndex(unsigned index) {
98       return getBaseIndex(index) + InstrSlots::STORE;
99     }
100
101     typedef Reg2IntervalMap::iterator iterator;
102     typedef Reg2IntervalMap::const_iterator const_iterator;
103     const_iterator begin() const { return r2iMap_.begin(); }
104     const_iterator end() const { return r2iMap_.end(); }
105     iterator begin() { return r2iMap_.begin(); }
106     iterator end() { return r2iMap_.end(); }
107     unsigned getNumIntervals() const { return r2iMap_.size(); }
108
109     LiveInterval &getInterval(unsigned reg) {
110       Reg2IntervalMap::iterator I = r2iMap_.find(reg);
111       assert(I != r2iMap_.end() && "Interval does not exist for register");
112       return I->second;
113     }
114
115     const LiveInterval &getInterval(unsigned reg) const {
116       Reg2IntervalMap::const_iterator I = r2iMap_.find(reg);
117       assert(I != r2iMap_.end() && "Interval does not exist for register");
118       return I->second;
119     }
120
121     bool hasInterval(unsigned reg) const {
122       return r2iMap_.count(reg);
123     }
124
125     /// getMBBStartIdx - Return the base index of the first instruction in the
126     /// specified MachineBasicBlock.
127     unsigned getMBBStartIdx(MachineBasicBlock *MBB) const {
128       return getMBBStartIdx(MBB->getNumber());
129     }
130     unsigned getMBBStartIdx(unsigned MBBNo) const {
131       assert(MBBNo < MBB2IdxMap.size() && "Invalid MBB number!");
132       return MBB2IdxMap[MBBNo].first;
133     }
134
135     /// getMBBEndIdx - Return the store index of the last instruction in the
136     /// specified MachineBasicBlock.
137     unsigned getMBBEndIdx(MachineBasicBlock *MBB) const {
138       return getMBBEndIdx(MBB->getNumber());
139     }
140     unsigned getMBBEndIdx(unsigned MBBNo) const {
141       assert(MBBNo < MBB2IdxMap.size() && "Invalid MBB number!");
142       return MBB2IdxMap[MBBNo].second;
143     }
144
145     /// getInstructionIndex - returns the base index of instr
146     unsigned getInstructionIndex(MachineInstr* instr) const {
147       Mi2IndexMap::const_iterator it = mi2iMap_.find(instr);
148       assert(it != mi2iMap_.end() && "Invalid instruction!");
149       return it->second;
150     }
151
152     /// getInstructionFromIndex - given an index in any slot of an
153     /// instruction return a pointer the instruction
154     MachineInstr* getInstructionFromIndex(unsigned index) const {
155       index /= InstrSlots::NUM; // convert index to vector index
156       assert(index < i2miMap_.size() &&
157              "index does not correspond to an instruction");
158       return i2miMap_[index];
159     }
160
161     // Interval creation
162
163     LiveInterval &getOrCreateInterval(unsigned reg) {
164       Reg2IntervalMap::iterator I = r2iMap_.find(reg);
165       if (I == r2iMap_.end())
166         I = r2iMap_.insert(I, std::make_pair(reg, createInterval(reg)));
167       return I->second;
168     }
169
170     std::vector<LiveInterval*> addIntervalsForSpills(const LiveInterval& i,
171                                                  VirtRegMap& vrm, unsigned reg);
172
173     // Interval removal
174
175     void removeInterval(unsigned Reg) {
176       r2iMap_.erase(Reg);
177     }
178
179     /// isRemoved - returns true if the specified machine instr has been
180     /// removed.
181     bool isRemoved(MachineInstr* instr) const {
182       return !mi2iMap_.count(instr);
183     }
184
185     /// RemoveMachineInstrFromMaps - This marks the specified machine instr as
186     /// deleted.
187     void RemoveMachineInstrFromMaps(MachineInstr *MI) {
188       // remove index -> MachineInstr and
189       // MachineInstr -> index mappings
190       Mi2IndexMap::iterator mi2i = mi2iMap_.find(MI);
191       if (mi2i != mi2iMap_.end()) {
192         i2miMap_[mi2i->second/InstrSlots::NUM] = 0;
193         mi2iMap_.erase(mi2i);
194       }
195     }
196
197     BumpPtrAllocator& getVNInfoAllocator() { return VNInfoAllocator; }
198
199     virtual void getAnalysisUsage(AnalysisUsage &AU) const;
200     virtual void releaseMemory();
201
202     /// runOnMachineFunction - pass entry point
203     virtual bool runOnMachineFunction(MachineFunction&);
204
205     /// print - Implement the dump method.
206     virtual void print(std::ostream &O, const Module* = 0) const;
207     void print(std::ostream *O, const Module* M = 0) const {
208       if (O) print(*O, M);
209     }
210
211   private:      
212     /// computeIntervals - Compute live intervals.
213     void computeIntervals();
214     
215     /// handleRegisterDef - update intervals for a register def
216     /// (calls handlePhysicalRegisterDef and
217     /// handleVirtualRegisterDef)
218     void handleRegisterDef(MachineBasicBlock *MBB,
219                            MachineBasicBlock::iterator MI, unsigned MIIdx,
220                            unsigned reg);
221
222     /// handleVirtualRegisterDef - update intervals for a virtual
223     /// register def
224     void handleVirtualRegisterDef(MachineBasicBlock *MBB,
225                                   MachineBasicBlock::iterator MI,
226                                   unsigned MIIdx,
227                                   LiveInterval& interval);
228
229     /// handlePhysicalRegisterDef - update intervals for a physical register
230     /// def.
231     void handlePhysicalRegisterDef(MachineBasicBlock* mbb,
232                                    MachineBasicBlock::iterator mi,
233                                    unsigned MIIdx,
234                                    LiveInterval &interval,
235                                    unsigned SrcReg);
236
237     /// handleLiveInRegister - Create interval for a livein register.
238     void handleLiveInRegister(MachineBasicBlock* mbb,
239                               unsigned MIIdx,
240                               LiveInterval &interval, bool isAlias = false);
241
242     /// isReMaterializable - Returns true if the definition MI of the specified
243     /// val# of the specified interval is re-materializable.
244     bool isReMaterializable(const LiveInterval &li, const VNInfo *ValNo,
245                             MachineInstr *MI);
246
247     /// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
248     /// slot / to reg or any rematerialized load into ith operand of specified
249     /// MI. If it is successul, MI is updated with the newly created MI and
250     /// returns true.
251     bool tryFoldMemoryOperand(MachineInstr* &MI, VirtRegMap &vrm,
252                               MachineInstr *DefMI, unsigned index, unsigned i,
253                               bool isSS, int slot, unsigned reg);
254
255     static LiveInterval createInterval(unsigned Reg);
256
257     void printRegName(unsigned reg) const;
258   };
259
260 } // End llvm namespace
261
262 #endif