blob: 3b8c3621a9828ee4f6f6a72dc0685f4c19146e89 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- llvm/CodeGen/VirtRegMap.h - Virtual Register Map -*- C++ -*--------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a virtual register map. This maps virtual registers to
11// physical registers and virtual registers to stack slots. It is created and
12// updated by a register allocator and then used by a machine code rewriter that
13// adds spill code and rewrites virtual into physical register references.
14//
15//===----------------------------------------------------------------------===//
16
17#ifndef LLVM_CODEGEN_VIRTREGMAP_H
18#define LLVM_CODEGEN_VIRTREGMAP_H
19
20#include "llvm/Target/MRegisterInfo.h"
Evan Chengcecc8222007-11-17 00:40:40 +000021#include "llvm/ADT/DenseMap.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/ADT/IndexedMap.h"
23#include "llvm/Support/Streams.h"
24#include <map>
25
26namespace llvm {
27 class MachineInstr;
David Greene44a3bfb2007-08-07 16:34:05 +000028 class MachineFunction;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029 class TargetInstrInfo;
30
31 class VirtRegMap {
32 public:
33 enum {
34 NO_PHYS_REG = 0,
35 NO_STACK_SLOT = (1L << 30)-1,
36 MAX_STACK_SLOT = (1L << 18)-1
37 };
38
39 enum ModRef { isRef = 1, isMod = 2, isModRef = 3 };
40 typedef std::multimap<MachineInstr*,
41 std::pair<unsigned, ModRef> > MI2VirtMapTy;
42
43 private:
44 const TargetInstrInfo &TII;
45
46 MachineFunction &MF;
47 /// Virt2PhysMap - This is a virtual to physical register
48 /// mapping. Each virtual register is required to have an entry in
49 /// it; even spilled virtual registers (the register mapped to a
50 /// spilled register is the temporary used to load it from the
51 /// stack).
52 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysMap;
Evan Chengcecc8222007-11-17 00:40:40 +000053
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054 /// Virt2StackSlotMap - This is virtual register to stack slot
55 /// mapping. Each spilled virtual register has an entry in it
56 /// which corresponds to the stack slot this register is spilled
57 /// at.
58 IndexedMap<int, VirtReg2IndexFunctor> Virt2StackSlotMap;
Evan Chengcecc8222007-11-17 00:40:40 +000059
60 /// Virt2StackSlotMap - This is virtual register to rematerialization id
61 /// mapping. Each spilled virtual register that should be remat'd has an
62 /// entry in it which corresponds to the remat id.
Evan Cheng1204d172007-08-13 23:45:17 +000063 IndexedMap<int, VirtReg2IndexFunctor> Virt2ReMatIdMap;
Evan Chengcecc8222007-11-17 00:40:40 +000064
65 /// Virt2SplitMap - This is virtual register to splitted virtual register
66 /// mapping.
67 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2SplitMap;
68
Evan Cheng6f522672007-12-05 09:51:10 +000069 /// Virt2SplitKillMap - This is splitted virtual register to its last use
Evan Chengd9731042007-12-05 10:24:35 +000070 /// (kill) index mapping.
71 IndexedMap<unsigned> Virt2SplitKillMap;
Evan Cheng6f522672007-12-05 09:51:10 +000072
Evan Chengcecc8222007-11-17 00:40:40 +000073 /// ReMatMap - This is virtual register to re-materialized instruction
74 /// mapping. Each virtual register whose definition is going to be
75 /// re-materialized has an entry in it.
76 IndexedMap<MachineInstr*, VirtReg2IndexFunctor> ReMatMap;
77
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 /// MI2VirtMap - This is MachineInstr to virtual register
79 /// mapping. In the case of memory spill code being folded into
80 /// instructions, we need to know which virtual register was
81 /// read/written by this instruction.
82 MI2VirtMapTy MI2VirtMap;
83
Evan Chengcecc8222007-11-17 00:40:40 +000084 /// SpillPt2VirtMap - This records the virtual registers which should
85 /// be spilled right after the MachineInstr due to live interval
86 /// splitting.
Evan Chenged17a892007-12-05 08:16:32 +000087 std::map<MachineInstr*, std::vector<std::pair<unsigned,bool> > >
88 SpillPt2VirtMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089
Evan Cheng96c61312007-11-29 01:06:25 +000090 /// RestorePt2VirtMap - This records the virtual registers which should
91 /// be restored right before the MachineInstr due to live interval
92 /// splitting.
93 std::map<MachineInstr*, std::vector<unsigned> > RestorePt2VirtMap;
94
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 /// ReMatId - Instead of assigning a stack slot to a to be rematerialized
96 /// virtual register, an unique id is being assigned. This keeps track of
97 /// the highest id used so far. Note, this starts at (1<<18) to avoid
98 /// conflicts with stack slot numbers.
99 int ReMatId;
100
101 VirtRegMap(const VirtRegMap&); // DO NOT IMPLEMENT
102 void operator=(const VirtRegMap&); // DO NOT IMPLEMENT
103
104 public:
Dan Gohman3a78bbf2007-08-02 21:21:54 +0000105 explicit VirtRegMap(MachineFunction &mf);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106
107 void grow();
108
109 /// @brief returns true if the specified virtual register is
110 /// mapped to a physical register
111 bool hasPhys(unsigned virtReg) const {
112 return getPhys(virtReg) != NO_PHYS_REG;
113 }
114
115 /// @brief returns the physical register mapped to the specified
116 /// virtual register
117 unsigned getPhys(unsigned virtReg) const {
118 assert(MRegisterInfo::isVirtualRegister(virtReg));
119 return Virt2PhysMap[virtReg];
120 }
121
122 /// @brief creates a mapping for the specified virtual register to
123 /// the specified physical register
124 void assignVirt2Phys(unsigned virtReg, unsigned physReg) {
125 assert(MRegisterInfo::isVirtualRegister(virtReg) &&
126 MRegisterInfo::isPhysicalRegister(physReg));
127 assert(Virt2PhysMap[virtReg] == NO_PHYS_REG &&
128 "attempt to assign physical register to already mapped "
129 "virtual register");
130 Virt2PhysMap[virtReg] = physReg;
131 }
132
133 /// @brief clears the specified virtual register's, physical
134 /// register mapping
135 void clearVirt(unsigned virtReg) {
136 assert(MRegisterInfo::isVirtualRegister(virtReg));
137 assert(Virt2PhysMap[virtReg] != NO_PHYS_REG &&
138 "attempt to clear a not assigned virtual register");
139 Virt2PhysMap[virtReg] = NO_PHYS_REG;
140 }
141
142 /// @brief clears all virtual to physical register mappings
143 void clearAllVirt() {
144 Virt2PhysMap.clear();
145 grow();
146 }
147
Evan Chengcecc8222007-11-17 00:40:40 +0000148 /// @brief records virtReg is a split live interval from SReg.
149 void setIsSplitFromReg(unsigned virtReg, unsigned SReg) {
150 Virt2SplitMap[virtReg] = SReg;
151 }
152
153 /// @brief returns the live interval virtReg is split from.
154 unsigned getPreSplitReg(unsigned virtReg) {
155 return Virt2SplitMap[virtReg];
156 }
157
Evan Cheng1204d172007-08-13 23:45:17 +0000158 /// @brief returns true is the specified virtual register is not
159 /// mapped to a stack slot or rematerialized.
160 bool isAssignedReg(unsigned virtReg) const {
Evan Chengcecc8222007-11-17 00:40:40 +0000161 if (getStackSlot(virtReg) == NO_STACK_SLOT &&
162 getReMatId(virtReg) == NO_STACK_SLOT)
163 return true;
164 // Split register can be assigned a physical register as well as a
165 // stack slot or remat id.
166 return (Virt2SplitMap[virtReg] && Virt2PhysMap[virtReg] != NO_PHYS_REG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 }
168
169 /// @brief returns the stack slot mapped to the specified virtual
170 /// register
171 int getStackSlot(unsigned virtReg) const {
172 assert(MRegisterInfo::isVirtualRegister(virtReg));
173 return Virt2StackSlotMap[virtReg];
174 }
175
Evan Cheng1204d172007-08-13 23:45:17 +0000176 /// @brief returns the rematerialization id mapped to the specified virtual
177 /// register
178 int getReMatId(unsigned virtReg) const {
179 assert(MRegisterInfo::isVirtualRegister(virtReg));
180 return Virt2ReMatIdMap[virtReg];
181 }
182
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 /// @brief create a mapping for the specifed virtual register to
184 /// the next available stack slot
185 int assignVirt2StackSlot(unsigned virtReg);
186 /// @brief create a mapping for the specified virtual register to
187 /// the specified stack slot
188 void assignVirt2StackSlot(unsigned virtReg, int frameIndex);
189
190 /// @brief assign an unique re-materialization id to the specified
191 /// virtual register.
192 int assignVirtReMatId(unsigned virtReg);
Evan Cheng1204d172007-08-13 23:45:17 +0000193 /// @brief assign an unique re-materialization id to the specified
194 /// virtual register.
195 void assignVirtReMatId(unsigned virtReg, int id);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196
197 /// @brief returns true if the specified virtual register is being
198 /// re-materialized.
199 bool isReMaterialized(unsigned virtReg) const {
Evan Cheng1204d172007-08-13 23:45:17 +0000200 return ReMatMap[virtReg] != NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 }
202
203 /// @brief returns the original machine instruction being re-issued
204 /// to re-materialize the specified virtual register.
Evan Cheng1204d172007-08-13 23:45:17 +0000205 MachineInstr *getReMaterializedMI(unsigned virtReg) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 return ReMatMap[virtReg];
207 }
208
209 /// @brief records the specified virtual register will be
210 /// re-materialized and the original instruction which will be re-issed
Evan Cheng1204d172007-08-13 23:45:17 +0000211 /// for this purpose. If parameter all is true, then all uses of the
212 /// registers are rematerialized and it's safe to delete the definition.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213 void setVirtIsReMaterialized(unsigned virtReg, MachineInstr *def) {
214 ReMatMap[virtReg] = def;
215 }
216
Evan Cheng6f522672007-12-05 09:51:10 +0000217 /// @brief record the last use (kill) of a split virtual register.
Evan Chengd9731042007-12-05 10:24:35 +0000218 void addKillPoint(unsigned virtReg, unsigned index) {
219 Virt2SplitKillMap[virtReg] = index;
Evan Cheng6f522672007-12-05 09:51:10 +0000220 }
221
Evan Chengd9731042007-12-05 10:24:35 +0000222 unsigned getKillPoint(unsigned virtReg) const {
223 return Virt2SplitKillMap[virtReg];
224 }
225
226 /// @brief remove the last use (kill) of a split virtual register.
Evan Cheng6f522672007-12-05 09:51:10 +0000227 void removeKillPoint(unsigned virtReg) {
Evan Chengd9731042007-12-05 10:24:35 +0000228 Virt2SplitKillMap[virtReg] = 0;
Evan Cheng6f522672007-12-05 09:51:10 +0000229 }
230
Evan Cheng91e32d02007-11-28 01:28:46 +0000231 /// @brief returns true if the specified MachineInstr is a spill point.
232 bool isSpillPt(MachineInstr *Pt) const {
233 return SpillPt2VirtMap.find(Pt) != SpillPt2VirtMap.end();
234 }
235
Evan Chengcecc8222007-11-17 00:40:40 +0000236 /// @brief returns the virtual registers that should be spilled due to
237 /// splitting right after the specified MachineInstr.
Evan Chenged17a892007-12-05 08:16:32 +0000238 std::vector<std::pair<unsigned,bool> > &getSpillPtSpills(MachineInstr *Pt) {
Evan Chengcecc8222007-11-17 00:40:40 +0000239 return SpillPt2VirtMap[Pt];
240 }
241
242 /// @brief records the specified MachineInstr as a spill point for virtReg.
Evan Chenged17a892007-12-05 08:16:32 +0000243 void addSpillPoint(unsigned virtReg, bool isKill, MachineInstr *Pt) {
Evan Cheng91e32d02007-11-28 01:28:46 +0000244 if (SpillPt2VirtMap.find(Pt) != SpillPt2VirtMap.end())
Evan Chenged17a892007-12-05 08:16:32 +0000245 SpillPt2VirtMap[Pt].push_back(std::make_pair(virtReg, isKill));
Evan Cheng91e32d02007-11-28 01:28:46 +0000246 else {
Evan Chenged17a892007-12-05 08:16:32 +0000247 std::vector<std::pair<unsigned,bool> > Virts;
248 Virts.push_back(std::make_pair(virtReg, isKill));
Evan Cheng91e32d02007-11-28 01:28:46 +0000249 SpillPt2VirtMap.insert(std::make_pair(Pt, Virts));
250 }
Evan Chengcecc8222007-11-17 00:40:40 +0000251 }
252
253 void transferSpillPts(MachineInstr *Old, MachineInstr *New) {
Evan Chenged17a892007-12-05 08:16:32 +0000254 std::map<MachineInstr*,std::vector<std::pair<unsigned,bool> > >::iterator
255 I = SpillPt2VirtMap.find(Old);
Evan Cheng91e32d02007-11-28 01:28:46 +0000256 if (I == SpillPt2VirtMap.end())
257 return;
258 while (!I->second.empty()) {
Evan Chenged17a892007-12-05 08:16:32 +0000259 unsigned virtReg = I->second.back().first;
260 bool isKill = I->second.back().second;
Evan Cheng91e32d02007-11-28 01:28:46 +0000261 I->second.pop_back();
Evan Chenged17a892007-12-05 08:16:32 +0000262 addSpillPoint(virtReg, isKill, New);
Evan Chengcecc8222007-11-17 00:40:40 +0000263 }
Evan Cheng91e32d02007-11-28 01:28:46 +0000264 SpillPt2VirtMap.erase(I);
Evan Chengcecc8222007-11-17 00:40:40 +0000265 }
266
Evan Cheng96c61312007-11-29 01:06:25 +0000267 /// @brief returns true if the specified MachineInstr is a restore point.
268 bool isRestorePt(MachineInstr *Pt) const {
269 return RestorePt2VirtMap.find(Pt) != RestorePt2VirtMap.end();
270 }
271
272 /// @brief returns the virtual registers that should be restoreed due to
273 /// splitting right after the specified MachineInstr.
274 std::vector<unsigned> &getRestorePtRestores(MachineInstr *Pt) {
275 return RestorePt2VirtMap[Pt];
276 }
277
278 /// @brief records the specified MachineInstr as a restore point for virtReg.
279 void addRestorePoint(unsigned virtReg, MachineInstr *Pt) {
280 if (RestorePt2VirtMap.find(Pt) != RestorePt2VirtMap.end())
281 RestorePt2VirtMap[Pt].push_back(virtReg);
282 else {
283 std::vector<unsigned> Virts;
284 Virts.push_back(virtReg);
285 RestorePt2VirtMap.insert(std::make_pair(Pt, Virts));
286 }
287 }
288
289 void transferRestorePts(MachineInstr *Old, MachineInstr *New) {
290 std::map<MachineInstr*,std::vector<unsigned> >::iterator I =
291 RestorePt2VirtMap.find(Old);
292 if (I == RestorePt2VirtMap.end())
293 return;
294 while (!I->second.empty()) {
295 unsigned virtReg = I->second.back();
296 I->second.pop_back();
297 addRestorePoint(virtReg, New);
298 }
299 RestorePt2VirtMap.erase(I);
300 }
301
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302 /// @brief Updates information about the specified virtual register's value
Evan Chengfd0bd3c2007-12-02 08:30:39 +0000303 /// folded into newMI machine instruction.
304 void virtFolded(unsigned VirtReg, MachineInstr *OldMI, MachineInstr *NewMI,
305 ModRef MRInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306
Evan Chengf3255842007-10-13 02:50:24 +0000307 /// @brief Updates information about the specified virtual register's value
308 /// folded into the specified machine instruction.
309 void virtFolded(unsigned VirtReg, MachineInstr *MI, ModRef MRInfo);
310
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311 /// @brief returns the virtual registers' values folded in memory
312 /// operands of this instruction
313 std::pair<MI2VirtMapTy::const_iterator, MI2VirtMapTy::const_iterator>
314 getFoldedVirts(MachineInstr* MI) const {
315 return MI2VirtMap.equal_range(MI);
316 }
317
Evan Cheng91e32d02007-11-28 01:28:46 +0000318 /// RemoveMachineInstrFromMaps - MI is being erased, remove it from the
319 /// the folded instruction map and spill point map.
320 void RemoveMachineInstrFromMaps(MachineInstr *MI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000321 MI2VirtMap.erase(MI);
Evan Cheng91e32d02007-11-28 01:28:46 +0000322 SpillPt2VirtMap.erase(MI);
Evan Cheng96c61312007-11-29 01:06:25 +0000323 RestorePt2VirtMap.erase(MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324 }
325
326 void print(std::ostream &OS) const;
327 void print(std::ostream *OS) const { if (OS) print(*OS); }
328 void dump() const;
329 };
330
331 inline std::ostream *operator<<(std::ostream *OS, const VirtRegMap &VRM) {
332 VRM.print(OS);
333 return OS;
334 }
335 inline std::ostream &operator<<(std::ostream &OS, const VirtRegMap &VRM) {
336 VRM.print(OS);
337 return OS;
338 }
339
340 /// Spiller interface: Implementations of this interface assign spilled
341 /// virtual registers to stack slots, rewriting the code.
342 struct Spiller {
343 virtual ~Spiller();
344 virtual bool runOnMachineFunction(MachineFunction &MF,
345 VirtRegMap &VRM) = 0;
346 };
347
348 /// createSpiller - Create an return a spiller object, as specified on the
349 /// command line.
350 Spiller* createSpiller();
351
352} // End llvm namespace
353
354#endif