Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 1 | //===-- 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 Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 10 | // 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 Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 15 | // code as necessary. |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 16 | // |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 19 | #define DEBUG_TYPE "spiller" |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 20 | #include "VirtRegMap.h" |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 21 | #include "llvm/Function.h" |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunction.h" |
| 24 | #include "llvm/CodeGen/SSARegMap.h" |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetMachine.h" |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetInstrInfo.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 27 | #include "llvm/Support/CommandLine.h" |
| 28 | #include "llvm/Support/Debug.h" |
Chris Lattner | a4f0b3a | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Compiler.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/Statistic.h" |
| 31 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | 27f2916 | 2004-10-26 15:35:58 +0000 | [diff] [blame] | 32 | #include <algorithm> |
Chris Lattner | 2c2c6c6 | 2006-01-22 23:41:00 +0000 | [diff] [blame] | 33 | #include <iostream> |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 34 | using namespace llvm; |
| 35 | |
| 36 | namespace { |
Andrew Lenharth | ed41f1b | 2006-07-20 17:28:38 +0000 | [diff] [blame] | 37 | static Statistic<> NumSpills("spiller", "Number of register spills"); |
| 38 | static Statistic<> NumStores("spiller", "Number of stores added"); |
| 39 | static Statistic<> NumLoads ("spiller", "Number of loads added"); |
| 40 | static Statistic<> NumReused("spiller", "Number of values reused"); |
| 41 | static Statistic<> NumDSE ("spiller", "Number of dead stores elided"); |
| 42 | static Statistic<> NumDCE ("spiller", "Number of copies elided"); |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 43 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 44 | enum SpillerName { simple, local }; |
Alkis Evlogimenos | dd420e0 | 2004-03-01 23:18:15 +0000 | [diff] [blame] | 45 | |
Andrew Lenharth | ed41f1b | 2006-07-20 17:28:38 +0000 | [diff] [blame] | 46 | static cl::opt<SpillerName> |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 47 | SpillerOpt("spiller", |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 48 | cl::desc("Spiller to use: (default: local)"), |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 49 | cl::Prefix, |
| 50 | cl::values(clEnumVal(simple, " simple spiller"), |
| 51 | clEnumVal(local, " local spiller"), |
| 52 | clEnumValEnd), |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 53 | cl::init(local)); |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 56 | //===----------------------------------------------------------------------===// |
| 57 | // VirtRegMap implementation |
| 58 | //===----------------------------------------------------------------------===// |
| 59 | |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 60 | VirtRegMap::VirtRegMap(MachineFunction &mf) |
| 61 | : TII(*mf.getTarget().getInstrInfo()), MF(mf), |
| 62 | Virt2PhysMap(NO_PHYS_REG), Virt2StackSlotMap(NO_STACK_SLOT) { |
| 63 | grow(); |
| 64 | } |
| 65 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 66 | void VirtRegMap::grow() { |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 67 | Virt2PhysMap.grow(MF.getSSARegMap()->getLastVirtReg()); |
| 68 | Virt2StackSlotMap.grow(MF.getSSARegMap()->getLastVirtReg()); |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 71 | int VirtRegMap::assignVirt2StackSlot(unsigned virtReg) { |
| 72 | assert(MRegisterInfo::isVirtualRegister(virtReg)); |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 73 | assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT && |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 74 | "attempt to assign stack slot to already spilled register"); |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 75 | const TargetRegisterClass* RC = MF.getSSARegMap()->getRegClass(virtReg); |
| 76 | int frameIndex = MF.getFrameInfo()->CreateStackObject(RC->getSize(), |
| 77 | RC->getAlignment()); |
| 78 | Virt2StackSlotMap[virtReg] = frameIndex; |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 79 | ++NumSpills; |
| 80 | return frameIndex; |
| 81 | } |
| 82 | |
| 83 | void VirtRegMap::assignVirt2StackSlot(unsigned virtReg, int frameIndex) { |
| 84 | assert(MRegisterInfo::isVirtualRegister(virtReg)); |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 85 | assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT && |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 86 | "attempt to assign stack slot to already spilled register"); |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 87 | Virt2StackSlotMap[virtReg] = frameIndex; |
Alkis Evlogimenos | 38af59a | 2004-05-29 20:38:05 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Chris Lattner | bec6a9e | 2004-10-01 23:15:36 +0000 | [diff] [blame] | 90 | void VirtRegMap::virtFolded(unsigned VirtReg, MachineInstr *OldMI, |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 91 | unsigned OpNo, MachineInstr *NewMI) { |
Chris Lattner | bec6a9e | 2004-10-01 23:15:36 +0000 | [diff] [blame] | 92 | // Move previous memory references folded to new instruction. |
| 93 | MI2VirtMapTy::iterator IP = MI2VirtMap.lower_bound(NewMI); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 94 | for (MI2VirtMapTy::iterator I = MI2VirtMap.lower_bound(OldMI), |
Chris Lattner | bec6a9e | 2004-10-01 23:15:36 +0000 | [diff] [blame] | 95 | E = MI2VirtMap.end(); I != E && I->first == OldMI; ) { |
| 96 | MI2VirtMap.insert(IP, std::make_pair(NewMI, I->second)); |
Chris Lattner | dbea973 | 2004-09-30 16:35:08 +0000 | [diff] [blame] | 97 | MI2VirtMap.erase(I++); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 98 | } |
Chris Lattner | dbea973 | 2004-09-30 16:35:08 +0000 | [diff] [blame] | 99 | |
Chris Lattner | bec6a9e | 2004-10-01 23:15:36 +0000 | [diff] [blame] | 100 | ModRef MRInfo; |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 101 | if (OpNo < 2 && TII.isTwoAddrInstr(OldMI->getOpcode())) { |
| 102 | // Folded a two-address operand. |
| 103 | MRInfo = isModRef; |
| 104 | } else if (OldMI->getOperand(OpNo).isDef()) { |
| 105 | MRInfo = isMod; |
Chris Lattner | bec6a9e | 2004-10-01 23:15:36 +0000 | [diff] [blame] | 106 | } else { |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 107 | MRInfo = isRef; |
Chris Lattner | bec6a9e | 2004-10-01 23:15:36 +0000 | [diff] [blame] | 108 | } |
Alkis Evlogimenos | 5f37502 | 2004-03-01 20:05:10 +0000 | [diff] [blame] | 109 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 110 | // add new memory reference |
Chris Lattner | bec6a9e | 2004-10-01 23:15:36 +0000 | [diff] [blame] | 111 | MI2VirtMap.insert(IP, std::make_pair(NewMI, std::make_pair(VirtReg, MRInfo))); |
Alkis Evlogimenos | 5f37502 | 2004-03-01 20:05:10 +0000 | [diff] [blame] | 112 | } |
| 113 | |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 114 | void VirtRegMap::print(std::ostream &OS) const { |
| 115 | const MRegisterInfo* MRI = MF.getTarget().getRegisterInfo(); |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 116 | |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 117 | OS << "********** REGISTER MAP **********\n"; |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 118 | for (unsigned i = MRegisterInfo::FirstVirtualRegister, |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 119 | e = MF.getSSARegMap()->getLastVirtReg(); i <= e; ++i) { |
| 120 | if (Virt2PhysMap[i] != (unsigned)VirtRegMap::NO_PHYS_REG) |
| 121 | OS << "[reg" << i << " -> " << MRI->getName(Virt2PhysMap[i]) << "]\n"; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 122 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | for (unsigned i = MRegisterInfo::FirstVirtualRegister, |
Chris Lattner | 7f690e6 | 2004-09-30 02:15:18 +0000 | [diff] [blame] | 126 | e = MF.getSSARegMap()->getLastVirtReg(); i <= e; ++i) |
| 127 | if (Virt2StackSlotMap[i] != VirtRegMap::NO_STACK_SLOT) |
| 128 | OS << "[reg" << i << " -> fi#" << Virt2StackSlotMap[i] << "]\n"; |
| 129 | OS << '\n'; |
Alkis Evlogimenos | 34d9bc9 | 2004-02-23 23:08:11 +0000 | [diff] [blame] | 130 | } |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 131 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 132 | void VirtRegMap::dump() const { print(std::cerr); } |
Alkis Evlogimenos | dd420e0 | 2004-03-01 23:18:15 +0000 | [diff] [blame] | 133 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 134 | |
| 135 | //===----------------------------------------------------------------------===// |
| 136 | // Simple Spiller Implementation |
| 137 | //===----------------------------------------------------------------------===// |
| 138 | |
| 139 | Spiller::~Spiller() {} |
Alkis Evlogimenos | dd420e0 | 2004-03-01 23:18:15 +0000 | [diff] [blame] | 140 | |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 141 | namespace { |
Chris Lattner | f8c68f6 | 2006-06-28 22:17:39 +0000 | [diff] [blame] | 142 | struct VISIBILITY_HIDDEN SimpleSpiller : public Spiller { |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 143 | bool runOnMachineFunction(MachineFunction& mf, VirtRegMap &VRM); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 144 | }; |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 147 | bool SimpleSpiller::runOnMachineFunction(MachineFunction &MF, VirtRegMap &VRM) { |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 148 | DEBUG(std::cerr << "********** REWRITE MACHINE CODE **********\n"); |
| 149 | DEBUG(std::cerr << "********** Function: " |
| 150 | << MF.getFunction()->getName() << '\n'); |
Chris Lattner | b0f31bf | 2005-01-23 22:45:13 +0000 | [diff] [blame] | 151 | const TargetMachine &TM = MF.getTarget(); |
| 152 | const MRegisterInfo &MRI = *TM.getRegisterInfo(); |
| 153 | bool *PhysRegsUsed = MF.getUsedPhysregs(); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 154 | |
Chris Lattner | 4ea1b82 | 2004-09-30 02:33:48 +0000 | [diff] [blame] | 155 | // LoadedRegs - Keep track of which vregs are loaded, so that we only load |
| 156 | // each vreg once (in the case where a spilled vreg is used by multiple |
| 157 | // operands). This is always smaller than the number of operands to the |
| 158 | // current machine instr, so it should be small. |
| 159 | std::vector<unsigned> LoadedRegs; |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 160 | |
Chris Lattner | 0fc27cc | 2004-09-30 02:59:33 +0000 | [diff] [blame] | 161 | for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end(); |
| 162 | MBBI != E; ++MBBI) { |
| 163 | DEBUG(std::cerr << MBBI->getBasicBlock()->getName() << ":\n"); |
| 164 | MachineBasicBlock &MBB = *MBBI; |
| 165 | for (MachineBasicBlock::iterator MII = MBB.begin(), |
| 166 | E = MBB.end(); MII != E; ++MII) { |
| 167 | MachineInstr &MI = *MII; |
| 168 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 169 | MachineOperand &MO = MI.getOperand(i); |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 170 | if (MO.isRegister() && MO.getReg()) |
| 171 | if (MRegisterInfo::isVirtualRegister(MO.getReg())) { |
| 172 | unsigned VirtReg = MO.getReg(); |
| 173 | unsigned PhysReg = VRM.getPhys(VirtReg); |
| 174 | if (VRM.hasStackSlot(VirtReg)) { |
| 175 | int StackSlot = VRM.getStackSlot(VirtReg); |
Chris Lattner | bf9716b | 2005-09-30 01:29:00 +0000 | [diff] [blame] | 176 | const TargetRegisterClass* RC = |
| 177 | MF.getSSARegMap()->getRegClass(VirtReg); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 178 | |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 179 | if (MO.isUse() && |
| 180 | std::find(LoadedRegs.begin(), LoadedRegs.end(), VirtReg) |
| 181 | == LoadedRegs.end()) { |
Chris Lattner | bf9716b | 2005-09-30 01:29:00 +0000 | [diff] [blame] | 182 | MRI.loadRegFromStackSlot(MBB, &MI, PhysReg, StackSlot, RC); |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 183 | LoadedRegs.push_back(VirtReg); |
| 184 | ++NumLoads; |
| 185 | DEBUG(std::cerr << '\t' << *prior(MII)); |
| 186 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 187 | |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 188 | if (MO.isDef()) { |
Chris Lattner | bf9716b | 2005-09-30 01:29:00 +0000 | [diff] [blame] | 189 | MRI.storeRegToStackSlot(MBB, next(MII), PhysReg, StackSlot, RC); |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 190 | ++NumStores; |
| 191 | } |
Chris Lattner | 0fc27cc | 2004-09-30 02:59:33 +0000 | [diff] [blame] | 192 | } |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 193 | PhysRegsUsed[PhysReg] = true; |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 194 | MI.getOperand(i).setReg(PhysReg); |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 195 | } else { |
| 196 | PhysRegsUsed[MO.getReg()] = true; |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 197 | } |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 198 | } |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 199 | |
Chris Lattner | 477e455 | 2004-09-30 16:10:45 +0000 | [diff] [blame] | 200 | DEBUG(std::cerr << '\t' << MI); |
Chris Lattner | 4ea1b82 | 2004-09-30 02:33:48 +0000 | [diff] [blame] | 201 | LoadedRegs.clear(); |
Alkis Evlogimenos | dd420e0 | 2004-03-01 23:18:15 +0000 | [diff] [blame] | 202 | } |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 203 | } |
| 204 | return true; |
| 205 | } |
| 206 | |
| 207 | //===----------------------------------------------------------------------===// |
| 208 | // Local Spiller Implementation |
| 209 | //===----------------------------------------------------------------------===// |
| 210 | |
| 211 | namespace { |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 212 | /// LocalSpiller - This spiller does a simple pass over the machine basic |
| 213 | /// block to attempt to keep spills in registers as much as possible for |
| 214 | /// blocks that have low register pressure (the vreg may be spilled due to |
| 215 | /// register pressure in other blocks). |
Chris Lattner | f8c68f6 | 2006-06-28 22:17:39 +0000 | [diff] [blame] | 216 | class VISIBILITY_HIDDEN LocalSpiller : public Spiller { |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 217 | const MRegisterInfo *MRI; |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 218 | const TargetInstrInfo *TII; |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 219 | public: |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 220 | bool runOnMachineFunction(MachineFunction &MF, VirtRegMap &VRM) { |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 221 | MRI = MF.getTarget().getRegisterInfo(); |
| 222 | TII = MF.getTarget().getInstrInfo(); |
| 223 | DEBUG(std::cerr << "\n**** Local spiller rewriting function '" |
| 224 | << MF.getFunction()->getName() << "':\n"); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 225 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 226 | for (MachineFunction::iterator MBB = MF.begin(), E = MF.end(); |
| 227 | MBB != E; ++MBB) |
| 228 | RewriteMBB(*MBB, VRM); |
| 229 | return true; |
| 230 | } |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 231 | private: |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 232 | void RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM); |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 233 | void ClobberPhysReg(unsigned PR, std::map<int, unsigned> &SpillSlots, |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 234 | std::multimap<unsigned, int> &PhysRegs); |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 235 | void ClobberPhysRegOnly(unsigned PR, std::map<int, unsigned> &SpillSlots, |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 236 | std::multimap<unsigned, int> &PhysRegs); |
| 237 | void ModifyStackSlot(int Slot, std::map<int, unsigned> &SpillSlots, |
| 238 | std::multimap<unsigned, int> &PhysRegs); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 239 | }; |
| 240 | } |
| 241 | |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 242 | /// AvailableSpills - As the local spiller is scanning and rewriting an MBB from |
| 243 | /// top down, keep track of which spills slots are available in each register. |
Chris Lattner | 593c958 | 2006-02-03 23:28:46 +0000 | [diff] [blame] | 244 | /// |
| 245 | /// Note that not all physregs are created equal here. In particular, some |
| 246 | /// physregs are reloads that we are allowed to clobber or ignore at any time. |
| 247 | /// Other physregs are values that the register allocated program is using that |
| 248 | /// we cannot CHANGE, but we can read if we like. We keep track of this on a |
| 249 | /// per-stack-slot basis as the low bit in the value of the SpillSlotsAvailable |
| 250 | /// entries. The predicate 'canClobberPhysReg()' checks this bit and |
| 251 | /// addAvailable sets it if. |
Chris Lattner | f8c68f6 | 2006-06-28 22:17:39 +0000 | [diff] [blame] | 252 | namespace { |
| 253 | class VISIBILITY_HIDDEN AvailableSpills { |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 254 | const MRegisterInfo *MRI; |
| 255 | const TargetInstrInfo *TII; |
| 256 | |
| 257 | // SpillSlotsAvailable - This map keeps track of all of the spilled virtual |
| 258 | // register values that are still available, due to being loaded or stored to, |
| 259 | // but not invalidated yet. |
| 260 | std::map<int, unsigned> SpillSlotsAvailable; |
| 261 | |
| 262 | // PhysRegsAvailable - This is the inverse of SpillSlotsAvailable, indicating |
| 263 | // which stack slot values are currently held by a physreg. This is used to |
| 264 | // invalidate entries in SpillSlotsAvailable when a physreg is modified. |
| 265 | std::multimap<unsigned, int> PhysRegsAvailable; |
| 266 | |
| 267 | void ClobberPhysRegOnly(unsigned PhysReg); |
| 268 | public: |
| 269 | AvailableSpills(const MRegisterInfo *mri, const TargetInstrInfo *tii) |
| 270 | : MRI(mri), TII(tii) { |
| 271 | } |
| 272 | |
| 273 | /// getSpillSlotPhysReg - If the specified stack slot is available in a |
| 274 | /// physical register, return that PhysReg, otherwise return 0. |
| 275 | unsigned getSpillSlotPhysReg(int Slot) const { |
| 276 | std::map<int, unsigned>::const_iterator I = SpillSlotsAvailable.find(Slot); |
| 277 | if (I != SpillSlotsAvailable.end()) |
Chris Lattner | 593c958 | 2006-02-03 23:28:46 +0000 | [diff] [blame] | 278 | return I->second >> 1; // Remove the CanClobber bit. |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 279 | return 0; |
| 280 | } |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 281 | |
| 282 | const MRegisterInfo *getRegInfo() const { return MRI; } |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 283 | |
| 284 | /// addAvailable - Mark that the specified stack slot is available in the |
Chris Lattner | 593c958 | 2006-02-03 23:28:46 +0000 | [diff] [blame] | 285 | /// specified physreg. If CanClobber is true, the physreg can be modified at |
| 286 | /// any time without changing the semantics of the program. |
| 287 | void addAvailable(int Slot, unsigned Reg, bool CanClobber = true) { |
Chris Lattner | 8666249 | 2006-02-03 23:50:46 +0000 | [diff] [blame] | 288 | // If this stack slot is thought to be available in some other physreg, |
| 289 | // remove its record. |
| 290 | ModifyStackSlot(Slot); |
| 291 | |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 292 | PhysRegsAvailable.insert(std::make_pair(Reg, Slot)); |
Jeff Cohen | 003cecb | 2006-02-04 03:27:39 +0000 | [diff] [blame] | 293 | SpillSlotsAvailable[Slot] = (Reg << 1) | (unsigned)CanClobber; |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 294 | |
| 295 | DEBUG(std::cerr << "Remembering SS#" << Slot << " in physreg " |
| 296 | << MRI->getName(Reg) << "\n"); |
| 297 | } |
| 298 | |
Chris Lattner | 593c958 | 2006-02-03 23:28:46 +0000 | [diff] [blame] | 299 | /// canClobberPhysReg - Return true if the spiller is allowed to change the |
| 300 | /// value of the specified stackslot register if it desires. The specified |
| 301 | /// stack slot must be available in a physreg for this query to make sense. |
| 302 | bool canClobberPhysReg(int Slot) const { |
| 303 | assert(SpillSlotsAvailable.count(Slot) && "Slot not available!"); |
| 304 | return SpillSlotsAvailable.find(Slot)->second & 1; |
| 305 | } |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 306 | |
| 307 | /// ClobberPhysReg - This is called when the specified physreg changes |
| 308 | /// value. We use this to invalidate any info about stuff we thing lives in |
| 309 | /// it and any of its aliases. |
| 310 | void ClobberPhysReg(unsigned PhysReg); |
| 311 | |
| 312 | /// ModifyStackSlot - This method is called when the value in a stack slot |
| 313 | /// changes. This removes information about which register the previous value |
| 314 | /// for this slot lives in (as the previous value is dead now). |
| 315 | void ModifyStackSlot(int Slot); |
| 316 | }; |
Chris Lattner | f8c68f6 | 2006-06-28 22:17:39 +0000 | [diff] [blame] | 317 | } |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 318 | |
| 319 | /// ClobberPhysRegOnly - This is called when the specified physreg changes |
| 320 | /// value. We use this to invalidate any info about stuff we thing lives in it. |
| 321 | void AvailableSpills::ClobberPhysRegOnly(unsigned PhysReg) { |
| 322 | std::multimap<unsigned, int>::iterator I = |
| 323 | PhysRegsAvailable.lower_bound(PhysReg); |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 324 | while (I != PhysRegsAvailable.end() && I->first == PhysReg) { |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 325 | int Slot = I->second; |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 326 | PhysRegsAvailable.erase(I++); |
Chris Lattner | 593c958 | 2006-02-03 23:28:46 +0000 | [diff] [blame] | 327 | assert((SpillSlotsAvailable[Slot] >> 1) == PhysReg && |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 328 | "Bidirectional map mismatch!"); |
| 329 | SpillSlotsAvailable.erase(Slot); |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 330 | DEBUG(std::cerr << "PhysReg " << MRI->getName(PhysReg) |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 331 | << " clobbered, invalidating SS#" << Slot << "\n"); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 332 | } |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 335 | /// ClobberPhysReg - This is called when the specified physreg changes |
| 336 | /// value. We use this to invalidate any info about stuff we thing lives in |
| 337 | /// it and any of its aliases. |
| 338 | void AvailableSpills::ClobberPhysReg(unsigned PhysReg) { |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 339 | for (const unsigned *AS = MRI->getAliasSet(PhysReg); *AS; ++AS) |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 340 | ClobberPhysRegOnly(*AS); |
| 341 | ClobberPhysRegOnly(PhysReg); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 342 | } |
| 343 | |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 344 | /// ModifyStackSlot - This method is called when the value in a stack slot |
| 345 | /// changes. This removes information about which register the previous value |
| 346 | /// for this slot lives in (as the previous value is dead now). |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 347 | void AvailableSpills::ModifyStackSlot(int Slot) { |
| 348 | std::map<int, unsigned>::iterator It = SpillSlotsAvailable.find(Slot); |
| 349 | if (It == SpillSlotsAvailable.end()) return; |
Chris Lattner | 593c958 | 2006-02-03 23:28:46 +0000 | [diff] [blame] | 350 | unsigned Reg = It->second >> 1; |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 351 | SpillSlotsAvailable.erase(It); |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 352 | |
| 353 | // This register may hold the value of multiple stack slots, only remove this |
| 354 | // stack slot from the set of values the register contains. |
| 355 | std::multimap<unsigned, int>::iterator I = PhysRegsAvailable.lower_bound(Reg); |
| 356 | for (; ; ++I) { |
| 357 | assert(I != PhysRegsAvailable.end() && I->first == Reg && |
| 358 | "Map inverse broken!"); |
| 359 | if (I->second == Slot) break; |
| 360 | } |
| 361 | PhysRegsAvailable.erase(I); |
| 362 | } |
| 363 | |
| 364 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 365 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 366 | // ReusedOp - For each reused operand, we keep track of a bit of information, in |
| 367 | // case we need to rollback upon processing a new operand. See comments below. |
| 368 | namespace { |
| 369 | struct ReusedOp { |
| 370 | // The MachineInstr operand that reused an available value. |
| 371 | unsigned Operand; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 372 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 373 | // StackSlot - The spill slot of the value being reused. |
| 374 | unsigned StackSlot; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 375 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 376 | // PhysRegReused - The physical register the value was available in. |
| 377 | unsigned PhysRegReused; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 378 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 379 | // AssignedPhysReg - The physreg that was assigned for use by the reload. |
| 380 | unsigned AssignedPhysReg; |
Chris Lattner | 8a61a75 | 2005-10-06 17:19:06 +0000 | [diff] [blame] | 381 | |
| 382 | // VirtReg - The virtual register itself. |
| 383 | unsigned VirtReg; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 384 | |
Chris Lattner | 8a61a75 | 2005-10-06 17:19:06 +0000 | [diff] [blame] | 385 | ReusedOp(unsigned o, unsigned ss, unsigned prr, unsigned apr, |
| 386 | unsigned vreg) |
| 387 | : Operand(o), StackSlot(ss), PhysRegReused(prr), AssignedPhysReg(apr), |
| 388 | VirtReg(vreg) {} |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 389 | }; |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 390 | |
| 391 | /// ReuseInfo - This maintains a collection of ReuseOp's for each operand that |
| 392 | /// is reused instead of reloaded. |
Chris Lattner | f8c68f6 | 2006-06-28 22:17:39 +0000 | [diff] [blame] | 393 | class VISIBILITY_HIDDEN ReuseInfo { |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 394 | MachineInstr &MI; |
| 395 | std::vector<ReusedOp> Reuses; |
| 396 | public: |
| 397 | ReuseInfo(MachineInstr &mi) : MI(mi) {} |
| 398 | |
| 399 | bool hasReuses() const { |
| 400 | return !Reuses.empty(); |
| 401 | } |
| 402 | |
| 403 | /// addReuse - If we choose to reuse a virtual register that is already |
| 404 | /// available instead of reloading it, remember that we did so. |
| 405 | void addReuse(unsigned OpNo, unsigned StackSlot, |
| 406 | unsigned PhysRegReused, unsigned AssignedPhysReg, |
| 407 | unsigned VirtReg) { |
| 408 | // If the reload is to the assigned register anyway, no undo will be |
| 409 | // required. |
| 410 | if (PhysRegReused == AssignedPhysReg) return; |
| 411 | |
| 412 | // Otherwise, remember this. |
| 413 | Reuses.push_back(ReusedOp(OpNo, StackSlot, PhysRegReused, |
| 414 | AssignedPhysReg, VirtReg)); |
| 415 | } |
| 416 | |
| 417 | /// GetRegForReload - We are about to emit a reload into PhysReg. If there |
| 418 | /// is some other operand that is using the specified register, either pick |
| 419 | /// a new register to use, or evict the previous reload and use this reg. |
| 420 | unsigned GetRegForReload(unsigned PhysReg, MachineInstr *MI, |
| 421 | AvailableSpills &Spills, |
| 422 | std::map<int, MachineInstr*> &MaybeDeadStores) { |
| 423 | if (Reuses.empty()) return PhysReg; // This is most often empty. |
| 424 | |
| 425 | for (unsigned ro = 0, e = Reuses.size(); ro != e; ++ro) { |
| 426 | ReusedOp &Op = Reuses[ro]; |
| 427 | // If we find some other reuse that was supposed to use this register |
| 428 | // exactly for its reload, we can change this reload to use ITS reload |
| 429 | // register. |
| 430 | if (Op.PhysRegReused == PhysReg) { |
| 431 | // Yup, use the reload register that we didn't use before. |
Chris Lattner | 47cb717 | 2006-02-25 02:03:40 +0000 | [diff] [blame] | 432 | unsigned NewReg = Op.AssignedPhysReg; |
| 433 | |
| 434 | // Remove the record for the previous reuse. We know it can never be |
| 435 | // invalidated now. |
| 436 | Reuses.erase(Reuses.begin()+ro); |
| 437 | return GetRegForReload(NewReg, MI, Spills, MaybeDeadStores); |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 438 | } else { |
| 439 | // Otherwise, we might also have a problem if a previously reused |
| 440 | // value aliases the new register. If so, codegen the previous reload |
| 441 | // and use this one. |
| 442 | unsigned PRRU = Op.PhysRegReused; |
| 443 | const MRegisterInfo *MRI = Spills.getRegInfo(); |
| 444 | if (MRI->areAliases(PRRU, PhysReg)) { |
| 445 | // Okay, we found out that an alias of a reused register |
| 446 | // was used. This isn't good because it means we have |
| 447 | // to undo a previous reuse. |
| 448 | MachineBasicBlock *MBB = MI->getParent(); |
| 449 | const TargetRegisterClass *AliasRC = |
Chris Lattner | 28bad08 | 2006-02-25 02:17:31 +0000 | [diff] [blame] | 450 | MBB->getParent()->getSSARegMap()->getRegClass(Op.VirtReg); |
| 451 | |
| 452 | // Copy Op out of the vector and remove it, we're going to insert an |
| 453 | // explicit load for it. |
| 454 | ReusedOp NewOp = Op; |
| 455 | Reuses.erase(Reuses.begin()+ro); |
| 456 | |
| 457 | // Ok, we're going to try to reload the assigned physreg into the |
| 458 | // slot that we were supposed to in the first place. However, that |
| 459 | // register could hold a reuse. Check to see if it conflicts or |
| 460 | // would prefer us to use a different register. |
| 461 | unsigned NewPhysReg = GetRegForReload(NewOp.AssignedPhysReg, |
| 462 | MI, Spills, MaybeDeadStores); |
| 463 | |
| 464 | MRI->loadRegFromStackSlot(*MBB, MI, NewPhysReg, |
| 465 | NewOp.StackSlot, AliasRC); |
| 466 | Spills.ClobberPhysReg(NewPhysReg); |
| 467 | Spills.ClobberPhysReg(NewOp.PhysRegReused); |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 468 | |
| 469 | // Any stores to this stack slot are not dead anymore. |
Chris Lattner | 28bad08 | 2006-02-25 02:17:31 +0000 | [diff] [blame] | 470 | MaybeDeadStores.erase(NewOp.StackSlot); |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 471 | |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 472 | MI->getOperand(NewOp.Operand).setReg(NewPhysReg); |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 473 | |
Chris Lattner | 28bad08 | 2006-02-25 02:17:31 +0000 | [diff] [blame] | 474 | Spills.addAvailable(NewOp.StackSlot, NewPhysReg); |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 475 | ++NumLoads; |
| 476 | DEBUG(MachineBasicBlock::iterator MII = MI; |
| 477 | std::cerr << '\t' << *prior(MII)); |
| 478 | |
| 479 | DEBUG(std::cerr << "Reuse undone!\n"); |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 480 | --NumReused; |
Chris Lattner | 28bad08 | 2006-02-25 02:17:31 +0000 | [diff] [blame] | 481 | |
| 482 | // Finally, PhysReg is now available, go ahead and use it. |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 483 | return PhysReg; |
| 484 | } |
| 485 | } |
| 486 | } |
| 487 | return PhysReg; |
| 488 | } |
| 489 | }; |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 490 | } |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 491 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 492 | |
| 493 | /// rewriteMBB - Keep track of which spills are available even after the |
| 494 | /// register allocator is done with them. If possible, avoid reloading vregs. |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 495 | void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM) { |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 496 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 497 | DEBUG(std::cerr << MBB.getBasicBlock()->getName() << ":\n"); |
| 498 | |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 499 | // Spills - Keep track of which spilled values are available in physregs so |
| 500 | // that we can choose to reuse the physregs instead of emitting reloads. |
| 501 | AvailableSpills Spills(MRI, TII); |
| 502 | |
Chris Lattner | 52b25db | 2004-10-01 19:47:12 +0000 | [diff] [blame] | 503 | // MaybeDeadStores - When we need to write a value back into a stack slot, |
| 504 | // keep track of the inserted store. If the stack slot value is never read |
| 505 | // (because the value was used from some available register, for example), and |
| 506 | // subsequently stored to, the original store is dead. This map keeps track |
| 507 | // of inserted stores that are not used. If we see a subsequent store to the |
| 508 | // same stack slot, the original store is deleted. |
| 509 | std::map<int, MachineInstr*> MaybeDeadStores; |
| 510 | |
Chris Lattner | b0f31bf | 2005-01-23 22:45:13 +0000 | [diff] [blame] | 511 | bool *PhysRegsUsed = MBB.getParent()->getUsedPhysregs(); |
| 512 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 513 | for (MachineBasicBlock::iterator MII = MBB.begin(), E = MBB.end(); |
| 514 | MII != E; ) { |
| 515 | MachineInstr &MI = *MII; |
| 516 | MachineBasicBlock::iterator NextMII = MII; ++NextMII; |
| 517 | |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 518 | /// ReusedOperands - Keep track of operand reuse in case we need to undo |
| 519 | /// reuse. |
| 520 | ReuseInfo ReusedOperands(MI); |
| 521 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 522 | // Process all of the spilled uses and all non spilled reg references. |
| 523 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 524 | MachineOperand &MO = MI.getOperand(i); |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 525 | if (!MO.isRegister() || MO.getReg() == 0) |
| 526 | continue; // Ignore non-register operands. |
| 527 | |
| 528 | if (MRegisterInfo::isPhysicalRegister(MO.getReg())) { |
| 529 | // Ignore physregs for spilling, but remember that it is used by this |
| 530 | // function. |
Chris Lattner | 886dd91 | 2005-04-04 21:35:34 +0000 | [diff] [blame] | 531 | PhysRegsUsed[MO.getReg()] = true; |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 532 | continue; |
| 533 | } |
| 534 | |
| 535 | assert(MRegisterInfo::isVirtualRegister(MO.getReg()) && |
| 536 | "Not a virtual or a physical register?"); |
| 537 | |
| 538 | unsigned VirtReg = MO.getReg(); |
| 539 | if (!VRM.hasStackSlot(VirtReg)) { |
| 540 | // This virtual register was assigned a physreg! |
| 541 | unsigned Phys = VRM.getPhys(VirtReg); |
| 542 | PhysRegsUsed[Phys] = true; |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 543 | MI.getOperand(i).setReg(Phys); |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 544 | continue; |
| 545 | } |
| 546 | |
| 547 | // This virtual register is now known to be a spilled value. |
| 548 | if (!MO.isUse()) |
| 549 | continue; // Handle defs in the loop below (handle use&def here though) |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 550 | |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 551 | int StackSlot = VRM.getStackSlot(VirtReg); |
| 552 | unsigned PhysReg; |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 553 | |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 554 | // Check to see if this stack slot is available. |
Chris Lattner | addc55a | 2006-04-28 01:46:50 +0000 | [diff] [blame] | 555 | if ((PhysReg = Spills.getSpillSlotPhysReg(StackSlot))) { |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 556 | |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 557 | // This spilled operand might be part of a two-address operand. If this |
| 558 | // is the case, then changing it will necessarily require changing the |
| 559 | // def part of the instruction as well. However, in some cases, we |
| 560 | // aren't allowed to modify the reused register. If none of these cases |
| 561 | // apply, reuse it. |
| 562 | bool CanReuse = true; |
| 563 | if (i == 1 && MI.getOperand(0).isReg() && |
| 564 | MI.getOperand(0).getReg() == VirtReg && |
| 565 | TII->isTwoAddrInstr(MI.getOpcode())) { |
| 566 | // Okay, we have a two address operand. We can reuse this physreg as |
| 567 | // long as we are allowed to clobber the value. |
| 568 | CanReuse = Spills.canClobberPhysReg(StackSlot); |
| 569 | } |
| 570 | |
| 571 | if (CanReuse) { |
Chris Lattner | addc55a | 2006-04-28 01:46:50 +0000 | [diff] [blame] | 572 | // If this stack slot value is already available, reuse it! |
| 573 | DEBUG(std::cerr << "Reusing SS#" << StackSlot << " from physreg " |
| 574 | << MRI->getName(PhysReg) << " for vreg" |
| 575 | << VirtReg <<" instead of reloading into physreg " |
| 576 | << MRI->getName(VRM.getPhys(VirtReg)) << "\n"); |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 577 | MI.getOperand(i).setReg(PhysReg); |
Chris Lattner | addc55a | 2006-04-28 01:46:50 +0000 | [diff] [blame] | 578 | |
| 579 | // The only technical detail we have is that we don't know that |
| 580 | // PhysReg won't be clobbered by a reloaded stack slot that occurs |
| 581 | // later in the instruction. In particular, consider 'op V1, V2'. |
| 582 | // If V1 is available in physreg R0, we would choose to reuse it |
| 583 | // here, instead of reloading it into the register the allocator |
| 584 | // indicated (say R1). However, V2 might have to be reloaded |
| 585 | // later, and it might indicate that it needs to live in R0. When |
| 586 | // this occurs, we need to have information available that |
| 587 | // indicates it is safe to use R1 for the reload instead of R0. |
| 588 | // |
| 589 | // To further complicate matters, we might conflict with an alias, |
| 590 | // or R0 and R1 might not be compatible with each other. In this |
| 591 | // case, we actually insert a reload for V1 in R1, ensuring that |
| 592 | // we can get at R0 or its alias. |
| 593 | ReusedOperands.addReuse(i, StackSlot, PhysReg, |
| 594 | VRM.getPhys(VirtReg), VirtReg); |
| 595 | ++NumReused; |
| 596 | continue; |
| 597 | } |
| 598 | |
| 599 | // Otherwise we have a situation where we have a two-address instruction |
| 600 | // whose mod/ref operand needs to be reloaded. This reload is already |
| 601 | // available in some register "PhysReg", but if we used PhysReg as the |
| 602 | // operand to our 2-addr instruction, the instruction would modify |
| 603 | // PhysReg. This isn't cool if something later uses PhysReg and expects |
| 604 | // to get its initial value. |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 605 | // |
Chris Lattner | addc55a | 2006-04-28 01:46:50 +0000 | [diff] [blame] | 606 | // To avoid this problem, and to avoid doing a load right after a store, |
| 607 | // we emit a copy from PhysReg into the designated register for this |
| 608 | // operand. |
| 609 | unsigned DesignatedReg = VRM.getPhys(VirtReg); |
| 610 | assert(DesignatedReg && "Must map virtreg to physreg!"); |
| 611 | |
| 612 | // Note that, if we reused a register for a previous operand, the |
| 613 | // register we want to reload into might not actually be |
| 614 | // available. If this occurs, use the register indicated by the |
| 615 | // reuser. |
| 616 | if (ReusedOperands.hasReuses()) |
| 617 | DesignatedReg = ReusedOperands.GetRegForReload(DesignatedReg, &MI, |
| 618 | Spills, MaybeDeadStores); |
| 619 | |
Chris Lattner | ba1fc3d | 2006-04-28 04:43:18 +0000 | [diff] [blame] | 620 | // If the mapped designated register is actually the physreg we have |
| 621 | // incoming, we don't need to inserted a dead copy. |
| 622 | if (DesignatedReg == PhysReg) { |
| 623 | // If this stack slot value is already available, reuse it! |
| 624 | DEBUG(std::cerr << "Reusing SS#" << StackSlot << " from physreg " |
| 625 | << MRI->getName(PhysReg) << " for vreg" |
| 626 | << VirtReg |
| 627 | << " instead of reloading into same physreg.\n"); |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 628 | MI.getOperand(i).setReg(PhysReg); |
Chris Lattner | ba1fc3d | 2006-04-28 04:43:18 +0000 | [diff] [blame] | 629 | ++NumReused; |
| 630 | continue; |
| 631 | } |
| 632 | |
Chris Lattner | addc55a | 2006-04-28 01:46:50 +0000 | [diff] [blame] | 633 | const TargetRegisterClass* RC = |
| 634 | MBB.getParent()->getSSARegMap()->getRegClass(VirtReg); |
| 635 | |
| 636 | PhysRegsUsed[DesignatedReg] = true; |
| 637 | MRI->copyRegToReg(MBB, &MI, DesignatedReg, PhysReg, RC); |
| 638 | |
| 639 | // This invalidates DesignatedReg. |
| 640 | Spills.ClobberPhysReg(DesignatedReg); |
| 641 | |
| 642 | Spills.addAvailable(StackSlot, DesignatedReg); |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 643 | MI.getOperand(i).setReg(DesignatedReg); |
Chris Lattner | addc55a | 2006-04-28 01:46:50 +0000 | [diff] [blame] | 644 | DEBUG(std::cerr << '\t' << *prior(MII)); |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 645 | ++NumReused; |
| 646 | continue; |
| 647 | } |
| 648 | |
| 649 | // Otherwise, reload it and remember that we have it. |
| 650 | PhysReg = VRM.getPhys(VirtReg); |
Chris Lattner | 172c362 | 2006-01-04 06:47:48 +0000 | [diff] [blame] | 651 | assert(PhysReg && "Must map virtreg to physreg!"); |
Chris Lattner | bf9716b | 2005-09-30 01:29:00 +0000 | [diff] [blame] | 652 | const TargetRegisterClass* RC = |
| 653 | MBB.getParent()->getSSARegMap()->getRegClass(VirtReg); |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 654 | |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 655 | // Note that, if we reused a register for a previous operand, the |
| 656 | // register we want to reload into might not actually be |
| 657 | // available. If this occurs, use the register indicated by the |
| 658 | // reuser. |
Chris Lattner | 540fec6 | 2006-02-25 01:51:33 +0000 | [diff] [blame] | 659 | if (ReusedOperands.hasReuses()) |
| 660 | PhysReg = ReusedOperands.GetRegForReload(PhysReg, &MI, |
| 661 | Spills, MaybeDeadStores); |
| 662 | |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 663 | PhysRegsUsed[PhysReg] = true; |
Chris Lattner | bf9716b | 2005-09-30 01:29:00 +0000 | [diff] [blame] | 664 | MRI->loadRegFromStackSlot(MBB, &MI, PhysReg, StackSlot, RC); |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 665 | // This invalidates PhysReg. |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 666 | Spills.ClobberPhysReg(PhysReg); |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 667 | |
| 668 | // Any stores to this stack slot are not dead anymore. |
| 669 | MaybeDeadStores.erase(StackSlot); |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 670 | Spills.addAvailable(StackSlot, PhysReg); |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 671 | ++NumLoads; |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 672 | MI.getOperand(i).setReg(PhysReg); |
Chris Lattner | 50ea01e | 2005-09-09 20:29:51 +0000 | [diff] [blame] | 673 | DEBUG(std::cerr << '\t' << *prior(MII)); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 674 | } |
| 675 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 676 | // Loop over all of the implicit defs, clearing them from our available |
| 677 | // sets. |
Jim Laskey | cd4317e | 2006-07-21 21:15:20 +0000 | [diff] [blame] | 678 | const unsigned *ImpDef = TII->getImplicitDefs(MI.getOpcode()); |
| 679 | if (ImpDef) { |
| 680 | for ( ; *ImpDef; ++ImpDef) { |
| 681 | PhysRegsUsed[*ImpDef] = true; |
| 682 | Spills.ClobberPhysReg(*ImpDef); |
| 683 | } |
Chris Lattner | b0f31bf | 2005-01-23 22:45:13 +0000 | [diff] [blame] | 684 | } |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 685 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 686 | DEBUG(std::cerr << '\t' << MI); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 687 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 688 | // If we have folded references to memory operands, make sure we clear all |
| 689 | // physical registers that may contain the value of the spilled virtual |
| 690 | // register |
Chris Lattner | 8f1d640 | 2005-01-14 15:54:24 +0000 | [diff] [blame] | 691 | VirtRegMap::MI2VirtMapTy::const_iterator I, End; |
| 692 | for (tie(I, End) = VRM.getFoldedVirts(&MI); I != End; ++I) { |
Chris Lattner | bec6a9e | 2004-10-01 23:15:36 +0000 | [diff] [blame] | 693 | DEBUG(std::cerr << "Folded vreg: " << I->second.first << " MR: " |
| 694 | << I->second.second); |
| 695 | unsigned VirtReg = I->second.first; |
| 696 | VirtRegMap::ModRef MR = I->second.second; |
Chris Lattner | cea8688 | 2005-09-19 06:56:21 +0000 | [diff] [blame] | 697 | if (!VRM.hasStackSlot(VirtReg)) { |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 698 | DEBUG(std::cerr << ": No stack slot!\n"); |
Chris Lattner | cea8688 | 2005-09-19 06:56:21 +0000 | [diff] [blame] | 699 | continue; |
| 700 | } |
| 701 | int SS = VRM.getStackSlot(VirtReg); |
| 702 | DEBUG(std::cerr << " - StackSlot: " << SS << "\n"); |
| 703 | |
| 704 | // If this folded instruction is just a use, check to see if it's a |
| 705 | // straight load from the virt reg slot. |
| 706 | if ((MR & VirtRegMap::isRef) && !(MR & VirtRegMap::isMod)) { |
| 707 | int FrameIdx; |
Chris Lattner | 4083960 | 2006-02-02 20:12:32 +0000 | [diff] [blame] | 708 | if (unsigned DestReg = TII->isLoadFromStackSlot(&MI, FrameIdx)) { |
Chris Lattner | 6ec3626 | 2006-10-12 17:45:38 +0000 | [diff] [blame^] | 709 | if (FrameIdx == SS) { |
| 710 | // If this spill slot is available, turn it into a copy (or nothing) |
| 711 | // instead of leaving it as a load! |
| 712 | if (unsigned InReg = Spills.getSpillSlotPhysReg(SS)) { |
| 713 | DEBUG(std::cerr << "Promoted Load To Copy: " << MI); |
| 714 | MachineFunction &MF = *MBB.getParent(); |
| 715 | if (DestReg != InReg) { |
| 716 | MRI->copyRegToReg(MBB, &MI, DestReg, InReg, |
| 717 | MF.getSSARegMap()->getRegClass(VirtReg)); |
| 718 | // Revisit the copy so we make sure to notice the effects of the |
| 719 | // operation on the destreg (either needing to RA it if it's |
| 720 | // virtual or needing to clobber any values if it's physical). |
| 721 | NextMII = &MI; |
| 722 | --NextMII; // backtrack to the copy. |
| 723 | } |
| 724 | VRM.RemoveFromFoldedVirtMap(&MI); |
| 725 | MBB.erase(&MI); |
| 726 | goto ProcessNextInst; |
Chris Lattner | cea8688 | 2005-09-19 06:56:21 +0000 | [diff] [blame] | 727 | } |
Chris Lattner | cea8688 | 2005-09-19 06:56:21 +0000 | [diff] [blame] | 728 | } |
| 729 | } |
| 730 | } |
| 731 | |
| 732 | // If this reference is not a use, any previous store is now dead. |
| 733 | // Otherwise, the store to this stack slot is not dead anymore. |
| 734 | std::map<int, MachineInstr*>::iterator MDSI = MaybeDeadStores.find(SS); |
| 735 | if (MDSI != MaybeDeadStores.end()) { |
| 736 | if (MR & VirtRegMap::isRef) // Previous store is not dead. |
| 737 | MaybeDeadStores.erase(MDSI); |
| 738 | else { |
| 739 | // If we get here, the store is dead, nuke it now. |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 740 | assert(VirtRegMap::isMod && "Can't be modref!"); |
| 741 | DEBUG(std::cerr << "Removed dead store:\t" << *MDSI->second); |
| 742 | MBB.erase(MDSI->second); |
Chris Lattner | 229924a | 2006-05-01 22:03:24 +0000 | [diff] [blame] | 743 | VRM.RemoveFromFoldedVirtMap(MDSI->second); |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 744 | MaybeDeadStores.erase(MDSI); |
| 745 | ++NumDSE; |
Chris Lattner | cea8688 | 2005-09-19 06:56:21 +0000 | [diff] [blame] | 746 | } |
| 747 | } |
| 748 | |
| 749 | // If the spill slot value is available, and this is a new definition of |
| 750 | // the value, the value is not available anymore. |
| 751 | if (MR & VirtRegMap::isMod) { |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 752 | // Notice that the value in this stack slot has been modified. |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 753 | Spills.ModifyStackSlot(SS); |
Chris Lattner | cd81639 | 2006-02-02 23:29:36 +0000 | [diff] [blame] | 754 | |
| 755 | // If this is *just* a mod of the value, check to see if this is just a |
| 756 | // store to the spill slot (i.e. the spill got merged into the copy). If |
| 757 | // so, realize that the vreg is available now, and add the store to the |
| 758 | // MaybeDeadStore info. |
| 759 | int StackSlot; |
| 760 | if (!(MR & VirtRegMap::isRef)) { |
| 761 | if (unsigned SrcReg = TII->isStoreToStackSlot(&MI, StackSlot)) { |
| 762 | assert(MRegisterInfo::isPhysicalRegister(SrcReg) && |
| 763 | "Src hasn't been allocated yet?"); |
Chris Lattner | 07cf141 | 2006-02-03 00:36:31 +0000 | [diff] [blame] | 764 | // Okay, this is certainly a store of SrcReg to [StackSlot]. Mark |
Chris Lattner | cd81639 | 2006-02-02 23:29:36 +0000 | [diff] [blame] | 765 | // this as a potentially dead store in case there is a subsequent |
| 766 | // store into the stack slot without a read from it. |
| 767 | MaybeDeadStores[StackSlot] = &MI; |
| 768 | |
Chris Lattner | cd81639 | 2006-02-02 23:29:36 +0000 | [diff] [blame] | 769 | // If the stack slot value was previously available in some other |
| 770 | // register, change it now. Otherwise, make the register available, |
| 771 | // in PhysReg. |
Chris Lattner | 593c958 | 2006-02-03 23:28:46 +0000 | [diff] [blame] | 772 | Spills.addAvailable(StackSlot, SrcReg, false /*don't clobber*/); |
Chris Lattner | cd81639 | 2006-02-02 23:29:36 +0000 | [diff] [blame] | 773 | } |
| 774 | } |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 775 | } |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 776 | } |
| 777 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 778 | // Process all of the spilled defs. |
| 779 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 780 | MachineOperand &MO = MI.getOperand(i); |
| 781 | if (MO.isRegister() && MO.getReg() && MO.isDef()) { |
| 782 | unsigned VirtReg = MO.getReg(); |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 783 | |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 784 | if (!MRegisterInfo::isVirtualRegister(VirtReg)) { |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 785 | // Check to see if this is a noop copy. If so, eliminate the |
| 786 | // instruction before considering the dest reg to be changed. |
| 787 | unsigned Src, Dst; |
| 788 | if (TII->isMoveInstr(MI, Src, Dst) && Src == Dst) { |
| 789 | ++NumDCE; |
| 790 | DEBUG(std::cerr << "Removing now-noop copy: " << MI); |
| 791 | MBB.erase(&MI); |
| 792 | VRM.RemoveFromFoldedVirtMap(&MI); |
| 793 | goto ProcessNextInst; |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 794 | } |
Chris Lattner | 6ec3626 | 2006-10-12 17:45:38 +0000 | [diff] [blame^] | 795 | |
| 796 | // If it's not a no-op copy, it clobbers the value in the destreg. |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 797 | Spills.ClobberPhysReg(VirtReg); |
Chris Lattner | 6ec3626 | 2006-10-12 17:45:38 +0000 | [diff] [blame^] | 798 | |
| 799 | // Check to see if this instruction is a load from a stack slot into |
| 800 | // a register. If so, this provides the stack slot value in the reg. |
| 801 | int FrameIdx; |
| 802 | if (unsigned DestReg = TII->isLoadFromStackSlot(&MI, FrameIdx)) { |
| 803 | assert(DestReg == VirtReg && "Unknown load situation!"); |
| 804 | |
| 805 | // Otherwise, if it wasn't available, remember that it is now! |
| 806 | Spills.addAvailable(FrameIdx, DestReg); |
| 807 | goto ProcessNextInst; |
| 808 | } |
| 809 | |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 810 | continue; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 811 | } |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 812 | |
Chris Lattner | 84e752a | 2006-02-03 03:06:49 +0000 | [diff] [blame] | 813 | // The only vregs left are stack slot definitions. |
| 814 | int StackSlot = VRM.getStackSlot(VirtReg); |
| 815 | const TargetRegisterClass *RC = |
| 816 | MBB.getParent()->getSSARegMap()->getRegClass(VirtReg); |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 817 | |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 818 | // If this def is part of a two-address operand, make sure to execute |
| 819 | // the store from the correct physical register. |
| 820 | unsigned PhysReg; |
| 821 | if (i == 0 && TII->isTwoAddrInstr(MI.getOpcode())) |
| 822 | PhysReg = MI.getOperand(1).getReg(); |
Chris Lattner | 84e752a | 2006-02-03 03:06:49 +0000 | [diff] [blame] | 823 | else |
Chris Lattner | 2926869 | 2006-09-05 02:12:02 +0000 | [diff] [blame] | 824 | PhysReg = VRM.getPhys(VirtReg); |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 825 | |
Chris Lattner | 84e752a | 2006-02-03 03:06:49 +0000 | [diff] [blame] | 826 | PhysRegsUsed[PhysReg] = true; |
| 827 | MRI->storeRegToStackSlot(MBB, next(MII), PhysReg, StackSlot, RC); |
| 828 | DEBUG(std::cerr << "Store:\t" << *next(MII)); |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 829 | MI.getOperand(i).setReg(PhysReg); |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 830 | |
Chris Lattner | 109afed | 2006-02-03 03:16:14 +0000 | [diff] [blame] | 831 | // Check to see if this is a noop copy. If so, eliminate the |
| 832 | // instruction before considering the dest reg to be changed. |
| 833 | { |
| 834 | unsigned Src, Dst; |
| 835 | if (TII->isMoveInstr(MI, Src, Dst) && Src == Dst) { |
| 836 | ++NumDCE; |
| 837 | DEBUG(std::cerr << "Removing now-noop copy: " << MI); |
| 838 | MBB.erase(&MI); |
Chris Lattner | 229924a | 2006-05-01 22:03:24 +0000 | [diff] [blame] | 839 | VRM.RemoveFromFoldedVirtMap(&MI); |
Chris Lattner | 109afed | 2006-02-03 03:16:14 +0000 | [diff] [blame] | 840 | goto ProcessNextInst; |
| 841 | } |
| 842 | } |
| 843 | |
Chris Lattner | 84e752a | 2006-02-03 03:06:49 +0000 | [diff] [blame] | 844 | // If there is a dead store to this stack slot, nuke it now. |
| 845 | MachineInstr *&LastStore = MaybeDeadStores[StackSlot]; |
| 846 | if (LastStore) { |
Chris Lattner | 35f2705 | 2006-05-01 21:16:03 +0000 | [diff] [blame] | 847 | DEBUG(std::cerr << "Removed dead store:\t" << *LastStore); |
Chris Lattner | 84e752a | 2006-02-03 03:06:49 +0000 | [diff] [blame] | 848 | ++NumDSE; |
| 849 | MBB.erase(LastStore); |
Chris Lattner | 229924a | 2006-05-01 22:03:24 +0000 | [diff] [blame] | 850 | VRM.RemoveFromFoldedVirtMap(LastStore); |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 851 | } |
Chris Lattner | 84e752a | 2006-02-03 03:06:49 +0000 | [diff] [blame] | 852 | LastStore = next(MII); |
| 853 | |
| 854 | // If the stack slot value was previously available in some other |
| 855 | // register, change it now. Otherwise, make the register available, |
| 856 | // in PhysReg. |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 857 | Spills.ModifyStackSlot(StackSlot); |
| 858 | Spills.ClobberPhysReg(PhysReg); |
Chris Lattner | 66cf80f | 2006-02-03 23:13:58 +0000 | [diff] [blame] | 859 | Spills.addAvailable(StackSlot, PhysReg); |
Chris Lattner | 84e752a | 2006-02-03 03:06:49 +0000 | [diff] [blame] | 860 | ++NumStores; |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 861 | } |
| 862 | } |
Chris Lattner | cea8688 | 2005-09-19 06:56:21 +0000 | [diff] [blame] | 863 | ProcessNextInst: |
Chris Lattner | 7fb6434 | 2004-10-01 19:04:51 +0000 | [diff] [blame] | 864 | MII = NextMII; |
| 865 | } |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 866 | } |
| 867 | |
Chris Lattner | f7da2c7 | 2006-08-24 22:43:55 +0000 | [diff] [blame] | 868 | |
| 869 | |
Chris Lattner | 8c4d88d | 2004-09-30 01:54:45 +0000 | [diff] [blame] | 870 | llvm::Spiller* llvm::createSpiller() { |
| 871 | switch (SpillerOpt) { |
| 872 | default: assert(0 && "Unreachable!"); |
| 873 | case local: |
| 874 | return new LocalSpiller(); |
| 875 | case simple: |
| 876 | return new SimpleSpiller(); |
| 877 | } |
Alkis Evlogimenos | 0d6c5b6 | 2004-02-24 08:58:30 +0000 | [diff] [blame] | 878 | } |