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