blob: ee28cf6bd81c70e2f01cb3dda109bca42428555a [file] [log] [blame]
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +00001//===-- llvm/CodeGen/LiveInterval.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
11// numbering of each the machine instructions (in this implemention
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000012// depth-first order) an interval [i, j) is said to be a live interval
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000013// for register v if there is no instruction with number j' > j such
14// that v is live at j' abd there is no instruction with number i' < i
15// such that v is live at i'. In this implementation intervals can
Alkis Evlogimenos08cec002004-01-31 19:59:32 +000016// have holes, i.e. an interval might look like [1,20), [50,65),
17// [1000,1001)
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000018//
19//===----------------------------------------------------------------------===//
20
21#ifndef LLVM_CODEGEN_LIVEINTERVALS_H
22#define LLVM_CODEGEN_LIVEINTERVALS_H
23
24#include "llvm/CodeGen/MachineFunctionPass.h"
Alkis Evlogimenosf5f16892004-01-16 16:06:59 +000025#include <list>
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000026
27namespace llvm {
28
29 class LiveVariables;
30 class MRegisterInfo;
Alkis Evlogimenos5f375022004-03-01 20:05:10 +000031 class VirtRegMap;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000032
33 class LiveIntervals : public MachineFunctionPass
34 {
35 public:
36 struct Interval {
37 typedef std::pair<unsigned, unsigned> Range;
38 typedef std::vector<Range> Ranges;
39 unsigned reg; // the register of this interval
Alkis Evlogimenos6b4edba2003-12-21 20:19:10 +000040 float weight; // weight of this interval (number of uses
41 // * 10^loopDepth)
Alkis Evlogimenose88280a2004-01-22 23:08:45 +000042 Ranges ranges; // the ranges in which this register is live
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +000043 Interval(unsigned r);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000044
Alkis Evlogimenos7093d372004-02-17 05:14:37 +000045 bool empty() const { return ranges.empty(); }
46
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +000047 bool spilled() const;
48
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000049 unsigned start() const {
Alkis Evlogimenos7093d372004-02-17 05:14:37 +000050 assert(!empty() && "empty interval for register");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000051 return ranges.front().first;
52 }
53
54 unsigned end() const {
Alkis Evlogimenos7093d372004-02-17 05:14:37 +000055 assert(!empty() && "empty interval for register");
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000056 return ranges.back().second;
57 }
58
Alkis Evlogimenos485ec3c2003-12-18 08:56:11 +000059 bool expiredAt(unsigned index) const {
Alkis Evlogimenos3b02cbe2004-01-16 20:17:05 +000060 return end() <= (index + 1);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000061 }
62
Alkis Evlogimenos169cfd02003-12-21 05:43:40 +000063 bool liveAt(unsigned index) const;
64
65 bool overlaps(const Interval& other) const;
66
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +000067 void addRange(unsigned start, unsigned end);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000068
Alkis Evlogimenose88280a2004-01-22 23:08:45 +000069 void join(const Interval& other);
Alkis Evlogimenosdd2cc652003-12-18 08:48:48 +000070
Alkis Evlogimenose88280a2004-01-22 23:08:45 +000071 private:
72 Ranges::iterator mergeRangesForward(Ranges::iterator it);
73
74 Ranges::iterator mergeRangesBackward(Ranges::iterator it);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000075 };
76
77 struct StartPointComp {
78 bool operator()(const Interval& lhs, const Interval& rhs) {
79 return lhs.ranges.front().first < rhs.ranges.front().first;
80 }
81 };
82
83 struct EndPointComp {
84 bool operator()(const Interval& lhs, const Interval& rhs) {
85 return lhs.ranges.back().second < rhs.ranges.back().second;
86 }
87 };
88
Alkis Evlogimenosf5f16892004-01-16 16:06:59 +000089 typedef std::list<Interval> Intervals;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000090
91 private:
92 MachineFunction* mf_;
93 const TargetMachine* tm_;
94 const MRegisterInfo* mri_;
95 MachineBasicBlock* currentMbb_;
96 MachineBasicBlock::iterator currentInstr_;
97 LiveVariables* lv_;
98
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +000099 typedef std::map<unsigned, MachineBasicBlock*> MbbIndex2MbbMap;
100 MbbIndex2MbbMap mbbi2mbbMap_;
101
102 typedef std::map<MachineInstr*, unsigned> Mi2IndexMap;
103 Mi2IndexMap mi2iMap_;
104
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000105 typedef std::vector<MachineInstr*> Index2MiMap;
106 Index2MiMap i2miMap_;
107
Alkis Evlogimenosf5f16892004-01-16 16:06:59 +0000108 typedef std::map<unsigned, Intervals::iterator> Reg2IntervalMap;
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000109 Reg2IntervalMap r2iMap_;
110
Alkis Evlogimenos52f8f562004-02-18 23:14:52 +0000111 typedef std::map<unsigned, unsigned> Reg2RegMap;
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000112 Reg2RegMap r2rMap_;
113
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000114 Intervals intervals_;
115
116 public:
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000117 struct InstrSlots
118 {
119 enum {
120 LOAD = 0,
121 USE = 1,
122 DEF = 2,
123 STORE = 3,
124 NUM = 4,
125 };
126 };
127
128 static unsigned getBaseIndex(unsigned index) {
Alkis Evlogimenos7200c6b2004-02-22 04:05:13 +0000129 return index - (index % InstrSlots::NUM);
130 }
131 static unsigned getBoundaryIndex(unsigned index) {
132 return getBaseIndex(index + InstrSlots::NUM - 1);
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000133 }
134 static unsigned getLoadIndex(unsigned index) {
135 return getBaseIndex(index) + InstrSlots::LOAD;
136 }
137 static unsigned getUseIndex(unsigned index) {
138 return getBaseIndex(index) + InstrSlots::USE;
139 }
140 static unsigned getDefIndex(unsigned index) {
141 return getBaseIndex(index) + InstrSlots::DEF;
142 }
143 static unsigned getStoreIndex(unsigned index) {
144 return getBaseIndex(index) + InstrSlots::STORE;
145 }
146
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000147 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Alkis Evlogimenos08cec002004-01-31 19:59:32 +0000148 virtual void releaseMemory();
149
150 /// runOnMachineFunction - pass entry point
151 virtual bool runOnMachineFunction(MachineFunction&);
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000152
Alkis Evlogimenos52f8f562004-02-18 23:14:52 +0000153 Interval& getInterval(unsigned reg) {
154 assert(r2iMap_.count(reg)&& "Interval does not exist for register");
155 return *r2iMap_.find(reg)->second;
156 }
157
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000158 /// getInstructionIndex - returns the base index of instr
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000159 unsigned getInstructionIndex(MachineInstr* instr) const;
160
Alkis Evlogimenos39a0d5c2004-02-20 06:15:40 +0000161 /// getInstructionFromIndex - given an index in any slot of an
162 /// instruction return a pointer the instruction
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000163 MachineInstr* getInstructionFromIndex(unsigned index) const;
164
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000165 Intervals& getIntervals() { return intervals_; }
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000166
Alkis Evlogimenos5f375022004-03-01 20:05:10 +0000167 void updateSpilledInterval(Interval& i, VirtRegMap& vrm, int slot);
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000168
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000169 private:
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000170 /// computeIntervals - compute live intervals
171 void computeIntervals();
172
Alkis Evlogimenose88280a2004-01-22 23:08:45 +0000173 /// joinIntervals - join compatible live intervals
174 void joinIntervals();
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000175
176 /// handleRegisterDef - update intervals for a register def
177 /// (calls handlePhysicalRegisterDef and
178 /// handleVirtualRegisterDef)
179 void handleRegisterDef(MachineBasicBlock* mbb,
180 MachineBasicBlock::iterator mi,
181 unsigned reg);
182
183 /// handleVirtualRegisterDef - update intervals for a virtual
184 /// register def
185 void handleVirtualRegisterDef(MachineBasicBlock* mbb,
186 MachineBasicBlock::iterator mi,
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000187 Interval& interval);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000188
189 /// handlePhysicalRegisterDef - update intervals for a
190 /// physical register def
191 void handlePhysicalRegisterDef(MachineBasicBlock* mbb,
192 MachineBasicBlock::iterator mi,
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000193 Interval& interval);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000194
Alkis Evlogimenos79b0c3f2004-01-23 13:37:51 +0000195 bool overlapsAliases(const Interval& lhs, const Interval& rhs) const;
196
Alkis Evlogimenos9a8b4902004-04-09 18:07:57 +0000197
198 Interval& getOrCreateInterval(unsigned reg);
199
Alkis Evlogimenos843b1602004-02-15 10:24:21 +0000200 /// rep - returns the representative of this register
201 unsigned rep(unsigned reg);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000202
203 void printRegName(unsigned reg) const;
204 };
205
206 inline bool operator==(const LiveIntervals::Interval& lhs,
207 const LiveIntervals::Interval& rhs) {
208 return lhs.reg == rhs.reg;
209 }
210
Alkis Evlogimenosb27ef242003-12-05 10:38:28 +0000211 std::ostream& operator<<(std::ostream& os,
212 const LiveIntervals::Interval& li);
Alkis Evlogimenosff0cbe12003-11-20 03:32:25 +0000213
214} // End llvm namespace
215
216#endif