Use uint16_t to store register overlaps to reduce static data.
[oota-llvm.git] / lib / CodeGen / MachineRegisterInfo.cpp
1 //===-- lib/Codegen/MachineRegisterInfo.cpp -------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Implementation of the MachineRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/MachineRegisterInfo.h"
15 #include "llvm/CodeGen/MachineInstrBuilder.h"
16 #include "llvm/Target/TargetInstrInfo.h"
17 #include "llvm/Target/TargetMachine.h"
18 using namespace llvm;
19
20 MachineRegisterInfo::MachineRegisterInfo(const TargetRegisterInfo &TRI)
21   : TRI(&TRI), IsSSA(true) {
22   VRegInfo.reserve(256);
23   RegAllocHints.reserve(256);
24   UsedPhysRegs.resize(TRI.getNumRegs());
25   UsedPhysRegMask.resize(TRI.getNumRegs());
26
27   // Create the physreg use/def lists.
28   PhysRegUseDefLists = new MachineOperand*[TRI.getNumRegs()];
29   memset(PhysRegUseDefLists, 0, sizeof(MachineOperand*)*TRI.getNumRegs());
30 }
31
32 MachineRegisterInfo::~MachineRegisterInfo() {
33 #ifndef NDEBUG
34   clearVirtRegs();
35   for (unsigned i = 0, e = UsedPhysRegs.size(); i != e; ++i)
36     assert(!PhysRegUseDefLists[i] &&
37            "PhysRegUseDefLists has entries after all instructions are deleted");
38 #endif
39   delete [] PhysRegUseDefLists;
40 }
41
42 /// setRegClass - Set the register class of the specified virtual register.
43 ///
44 void
45 MachineRegisterInfo::setRegClass(unsigned Reg, const TargetRegisterClass *RC) {
46   VRegInfo[Reg].first = RC;
47 }
48
49 const TargetRegisterClass *
50 MachineRegisterInfo::constrainRegClass(unsigned Reg,
51                                        const TargetRegisterClass *RC,
52                                        unsigned MinNumRegs) {
53   const TargetRegisterClass *OldRC = getRegClass(Reg);
54   if (OldRC == RC)
55     return RC;
56   const TargetRegisterClass *NewRC = TRI->getCommonSubClass(OldRC, RC);
57   if (!NewRC || NewRC == OldRC)
58     return NewRC;
59   if (NewRC->getNumRegs() < MinNumRegs)
60     return 0;
61   setRegClass(Reg, NewRC);
62   return NewRC;
63 }
64
65 bool
66 MachineRegisterInfo::recomputeRegClass(unsigned Reg, const TargetMachine &TM) {
67   const TargetInstrInfo *TII = TM.getInstrInfo();
68   const TargetRegisterClass *OldRC = getRegClass(Reg);
69   const TargetRegisterClass *NewRC = TRI->getLargestLegalSuperClass(OldRC);
70
71   // Stop early if there is no room to grow.
72   if (NewRC == OldRC)
73     return false;
74
75   // Accumulate constraints from all uses.
76   for (reg_nodbg_iterator I = reg_nodbg_begin(Reg), E = reg_nodbg_end(); I != E;
77        ++I) {
78     const TargetRegisterClass *OpRC =
79       I->getRegClassConstraint(I.getOperandNo(), TII, TRI);
80     if (unsigned SubIdx = I.getOperand().getSubReg()) {
81       if (OpRC)
82         NewRC = TRI->getMatchingSuperRegClass(NewRC, OpRC, SubIdx);
83       else
84         NewRC = TRI->getSubClassWithSubReg(NewRC, SubIdx);
85     } else if (OpRC)
86       NewRC = TRI->getCommonSubClass(NewRC, OpRC);
87     if (!NewRC || NewRC == OldRC)
88       return false;
89   }
90   setRegClass(Reg, NewRC);
91   return true;
92 }
93
94 /// createVirtualRegister - Create and return a new virtual register in the
95 /// function with the specified register class.
96 ///
97 unsigned
98 MachineRegisterInfo::createVirtualRegister(const TargetRegisterClass *RegClass){
99   assert(RegClass && "Cannot create register without RegClass!");
100   assert(RegClass->isAllocatable() &&
101          "Virtual register RegClass must be allocatable.");
102
103   // New virtual register number.
104   unsigned Reg = TargetRegisterInfo::index2VirtReg(getNumVirtRegs());
105
106   // Add a reg, but keep track of whether the vector reallocated or not.
107   const unsigned FirstVirtReg = TargetRegisterInfo::index2VirtReg(0);
108   void *ArrayBase = getNumVirtRegs() == 0 ? 0 : &VRegInfo[FirstVirtReg];
109   VRegInfo.grow(Reg);
110   VRegInfo[Reg].first = RegClass;
111   RegAllocHints.grow(Reg);
112
113   if (ArrayBase && &VRegInfo[FirstVirtReg] != ArrayBase)
114     // The vector reallocated, handle this now.
115     HandleVRegListReallocation();
116   return Reg;
117 }
118
119 /// clearVirtRegs - Remove all virtual registers (after physreg assignment).
120 void MachineRegisterInfo::clearVirtRegs() {
121 #ifndef NDEBUG
122   for (unsigned i = 0, e = getNumVirtRegs(); i != e; ++i)
123     assert(VRegInfo[TargetRegisterInfo::index2VirtReg(i)].second == 0 &&
124            "Vreg use list non-empty still?");
125 #endif
126   VRegInfo.clear();
127 }
128
129 /// HandleVRegListReallocation - We just added a virtual register to the
130 /// VRegInfo info list and it reallocated.  Update the use/def lists info
131 /// pointers.
132 void MachineRegisterInfo::HandleVRegListReallocation() {
133   // The back pointers for the vreg lists point into the previous vector.
134   // Update them to point to their correct slots.
135   for (unsigned i = 0, e = getNumVirtRegs(); i != e; ++i) {
136     unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
137     MachineOperand *List = VRegInfo[Reg].second;
138     if (!List) continue;
139     // Update the back-pointer to be accurate once more.
140     List->Contents.Reg.Prev = &VRegInfo[Reg].second;
141   }
142 }
143
144 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
145 /// machine function.  This is like llvm-level X->replaceAllUsesWith(Y),
146 /// except that it also changes any definitions of the register as well.
147 void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) {
148   assert(FromReg != ToReg && "Cannot replace a reg with itself");
149
150   // TODO: This could be more efficient by bulk changing the operands.
151   for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) {
152     MachineOperand &O = I.getOperand();
153     ++I;
154     O.setReg(ToReg);
155   }
156 }
157
158
159 /// getVRegDef - Return the machine instr that defines the specified virtual
160 /// register or null if none is found.  This assumes that the code is in SSA
161 /// form, so there should only be one definition.
162 MachineInstr *MachineRegisterInfo::getVRegDef(unsigned Reg) const {
163   // Since we are in SSA form, we can use the first definition.
164   if (!def_empty(Reg))
165     return &*def_begin(Reg);
166   return 0;
167 }
168
169 bool MachineRegisterInfo::hasOneUse(unsigned RegNo) const {
170   use_iterator UI = use_begin(RegNo);
171   if (UI == use_end())
172     return false;
173   return ++UI == use_end();
174 }
175
176 bool MachineRegisterInfo::hasOneNonDBGUse(unsigned RegNo) const {
177   use_nodbg_iterator UI = use_nodbg_begin(RegNo);
178   if (UI == use_nodbg_end())
179     return false;
180   return ++UI == use_nodbg_end();
181 }
182
183 /// clearKillFlags - Iterate over all the uses of the given register and
184 /// clear the kill flag from the MachineOperand. This function is used by
185 /// optimization passes which extend register lifetimes and need only
186 /// preserve conservative kill flag information.
187 void MachineRegisterInfo::clearKillFlags(unsigned Reg) const {
188   for (use_iterator UI = use_begin(Reg), UE = use_end(); UI != UE; ++UI)
189     UI.getOperand().setIsKill(false);
190 }
191
192 bool MachineRegisterInfo::isLiveIn(unsigned Reg) const {
193   for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I)
194     if (I->first == Reg || I->second == Reg)
195       return true;
196   return false;
197 }
198
199 bool MachineRegisterInfo::isLiveOut(unsigned Reg) const {
200   for (liveout_iterator I = liveout_begin(), E = liveout_end(); I != E; ++I)
201     if (*I == Reg)
202       return true;
203   return false;
204 }
205
206 /// getLiveInPhysReg - If VReg is a live-in virtual register, return the
207 /// corresponding live-in physical register.
208 unsigned MachineRegisterInfo::getLiveInPhysReg(unsigned VReg) const {
209   for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I)
210     if (I->second == VReg)
211       return I->first;
212   return 0;
213 }
214
215 /// getLiveInVirtReg - If PReg is a live-in physical register, return the
216 /// corresponding live-in physical register.
217 unsigned MachineRegisterInfo::getLiveInVirtReg(unsigned PReg) const {
218   for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I)
219     if (I->first == PReg)
220       return I->second;
221   return 0;
222 }
223
224 /// EmitLiveInCopies - Emit copies to initialize livein virtual registers
225 /// into the given entry block.
226 void
227 MachineRegisterInfo::EmitLiveInCopies(MachineBasicBlock *EntryMBB,
228                                       const TargetRegisterInfo &TRI,
229                                       const TargetInstrInfo &TII) {
230   // Emit the copies into the top of the block.
231   for (unsigned i = 0, e = LiveIns.size(); i != e; ++i)
232     if (LiveIns[i].second) {
233       if (use_empty(LiveIns[i].second)) {
234         // The livein has no uses. Drop it.
235         //
236         // It would be preferable to have isel avoid creating live-in
237         // records for unused arguments in the first place, but it's
238         // complicated by the debug info code for arguments.
239         LiveIns.erase(LiveIns.begin() + i);
240         --i; --e;
241       } else {
242         // Emit a copy.
243         BuildMI(*EntryMBB, EntryMBB->begin(), DebugLoc(),
244                 TII.get(TargetOpcode::COPY), LiveIns[i].second)
245           .addReg(LiveIns[i].first);
246
247         // Add the register to the entry block live-in set.
248         EntryMBB->addLiveIn(LiveIns[i].first);
249       }
250     } else {
251       // Add the register to the entry block live-in set.
252       EntryMBB->addLiveIn(LiveIns[i].first);
253     }
254 }
255
256 #ifndef NDEBUG
257 void MachineRegisterInfo::dumpUses(unsigned Reg) const {
258   for (use_iterator I = use_begin(Reg), E = use_end(); I != E; ++I)
259     I.getOperand().getParent()->dump();
260 }
261 #endif
262
263 void MachineRegisterInfo::freezeReservedRegs(const MachineFunction &MF) {
264   ReservedRegs = TRI->getReservedRegs(MF);
265 }
266
267 bool MachineRegisterInfo::isConstantPhysReg(unsigned PhysReg,
268                                             const MachineFunction &MF) const {
269   assert(TargetRegisterInfo::isPhysicalRegister(PhysReg));
270
271   // Check if any overlapping register is modified.
272   for (const uint16_t *R = TRI->getOverlaps(PhysReg); *R; ++R)
273     if (!def_empty(*R))
274       return false;
275
276   // Check if any overlapping register is allocatable so it may be used later.
277   if (AllocatableRegs.empty())
278     AllocatableRegs = TRI->getAllocatableSet(MF);
279   for (const uint16_t *R = TRI->getOverlaps(PhysReg); *R; ++R)
280     if (AllocatableRegs.test(*R))
281       return false;
282   return true;
283 }