blob: 37b64571aa6748aa9bfb73d2c80a373960182139 [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
23#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerfb449b92004-07-23 17:49:16 +000024#include "LiveInterval.h"
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000025
26namespace llvm {
27
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000028 class LiveVariables;
29 class MRegisterInfo;
30 class VirtRegMap;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000031
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000032 class LiveIntervals : public MachineFunctionPass {
33 MachineFunction* mf_;
34 const TargetMachine* tm_;
35 const MRegisterInfo* mri_;
36 LiveVariables* lv_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000037
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000038 typedef std::map<MachineInstr*, unsigned> Mi2IndexMap;
39 Mi2IndexMap mi2iMap_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000040
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000041 typedef std::vector<MachineInstr*> Index2MiMap;
42 Index2MiMap i2miMap_;
Alkis Evlogimenos843b1602004-02-15 10:24:21 +000043
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000044 typedef std::map<unsigned, LiveInterval> Reg2IntervalMap;
45 Reg2IntervalMap r2iMap_;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000046
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000047 typedef std::map<unsigned, unsigned> Reg2RegMap;
48 Reg2RegMap r2rMap_;
Alkis Evlogimenose88280a2004-01-22 23:08:45 +000049
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000050 public:
51 struct InstrSlots
52 {
53 enum {
54 LOAD = 0,
55 USE = 1,
56 DEF = 2,
57 STORE = 3,
58 NUM = 4,
59 };
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000060 };
61
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +000062 static unsigned getBaseIndex(unsigned index) {
63 return index - (index % InstrSlots::NUM);
64 }
65 static unsigned getBoundaryIndex(unsigned index) {
66 return getBaseIndex(index + InstrSlots::NUM - 1);
67 }
68 static unsigned getLoadIndex(unsigned index) {
69 return getBaseIndex(index) + InstrSlots::LOAD;
70 }
71 static unsigned getUseIndex(unsigned index) {
72 return getBaseIndex(index) + InstrSlots::USE;
73 }
74 static unsigned getDefIndex(unsigned index) {
75 return getBaseIndex(index) + InstrSlots::DEF;
76 }
77 static unsigned getStoreIndex(unsigned index) {
78 return getBaseIndex(index) + InstrSlots::STORE;
79 }
80
81 // FIXME: this should really be a const_iterator
82 typedef Reg2IntervalMap::iterator iterator;
83 iterator begin() { return r2iMap_.begin(); }
84 iterator end() { return r2iMap_.end(); }
85 unsigned getNumIntervals() const { return r2iMap_.size(); }
86
87 LiveInterval &getInterval(unsigned reg) {
88 Reg2IntervalMap::iterator I = r2iMap_.find(reg);
89 assert(I != r2iMap_.end() && "Interval does not exist for register");
90 return I->second;
91 }
92
93 const LiveInterval &getInterval(unsigned reg) const {
94 Reg2IntervalMap::const_iterator I = r2iMap_.find(reg);
95 assert(I != r2iMap_.end() && "Interval does not exist for register");
96 return I->second;
97 }
98
99 /// getInstructionIndex - returns the base index of instr
100 unsigned getInstructionIndex(MachineInstr* instr) const {
101 Mi2IndexMap::const_iterator it = mi2iMap_.find(instr);
102 assert(it != mi2iMap_.end() && "Invalid instruction!");
103 return it->second;
104 }
105
106 /// getInstructionFromIndex - given an index in any slot of an
107 /// instruction return a pointer the instruction
108 MachineInstr* getInstructionFromIndex(unsigned index) const {
109 index /= InstrSlots::NUM; // convert index to vector index
110 assert(index < i2miMap_.size() &&
111 "index does not correspond to an instruction");
112 return i2miMap_[index];
113 }
114
115 std::vector<LiveInterval*> addIntervalsForSpills(const LiveInterval& i,
116 VirtRegMap& vrm,
117 int slot);
118
119 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
120 virtual void releaseMemory();
121
122 /// runOnMachineFunction - pass entry point
123 virtual bool runOnMachineFunction(MachineFunction&);
124
125 private:
126 /// computeIntervals - compute live intervals
127 void computeIntervals();
128
129 /// joinIntervals - join compatible live intervals
130 void joinIntervals();
131
132 /// joinIntervalsInMachineBB - Join intervals based on move
133 /// instructions in the specified basic block.
134 void joinIntervalsInMachineBB(MachineBasicBlock *MBB);
135
136 /// handleRegisterDef - update intervals for a register def
137 /// (calls handlePhysicalRegisterDef and
138 /// handleVirtualRegisterDef)
139 void handleRegisterDef(MachineBasicBlock* mbb,
140 MachineBasicBlock::iterator mi,
141 unsigned reg);
142
143 /// handleVirtualRegisterDef - update intervals for a virtual
144 /// register def
145 void handleVirtualRegisterDef(MachineBasicBlock* mbb,
146 MachineBasicBlock::iterator mi,
147 LiveInterval& interval);
148
149 /// handlePhysicalRegisterDef - update intervals for a
150 /// physical register def
151 void handlePhysicalRegisterDef(MachineBasicBlock* mbb,
152 MachineBasicBlock::iterator mi,
153 LiveInterval& interval);
154
155 /// Return true if the two specified registers belong to different
156 /// register classes. The registers may be either phys or virt regs.
157 bool differingRegisterClasses(unsigned RegA, unsigned RegB) const;
158
Alkis Evlogimenos70651572004-08-04 09:46:56 +0000159 bool overlapsAliases(const LiveInterval *lhs,
Alkis Evlogimenos1a8ea012004-08-04 09:46:26 +0000160 const LiveInterval *rhs) const;
161
162 static LiveInterval createInterval(unsigned Reg);
163
164 LiveInterval &getOrCreateInterval(unsigned reg) {
165 Reg2IntervalMap::iterator I = r2iMap_.find(reg);
166 if (I == r2iMap_.end())
167 I = r2iMap_.insert(I, std::make_pair(reg, createInterval(reg)));
168 return I->second;
169 }
170
171 /// rep - returns the representative of this register
172 unsigned rep(unsigned reg) {
173 Reg2RegMap::iterator it = r2rMap_.find(reg);
174 if (it != r2rMap_.end())
175 return it->second = rep(it->second);
176 return reg;
177 }
178
179 void printRegName(unsigned reg) const;
180 };
181
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000182} // End llvm namespace
183
184#endif