blob: c9eb17d2bc821bb1c777969213d4f33e37267198 [file] [log] [blame]
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +00001//===-- llvm/CodeGen/VirtRegMap.cpp - Virtual Register Map ----------------===//
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//
Chris Lattner8c4d88d2004-09-30 01:54:45 +000010// This file implements the VirtRegMap class.
11//
12// It also contains implementations of the the Spiller interface, which, given a
13// virtual register map and a machine function, eliminates all virtual
14// references by replacing them with physical register references - adding spill
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000015// code as necessary.
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000016//
17//===----------------------------------------------------------------------===//
18
Chris Lattner8c4d88d2004-09-30 01:54:45 +000019#define DEBUG_TYPE "spiller"
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000020#include "VirtRegMap.h"
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000021#include "llvm/Function.h"
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner8c4d88d2004-09-30 01:54:45 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/SSARegMap.h"
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000025#include "llvm/Target/TargetMachine.h"
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000026#include "llvm/Target/TargetInstrInfo.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000027#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000029#include "llvm/Support/Compiler.h"
Evan Cheng957840b2007-02-21 02:22:03 +000030#include "llvm/ADT/BitVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/ADT/Statistic.h"
32#include "llvm/ADT/STLExtras.h"
Chris Lattner08a4d5a2007-01-23 00:59:48 +000033#include "llvm/ADT/SmallSet.h"
Chris Lattner27f29162004-10-26 15:35:58 +000034#include <algorithm>
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000035using namespace llvm;
36
Chris Lattnercd3245a2006-12-19 22:41:21 +000037STATISTIC(NumSpills, "Number of register spills");
Evan Cheng2638e1a2007-03-20 08:13:50 +000038STATISTIC(NumReMats, "Number of re-materialization");
Chris Lattnercd3245a2006-12-19 22:41:21 +000039STATISTIC(NumStores, "Number of stores added");
40STATISTIC(NumLoads , "Number of loads added");
41STATISTIC(NumReused, "Number of values reused");
42STATISTIC(NumDSE , "Number of dead stores elided");
43STATISTIC(NumDCE , "Number of copies elided");
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +000044
Chris Lattnercd3245a2006-12-19 22:41:21 +000045namespace {
Chris Lattner8c4d88d2004-09-30 01:54:45 +000046 enum SpillerName { simple, local };
Alkis Evlogimenosdd420e02004-03-01 23:18:15 +000047
Andrew Lenharthed41f1b2006-07-20 17:28:38 +000048 static cl::opt<SpillerName>
Chris Lattner8c4d88d2004-09-30 01:54:45 +000049 SpillerOpt("spiller",
Chris Lattner7fb64342004-10-01 19:04:51 +000050 cl::desc("Spiller to use: (default: local)"),
Chris Lattner8c4d88d2004-09-30 01:54:45 +000051 cl::Prefix,
52 cl::values(clEnumVal(simple, " simple spiller"),
53 clEnumVal(local, " local spiller"),
54 clEnumValEnd),
Chris Lattner7fb64342004-10-01 19:04:51 +000055 cl::init(local));
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000056}
57
Chris Lattner8c4d88d2004-09-30 01:54:45 +000058//===----------------------------------------------------------------------===//
59// VirtRegMap implementation
60//===----------------------------------------------------------------------===//
61
Chris Lattner29268692006-09-05 02:12:02 +000062VirtRegMap::VirtRegMap(MachineFunction &mf)
63 : TII(*mf.getTarget().getInstrInfo()), MF(mf),
Evan Cheng2638e1a2007-03-20 08:13:50 +000064 Virt2PhysMap(NO_PHYS_REG), Virt2StackSlotMap(NO_STACK_SLOT),
65 ReMatId(MAX_STACK_SLOT+1) {
Chris Lattner29268692006-09-05 02:12:02 +000066 grow();
67}
68
Chris Lattner8c4d88d2004-09-30 01:54:45 +000069void VirtRegMap::grow() {
Chris Lattner7f690e62004-09-30 02:15:18 +000070 Virt2PhysMap.grow(MF.getSSARegMap()->getLastVirtReg());
71 Virt2StackSlotMap.grow(MF.getSSARegMap()->getLastVirtReg());
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +000072}
73
Chris Lattner8c4d88d2004-09-30 01:54:45 +000074int VirtRegMap::assignVirt2StackSlot(unsigned virtReg) {
75 assert(MRegisterInfo::isVirtualRegister(virtReg));
Chris Lattner7f690e62004-09-30 02:15:18 +000076 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
Chris Lattner8c4d88d2004-09-30 01:54:45 +000077 "attempt to assign stack slot to already spilled register");
Chris Lattner7f690e62004-09-30 02:15:18 +000078 const TargetRegisterClass* RC = MF.getSSARegMap()->getRegClass(virtReg);
79 int frameIndex = MF.getFrameInfo()->CreateStackObject(RC->getSize(),
80 RC->getAlignment());
81 Virt2StackSlotMap[virtReg] = frameIndex;
Chris Lattner8c4d88d2004-09-30 01:54:45 +000082 ++NumSpills;
83 return frameIndex;
84}
85
86void VirtRegMap::assignVirt2StackSlot(unsigned virtReg, int frameIndex) {
87 assert(MRegisterInfo::isVirtualRegister(virtReg));
Chris Lattner7f690e62004-09-30 02:15:18 +000088 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
Chris Lattner8c4d88d2004-09-30 01:54:45 +000089 "attempt to assign stack slot to already spilled register");
Evan Cheng91935142007-04-04 07:40:01 +000090 assert((frameIndex >= 0 ||
91 (frameIndex >= MF.getFrameInfo()->getObjectIndexBegin())) &&
92 "illegal fixed frame index");
Chris Lattner7f690e62004-09-30 02:15:18 +000093 Virt2StackSlotMap[virtReg] = frameIndex;
Alkis Evlogimenos38af59a2004-05-29 20:38:05 +000094}
95
Evan Cheng2638e1a2007-03-20 08:13:50 +000096int VirtRegMap::assignVirtReMatId(unsigned virtReg) {
97 assert(MRegisterInfo::isVirtualRegister(virtReg));
98 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
99 "attempt to assign re-mat id to already spilled register");
Evan Cheng91935142007-04-04 07:40:01 +0000100 const MachineInstr *DefMI = getReMaterializedMI(virtReg);
101 int FrameIdx;
102 if (TII.isLoadFromStackSlot((MachineInstr*)DefMI, FrameIdx)) {
103 // Load from stack slot is re-materialize as reload from the stack slot!
104 Virt2StackSlotMap[virtReg] = FrameIdx;
105 return FrameIdx;
106 }
Evan Cheng2638e1a2007-03-20 08:13:50 +0000107 Virt2StackSlotMap[virtReg] = ReMatId;
Evan Cheng2638e1a2007-03-20 08:13:50 +0000108 return ReMatId++;
109}
110
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000111void VirtRegMap::virtFolded(unsigned VirtReg, MachineInstr *OldMI,
Chris Lattner35f27052006-05-01 21:16:03 +0000112 unsigned OpNo, MachineInstr *NewMI) {
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000113 // Move previous memory references folded to new instruction.
114 MI2VirtMapTy::iterator IP = MI2VirtMap.lower_bound(NewMI);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000115 for (MI2VirtMapTy::iterator I = MI2VirtMap.lower_bound(OldMI),
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000116 E = MI2VirtMap.end(); I != E && I->first == OldMI; ) {
117 MI2VirtMap.insert(IP, std::make_pair(NewMI, I->second));
Chris Lattnerdbea9732004-09-30 16:35:08 +0000118 MI2VirtMap.erase(I++);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000119 }
Chris Lattnerdbea9732004-09-30 16:35:08 +0000120
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000121 ModRef MRInfo;
Evan Cheng5c2a4602006-12-08 08:02:34 +0000122 const TargetInstrDescriptor *TID = OldMI->getInstrDescriptor();
123 if (TID->getOperandConstraint(OpNo, TOI::TIED_TO) != -1 ||
Evan Chengcc22a7a2006-12-08 18:45:48 +0000124 TID->findTiedToSrcOperand(OpNo) != -1) {
Chris Lattner29268692006-09-05 02:12:02 +0000125 // Folded a two-address operand.
126 MRInfo = isModRef;
127 } else if (OldMI->getOperand(OpNo).isDef()) {
128 MRInfo = isMod;
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000129 } else {
Chris Lattner29268692006-09-05 02:12:02 +0000130 MRInfo = isRef;
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000131 }
Alkis Evlogimenos5f375022004-03-01 20:05:10 +0000132
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000133 // add new memory reference
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000134 MI2VirtMap.insert(IP, std::make_pair(NewMI, std::make_pair(VirtReg, MRInfo)));
Alkis Evlogimenos5f375022004-03-01 20:05:10 +0000135}
136
Chris Lattner7f690e62004-09-30 02:15:18 +0000137void VirtRegMap::print(std::ostream &OS) const {
138 const MRegisterInfo* MRI = MF.getTarget().getRegisterInfo();
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +0000139
Chris Lattner7f690e62004-09-30 02:15:18 +0000140 OS << "********** REGISTER MAP **********\n";
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000141 for (unsigned i = MRegisterInfo::FirstVirtualRegister,
Chris Lattner7f690e62004-09-30 02:15:18 +0000142 e = MF.getSSARegMap()->getLastVirtReg(); i <= e; ++i) {
143 if (Virt2PhysMap[i] != (unsigned)VirtRegMap::NO_PHYS_REG)
144 OS << "[reg" << i << " -> " << MRI->getName(Virt2PhysMap[i]) << "]\n";
Misha Brukmanedf128a2005-04-21 22:36:52 +0000145
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000146 }
147
148 for (unsigned i = MRegisterInfo::FirstVirtualRegister,
Chris Lattner7f690e62004-09-30 02:15:18 +0000149 e = MF.getSSARegMap()->getLastVirtReg(); i <= e; ++i)
150 if (Virt2StackSlotMap[i] != VirtRegMap::NO_STACK_SLOT)
151 OS << "[reg" << i << " -> fi#" << Virt2StackSlotMap[i] << "]\n";
152 OS << '\n';
Alkis Evlogimenos34d9bc92004-02-23 23:08:11 +0000153}
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000154
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000155void VirtRegMap::dump() const {
Bill Wendling5c7e3262006-12-17 05:15:13 +0000156 print(DOUT);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000157}
Alkis Evlogimenosdd420e02004-03-01 23:18:15 +0000158
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000159
160//===----------------------------------------------------------------------===//
161// Simple Spiller Implementation
162//===----------------------------------------------------------------------===//
163
164Spiller::~Spiller() {}
Alkis Evlogimenosdd420e02004-03-01 23:18:15 +0000165
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000166namespace {
Chris Lattnerf8c68f62006-06-28 22:17:39 +0000167 struct VISIBILITY_HIDDEN SimpleSpiller : public Spiller {
Chris Lattner35f27052006-05-01 21:16:03 +0000168 bool runOnMachineFunction(MachineFunction& mf, VirtRegMap &VRM);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000169 };
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +0000170}
171
Chris Lattner35f27052006-05-01 21:16:03 +0000172bool SimpleSpiller::runOnMachineFunction(MachineFunction &MF, VirtRegMap &VRM) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000173 DOUT << "********** REWRITE MACHINE CODE **********\n";
174 DOUT << "********** Function: " << MF.getFunction()->getName() << '\n';
Chris Lattnerb0f31bf2005-01-23 22:45:13 +0000175 const TargetMachine &TM = MF.getTarget();
176 const MRegisterInfo &MRI = *TM.getRegisterInfo();
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000177
Chris Lattner4ea1b822004-09-30 02:33:48 +0000178 // LoadedRegs - Keep track of which vregs are loaded, so that we only load
179 // each vreg once (in the case where a spilled vreg is used by multiple
180 // operands). This is always smaller than the number of operands to the
181 // current machine instr, so it should be small.
182 std::vector<unsigned> LoadedRegs;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000183
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000184 for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end();
185 MBBI != E; ++MBBI) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000186 DOUT << MBBI->getBasicBlock()->getName() << ":\n";
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000187 MachineBasicBlock &MBB = *MBBI;
188 for (MachineBasicBlock::iterator MII = MBB.begin(),
189 E = MBB.end(); MII != E; ++MII) {
190 MachineInstr &MI = *MII;
191 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
Chris Lattner7fb64342004-10-01 19:04:51 +0000192 MachineOperand &MO = MI.getOperand(i);
Chris Lattner886dd912005-04-04 21:35:34 +0000193 if (MO.isRegister() && MO.getReg())
194 if (MRegisterInfo::isVirtualRegister(MO.getReg())) {
195 unsigned VirtReg = MO.getReg();
196 unsigned PhysReg = VRM.getPhys(VirtReg);
197 if (VRM.hasStackSlot(VirtReg)) {
198 int StackSlot = VRM.getStackSlot(VirtReg);
Chris Lattnerbf9716b2005-09-30 01:29:00 +0000199 const TargetRegisterClass* RC =
200 MF.getSSARegMap()->getRegClass(VirtReg);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000201
Chris Lattner886dd912005-04-04 21:35:34 +0000202 if (MO.isUse() &&
203 std::find(LoadedRegs.begin(), LoadedRegs.end(), VirtReg)
204 == LoadedRegs.end()) {
Chris Lattnerbf9716b2005-09-30 01:29:00 +0000205 MRI.loadRegFromStackSlot(MBB, &MI, PhysReg, StackSlot, RC);
Chris Lattner886dd912005-04-04 21:35:34 +0000206 LoadedRegs.push_back(VirtReg);
207 ++NumLoads;
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000208 DOUT << '\t' << *prior(MII);
Chris Lattner886dd912005-04-04 21:35:34 +0000209 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000210
Chris Lattner886dd912005-04-04 21:35:34 +0000211 if (MO.isDef()) {
Chris Lattnerbf9716b2005-09-30 01:29:00 +0000212 MRI.storeRegToStackSlot(MBB, next(MII), PhysReg, StackSlot, RC);
Chris Lattner886dd912005-04-04 21:35:34 +0000213 ++NumStores;
214 }
Chris Lattner0fc27cc2004-09-30 02:59:33 +0000215 }
Evan Cheng6c087e52007-04-25 22:13:27 +0000216 MF.setPhysRegUsed(PhysReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000217 MI.getOperand(i).setReg(PhysReg);
Chris Lattner886dd912005-04-04 21:35:34 +0000218 } else {
Evan Cheng6c087e52007-04-25 22:13:27 +0000219 MF.setPhysRegUsed(MO.getReg());
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000220 }
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000221 }
Chris Lattner886dd912005-04-04 21:35:34 +0000222
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000223 DOUT << '\t' << MI;
Chris Lattner4ea1b822004-09-30 02:33:48 +0000224 LoadedRegs.clear();
Alkis Evlogimenosdd420e02004-03-01 23:18:15 +0000225 }
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000226 }
227 return true;
228}
229
230//===----------------------------------------------------------------------===//
231// Local Spiller Implementation
232//===----------------------------------------------------------------------===//
233
234namespace {
Chris Lattner7fb64342004-10-01 19:04:51 +0000235 /// LocalSpiller - This spiller does a simple pass over the machine basic
236 /// block to attempt to keep spills in registers as much as possible for
237 /// blocks that have low register pressure (the vreg may be spilled due to
238 /// register pressure in other blocks).
Chris Lattnerf8c68f62006-06-28 22:17:39 +0000239 class VISIBILITY_HIDDEN LocalSpiller : public Spiller {
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000240 const MRegisterInfo *MRI;
Chris Lattner7fb64342004-10-01 19:04:51 +0000241 const TargetInstrInfo *TII;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000242 public:
Chris Lattner35f27052006-05-01 21:16:03 +0000243 bool runOnMachineFunction(MachineFunction &MF, VirtRegMap &VRM) {
Chris Lattner7fb64342004-10-01 19:04:51 +0000244 MRI = MF.getTarget().getRegisterInfo();
245 TII = MF.getTarget().getInstrInfo();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000246 DOUT << "\n**** Local spiller rewriting function '"
247 << MF.getFunction()->getName() << "':\n";
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000248
Evan Cheng2638e1a2007-03-20 08:13:50 +0000249 std::vector<MachineInstr *> ReMatedMIs;
Chris Lattner7fb64342004-10-01 19:04:51 +0000250 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
251 MBB != E; ++MBB)
Evan Cheng2638e1a2007-03-20 08:13:50 +0000252 RewriteMBB(*MBB, VRM, ReMatedMIs);
253 for (unsigned i = 0, e = ReMatedMIs.size(); i != e; ++i)
254 delete ReMatedMIs[i];
Chris Lattner7fb64342004-10-01 19:04:51 +0000255 return true;
256 }
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000257 private:
Evan Cheng2638e1a2007-03-20 08:13:50 +0000258 void RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM,
259 std::vector<MachineInstr*> &ReMatedMIs);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000260 };
261}
262
Chris Lattner66cf80f2006-02-03 23:13:58 +0000263/// AvailableSpills - As the local spiller is scanning and rewriting an MBB from
264/// top down, keep track of which spills slots are available in each register.
Chris Lattner593c9582006-02-03 23:28:46 +0000265///
266/// Note that not all physregs are created equal here. In particular, some
267/// physregs are reloads that we are allowed to clobber or ignore at any time.
268/// Other physregs are values that the register allocated program is using that
269/// we cannot CHANGE, but we can read if we like. We keep track of this on a
270/// per-stack-slot basis as the low bit in the value of the SpillSlotsAvailable
271/// entries. The predicate 'canClobberPhysReg()' checks this bit and
272/// addAvailable sets it if.
Chris Lattnerf8c68f62006-06-28 22:17:39 +0000273namespace {
274class VISIBILITY_HIDDEN AvailableSpills {
Chris Lattner66cf80f2006-02-03 23:13:58 +0000275 const MRegisterInfo *MRI;
276 const TargetInstrInfo *TII;
277
278 // SpillSlotsAvailable - This map keeps track of all of the spilled virtual
279 // register values that are still available, due to being loaded or stored to,
Evan Chengb9591c62007-07-11 08:47:44 +0000280 // but not invalidated yet.
281 std::map<int, unsigned> SpillSlotsAvailable;
Chris Lattner66cf80f2006-02-03 23:13:58 +0000282
283 // PhysRegsAvailable - This is the inverse of SpillSlotsAvailable, indicating
284 // which stack slot values are currently held by a physreg. This is used to
285 // invalidate entries in SpillSlotsAvailable when a physreg is modified.
286 std::multimap<unsigned, int> PhysRegsAvailable;
287
Evan Cheng7a0d51c2006-12-14 07:54:05 +0000288 void disallowClobberPhysRegOnly(unsigned PhysReg);
289
Chris Lattner66cf80f2006-02-03 23:13:58 +0000290 void ClobberPhysRegOnly(unsigned PhysReg);
291public:
292 AvailableSpills(const MRegisterInfo *mri, const TargetInstrInfo *tii)
293 : MRI(mri), TII(tii) {
294 }
295
Evan Cheng91e23902007-02-23 01:13:26 +0000296 const MRegisterInfo *getRegInfo() const { return MRI; }
297
Chris Lattner66cf80f2006-02-03 23:13:58 +0000298 /// getSpillSlotPhysReg - If the specified stack slot is available in a
Evan Chengb9591c62007-07-11 08:47:44 +0000299 /// physical register, return that PhysReg, otherwise return 0.
300 unsigned getSpillSlotPhysReg(int Slot) const {
301 std::map<int, unsigned>::const_iterator I = SpillSlotsAvailable.find(Slot);
Evan Cheng91e23902007-02-23 01:13:26 +0000302 if (I != SpillSlotsAvailable.end()) {
Evan Chengb9591c62007-07-11 08:47:44 +0000303 return I->second >> 1; // Remove the CanClobber bit.
Evan Cheng91e23902007-02-23 01:13:26 +0000304 }
Chris Lattner66cf80f2006-02-03 23:13:58 +0000305 return 0;
306 }
Evan Chengde4e9422007-02-25 09:51:27 +0000307
Chris Lattner66cf80f2006-02-03 23:13:58 +0000308 /// addAvailable - Mark that the specified stack slot is available in the
Chris Lattner593c9582006-02-03 23:28:46 +0000309 /// specified physreg. If CanClobber is true, the physreg can be modified at
310 /// any time without changing the semantics of the program.
Evan Cheng91e23902007-02-23 01:13:26 +0000311 void addAvailable(int Slot, MachineInstr *MI, unsigned Reg,
312 bool CanClobber = true) {
Chris Lattner86662492006-02-03 23:50:46 +0000313 // If this stack slot is thought to be available in some other physreg,
314 // remove its record.
315 ModifyStackSlot(Slot);
316
Chris Lattner66cf80f2006-02-03 23:13:58 +0000317 PhysRegsAvailable.insert(std::make_pair(Reg, Slot));
Evan Chengb9591c62007-07-11 08:47:44 +0000318 SpillSlotsAvailable[Slot] = (Reg << 1) | (unsigned)CanClobber;
Chris Lattner66cf80f2006-02-03 23:13:58 +0000319
Evan Cheng2638e1a2007-03-20 08:13:50 +0000320 if (Slot > VirtRegMap::MAX_STACK_SLOT)
321 DOUT << "Remembering RM#" << Slot-VirtRegMap::MAX_STACK_SLOT-1;
322 else
323 DOUT << "Remembering SS#" << Slot;
324 DOUT << " in physreg " << MRI->getName(Reg) << "\n";
Chris Lattner66cf80f2006-02-03 23:13:58 +0000325 }
Evan Cheng7a0d51c2006-12-14 07:54:05 +0000326
Chris Lattner593c9582006-02-03 23:28:46 +0000327 /// canClobberPhysReg - Return true if the spiller is allowed to change the
328 /// value of the specified stackslot register if it desires. The specified
329 /// stack slot must be available in a physreg for this query to make sense.
330 bool canClobberPhysReg(int Slot) const {
331 assert(SpillSlotsAvailable.count(Slot) && "Slot not available!");
Evan Chengb9591c62007-07-11 08:47:44 +0000332 return SpillSlotsAvailable.find(Slot)->second & 1;
Chris Lattner593c9582006-02-03 23:28:46 +0000333 }
Chris Lattner66cf80f2006-02-03 23:13:58 +0000334
Evan Cheng7a0d51c2006-12-14 07:54:05 +0000335 /// disallowClobberPhysReg - Unset the CanClobber bit of the specified
336 /// stackslot register. The register is still available but is no longer
337 /// allowed to be modifed.
338 void disallowClobberPhysReg(unsigned PhysReg);
339
Chris Lattner66cf80f2006-02-03 23:13:58 +0000340 /// ClobberPhysReg - This is called when the specified physreg changes
341 /// value. We use this to invalidate any info about stuff we thing lives in
342 /// it and any of its aliases.
343 void ClobberPhysReg(unsigned PhysReg);
344
345 /// ModifyStackSlot - This method is called when the value in a stack slot
346 /// changes. This removes information about which register the previous value
347 /// for this slot lives in (as the previous value is dead now).
348 void ModifyStackSlot(int Slot);
349};
Chris Lattnerf8c68f62006-06-28 22:17:39 +0000350}
Chris Lattner66cf80f2006-02-03 23:13:58 +0000351
Evan Cheng7a0d51c2006-12-14 07:54:05 +0000352/// disallowClobberPhysRegOnly - Unset the CanClobber bit of the specified
353/// stackslot register. The register is still available but is no longer
354/// allowed to be modifed.
355void AvailableSpills::disallowClobberPhysRegOnly(unsigned PhysReg) {
356 std::multimap<unsigned, int>::iterator I =
357 PhysRegsAvailable.lower_bound(PhysReg);
358 while (I != PhysRegsAvailable.end() && I->first == PhysReg) {
359 int Slot = I->second;
360 I++;
Evan Chengb9591c62007-07-11 08:47:44 +0000361 assert((SpillSlotsAvailable[Slot] >> 1) == PhysReg &&
Evan Cheng7a0d51c2006-12-14 07:54:05 +0000362 "Bidirectional map mismatch!");
Evan Chengb9591c62007-07-11 08:47:44 +0000363 SpillSlotsAvailable[Slot] &= ~1;
Evan Cheng7a0d51c2006-12-14 07:54:05 +0000364 DOUT << "PhysReg " << MRI->getName(PhysReg)
365 << " copied, it is available for use but can no longer be modified\n";
366 }
367}
368
369/// disallowClobberPhysReg - Unset the CanClobber bit of the specified
370/// stackslot register and its aliases. The register and its aliases may
371/// still available but is no longer allowed to be modifed.
372void AvailableSpills::disallowClobberPhysReg(unsigned PhysReg) {
373 for (const unsigned *AS = MRI->getAliasSet(PhysReg); *AS; ++AS)
374 disallowClobberPhysRegOnly(*AS);
375 disallowClobberPhysRegOnly(PhysReg);
376}
377
Chris Lattner66cf80f2006-02-03 23:13:58 +0000378/// ClobberPhysRegOnly - This is called when the specified physreg changes
379/// value. We use this to invalidate any info about stuff we thing lives in it.
380void AvailableSpills::ClobberPhysRegOnly(unsigned PhysReg) {
381 std::multimap<unsigned, int>::iterator I =
382 PhysRegsAvailable.lower_bound(PhysReg);
Chris Lattner07cf1412006-02-03 00:36:31 +0000383 while (I != PhysRegsAvailable.end() && I->first == PhysReg) {
Chris Lattner7fb64342004-10-01 19:04:51 +0000384 int Slot = I->second;
Chris Lattner07cf1412006-02-03 00:36:31 +0000385 PhysRegsAvailable.erase(I++);
Evan Chengb9591c62007-07-11 08:47:44 +0000386 assert((SpillSlotsAvailable[Slot] >> 1) == PhysReg &&
Chris Lattner66cf80f2006-02-03 23:13:58 +0000387 "Bidirectional map mismatch!");
388 SpillSlotsAvailable.erase(Slot);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000389 DOUT << "PhysReg " << MRI->getName(PhysReg)
Evan Cheng2638e1a2007-03-20 08:13:50 +0000390 << " clobbered, invalidating ";
391 if (Slot > VirtRegMap::MAX_STACK_SLOT)
392 DOUT << "RM#" << Slot-VirtRegMap::MAX_STACK_SLOT-1 << "\n";
393 else
394 DOUT << "SS#" << Slot << "\n";
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000395 }
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000396}
397
Chris Lattner66cf80f2006-02-03 23:13:58 +0000398/// ClobberPhysReg - This is called when the specified physreg changes
399/// value. We use this to invalidate any info about stuff we thing lives in
400/// it and any of its aliases.
401void AvailableSpills::ClobberPhysReg(unsigned PhysReg) {
Chris Lattner7fb64342004-10-01 19:04:51 +0000402 for (const unsigned *AS = MRI->getAliasSet(PhysReg); *AS; ++AS)
Chris Lattner66cf80f2006-02-03 23:13:58 +0000403 ClobberPhysRegOnly(*AS);
404 ClobberPhysRegOnly(PhysReg);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000405}
406
Chris Lattner07cf1412006-02-03 00:36:31 +0000407/// ModifyStackSlot - This method is called when the value in a stack slot
408/// changes. This removes information about which register the previous value
409/// for this slot lives in (as the previous value is dead now).
Chris Lattner66cf80f2006-02-03 23:13:58 +0000410void AvailableSpills::ModifyStackSlot(int Slot) {
Evan Chengb9591c62007-07-11 08:47:44 +0000411 std::map<int, unsigned>::iterator It = SpillSlotsAvailable.find(Slot);
Chris Lattner66cf80f2006-02-03 23:13:58 +0000412 if (It == SpillSlotsAvailable.end()) return;
Evan Chengb9591c62007-07-11 08:47:44 +0000413 unsigned Reg = It->second >> 1;
Chris Lattner66cf80f2006-02-03 23:13:58 +0000414 SpillSlotsAvailable.erase(It);
Chris Lattner07cf1412006-02-03 00:36:31 +0000415
416 // This register may hold the value of multiple stack slots, only remove this
417 // stack slot from the set of values the register contains.
418 std::multimap<unsigned, int>::iterator I = PhysRegsAvailable.lower_bound(Reg);
419 for (; ; ++I) {
420 assert(I != PhysRegsAvailable.end() && I->first == Reg &&
421 "Map inverse broken!");
422 if (I->second == Slot) break;
423 }
424 PhysRegsAvailable.erase(I);
425}
426
427
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000428
Chris Lattner7fb64342004-10-01 19:04:51 +0000429// ReusedOp - For each reused operand, we keep track of a bit of information, in
430// case we need to rollback upon processing a new operand. See comments below.
431namespace {
432 struct ReusedOp {
433 // The MachineInstr operand that reused an available value.
434 unsigned Operand;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000435
Chris Lattner7fb64342004-10-01 19:04:51 +0000436 // StackSlot - The spill slot of the value being reused.
437 unsigned StackSlot;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000438
Chris Lattner7fb64342004-10-01 19:04:51 +0000439 // PhysRegReused - The physical register the value was available in.
440 unsigned PhysRegReused;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000441
Chris Lattner7fb64342004-10-01 19:04:51 +0000442 // AssignedPhysReg - The physreg that was assigned for use by the reload.
443 unsigned AssignedPhysReg;
Chris Lattner8a61a752005-10-06 17:19:06 +0000444
445 // VirtReg - The virtual register itself.
446 unsigned VirtReg;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000447
Chris Lattner8a61a752005-10-06 17:19:06 +0000448 ReusedOp(unsigned o, unsigned ss, unsigned prr, unsigned apr,
449 unsigned vreg)
450 : Operand(o), StackSlot(ss), PhysRegReused(prr), AssignedPhysReg(apr),
451 VirtReg(vreg) {}
Chris Lattner7fb64342004-10-01 19:04:51 +0000452 };
Chris Lattner540fec62006-02-25 01:51:33 +0000453
454 /// ReuseInfo - This maintains a collection of ReuseOp's for each operand that
455 /// is reused instead of reloaded.
Chris Lattnerf8c68f62006-06-28 22:17:39 +0000456 class VISIBILITY_HIDDEN ReuseInfo {
Chris Lattner540fec62006-02-25 01:51:33 +0000457 MachineInstr &MI;
458 std::vector<ReusedOp> Reuses;
Evan Cheng957840b2007-02-21 02:22:03 +0000459 BitVector PhysRegsClobbered;
Chris Lattner540fec62006-02-25 01:51:33 +0000460 public:
Evan Chenge077ef62006-11-04 00:21:55 +0000461 ReuseInfo(MachineInstr &mi, const MRegisterInfo *mri) : MI(mi) {
Evan Cheng957840b2007-02-21 02:22:03 +0000462 PhysRegsClobbered.resize(mri->getNumRegs());
Evan Chenge077ef62006-11-04 00:21:55 +0000463 }
Chris Lattner540fec62006-02-25 01:51:33 +0000464
465 bool hasReuses() const {
466 return !Reuses.empty();
467 }
468
469 /// addReuse - If we choose to reuse a virtual register that is already
470 /// available instead of reloading it, remember that we did so.
471 void addReuse(unsigned OpNo, unsigned StackSlot,
472 unsigned PhysRegReused, unsigned AssignedPhysReg,
473 unsigned VirtReg) {
474 // If the reload is to the assigned register anyway, no undo will be
475 // required.
476 if (PhysRegReused == AssignedPhysReg) return;
477
478 // Otherwise, remember this.
479 Reuses.push_back(ReusedOp(OpNo, StackSlot, PhysRegReused,
480 AssignedPhysReg, VirtReg));
481 }
Evan Chenge077ef62006-11-04 00:21:55 +0000482
483 void markClobbered(unsigned PhysReg) {
Evan Cheng957840b2007-02-21 02:22:03 +0000484 PhysRegsClobbered.set(PhysReg);
Evan Chenge077ef62006-11-04 00:21:55 +0000485 }
486
487 bool isClobbered(unsigned PhysReg) const {
Evan Cheng957840b2007-02-21 02:22:03 +0000488 return PhysRegsClobbered.test(PhysReg);
Evan Chenge077ef62006-11-04 00:21:55 +0000489 }
Chris Lattner540fec62006-02-25 01:51:33 +0000490
491 /// GetRegForReload - We are about to emit a reload into PhysReg. If there
492 /// is some other operand that is using the specified register, either pick
493 /// a new register to use, or evict the previous reload and use this reg.
494 unsigned GetRegForReload(unsigned PhysReg, MachineInstr *MI,
495 AvailableSpills &Spills,
Evan Cheng3c82cab2007-01-19 22:40:14 +0000496 std::map<int, MachineInstr*> &MaybeDeadStores,
Chris Lattner08a4d5a2007-01-23 00:59:48 +0000497 SmallSet<unsigned, 8> &Rejected) {
Chris Lattner540fec62006-02-25 01:51:33 +0000498 if (Reuses.empty()) return PhysReg; // This is most often empty.
499
500 for (unsigned ro = 0, e = Reuses.size(); ro != e; ++ro) {
501 ReusedOp &Op = Reuses[ro];
502 // If we find some other reuse that was supposed to use this register
503 // exactly for its reload, we can change this reload to use ITS reload
Evan Cheng3c82cab2007-01-19 22:40:14 +0000504 // register. That is, unless its reload register has already been
505 // considered and subsequently rejected because it has also been reused
506 // by another operand.
507 if (Op.PhysRegReused == PhysReg &&
508 Rejected.count(Op.AssignedPhysReg) == 0) {
Chris Lattner540fec62006-02-25 01:51:33 +0000509 // Yup, use the reload register that we didn't use before.
Evan Cheng3c82cab2007-01-19 22:40:14 +0000510 unsigned NewReg = Op.AssignedPhysReg;
511 Rejected.insert(PhysReg);
512 return GetRegForReload(NewReg, MI, Spills, MaybeDeadStores, Rejected);
Chris Lattner540fec62006-02-25 01:51:33 +0000513 } else {
514 // Otherwise, we might also have a problem if a previously reused
515 // value aliases the new register. If so, codegen the previous reload
516 // and use this one.
517 unsigned PRRU = Op.PhysRegReused;
518 const MRegisterInfo *MRI = Spills.getRegInfo();
519 if (MRI->areAliases(PRRU, PhysReg)) {
520 // Okay, we found out that an alias of a reused register
521 // was used. This isn't good because it means we have
522 // to undo a previous reuse.
523 MachineBasicBlock *MBB = MI->getParent();
524 const TargetRegisterClass *AliasRC =
Chris Lattner28bad082006-02-25 02:17:31 +0000525 MBB->getParent()->getSSARegMap()->getRegClass(Op.VirtReg);
526
527 // Copy Op out of the vector and remove it, we're going to insert an
528 // explicit load for it.
529 ReusedOp NewOp = Op;
530 Reuses.erase(Reuses.begin()+ro);
531
532 // Ok, we're going to try to reload the assigned physreg into the
533 // slot that we were supposed to in the first place. However, that
534 // register could hold a reuse. Check to see if it conflicts or
535 // would prefer us to use a different register.
536 unsigned NewPhysReg = GetRegForReload(NewOp.AssignedPhysReg,
Evan Cheng3c82cab2007-01-19 22:40:14 +0000537 MI, Spills, MaybeDeadStores, Rejected);
Chris Lattner28bad082006-02-25 02:17:31 +0000538
539 MRI->loadRegFromStackSlot(*MBB, MI, NewPhysReg,
540 NewOp.StackSlot, AliasRC);
541 Spills.ClobberPhysReg(NewPhysReg);
542 Spills.ClobberPhysReg(NewOp.PhysRegReused);
Chris Lattner540fec62006-02-25 01:51:33 +0000543
544 // Any stores to this stack slot are not dead anymore.
Chris Lattner28bad082006-02-25 02:17:31 +0000545 MaybeDeadStores.erase(NewOp.StackSlot);
Chris Lattner540fec62006-02-25 01:51:33 +0000546
Chris Lattnere53f4a02006-05-04 17:52:23 +0000547 MI->getOperand(NewOp.Operand).setReg(NewPhysReg);
Chris Lattner540fec62006-02-25 01:51:33 +0000548
Evan Cheng91e23902007-02-23 01:13:26 +0000549 Spills.addAvailable(NewOp.StackSlot, MI, NewPhysReg);
Chris Lattner540fec62006-02-25 01:51:33 +0000550 ++NumLoads;
551 DEBUG(MachineBasicBlock::iterator MII = MI;
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000552 DOUT << '\t' << *prior(MII));
Chris Lattner540fec62006-02-25 01:51:33 +0000553
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000554 DOUT << "Reuse undone!\n";
Chris Lattner540fec62006-02-25 01:51:33 +0000555 --NumReused;
Chris Lattner28bad082006-02-25 02:17:31 +0000556
557 // Finally, PhysReg is now available, go ahead and use it.
Chris Lattner540fec62006-02-25 01:51:33 +0000558 return PhysReg;
559 }
560 }
561 }
562 return PhysReg;
563 }
Evan Cheng3c82cab2007-01-19 22:40:14 +0000564
565 /// GetRegForReload - Helper for the above GetRegForReload(). Add a
566 /// 'Rejected' set to remember which registers have been considered and
567 /// rejected for the reload. This avoids infinite looping in case like
568 /// this:
569 /// t1 := op t2, t3
570 /// t2 <- assigned r0 for use by the reload but ended up reuse r1
571 /// t3 <- assigned r1 for use by the reload but ended up reuse r0
572 /// t1 <- desires r1
573 /// sees r1 is taken by t2, tries t2's reload register r0
574 /// sees r0 is taken by t3, tries t3's reload register r1
575 /// sees r1 is taken by t2, tries t2's reload register r0 ...
576 unsigned GetRegForReload(unsigned PhysReg, MachineInstr *MI,
577 AvailableSpills &Spills,
578 std::map<int, MachineInstr*> &MaybeDeadStores) {
Chris Lattner08a4d5a2007-01-23 00:59:48 +0000579 SmallSet<unsigned, 8> Rejected;
Evan Cheng3c82cab2007-01-19 22:40:14 +0000580 return GetRegForReload(PhysReg, MI, Spills, MaybeDeadStores, Rejected);
581 }
Chris Lattner540fec62006-02-25 01:51:33 +0000582 };
Chris Lattner7fb64342004-10-01 19:04:51 +0000583}
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000584
Chris Lattner7fb64342004-10-01 19:04:51 +0000585
Evan Cheng0c40d722007-07-11 05:28:39 +0000586/// InvalidateKills - MI is going to be deleted. If any of its operands are
587/// marked kill, then invalidate the information.
588static void InvalidateKills(MachineInstr &MI, BitVector &RegKills,
589 std::vector<MachineOperand*> &KillOps) {
590 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
591 MachineOperand &MO = MI.getOperand(i);
592 if (!MO.isReg() || !MO.isUse() || !MO.isKill())
593 continue;
594 unsigned Reg = MO.getReg();
595 if (KillOps[Reg] == &MO) {
596 RegKills.reset(Reg);
597 KillOps[Reg] = NULL;
598 }
599 }
600}
601
602/// UpdateKills - Track and update kill info. If a MI reads a register that is
603/// marked kill, then it must be due to register reuse. Transfer the kill info
604/// over.
605static void UpdateKills(MachineInstr &MI, BitVector &RegKills,
606 std::vector<MachineOperand*> &KillOps) {
607 const TargetInstrDescriptor *TID = MI.getInstrDescriptor();
608 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
609 MachineOperand &MO = MI.getOperand(i);
610 if (!MO.isReg() || !MO.isUse())
611 continue;
612 unsigned Reg = MO.getReg();
613 if (Reg == 0)
614 continue;
615
616 if (RegKills[Reg]) {
617 // That can't be right. Register is killed but not re-defined and it's
618 // being reused. Let's fix that.
619 KillOps[Reg]->unsetIsKill();
620 if (i < TID->numOperands &&
621 TID->getOperandConstraint(i, TOI::TIED_TO) == -1)
622 // Unless it's a two-address operand, this is the new kill.
623 MO.setIsKill();
624 }
625
626 if (MO.isKill()) {
627 RegKills.set(Reg);
628 KillOps[Reg] = &MO;
629 }
630 }
631
632 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
633 const MachineOperand &MO = MI.getOperand(i);
634 if (!MO.isReg() || !MO.isDef())
635 continue;
636 unsigned Reg = MO.getReg();
637 RegKills.reset(Reg);
638 KillOps[Reg] = NULL;
639 }
640}
641
642
Chris Lattner7fb64342004-10-01 19:04:51 +0000643/// rewriteMBB - Keep track of which spills are available even after the
644/// register allocator is done with them. If possible, avoid reloading vregs.
Evan Cheng2638e1a2007-03-20 08:13:50 +0000645void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM,
646 std::vector<MachineInstr*> &ReMatedMIs) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000647 DOUT << MBB.getBasicBlock()->getName() << ":\n";
Chris Lattner7fb64342004-10-01 19:04:51 +0000648
Chris Lattner66cf80f2006-02-03 23:13:58 +0000649 // Spills - Keep track of which spilled values are available in physregs so
650 // that we can choose to reuse the physregs instead of emitting reloads.
651 AvailableSpills Spills(MRI, TII);
652
Chris Lattner52b25db2004-10-01 19:47:12 +0000653 // MaybeDeadStores - When we need to write a value back into a stack slot,
654 // keep track of the inserted store. If the stack slot value is never read
655 // (because the value was used from some available register, for example), and
656 // subsequently stored to, the original store is dead. This map keeps track
657 // of inserted stores that are not used. If we see a subsequent store to the
658 // same stack slot, the original store is deleted.
659 std::map<int, MachineInstr*> MaybeDeadStores;
660
Evan Cheng0c40d722007-07-11 05:28:39 +0000661 // Keep track of kill information.
662 BitVector RegKills(MRI->getNumRegs());
663 std::vector<MachineOperand*> KillOps;
664 KillOps.resize(MRI->getNumRegs(), NULL);
665
Evan Cheng6c087e52007-04-25 22:13:27 +0000666 MachineFunction &MF = *MBB.getParent();
Chris Lattner7fb64342004-10-01 19:04:51 +0000667 for (MachineBasicBlock::iterator MII = MBB.begin(), E = MBB.end();
668 MII != E; ) {
669 MachineInstr &MI = *MII;
670 MachineBasicBlock::iterator NextMII = MII; ++NextMII;
Evan Cheng0c40d722007-07-11 05:28:39 +0000671 VirtRegMap::MI2VirtMapTy::const_iterator I, End;
672
673 bool Erased = false;
674 bool BackTracked = false;
Chris Lattner7fb64342004-10-01 19:04:51 +0000675
Chris Lattner540fec62006-02-25 01:51:33 +0000676 /// ReusedOperands - Keep track of operand reuse in case we need to undo
677 /// reuse.
Evan Chenge077ef62006-11-04 00:21:55 +0000678 ReuseInfo ReusedOperands(MI, MRI);
679
680 // Loop over all of the implicit defs, clearing them from our available
681 // sets.
Evan Cheng86facc22006-12-15 06:41:01 +0000682 const TargetInstrDescriptor *TID = MI.getInstrDescriptor();
Evan Cheng2638e1a2007-03-20 08:13:50 +0000683
684 // If this instruction is being rematerialized, just remove it!
Evan Cheng91935142007-04-04 07:40:01 +0000685 int FrameIdx;
Dan Gohman82a87a02007-06-19 01:48:05 +0000686 if (TII->isTriviallyReMaterializable(&MI) ||
687 TII->isLoadFromStackSlot(&MI, FrameIdx)) {
Evan Cheng0c40d722007-07-11 05:28:39 +0000688 Erased = true;
Evan Cheng2638e1a2007-03-20 08:13:50 +0000689 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
690 MachineOperand &MO = MI.getOperand(i);
691 if (!MO.isRegister() || MO.getReg() == 0)
692 continue; // Ignore non-register operands.
693 if (MO.isDef() && !VRM.isReMaterialized(MO.getReg())) {
Evan Cheng0c40d722007-07-11 05:28:39 +0000694 Erased = false;
Evan Cheng2638e1a2007-03-20 08:13:50 +0000695 break;
696 }
697 }
Evan Cheng0c40d722007-07-11 05:28:39 +0000698 if (Erased) {
Evan Cheng2638e1a2007-03-20 08:13:50 +0000699 VRM.RemoveFromFoldedVirtMap(&MI);
700 ReMatedMIs.push_back(MI.removeFromParent());
Evan Cheng0c40d722007-07-11 05:28:39 +0000701 goto ProcessNextInst;
Evan Cheng2638e1a2007-03-20 08:13:50 +0000702 }
703 }
704
Evan Cheng0c40d722007-07-11 05:28:39 +0000705 if (TID->ImplicitDefs) {
706 const unsigned *ImpDef = TID->ImplicitDefs;
Evan Chenge077ef62006-11-04 00:21:55 +0000707 for ( ; *ImpDef; ++ImpDef) {
Evan Cheng6c087e52007-04-25 22:13:27 +0000708 MF.setPhysRegUsed(*ImpDef);
Evan Chenge077ef62006-11-04 00:21:55 +0000709 ReusedOperands.markClobbered(*ImpDef);
710 Spills.ClobberPhysReg(*ImpDef);
711 }
712 }
713
Chris Lattner7fb64342004-10-01 19:04:51 +0000714 // Process all of the spilled uses and all non spilled reg references.
715 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
716 MachineOperand &MO = MI.getOperand(i);
Chris Lattner50ea01e2005-09-09 20:29:51 +0000717 if (!MO.isRegister() || MO.getReg() == 0)
718 continue; // Ignore non-register operands.
719
720 if (MRegisterInfo::isPhysicalRegister(MO.getReg())) {
721 // Ignore physregs for spilling, but remember that it is used by this
722 // function.
Evan Cheng6c087e52007-04-25 22:13:27 +0000723 MF.setPhysRegUsed(MO.getReg());
Evan Chenge077ef62006-11-04 00:21:55 +0000724 ReusedOperands.markClobbered(MO.getReg());
Chris Lattner50ea01e2005-09-09 20:29:51 +0000725 continue;
726 }
727
728 assert(MRegisterInfo::isVirtualRegister(MO.getReg()) &&
729 "Not a virtual or a physical register?");
730
731 unsigned VirtReg = MO.getReg();
732 if (!VRM.hasStackSlot(VirtReg)) {
733 // This virtual register was assigned a physreg!
734 unsigned Phys = VRM.getPhys(VirtReg);
Evan Cheng6c087e52007-04-25 22:13:27 +0000735 MF.setPhysRegUsed(Phys);
Evan Chenge077ef62006-11-04 00:21:55 +0000736 if (MO.isDef())
737 ReusedOperands.markClobbered(Phys);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000738 MI.getOperand(i).setReg(Phys);
Chris Lattner50ea01e2005-09-09 20:29:51 +0000739 continue;
740 }
741
742 // This virtual register is now known to be a spilled value.
743 if (!MO.isUse())
744 continue; // Handle defs in the loop below (handle use&def here though)
Chris Lattner7fb64342004-10-01 19:04:51 +0000745
Evan Cheng2638e1a2007-03-20 08:13:50 +0000746 bool doReMat = VRM.isReMaterialized(VirtReg);
Chris Lattner50ea01e2005-09-09 20:29:51 +0000747 int StackSlot = VRM.getStackSlot(VirtReg);
748 unsigned PhysReg;
Chris Lattner7fb64342004-10-01 19:04:51 +0000749
Chris Lattner50ea01e2005-09-09 20:29:51 +0000750 // Check to see if this stack slot is available.
Evan Chengb9591c62007-07-11 08:47:44 +0000751 if ((PhysReg = Spills.getSpillSlotPhysReg(StackSlot))) {
Chris Lattner29268692006-09-05 02:12:02 +0000752 // This spilled operand might be part of a two-address operand. If this
753 // is the case, then changing it will necessarily require changing the
754 // def part of the instruction as well. However, in some cases, we
755 // aren't allowed to modify the reused register. If none of these cases
756 // apply, reuse it.
757 bool CanReuse = true;
Evan Cheng86facc22006-12-15 06:41:01 +0000758 int ti = TID->getOperandConstraint(i, TOI::TIED_TO);
Evan Cheng360c2dd2006-11-01 23:06:55 +0000759 if (ti != -1 &&
760 MI.getOperand(ti).isReg() &&
761 MI.getOperand(ti).getReg() == VirtReg) {
Chris Lattner29268692006-09-05 02:12:02 +0000762 // Okay, we have a two address operand. We can reuse this physreg as
Evan Cheng3c82cab2007-01-19 22:40:14 +0000763 // long as we are allowed to clobber the value and there isn't an
764 // earlier def that has already clobbered the physreg.
Evan Chenge077ef62006-11-04 00:21:55 +0000765 CanReuse = Spills.canClobberPhysReg(StackSlot) &&
766 !ReusedOperands.isClobbered(PhysReg);
Chris Lattner29268692006-09-05 02:12:02 +0000767 }
768
769 if (CanReuse) {
Chris Lattneraddc55a2006-04-28 01:46:50 +0000770 // If this stack slot value is already available, reuse it!
Evan Cheng2638e1a2007-03-20 08:13:50 +0000771 if (StackSlot > VirtRegMap::MAX_STACK_SLOT)
772 DOUT << "Reusing RM#" << StackSlot-VirtRegMap::MAX_STACK_SLOT-1;
773 else
774 DOUT << "Reusing SS#" << StackSlot;
775 DOUT << " from physreg "
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000776 << MRI->getName(PhysReg) << " for vreg"
777 << VirtReg <<" instead of reloading into physreg "
778 << MRI->getName(VRM.getPhys(VirtReg)) << "\n";
Chris Lattnere53f4a02006-05-04 17:52:23 +0000779 MI.getOperand(i).setReg(PhysReg);
Chris Lattneraddc55a2006-04-28 01:46:50 +0000780
781 // The only technical detail we have is that we don't know that
782 // PhysReg won't be clobbered by a reloaded stack slot that occurs
783 // later in the instruction. In particular, consider 'op V1, V2'.
784 // If V1 is available in physreg R0, we would choose to reuse it
785 // here, instead of reloading it into the register the allocator
786 // indicated (say R1). However, V2 might have to be reloaded
787 // later, and it might indicate that it needs to live in R0. When
788 // this occurs, we need to have information available that
789 // indicates it is safe to use R1 for the reload instead of R0.
790 //
791 // To further complicate matters, we might conflict with an alias,
792 // or R0 and R1 might not be compatible with each other. In this
793 // case, we actually insert a reload for V1 in R1, ensuring that
794 // we can get at R0 or its alias.
795 ReusedOperands.addReuse(i, StackSlot, PhysReg,
796 VRM.getPhys(VirtReg), VirtReg);
Evan Chenge077ef62006-11-04 00:21:55 +0000797 if (ti != -1)
798 // Only mark it clobbered if this is a use&def operand.
799 ReusedOperands.markClobbered(PhysReg);
Chris Lattneraddc55a2006-04-28 01:46:50 +0000800 ++NumReused;
801 continue;
802 }
803
804 // Otherwise we have a situation where we have a two-address instruction
805 // whose mod/ref operand needs to be reloaded. This reload is already
806 // available in some register "PhysReg", but if we used PhysReg as the
807 // operand to our 2-addr instruction, the instruction would modify
808 // PhysReg. This isn't cool if something later uses PhysReg and expects
809 // to get its initial value.
Chris Lattner50ea01e2005-09-09 20:29:51 +0000810 //
Chris Lattneraddc55a2006-04-28 01:46:50 +0000811 // To avoid this problem, and to avoid doing a load right after a store,
812 // we emit a copy from PhysReg into the designated register for this
813 // operand.
814 unsigned DesignatedReg = VRM.getPhys(VirtReg);
815 assert(DesignatedReg && "Must map virtreg to physreg!");
816
817 // Note that, if we reused a register for a previous operand, the
818 // register we want to reload into might not actually be
819 // available. If this occurs, use the register indicated by the
820 // reuser.
821 if (ReusedOperands.hasReuses())
822 DesignatedReg = ReusedOperands.GetRegForReload(DesignatedReg, &MI,
823 Spills, MaybeDeadStores);
824
Chris Lattnerba1fc3d2006-04-28 04:43:18 +0000825 // If the mapped designated register is actually the physreg we have
826 // incoming, we don't need to inserted a dead copy.
827 if (DesignatedReg == PhysReg) {
828 // If this stack slot value is already available, reuse it!
Evan Cheng2638e1a2007-03-20 08:13:50 +0000829 if (StackSlot > VirtRegMap::MAX_STACK_SLOT)
830 DOUT << "Reusing RM#" << StackSlot-VirtRegMap::MAX_STACK_SLOT-1;
831 else
832 DOUT << "Reusing SS#" << StackSlot;
833 DOUT << " from physreg " << MRI->getName(PhysReg) << " for vreg"
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000834 << VirtReg
835 << " instead of reloading into same physreg.\n";
Chris Lattnere53f4a02006-05-04 17:52:23 +0000836 MI.getOperand(i).setReg(PhysReg);
Evan Chenge077ef62006-11-04 00:21:55 +0000837 ReusedOperands.markClobbered(PhysReg);
Chris Lattnerba1fc3d2006-04-28 04:43:18 +0000838 ++NumReused;
839 continue;
840 }
841
Evan Cheng6c087e52007-04-25 22:13:27 +0000842 const TargetRegisterClass* RC = MF.getSSARegMap()->getRegClass(VirtReg);
843 MF.setPhysRegUsed(DesignatedReg);
Evan Chenge077ef62006-11-04 00:21:55 +0000844 ReusedOperands.markClobbered(DesignatedReg);
Chris Lattneraddc55a2006-04-28 01:46:50 +0000845 MRI->copyRegToReg(MBB, &MI, DesignatedReg, PhysReg, RC);
Evan Chengde4e9422007-02-25 09:51:27 +0000846
Evan Cheng6b448092007-03-02 08:52:00 +0000847 MachineInstr *CopyMI = prior(MII);
Evan Cheng0c40d722007-07-11 05:28:39 +0000848 UpdateKills(*CopyMI, RegKills, KillOps);
Evan Chengde4e9422007-02-25 09:51:27 +0000849
Chris Lattneraddc55a2006-04-28 01:46:50 +0000850 // This invalidates DesignatedReg.
851 Spills.ClobberPhysReg(DesignatedReg);
852
Evan Cheng91e23902007-02-23 01:13:26 +0000853 Spills.addAvailable(StackSlot, &MI, DesignatedReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000854 MI.getOperand(i).setReg(DesignatedReg);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000855 DOUT << '\t' << *prior(MII);
Chris Lattner50ea01e2005-09-09 20:29:51 +0000856 ++NumReused;
857 continue;
858 }
859
860 // Otherwise, reload it and remember that we have it.
861 PhysReg = VRM.getPhys(VirtReg);
Chris Lattner172c3622006-01-04 06:47:48 +0000862 assert(PhysReg && "Must map virtreg to physreg!");
Evan Cheng6c087e52007-04-25 22:13:27 +0000863 const TargetRegisterClass* RC = MF.getSSARegMap()->getRegClass(VirtReg);
Chris Lattner7fb64342004-10-01 19:04:51 +0000864
Chris Lattner50ea01e2005-09-09 20:29:51 +0000865 // Note that, if we reused a register for a previous operand, the
866 // register we want to reload into might not actually be
867 // available. If this occurs, use the register indicated by the
868 // reuser.
Chris Lattner540fec62006-02-25 01:51:33 +0000869 if (ReusedOperands.hasReuses())
870 PhysReg = ReusedOperands.GetRegForReload(PhysReg, &MI,
871 Spills, MaybeDeadStores);
872
Evan Cheng6c087e52007-04-25 22:13:27 +0000873 MF.setPhysRegUsed(PhysReg);
Evan Chenge077ef62006-11-04 00:21:55 +0000874 ReusedOperands.markClobbered(PhysReg);
Evan Cheng91935142007-04-04 07:40:01 +0000875 if (doReMat) {
Evan Cheng2638e1a2007-03-20 08:13:50 +0000876 MRI->reMaterialize(MBB, &MI, PhysReg, VRM.getReMaterializedMI(VirtReg));
Evan Cheng91935142007-04-04 07:40:01 +0000877 ++NumReMats;
878 } else {
Evan Cheng2638e1a2007-03-20 08:13:50 +0000879 MRI->loadRegFromStackSlot(MBB, &MI, PhysReg, StackSlot, RC);
Evan Cheng91935142007-04-04 07:40:01 +0000880 ++NumLoads;
881 }
Chris Lattner50ea01e2005-09-09 20:29:51 +0000882 // This invalidates PhysReg.
Chris Lattner66cf80f2006-02-03 23:13:58 +0000883 Spills.ClobberPhysReg(PhysReg);
Chris Lattner50ea01e2005-09-09 20:29:51 +0000884
885 // Any stores to this stack slot are not dead anymore.
Evan Cheng2638e1a2007-03-20 08:13:50 +0000886 if (!doReMat)
887 MaybeDeadStores.erase(StackSlot);
Evan Cheng91e23902007-02-23 01:13:26 +0000888 Spills.addAvailable(StackSlot, &MI, PhysReg);
Evan Chengde4e9422007-02-25 09:51:27 +0000889 // Assumes this is the last use. IsKill will be unset if reg is reused
890 // unless it's a two-address operand.
891 if (TID->getOperandConstraint(i, TOI::TIED_TO) == -1)
892 MI.getOperand(i).setIsKill();
Chris Lattnere53f4a02006-05-04 17:52:23 +0000893 MI.getOperand(i).setReg(PhysReg);
Evan Cheng0c40d722007-07-11 05:28:39 +0000894 UpdateKills(*prior(MII), RegKills, KillOps);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000895 DOUT << '\t' << *prior(MII);
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000896 }
897
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000898 DOUT << '\t' << MI;
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000899
Chris Lattner7fb64342004-10-01 19:04:51 +0000900 // If we have folded references to memory operands, make sure we clear all
901 // physical registers that may contain the value of the spilled virtual
902 // register
Chris Lattner8f1d6402005-01-14 15:54:24 +0000903 for (tie(I, End) = VRM.getFoldedVirts(&MI); I != End; ++I) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000904 DOUT << "Folded vreg: " << I->second.first << " MR: "
905 << I->second.second;
Chris Lattnerbec6a9e2004-10-01 23:15:36 +0000906 unsigned VirtReg = I->second.first;
907 VirtRegMap::ModRef MR = I->second.second;
Chris Lattnercea86882005-09-19 06:56:21 +0000908 if (!VRM.hasStackSlot(VirtReg)) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000909 DOUT << ": No stack slot!\n";
Chris Lattnercea86882005-09-19 06:56:21 +0000910 continue;
911 }
912 int SS = VRM.getStackSlot(VirtReg);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000913 DOUT << " - StackSlot: " << SS << "\n";
Chris Lattnercea86882005-09-19 06:56:21 +0000914
915 // If this folded instruction is just a use, check to see if it's a
916 // straight load from the virt reg slot.
917 if ((MR & VirtRegMap::isRef) && !(MR & VirtRegMap::isMod)) {
918 int FrameIdx;
Chris Lattner40839602006-02-02 20:12:32 +0000919 if (unsigned DestReg = TII->isLoadFromStackSlot(&MI, FrameIdx)) {
Chris Lattner6ec36262006-10-12 17:45:38 +0000920 if (FrameIdx == SS) {
921 // If this spill slot is available, turn it into a copy (or nothing)
922 // instead of leaving it as a load!
Evan Chengb9591c62007-07-11 08:47:44 +0000923 if (unsigned InReg = Spills.getSpillSlotPhysReg(SS)) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000924 DOUT << "Promoted Load To Copy: " << MI;
Chris Lattner6ec36262006-10-12 17:45:38 +0000925 if (DestReg != InReg) {
926 MRI->copyRegToReg(MBB, &MI, DestReg, InReg,
927 MF.getSSARegMap()->getRegClass(VirtReg));
928 // Revisit the copy so we make sure to notice the effects of the
929 // operation on the destreg (either needing to RA it if it's
930 // virtual or needing to clobber any values if it's physical).
931 NextMII = &MI;
932 --NextMII; // backtrack to the copy.
Evan Cheng0c40d722007-07-11 05:28:39 +0000933 BackTracked = true;
Evan Chengde4e9422007-02-25 09:51:27 +0000934 } else
935 DOUT << "Removing now-noop copy: " << MI;
936
Chris Lattner6ec36262006-10-12 17:45:38 +0000937 VRM.RemoveFromFoldedVirtMap(&MI);
938 MBB.erase(&MI);
Evan Cheng0c40d722007-07-11 05:28:39 +0000939 Erased = true;
Chris Lattner6ec36262006-10-12 17:45:38 +0000940 goto ProcessNextInst;
Chris Lattnercea86882005-09-19 06:56:21 +0000941 }
Chris Lattnercea86882005-09-19 06:56:21 +0000942 }
943 }
944 }
945
946 // If this reference is not a use, any previous store is now dead.
947 // Otherwise, the store to this stack slot is not dead anymore.
948 std::map<int, MachineInstr*>::iterator MDSI = MaybeDeadStores.find(SS);
949 if (MDSI != MaybeDeadStores.end()) {
950 if (MR & VirtRegMap::isRef) // Previous store is not dead.
951 MaybeDeadStores.erase(MDSI);
952 else {
953 // If we get here, the store is dead, nuke it now.
Chris Lattner35f27052006-05-01 21:16:03 +0000954 assert(VirtRegMap::isMod && "Can't be modref!");
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000955 DOUT << "Removed dead store:\t" << *MDSI->second;
Evan Cheng0c40d722007-07-11 05:28:39 +0000956 InvalidateKills(*MDSI->second, RegKills, KillOps);
Chris Lattner35f27052006-05-01 21:16:03 +0000957 MBB.erase(MDSI->second);
Chris Lattner229924a2006-05-01 22:03:24 +0000958 VRM.RemoveFromFoldedVirtMap(MDSI->second);
Chris Lattner35f27052006-05-01 21:16:03 +0000959 MaybeDeadStores.erase(MDSI);
960 ++NumDSE;
Chris Lattnercea86882005-09-19 06:56:21 +0000961 }
962 }
963
964 // If the spill slot value is available, and this is a new definition of
965 // the value, the value is not available anymore.
966 if (MR & VirtRegMap::isMod) {
Chris Lattner07cf1412006-02-03 00:36:31 +0000967 // Notice that the value in this stack slot has been modified.
Chris Lattner66cf80f2006-02-03 23:13:58 +0000968 Spills.ModifyStackSlot(SS);
Chris Lattnercd816392006-02-02 23:29:36 +0000969
970 // If this is *just* a mod of the value, check to see if this is just a
971 // store to the spill slot (i.e. the spill got merged into the copy). If
972 // so, realize that the vreg is available now, and add the store to the
973 // MaybeDeadStore info.
974 int StackSlot;
975 if (!(MR & VirtRegMap::isRef)) {
976 if (unsigned SrcReg = TII->isStoreToStackSlot(&MI, StackSlot)) {
977 assert(MRegisterInfo::isPhysicalRegister(SrcReg) &&
978 "Src hasn't been allocated yet?");
Chris Lattner07cf1412006-02-03 00:36:31 +0000979 // Okay, this is certainly a store of SrcReg to [StackSlot]. Mark
Chris Lattnercd816392006-02-02 23:29:36 +0000980 // this as a potentially dead store in case there is a subsequent
981 // store into the stack slot without a read from it.
982 MaybeDeadStores[StackSlot] = &MI;
983
Chris Lattnercd816392006-02-02 23:29:36 +0000984 // If the stack slot value was previously available in some other
985 // register, change it now. Otherwise, make the register available,
986 // in PhysReg.
Evan Cheng91e23902007-02-23 01:13:26 +0000987 Spills.addAvailable(StackSlot, &MI, SrcReg, false/*don't clobber*/);
Chris Lattnercd816392006-02-02 23:29:36 +0000988 }
989 }
Chris Lattner7fb64342004-10-01 19:04:51 +0000990 }
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000991 }
992
Chris Lattner7fb64342004-10-01 19:04:51 +0000993 // Process all of the spilled defs.
994 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
995 MachineOperand &MO = MI.getOperand(i);
996 if (MO.isRegister() && MO.getReg() && MO.isDef()) {
997 unsigned VirtReg = MO.getReg();
Chris Lattner8c4d88d2004-09-30 01:54:45 +0000998
Chris Lattner7fb64342004-10-01 19:04:51 +0000999 if (!MRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner29268692006-09-05 02:12:02 +00001000 // Check to see if this is a noop copy. If so, eliminate the
1001 // instruction before considering the dest reg to be changed.
1002 unsigned Src, Dst;
1003 if (TII->isMoveInstr(MI, Src, Dst) && Src == Dst) {
1004 ++NumDCE;
Bill Wendlingb2b9c202006-11-17 02:09:07 +00001005 DOUT << "Removing now-noop copy: " << MI;
Chris Lattner29268692006-09-05 02:12:02 +00001006 MBB.erase(&MI);
Evan Cheng0c40d722007-07-11 05:28:39 +00001007 Erased = true;
Chris Lattner29268692006-09-05 02:12:02 +00001008 VRM.RemoveFromFoldedVirtMap(&MI);
Evan Cheng7a0d51c2006-12-14 07:54:05 +00001009 Spills.disallowClobberPhysReg(VirtReg);
Chris Lattner29268692006-09-05 02:12:02 +00001010 goto ProcessNextInst;
Chris Lattner7fb64342004-10-01 19:04:51 +00001011 }
Chris Lattner6ec36262006-10-12 17:45:38 +00001012
1013 // If it's not a no-op copy, it clobbers the value in the destreg.
Chris Lattner29268692006-09-05 02:12:02 +00001014 Spills.ClobberPhysReg(VirtReg);
Evan Chenge077ef62006-11-04 00:21:55 +00001015 ReusedOperands.markClobbered(VirtReg);
Chris Lattner6ec36262006-10-12 17:45:38 +00001016
1017 // Check to see if this instruction is a load from a stack slot into
1018 // a register. If so, this provides the stack slot value in the reg.
1019 int FrameIdx;
1020 if (unsigned DestReg = TII->isLoadFromStackSlot(&MI, FrameIdx)) {
1021 assert(DestReg == VirtReg && "Unknown load situation!");
1022
1023 // Otherwise, if it wasn't available, remember that it is now!
Evan Cheng91e23902007-02-23 01:13:26 +00001024 Spills.addAvailable(FrameIdx, &MI, DestReg);
Chris Lattner6ec36262006-10-12 17:45:38 +00001025 goto ProcessNextInst;
1026 }
1027
Chris Lattner29268692006-09-05 02:12:02 +00001028 continue;
Misha Brukmanedf128a2005-04-21 22:36:52 +00001029 }
Chris Lattner7fb64342004-10-01 19:04:51 +00001030
Chris Lattner84e752a2006-02-03 03:06:49 +00001031 // The only vregs left are stack slot definitions.
1032 int StackSlot = VRM.getStackSlot(VirtReg);
Evan Cheng6c087e52007-04-25 22:13:27 +00001033 const TargetRegisterClass *RC = MF.getSSARegMap()->getRegClass(VirtReg);
Chris Lattner7fb64342004-10-01 19:04:51 +00001034
Chris Lattner29268692006-09-05 02:12:02 +00001035 // If this def is part of a two-address operand, make sure to execute
1036 // the store from the correct physical register.
1037 unsigned PhysReg;
Evan Chengcc22a7a2006-12-08 18:45:48 +00001038 int TiedOp = MI.getInstrDescriptor()->findTiedToSrcOperand(i);
Evan Cheng360c2dd2006-11-01 23:06:55 +00001039 if (TiedOp != -1)
1040 PhysReg = MI.getOperand(TiedOp).getReg();
Evan Chenge077ef62006-11-04 00:21:55 +00001041 else {
Chris Lattner29268692006-09-05 02:12:02 +00001042 PhysReg = VRM.getPhys(VirtReg);
Evan Chenge077ef62006-11-04 00:21:55 +00001043 if (ReusedOperands.isClobbered(PhysReg)) {
1044 // Another def has taken the assigned physreg. It must have been a
1045 // use&def which got it due to reuse. Undo the reuse!
1046 PhysReg = ReusedOperands.GetRegForReload(PhysReg, &MI,
1047 Spills, MaybeDeadStores);
1048 }
1049 }
Chris Lattner7fb64342004-10-01 19:04:51 +00001050
Evan Cheng6c087e52007-04-25 22:13:27 +00001051 MF.setPhysRegUsed(PhysReg);
Evan Chenge077ef62006-11-04 00:21:55 +00001052 ReusedOperands.markClobbered(PhysReg);
Chris Lattner84e752a2006-02-03 03:06:49 +00001053 MRI->storeRegToStackSlot(MBB, next(MII), PhysReg, StackSlot, RC);
Bill Wendlingb2b9c202006-11-17 02:09:07 +00001054 DOUT << "Store:\t" << *next(MII);
Chris Lattnere53f4a02006-05-04 17:52:23 +00001055 MI.getOperand(i).setReg(PhysReg);
Chris Lattner7fb64342004-10-01 19:04:51 +00001056
Chris Lattner84e752a2006-02-03 03:06:49 +00001057 // If there is a dead store to this stack slot, nuke it now.
1058 MachineInstr *&LastStore = MaybeDeadStores[StackSlot];
1059 if (LastStore) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +00001060 DOUT << "Removed dead store:\t" << *LastStore;
Chris Lattner84e752a2006-02-03 03:06:49 +00001061 ++NumDSE;
Evan Cheng0c40d722007-07-11 05:28:39 +00001062 InvalidateKills(*LastStore, RegKills, KillOps);
Chris Lattner84e752a2006-02-03 03:06:49 +00001063 MBB.erase(LastStore);
Chris Lattner229924a2006-05-01 22:03:24 +00001064 VRM.RemoveFromFoldedVirtMap(LastStore);
Chris Lattner7fb64342004-10-01 19:04:51 +00001065 }
Chris Lattner84e752a2006-02-03 03:06:49 +00001066 LastStore = next(MII);
1067
1068 // If the stack slot value was previously available in some other
1069 // register, change it now. Otherwise, make the register available,
1070 // in PhysReg.
Chris Lattner66cf80f2006-02-03 23:13:58 +00001071 Spills.ModifyStackSlot(StackSlot);
1072 Spills.ClobberPhysReg(PhysReg);
Evan Cheng91e23902007-02-23 01:13:26 +00001073 Spills.addAvailable(StackSlot, LastStore, PhysReg);
Chris Lattner84e752a2006-02-03 03:06:49 +00001074 ++NumStores;
Evan Chengf50d09a2007-02-08 06:04:54 +00001075
1076 // Check to see if this is a noop copy. If so, eliminate the
1077 // instruction before considering the dest reg to be changed.
1078 {
1079 unsigned Src, Dst;
1080 if (TII->isMoveInstr(MI, Src, Dst) && Src == Dst) {
1081 ++NumDCE;
1082 DOUT << "Removing now-noop copy: " << MI;
1083 MBB.erase(&MI);
Evan Cheng0c40d722007-07-11 05:28:39 +00001084 Erased = true;
Evan Chengf50d09a2007-02-08 06:04:54 +00001085 VRM.RemoveFromFoldedVirtMap(&MI);
1086 goto ProcessNextInst;
1087 }
1088 }
Chris Lattner7fb64342004-10-01 19:04:51 +00001089 }
1090 }
Chris Lattnercea86882005-09-19 06:56:21 +00001091 ProcessNextInst:
Evan Cheng0c40d722007-07-11 05:28:39 +00001092 if (!Erased && !BackTracked)
1093 for (MachineBasicBlock::iterator II = MI; II != NextMII; ++II)
1094 UpdateKills(*II, RegKills, KillOps);
Chris Lattner7fb64342004-10-01 19:04:51 +00001095 MII = NextMII;
1096 }
Chris Lattner8c4d88d2004-09-30 01:54:45 +00001097}
1098
Chris Lattnerf7da2c72006-08-24 22:43:55 +00001099
Chris Lattner8c4d88d2004-09-30 01:54:45 +00001100llvm::Spiller* llvm::createSpiller() {
1101 switch (SpillerOpt) {
1102 default: assert(0 && "Unreachable!");
1103 case local:
1104 return new LocalSpiller();
1105 case simple:
1106 return new SimpleSpiller();
1107 }
Alkis Evlogimenos0d6c5b62004-02-24 08:58:30 +00001108}