blob: 266ebf64a3fc9f1e0e723ae689a21ebb35831406 [file] [log] [blame]
Chris Lattner62ed6b92008-01-01 01:12:31 +00001//===-- lib/Codegen/MachineRegisterInfo.cpp -------------------------------===//
Chris Lattner84bc5422007-12-31 04:13:23 +00002//
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"
Evan Chengf48023b2010-04-26 19:16:00 +000015#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohman98708262010-04-14 16:51:49 +000016#include "llvm/Target/TargetInstrInfo.h"
Jakob Stoklund Olesen6d1fd0b2011-08-09 16:46:27 +000017#include "llvm/Target/TargetMachine.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018using namespace llvm;
19
Jakob Stoklund Olesen73e7dce2011-07-29 22:51:22 +000020MachineRegisterInfo::MachineRegisterInfo(const TargetRegisterInfo &TRI)
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +000021 : TRI(&TRI), IsSSA(true) {
Chris Lattner84bc5422007-12-31 04:13:23 +000022 VRegInfo.reserve(256);
Evan Cheng90f95f82009-06-14 20:22:55 +000023 RegAllocHints.reserve(256);
Dan Gohman6f0d0242008-02-10 18:45:23 +000024 UsedPhysRegs.resize(TRI.getNumRegs());
Chris Lattner62ed6b92008-01-01 01:12:31 +000025
26 // Create the physreg use/def lists.
Dan Gohman6f0d0242008-02-10 18:45:23 +000027 PhysRegUseDefLists = new MachineOperand*[TRI.getNumRegs()];
28 memset(PhysRegUseDefLists, 0, sizeof(MachineOperand*)*TRI.getNumRegs());
Chris Lattner62ed6b92008-01-01 01:12:31 +000029}
30
31MachineRegisterInfo::~MachineRegisterInfo() {
32#ifndef NDEBUG
Jakob Stoklund Olesen994c7272011-01-09 03:05:46 +000033 for (unsigned i = 0, e = getNumVirtRegs(); i != e; ++i)
34 assert(VRegInfo[TargetRegisterInfo::index2VirtReg(i)].second == 0 &&
35 "Vreg use list non-empty still?");
Dan Gohman03bafaf2008-07-07 19:55:35 +000036 for (unsigned i = 0, e = UsedPhysRegs.size(); i != e; ++i)
37 assert(!PhysRegUseDefLists[i] &&
38 "PhysRegUseDefLists has entries after all instructions are deleted");
Chris Lattner62ed6b92008-01-01 01:12:31 +000039#endif
40 delete [] PhysRegUseDefLists;
41}
42
Dan Gohman33f1c682009-04-15 01:19:35 +000043/// setRegClass - Set the register class of the specified virtual register.
44///
45void
46MachineRegisterInfo::setRegClass(unsigned Reg, const TargetRegisterClass *RC) {
Dan Gohman33f1c682009-04-15 01:19:35 +000047 VRegInfo[Reg].first = RC;
Dan Gohman33f1c682009-04-15 01:19:35 +000048}
49
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +000050const TargetRegisterClass *
51MachineRegisterInfo::constrainRegClass(unsigned Reg,
Jakob Stoklund Olesen91fb5362011-09-22 21:39:31 +000052 const TargetRegisterClass *RC,
53 unsigned MinNumRegs) {
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +000054 const TargetRegisterClass *OldRC = getRegClass(Reg);
55 if (OldRC == RC)
56 return RC;
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +000057 const TargetRegisterClass *NewRC = TRI->getCommonSubClass(OldRC, RC);
Jakob Stoklund Olesen91fb5362011-09-22 21:39:31 +000058 if (!NewRC || NewRC == OldRC)
59 return NewRC;
60 if (NewRC->getNumRegs() < MinNumRegs)
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +000061 return 0;
Jakob Stoklund Olesen91fb5362011-09-22 21:39:31 +000062 setRegClass(Reg, NewRC);
Jakob Stoklund Olesenbf4699c2010-10-06 23:54:39 +000063 return NewRC;
64}
65
Jakob Stoklund Olesen6d1fd0b2011-08-09 16:46:27 +000066bool
67MachineRegisterInfo::recomputeRegClass(unsigned Reg, const TargetMachine &TM) {
68 const TargetInstrInfo *TII = TM.getInstrInfo();
Jakob Stoklund Olesen6d1fd0b2011-08-09 16:46:27 +000069 const TargetRegisterClass *OldRC = getRegClass(Reg);
70 const TargetRegisterClass *NewRC = TRI->getLargestLegalSuperClass(OldRC);
71
72 // Stop early if there is no room to grow.
73 if (NewRC == OldRC)
74 return false;
75
76 // Accumulate constraints from all uses.
77 for (reg_nodbg_iterator I = reg_nodbg_begin(Reg), E = reg_nodbg_end(); I != E;
78 ++I) {
79 // TRI doesn't have accurate enough information to model this yet.
80 if (I.getOperand().getSubReg())
81 return false;
Jakob Stoklund Olesen6d1fd0b2011-08-09 16:46:27 +000082 const TargetRegisterClass *OpRC =
Jakob Stoklund Olesendee83c92011-10-12 23:37:40 +000083 I->getRegClassConstraint(I.getOperandNo(), TII, TRI);
Jakob Stoklund Olesen6d1fd0b2011-08-09 16:46:27 +000084 if (OpRC)
Jakob Stoklund Olesene27e1ca2011-09-30 22:18:51 +000085 NewRC = TRI->getCommonSubClass(NewRC, OpRC);
Jakob Stoklund Olesen6d1fd0b2011-08-09 16:46:27 +000086 if (!NewRC || NewRC == OldRC)
87 return false;
88 }
89 setRegClass(Reg, NewRC);
90 return true;
91}
92
Dan Gohman2e3e5bf2008-12-08 04:54:11 +000093/// createVirtualRegister - Create and return a new virtual register in the
94/// function with the specified register class.
95///
96unsigned
97MachineRegisterInfo::createVirtualRegister(const TargetRegisterClass *RegClass){
98 assert(RegClass && "Cannot create register without RegClass!");
Jakob Stoklund Olesenf462e3f2011-06-02 23:07:20 +000099 assert(RegClass->isAllocatable() &&
100 "Virtual register RegClass must be allocatable.");
Dan Gohman2e3e5bf2008-12-08 04:54:11 +0000101
Jakob Stoklund Olesen994c7272011-01-09 03:05:46 +0000102 // New virtual register number.
103 unsigned Reg = TargetRegisterInfo::index2VirtReg(getNumVirtRegs());
104
105 // Add a reg, but keep track of whether the vector reallocated or not.
106 const unsigned FirstVirtReg = TargetRegisterInfo::index2VirtReg(0);
107 void *ArrayBase = getNumVirtRegs() == 0 ? 0 : &VRegInfo[FirstVirtReg];
108 VRegInfo.grow(Reg);
109 VRegInfo[Reg].first = RegClass;
110 RegAllocHints.grow(Reg);
111
112 if (ArrayBase && &VRegInfo[FirstVirtReg] != ArrayBase)
Dan Gohman2e3e5bf2008-12-08 04:54:11 +0000113 // The vector reallocated, handle this now.
114 HandleVRegListReallocation();
Jakob Stoklund Olesen994c7272011-01-09 03:05:46 +0000115 return Reg;
Dan Gohman2e3e5bf2008-12-08 04:54:11 +0000116}
117
Chris Lattner62ed6b92008-01-01 01:12:31 +0000118/// HandleVRegListReallocation - We just added a virtual register to the
119/// VRegInfo info list and it reallocated. Update the use/def lists info
120/// pointers.
121void MachineRegisterInfo::HandleVRegListReallocation() {
122 // The back pointers for the vreg lists point into the previous vector.
123 // Update them to point to their correct slots.
Jakob Stoklund Olesen994c7272011-01-09 03:05:46 +0000124 for (unsigned i = 0, e = getNumVirtRegs(); i != e; ++i) {
125 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
126 MachineOperand *List = VRegInfo[Reg].second;
Chris Lattner62ed6b92008-01-01 01:12:31 +0000127 if (!List) continue;
128 // Update the back-pointer to be accurate once more.
Jakob Stoklund Olesen994c7272011-01-09 03:05:46 +0000129 List->Contents.Reg.Prev = &VRegInfo[Reg].second;
Chris Lattner62ed6b92008-01-01 01:12:31 +0000130 }
Chris Lattner84bc5422007-12-31 04:13:23 +0000131}
Chris Lattnera91a7d52008-01-01 03:07:29 +0000132
Chris Lattnere138b3d2008-01-01 20:36:19 +0000133/// replaceRegWith - Replace all instances of FromReg with ToReg in the
134/// machine function. This is like llvm-level X->replaceAllUsesWith(Y),
135/// except that it also changes any definitions of the register as well.
136void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) {
137 assert(FromReg != ToReg && "Cannot replace a reg with itself");
138
139 // TODO: This could be more efficient by bulk changing the operands.
140 for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) {
141 MachineOperand &O = I.getOperand();
142 ++I;
143 O.setReg(ToReg);
144 }
145}
146
Chris Lattnera91a7d52008-01-01 03:07:29 +0000147
148/// getVRegDef - Return the machine instr that defines the specified virtual
149/// register or null if none is found. This assumes that the code is in SSA
150/// form, so there should only be one definition.
151MachineInstr *MachineRegisterInfo::getVRegDef(unsigned Reg) const {
Dan Gohman2bf06492009-09-25 22:26:13 +0000152 // Since we are in SSA form, we can use the first definition.
153 if (!def_empty(Reg))
154 return &*def_begin(Reg);
Chris Lattnera91a7d52008-01-01 03:07:29 +0000155 return 0;
156}
Evan Cheng1eb5cf92008-02-13 02:45:38 +0000157
Evan Cheng1423c702010-03-03 21:18:38 +0000158bool MachineRegisterInfo::hasOneUse(unsigned RegNo) const {
159 use_iterator UI = use_begin(RegNo);
160 if (UI == use_end())
161 return false;
162 return ++UI == use_end();
163}
164
165bool MachineRegisterInfo::hasOneNonDBGUse(unsigned RegNo) const {
166 use_nodbg_iterator UI = use_nodbg_begin(RegNo);
167 if (UI == use_nodbg_end())
168 return false;
169 return ++UI == use_nodbg_end();
170}
Evan Cheng1eb5cf92008-02-13 02:45:38 +0000171
Dan Gohman49b45892010-05-13 19:24:00 +0000172/// clearKillFlags - Iterate over all the uses of the given register and
173/// clear the kill flag from the MachineOperand. This function is used by
174/// optimization passes which extend register lifetimes and need only
175/// preserve conservative kill flag information.
176void MachineRegisterInfo::clearKillFlags(unsigned Reg) const {
177 for (use_iterator UI = use_begin(Reg), UE = use_end(); UI != UE; ++UI)
178 UI.getOperand().setIsKill(false);
179}
180
Dan Gohman13e73f42010-04-13 16:55:37 +0000181bool MachineRegisterInfo::isLiveIn(unsigned Reg) const {
182 for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I)
183 if (I->first == Reg || I->second == Reg)
184 return true;
185 return false;
186}
187
188bool MachineRegisterInfo::isLiveOut(unsigned Reg) const {
189 for (liveout_iterator I = liveout_begin(), E = liveout_end(); I != E; ++I)
190 if (*I == Reg)
191 return true;
192 return false;
193}
194
Evan Cheng2ad0fcf2010-04-28 23:08:54 +0000195/// getLiveInPhysReg - If VReg is a live-in virtual register, return the
196/// corresponding live-in physical register.
197unsigned MachineRegisterInfo::getLiveInPhysReg(unsigned VReg) const {
198 for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I)
199 if (I->second == VReg)
200 return I->first;
201 return 0;
202}
203
Evan Cheng39460432010-05-24 21:33:37 +0000204/// getLiveInVirtReg - If PReg is a live-in physical register, return the
205/// corresponding live-in physical register.
206unsigned MachineRegisterInfo::getLiveInVirtReg(unsigned PReg) const {
207 for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I)
208 if (I->first == PReg)
209 return I->second;
210 return 0;
211}
212
Dan Gohman98708262010-04-14 16:51:49 +0000213/// EmitLiveInCopies - Emit copies to initialize livein virtual registers
214/// into the given entry block.
215void
216MachineRegisterInfo::EmitLiveInCopies(MachineBasicBlock *EntryMBB,
217 const TargetRegisterInfo &TRI,
218 const TargetInstrInfo &TII) {
Evan Cheng701d4d32010-05-29 02:23:39 +0000219 // Emit the copies into the top of the block.
Dan Gohmanfe5e4da2010-06-24 22:23:02 +0000220 for (unsigned i = 0, e = LiveIns.size(); i != e; ++i)
221 if (LiveIns[i].second) {
222 if (use_empty(LiveIns[i].second)) {
223 // The livein has no uses. Drop it.
224 //
225 // It would be preferable to have isel avoid creating live-in
226 // records for unused arguments in the first place, but it's
227 // complicated by the debug info code for arguments.
228 LiveIns.erase(LiveIns.begin() + i);
229 --i; --e;
230 } else {
231 // Emit a copy.
Devang Patel68e6bee2011-02-21 23:21:26 +0000232 BuildMI(*EntryMBB, EntryMBB->begin(), DebugLoc(),
Jakob Stoklund Olesen1e1098c2010-07-10 22:42:59 +0000233 TII.get(TargetOpcode::COPY), LiveIns[i].second)
234 .addReg(LiveIns[i].first);
Dan Gohmanb13033f2010-04-14 17:05:00 +0000235
Dan Gohmanfe5e4da2010-06-24 22:23:02 +0000236 // Add the register to the entry block live-in set.
237 EntryMBB->addLiveIn(LiveIns[i].first);
238 }
239 } else {
240 // Add the register to the entry block live-in set.
241 EntryMBB->addLiveIn(LiveIns[i].first);
242 }
Dan Gohman98708262010-04-14 16:51:49 +0000243}
244
Jakob Stoklund Olesen82b07dc2010-05-11 20:30:28 +0000245void MachineRegisterInfo::closePhysRegsUsed(const TargetRegisterInfo &TRI) {
246 for (int i = UsedPhysRegs.find_first(); i >= 0;
247 i = UsedPhysRegs.find_next(i))
248 for (const unsigned *SS = TRI.getSubRegisters(i);
249 unsigned SubReg = *SS; ++SS)
Jakob Stoklund Olesen8e8b3cb2010-05-11 20:51:04 +0000250 if (SubReg > unsigned(i))
Jakob Stoklund Olesen82b07dc2010-05-11 20:30:28 +0000251 UsedPhysRegs.set(SubReg);
252}
253
Evan Cheng1eb5cf92008-02-13 02:45:38 +0000254#ifndef NDEBUG
255void MachineRegisterInfo::dumpUses(unsigned Reg) const {
256 for (use_iterator I = use_begin(Reg), E = use_end(); I != E; ++I)
257 I.getOperand().getParent()->dump();
258}
259#endif