blob: 5c19107e1c8caf232f13eef7e9fa122db61f732b [file] [log] [blame]
Chris Lattnera3b8b5c2004-07-23 17:56:30 +00001//===-- LiveIntervalAnalysis.h - Live Interval Analysis ---------*- C++ -*-===//
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00002//
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//
Chris Lattner6b929062004-07-19 02:13:59 +000010// 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).
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000017//
18//===----------------------------------------------------------------------===//
19
Chris Lattnera3b8b5c2004-07-23 17:56:30 +000020#ifndef LLVM_CODEGEN_LIVEINTERVAL_ANALYSIS_H
21#define LLVM_CODEGEN_LIVEINTERVAL_ANALYSIS_H
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000022
Alkis Evlogimenos5d0d1e32004-09-08 03:01:50 +000023#include "llvm/ADT/DenseMap.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000024#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattner779a6512005-09-21 04:18:25 +000025#include "llvm/CodeGen/LiveInterval.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000026
27namespace llvm {
28
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000029 class LiveVariables;
30 class MRegisterInfo;
Chris Lattnerf768bba2005-03-09 23:05:19 +000031 class TargetInstrInfo;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000032 class VirtRegMap;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000033
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000034 class LiveIntervals : public MachineFunctionPass {
35 MachineFunction* mf_;
36 const TargetMachine* tm_;
37 const MRegisterInfo* mri_;
Chris Lattnerf768bba2005-03-09 23:05:19 +000038 const TargetInstrInfo* tii_;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000039 LiveVariables* lv_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000040
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000041 typedef std::map<MachineInstr*, unsigned> Mi2IndexMap;
42 Mi2IndexMap mi2iMap_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000043
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000044 typedef std::vector<MachineInstr*> Index2MiMap;
45 Index2MiMap i2miMap_;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +000046
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000047 typedef std::map<unsigned, LiveInterval> Reg2IntervalMap;
48 Reg2IntervalMap r2iMap_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000049
Alkis Evlogimenos5d0d1e32004-09-08 03:01:50 +000050 typedef DenseMap<unsigned> Reg2RegMap;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000051 Reg2RegMap r2rMap_;
Alkis Evlogimenose88280a2004-01-22 23:08:45 +000052
Alkis Evlogimenos53278012004-08-26 22:22:38 +000053 std::vector<bool> allocatableRegs_;
54
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000055 public:
Chris Lattnerf7da2c72006-08-24 22:43:55 +000056 struct CopyRec {
57 MachineInstr *MI;
58 unsigned SrcReg, DstReg;
59 };
60 CopyRec getCopyRec(MachineInstr *MI, unsigned SrcReg, unsigned DstReg) {
61 CopyRec R;
62 R.MI = MI;
63 R.SrcReg = SrcReg;
64 R.DstReg = DstReg;
65 return R;
66 }
67 struct InstrSlots {
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000068 enum {
69 LOAD = 0,
70 USE = 1,
71 DEF = 2,
72 STORE = 3,
Chris Lattner410354f2006-02-22 16:23:43 +000073 NUM = 4
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000074 };
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000075 };
76
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000077 static unsigned getBaseIndex(unsigned index) {
78 return index - (index % InstrSlots::NUM);
79 }
80 static unsigned getBoundaryIndex(unsigned index) {
81 return getBaseIndex(index + InstrSlots::NUM - 1);
82 }
83 static unsigned getLoadIndex(unsigned index) {
84 return getBaseIndex(index) + InstrSlots::LOAD;
85 }
86 static unsigned getUseIndex(unsigned index) {
87 return getBaseIndex(index) + InstrSlots::USE;
88 }
89 static unsigned getDefIndex(unsigned index) {
90 return getBaseIndex(index) + InstrSlots::DEF;
91 }
92 static unsigned getStoreIndex(unsigned index) {
93 return getBaseIndex(index) + InstrSlots::STORE;
94 }
95
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000096 typedef Reg2IntervalMap::iterator iterator;
Chris Lattner70ca3582004-09-30 15:59:17 +000097 typedef Reg2IntervalMap::const_iterator const_iterator;
98 const_iterator begin() const { return r2iMap_.begin(); }
99 const_iterator end() const { return r2iMap_.end(); }
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000100 iterator begin() { return r2iMap_.begin(); }
101 iterator end() { return r2iMap_.end(); }
102 unsigned getNumIntervals() const { return r2iMap_.size(); }
103
104 LiveInterval &getInterval(unsigned reg) {
105 Reg2IntervalMap::iterator I = r2iMap_.find(reg);
106 assert(I != r2iMap_.end() && "Interval does not exist for register");
107 return I->second;
108 }
109
110 const LiveInterval &getInterval(unsigned reg) const {
111 Reg2IntervalMap::const_iterator I = r2iMap_.find(reg);
112 assert(I != r2iMap_.end() && "Interval does not exist for register");
113 return I->second;
114 }
115
116 /// getInstructionIndex - returns the base index of instr
117 unsigned getInstructionIndex(MachineInstr* instr) const {
118 Mi2IndexMap::const_iterator it = mi2iMap_.find(instr);
119 assert(it != mi2iMap_.end() && "Invalid instruction!");
120 return it->second;
121 }
122
123 /// getInstructionFromIndex - given an index in any slot of an
124 /// instruction return a pointer the instruction
125 MachineInstr* getInstructionFromIndex(unsigned index) const {
126 index /= InstrSlots::NUM; // convert index to vector index
127 assert(index < i2miMap_.size() &&
128 "index does not correspond to an instruction");
129 return i2miMap_[index];
130 }
131
132 std::vector<LiveInterval*> addIntervalsForSpills(const LiveInterval& i,
133 VirtRegMap& vrm,
134 int slot);
135
136 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
137 virtual void releaseMemory();
138
139 /// runOnMachineFunction - pass entry point
140 virtual bool runOnMachineFunction(MachineFunction&);
141
Chris Lattner70ca3582004-09-30 15:59:17 +0000142 /// print - Implement the dump method.
Reid Spencerce9653c2004-12-07 04:03:45 +0000143 virtual void print(std::ostream &O, const Module* = 0) const;
Chris Lattner70ca3582004-09-30 15:59:17 +0000144
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000145 private:
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000146 /// RemoveMachineInstrFromMaps - This marks the specified machine instr as
147 /// deleted.
148 void RemoveMachineInstrFromMaps(MachineInstr *MI) {
149 // remove index -> MachineInstr and
150 // MachineInstr -> index mappings
151 Mi2IndexMap::iterator mi2i = mi2iMap_.find(MI);
152 if (mi2i != mi2iMap_.end()) {
153 i2miMap_[mi2i->second/InstrSlots::NUM] = 0;
154 mi2iMap_.erase(mi2i);
155 }
156 }
157
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000158 /// computeIntervals - compute live intervals
159 void computeIntervals();
160
161 /// joinIntervals - join compatible live intervals
162 void joinIntervals();
163
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000164 /// CopyCoallesceInMBB - Coallsece copies in the specified MBB, putting
165 /// copies that cannot yet be coallesced into the "TryAgain" list.
166 void CopyCoallesceInMBB(MachineBasicBlock *MBB,
167 std::vector<CopyRec> &TryAgain);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000168
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000169 /// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
170 /// which are the src/dst of the copy instruction CopyMI. This returns true
171 /// if the copy was successfully coallesced away, or if it is never possible
172 /// to coallesce these this copy, due to register constraints. It returns
173 /// false if it is not currently possible to coallesce this interval, but
174 /// it may be possible if other things get coallesced.
175 bool JoinCopy(MachineInstr *CopyMI, unsigned SrcReg, unsigned DstReg);
176
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000177 /// handleRegisterDef - update intervals for a register def
178 /// (calls handlePhysicalRegisterDef and
179 /// handleVirtualRegisterDef)
180 void handleRegisterDef(MachineBasicBlock* mbb,
181 MachineBasicBlock::iterator mi,
Chris Lattnerf38a05d2006-01-29 07:59:37 +0000182 unsigned reg);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000183
184 /// handleVirtualRegisterDef - update intervals for a virtual
185 /// register def
186 void handleVirtualRegisterDef(MachineBasicBlock* mbb,
187 MachineBasicBlock::iterator mi,
188 LiveInterval& interval);
189
Chris Lattnerf768bba2005-03-09 23:05:19 +0000190 /// handlePhysicalRegisterDef - update intervals for a physical register
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000191 /// def.
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000192 void handlePhysicalRegisterDef(MachineBasicBlock* mbb,
193 MachineBasicBlock::iterator mi,
Chris Lattnerf768bba2005-03-09 23:05:19 +0000194 LiveInterval& interval,
Chris Lattner5ab6f5f2005-09-02 00:20:32 +0000195 bool isLiveIn = false);
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000196
Evan Cheng647c15e2006-05-12 06:06:34 +0000197 /// Return true if the two specified registers belong to different
198 /// register classes. The registers may be either phys or virt regs.
199 bool differingRegisterClasses(unsigned RegA, unsigned RegB) const;
200
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000201
Chris Lattnerf7da2c72006-08-24 22:43:55 +0000202 bool AdjustCopiesBackFrom(LiveInterval &IntA, LiveInterval &IntB,
203 MachineInstr *CopyMI, unsigned CopyIdx);
Chris Lattner09d3b752005-10-21 15:49:28 +0000204
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000205 bool overlapsAliases(const LiveInterval *lhs,
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000206 const LiveInterval *rhs) const;
207
208 static LiveInterval createInterval(unsigned Reg);
209
210 LiveInterval &getOrCreateInterval(unsigned reg) {
211 Reg2IntervalMap::iterator I = r2iMap_.find(reg);
212 if (I == r2iMap_.end())
213 I = r2iMap_.insert(I, std::make_pair(reg, createInterval(reg)));
214 return I->second;
215 }
216
217 /// rep - returns the representative of this register
Alkis Evlogimenos5d0d1e32004-09-08 03:01:50 +0000218 unsigned rep(unsigned Reg) {
219 unsigned Rep = r2rMap_[Reg];
220 if (Rep)
221 return r2rMap_[Reg] = rep(Rep);
222 return Reg;
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000223 }
224
225 void printRegName(unsigned reg) const;
226 };
227
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000228} // End llvm namespace
229
230#endif