Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/Spiller.cpp - Spiller -------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #define DEBUG_TYPE "spiller" |
| 11 | #include "Spiller.h" |
Owen Anderson | 0ff4e21 | 2009-03-12 06:58:19 +0000 | [diff] [blame] | 12 | #include "llvm/Support/Compiler.h" |
| 13 | #include "llvm/ADT/DepthFirstIterator.h" |
| 14 | #include "llvm/ADT/Statistic.h" |
| 15 | #include "llvm/ADT/STLExtras.h" |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 16 | #include <algorithm> |
| 17 | using namespace llvm; |
| 18 | |
| 19 | STATISTIC(NumDSE , "Number of dead stores elided"); |
| 20 | STATISTIC(NumDSS , "Number of dead spill slots removed"); |
| 21 | STATISTIC(NumCommutes, "Number of instructions commuted"); |
| 22 | STATISTIC(NumDRM , "Number of re-materializable defs elided"); |
| 23 | STATISTIC(NumStores , "Number of stores added"); |
| 24 | STATISTIC(NumPSpills , "Number of physical register spills"); |
| 25 | STATISTIC(NumOmitted , "Number of reloads omited"); |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 26 | STATISTIC(NumAvoided , "Number of reloads deemed unnecessary"); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 27 | STATISTIC(NumCopified, "Number of available reloads turned into copies"); |
| 28 | STATISTIC(NumReMats , "Number of re-materialization"); |
| 29 | STATISTIC(NumLoads , "Number of loads added"); |
| 30 | STATISTIC(NumReused , "Number of values reused"); |
| 31 | STATISTIC(NumDCE , "Number of copies elided"); |
Evan Cheng | e47b008 | 2009-03-17 01:23:09 +0000 | [diff] [blame] | 32 | STATISTIC(NumSUnfold , "Number of stores unfolded"); |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 33 | STATISTIC(NumModRefUnfold, "Number of modref unfolded"); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 34 | |
| 35 | namespace { |
| 36 | enum SpillerName { simple, local }; |
| 37 | } |
| 38 | |
| 39 | static cl::opt<SpillerName> |
| 40 | SpillerOpt("spiller", |
| 41 | cl::desc("Spiller to use: (default: local)"), |
| 42 | cl::Prefix, |
| 43 | cl::values(clEnumVal(simple, "simple spiller"), |
| 44 | clEnumVal(local, "local spiller"), |
| 45 | clEnumValEnd), |
| 46 | cl::init(local)); |
| 47 | |
| 48 | // ****************************** // |
| 49 | // Simple Spiller Implementation // |
| 50 | // ****************************** // |
| 51 | |
| 52 | Spiller::~Spiller() {} |
| 53 | |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 54 | bool SimpleSpiller::runOnMachineFunction(MachineFunction &MF, VirtRegMap &VRM, |
| 55 | LiveIntervals* LIs) { |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 56 | DOUT << "********** REWRITE MACHINE CODE **********\n"; |
| 57 | DOUT << "********** Function: " << MF.getFunction()->getName() << '\n'; |
| 58 | const TargetMachine &TM = MF.getTarget(); |
| 59 | const TargetInstrInfo &TII = *TM.getInstrInfo(); |
| 60 | const TargetRegisterInfo &TRI = *TM.getRegisterInfo(); |
| 61 | |
| 62 | |
| 63 | // LoadedRegs - Keep track of which vregs are loaded, so that we only load |
| 64 | // each vreg once (in the case where a spilled vreg is used by multiple |
| 65 | // operands). This is always smaller than the number of operands to the |
| 66 | // current machine instr, so it should be small. |
| 67 | std::vector<unsigned> LoadedRegs; |
| 68 | |
| 69 | for (MachineFunction::iterator MBBI = MF.begin(), E = MF.end(); |
| 70 | MBBI != E; ++MBBI) { |
| 71 | DOUT << MBBI->getBasicBlock()->getName() << ":\n"; |
| 72 | MachineBasicBlock &MBB = *MBBI; |
| 73 | for (MachineBasicBlock::iterator MII = MBB.begin(), E = MBB.end(); |
| 74 | MII != E; ++MII) { |
| 75 | MachineInstr &MI = *MII; |
| 76 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 77 | MachineOperand &MO = MI.getOperand(i); |
| 78 | if (MO.isReg() && MO.getReg()) { |
| 79 | if (TargetRegisterInfo::isVirtualRegister(MO.getReg())) { |
| 80 | unsigned VirtReg = MO.getReg(); |
| 81 | unsigned SubIdx = MO.getSubReg(); |
| 82 | unsigned PhysReg = VRM.getPhys(VirtReg); |
| 83 | unsigned RReg = SubIdx ? TRI.getSubReg(PhysReg, SubIdx) : PhysReg; |
| 84 | if (!VRM.isAssignedReg(VirtReg)) { |
| 85 | int StackSlot = VRM.getStackSlot(VirtReg); |
| 86 | const TargetRegisterClass* RC = |
| 87 | MF.getRegInfo().getRegClass(VirtReg); |
| 88 | |
| 89 | if (MO.isUse() && |
| 90 | std::find(LoadedRegs.begin(), LoadedRegs.end(), VirtReg) |
| 91 | == LoadedRegs.end()) { |
| 92 | TII.loadRegFromStackSlot(MBB, &MI, PhysReg, StackSlot, RC); |
| 93 | MachineInstr *LoadMI = prior(MII); |
| 94 | VRM.addSpillSlotUse(StackSlot, LoadMI); |
| 95 | LoadedRegs.push_back(VirtReg); |
| 96 | ++NumLoads; |
| 97 | DOUT << '\t' << *LoadMI; |
| 98 | } |
| 99 | |
| 100 | if (MO.isDef()) { |
| 101 | TII.storeRegToStackSlot(MBB, next(MII), PhysReg, true, |
| 102 | StackSlot, RC); |
| 103 | MachineInstr *StoreMI = next(MII); |
| 104 | VRM.addSpillSlotUse(StackSlot, StoreMI); |
| 105 | ++NumStores; |
| 106 | } |
| 107 | } |
| 108 | MF.getRegInfo().setPhysRegUsed(RReg); |
| 109 | MI.getOperand(i).setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 110 | MI.getOperand(i).setSubReg(0); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 111 | } else { |
| 112 | MF.getRegInfo().setPhysRegUsed(MO.getReg()); |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | DOUT << '\t' << MI; |
| 118 | LoadedRegs.clear(); |
| 119 | } |
| 120 | } |
| 121 | return true; |
| 122 | } |
| 123 | |
| 124 | // ****************** // |
| 125 | // Utility Functions // |
| 126 | // ****************** // |
| 127 | |
| 128 | /// InvalidateKill - A MI that defines the specified register is being deleted, |
| 129 | /// invalidate the register kill information. |
| 130 | static void InvalidateKill(unsigned Reg, BitVector &RegKills, |
| 131 | std::vector<MachineOperand*> &KillOps) { |
| 132 | if (RegKills[Reg]) { |
| 133 | KillOps[Reg]->setIsKill(false); |
| 134 | KillOps[Reg] = NULL; |
| 135 | RegKills.reset(Reg); |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | /// findSinglePredSuccessor - Return via reference a vector of machine basic |
| 140 | /// blocks each of which is a successor of the specified BB and has no other |
| 141 | /// predecessor. |
| 142 | static void findSinglePredSuccessor(MachineBasicBlock *MBB, |
| 143 | SmallVectorImpl<MachineBasicBlock *> &Succs) { |
| 144 | for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(), |
| 145 | SE = MBB->succ_end(); SI != SE; ++SI) { |
| 146 | MachineBasicBlock *SuccMBB = *SI; |
| 147 | if (SuccMBB->pred_size() == 1) |
| 148 | Succs.push_back(SuccMBB); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | /// InvalidateKills - MI is going to be deleted. If any of its operands are |
| 153 | /// marked kill, then invalidate the information. |
| 154 | static void InvalidateKills(MachineInstr &MI, BitVector &RegKills, |
| 155 | std::vector<MachineOperand*> &KillOps, |
| 156 | SmallVector<unsigned, 2> *KillRegs = NULL) { |
| 157 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 158 | MachineOperand &MO = MI.getOperand(i); |
| 159 | if (!MO.isReg() || !MO.isUse() || !MO.isKill()) |
| 160 | continue; |
| 161 | unsigned Reg = MO.getReg(); |
| 162 | if (TargetRegisterInfo::isVirtualRegister(Reg)) |
| 163 | continue; |
| 164 | if (KillRegs) |
| 165 | KillRegs->push_back(Reg); |
| 166 | assert(Reg < KillOps.size()); |
| 167 | if (KillOps[Reg] == &MO) { |
| 168 | RegKills.reset(Reg); |
| 169 | KillOps[Reg] = NULL; |
| 170 | } |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /// InvalidateRegDef - If the def operand of the specified def MI is now dead |
| 175 | /// (since it's spill instruction is removed), mark it isDead. Also checks if |
| 176 | /// the def MI has other definition operands that are not dead. Returns it by |
| 177 | /// reference. |
| 178 | static bool InvalidateRegDef(MachineBasicBlock::iterator I, |
| 179 | MachineInstr &NewDef, unsigned Reg, |
| 180 | bool &HasLiveDef) { |
| 181 | // Due to remat, it's possible this reg isn't being reused. That is, |
| 182 | // the def of this reg (by prev MI) is now dead. |
| 183 | MachineInstr *DefMI = I; |
| 184 | MachineOperand *DefOp = NULL; |
| 185 | for (unsigned i = 0, e = DefMI->getNumOperands(); i != e; ++i) { |
| 186 | MachineOperand &MO = DefMI->getOperand(i); |
| 187 | if (MO.isReg() && MO.isDef()) { |
| 188 | if (MO.getReg() == Reg) |
| 189 | DefOp = &MO; |
| 190 | else if (!MO.isDead()) |
| 191 | HasLiveDef = true; |
| 192 | } |
| 193 | } |
| 194 | if (!DefOp) |
| 195 | return false; |
| 196 | |
| 197 | bool FoundUse = false, Done = false; |
| 198 | MachineBasicBlock::iterator E = &NewDef; |
| 199 | ++I; ++E; |
| 200 | for (; !Done && I != E; ++I) { |
| 201 | MachineInstr *NMI = I; |
| 202 | for (unsigned j = 0, ee = NMI->getNumOperands(); j != ee; ++j) { |
| 203 | MachineOperand &MO = NMI->getOperand(j); |
| 204 | if (!MO.isReg() || MO.getReg() != Reg) |
| 205 | continue; |
| 206 | if (MO.isUse()) |
| 207 | FoundUse = true; |
| 208 | Done = true; // Stop after scanning all the operands of this MI. |
| 209 | } |
| 210 | } |
| 211 | if (!FoundUse) { |
| 212 | // Def is dead! |
| 213 | DefOp->setIsDead(); |
| 214 | return true; |
| 215 | } |
| 216 | return false; |
| 217 | } |
| 218 | |
| 219 | /// UpdateKills - Track and update kill info. If a MI reads a register that is |
| 220 | /// marked kill, then it must be due to register reuse. Transfer the kill info |
| 221 | /// over. |
| 222 | static void UpdateKills(MachineInstr &MI, BitVector &RegKills, |
| 223 | std::vector<MachineOperand*> &KillOps, |
| 224 | const TargetRegisterInfo* TRI) { |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 225 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 226 | MachineOperand &MO = MI.getOperand(i); |
| 227 | if (!MO.isReg() || !MO.isUse()) |
| 228 | continue; |
| 229 | unsigned Reg = MO.getReg(); |
| 230 | if (Reg == 0) |
| 231 | continue; |
| 232 | |
| 233 | if (RegKills[Reg] && KillOps[Reg]->getParent() != &MI) { |
| 234 | // That can't be right. Register is killed but not re-defined and it's |
| 235 | // being reused. Let's fix that. |
| 236 | KillOps[Reg]->setIsKill(false); |
| 237 | KillOps[Reg] = NULL; |
| 238 | RegKills.reset(Reg); |
Evan Cheng | a24752f | 2009-03-19 20:30:06 +0000 | [diff] [blame] | 239 | if (!MI.isRegTiedToDefOperand(i)) |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 240 | // Unless it's a two-address operand, this is the new kill. |
| 241 | MO.setIsKill(); |
| 242 | } |
| 243 | if (MO.isKill()) { |
| 244 | RegKills.set(Reg); |
| 245 | KillOps[Reg] = &MO; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 250 | const MachineOperand &MO = MI.getOperand(i); |
| 251 | if (!MO.isReg() || !MO.isDef()) |
| 252 | continue; |
| 253 | unsigned Reg = MO.getReg(); |
| 254 | RegKills.reset(Reg); |
| 255 | KillOps[Reg] = NULL; |
| 256 | // It also defines (or partially define) aliases. |
| 257 | for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS) { |
| 258 | RegKills.reset(*AS); |
| 259 | KillOps[*AS] = NULL; |
| 260 | } |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | /// ReMaterialize - Re-materialize definition for Reg targetting DestReg. |
| 265 | /// |
| 266 | static void ReMaterialize(MachineBasicBlock &MBB, |
| 267 | MachineBasicBlock::iterator &MII, |
| 268 | unsigned DestReg, unsigned Reg, |
| 269 | const TargetInstrInfo *TII, |
| 270 | const TargetRegisterInfo *TRI, |
| 271 | VirtRegMap &VRM) { |
| 272 | TII->reMaterialize(MBB, MII, DestReg, VRM.getReMaterializedMI(Reg)); |
| 273 | MachineInstr *NewMI = prior(MII); |
| 274 | for (unsigned i = 0, e = NewMI->getNumOperands(); i != e; ++i) { |
| 275 | MachineOperand &MO = NewMI->getOperand(i); |
| 276 | if (!MO.isReg() || MO.getReg() == 0) |
| 277 | continue; |
| 278 | unsigned VirtReg = MO.getReg(); |
| 279 | if (TargetRegisterInfo::isPhysicalRegister(VirtReg)) |
| 280 | continue; |
| 281 | assert(MO.isUse()); |
| 282 | unsigned SubIdx = MO.getSubReg(); |
| 283 | unsigned Phys = VRM.getPhys(VirtReg); |
| 284 | assert(Phys); |
| 285 | unsigned RReg = SubIdx ? TRI->getSubReg(Phys, SubIdx) : Phys; |
| 286 | MO.setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 287 | MO.setSubReg(0); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 288 | } |
| 289 | ++NumReMats; |
| 290 | } |
| 291 | |
| 292 | /// findSuperReg - Find the SubReg's super-register of given register class |
| 293 | /// where its SubIdx sub-register is SubReg. |
| 294 | static unsigned findSuperReg(const TargetRegisterClass *RC, unsigned SubReg, |
| 295 | unsigned SubIdx, const TargetRegisterInfo *TRI) { |
| 296 | for (TargetRegisterClass::iterator I = RC->begin(), E = RC->end(); |
| 297 | I != E; ++I) { |
| 298 | unsigned Reg = *I; |
| 299 | if (TRI->getSubReg(Reg, SubIdx) == SubReg) |
| 300 | return Reg; |
| 301 | } |
| 302 | return 0; |
| 303 | } |
| 304 | |
| 305 | // ******************************** // |
| 306 | // Available Spills Implementation // |
| 307 | // ******************************** // |
| 308 | |
| 309 | /// disallowClobberPhysRegOnly - Unset the CanClobber bit of the specified |
| 310 | /// stackslot register. The register is still available but is no longer |
| 311 | /// allowed to be modifed. |
| 312 | void AvailableSpills::disallowClobberPhysRegOnly(unsigned PhysReg) { |
| 313 | std::multimap<unsigned, int>::iterator I = |
| 314 | PhysRegsAvailable.lower_bound(PhysReg); |
| 315 | while (I != PhysRegsAvailable.end() && I->first == PhysReg) { |
| 316 | int SlotOrReMat = I->second; |
| 317 | I++; |
| 318 | assert((SpillSlotsOrReMatsAvailable[SlotOrReMat] >> 1) == PhysReg && |
| 319 | "Bidirectional map mismatch!"); |
| 320 | SpillSlotsOrReMatsAvailable[SlotOrReMat] &= ~1; |
| 321 | DOUT << "PhysReg " << TRI->getName(PhysReg) |
| 322 | << " copied, it is available for use but can no longer be modified\n"; |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | /// disallowClobberPhysReg - Unset the CanClobber bit of the specified |
| 327 | /// stackslot register and its aliases. The register and its aliases may |
| 328 | /// still available but is no longer allowed to be modifed. |
| 329 | void AvailableSpills::disallowClobberPhysReg(unsigned PhysReg) { |
| 330 | for (const unsigned *AS = TRI->getAliasSet(PhysReg); *AS; ++AS) |
| 331 | disallowClobberPhysRegOnly(*AS); |
| 332 | disallowClobberPhysRegOnly(PhysReg); |
| 333 | } |
| 334 | |
| 335 | /// ClobberPhysRegOnly - This is called when the specified physreg changes |
| 336 | /// value. We use this to invalidate any info about stuff we thing lives in it. |
| 337 | void AvailableSpills::ClobberPhysRegOnly(unsigned PhysReg) { |
| 338 | std::multimap<unsigned, int>::iterator I = |
| 339 | PhysRegsAvailable.lower_bound(PhysReg); |
| 340 | while (I != PhysRegsAvailable.end() && I->first == PhysReg) { |
| 341 | int SlotOrReMat = I->second; |
| 342 | PhysRegsAvailable.erase(I++); |
| 343 | assert((SpillSlotsOrReMatsAvailable[SlotOrReMat] >> 1) == PhysReg && |
| 344 | "Bidirectional map mismatch!"); |
| 345 | SpillSlotsOrReMatsAvailable.erase(SlotOrReMat); |
| 346 | DOUT << "PhysReg " << TRI->getName(PhysReg) |
| 347 | << " clobbered, invalidating "; |
| 348 | if (SlotOrReMat > VirtRegMap::MAX_STACK_SLOT) |
| 349 | DOUT << "RM#" << SlotOrReMat-VirtRegMap::MAX_STACK_SLOT-1 << "\n"; |
| 350 | else |
| 351 | DOUT << "SS#" << SlotOrReMat << "\n"; |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | /// ClobberPhysReg - This is called when the specified physreg changes |
| 356 | /// value. We use this to invalidate any info about stuff we thing lives in |
| 357 | /// it and any of its aliases. |
| 358 | void AvailableSpills::ClobberPhysReg(unsigned PhysReg) { |
| 359 | for (const unsigned *AS = TRI->getAliasSet(PhysReg); *AS; ++AS) |
| 360 | ClobberPhysRegOnly(*AS); |
| 361 | ClobberPhysRegOnly(PhysReg); |
| 362 | } |
| 363 | |
| 364 | /// AddAvailableRegsToLiveIn - Availability information is being kept coming |
| 365 | /// into the specified MBB. Add available physical registers as potential |
| 366 | /// live-in's. If they are reused in the MBB, they will be added to the |
| 367 | /// live-in set to make register scavenger and post-allocation scheduler. |
| 368 | void AvailableSpills::AddAvailableRegsToLiveIn(MachineBasicBlock &MBB, |
| 369 | BitVector &RegKills, |
| 370 | std::vector<MachineOperand*> &KillOps) { |
| 371 | std::set<unsigned> NotAvailable; |
| 372 | for (std::multimap<unsigned, int>::iterator |
| 373 | I = PhysRegsAvailable.begin(), E = PhysRegsAvailable.end(); |
| 374 | I != E; ++I) { |
| 375 | unsigned Reg = I->first; |
| 376 | const TargetRegisterClass* RC = TRI->getPhysicalRegisterRegClass(Reg); |
| 377 | // FIXME: A temporary workaround. We can't reuse available value if it's |
| 378 | // not safe to move the def of the virtual register's class. e.g. |
| 379 | // X86::RFP* register classes. Do not add it as a live-in. |
| 380 | if (!TII->isSafeToMoveRegClassDefs(RC)) |
| 381 | // This is no longer available. |
| 382 | NotAvailable.insert(Reg); |
| 383 | else { |
| 384 | MBB.addLiveIn(Reg); |
| 385 | InvalidateKill(Reg, RegKills, KillOps); |
| 386 | } |
| 387 | |
| 388 | // Skip over the same register. |
| 389 | std::multimap<unsigned, int>::iterator NI = next(I); |
| 390 | while (NI != E && NI->first == Reg) { |
| 391 | ++I; |
| 392 | ++NI; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | for (std::set<unsigned>::iterator I = NotAvailable.begin(), |
| 397 | E = NotAvailable.end(); I != E; ++I) { |
| 398 | ClobberPhysReg(*I); |
| 399 | for (const unsigned *SubRegs = TRI->getSubRegisters(*I); |
| 400 | *SubRegs; ++SubRegs) |
| 401 | ClobberPhysReg(*SubRegs); |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | /// ModifyStackSlotOrReMat - This method is called when the value in a stack |
| 406 | /// slot changes. This removes information about which register the previous |
| 407 | /// value for this slot lives in (as the previous value is dead now). |
| 408 | void AvailableSpills::ModifyStackSlotOrReMat(int SlotOrReMat) { |
| 409 | std::map<int, unsigned>::iterator It = |
| 410 | SpillSlotsOrReMatsAvailable.find(SlotOrReMat); |
| 411 | if (It == SpillSlotsOrReMatsAvailable.end()) return; |
| 412 | unsigned Reg = It->second >> 1; |
| 413 | SpillSlotsOrReMatsAvailable.erase(It); |
| 414 | |
| 415 | // This register may hold the value of multiple stack slots, only remove this |
| 416 | // stack slot from the set of values the register contains. |
| 417 | std::multimap<unsigned, int>::iterator I = PhysRegsAvailable.lower_bound(Reg); |
| 418 | for (; ; ++I) { |
| 419 | assert(I != PhysRegsAvailable.end() && I->first == Reg && |
| 420 | "Map inverse broken!"); |
| 421 | if (I->second == SlotOrReMat) break; |
| 422 | } |
| 423 | PhysRegsAvailable.erase(I); |
| 424 | } |
| 425 | |
| 426 | // ************************** // |
| 427 | // Reuse Info Implementation // |
| 428 | // ************************** // |
| 429 | |
| 430 | /// GetRegForReload - We are about to emit a reload into PhysReg. If there |
| 431 | /// is some other operand that is using the specified register, either pick |
| 432 | /// a new register to use, or evict the previous reload and use this reg. |
| 433 | unsigned ReuseInfo::GetRegForReload(unsigned PhysReg, MachineInstr *MI, |
| 434 | AvailableSpills &Spills, |
| 435 | std::vector<MachineInstr*> &MaybeDeadStores, |
| 436 | SmallSet<unsigned, 8> &Rejected, |
| 437 | BitVector &RegKills, |
| 438 | std::vector<MachineOperand*> &KillOps, |
| 439 | VirtRegMap &VRM) { |
| 440 | const TargetInstrInfo* TII = MI->getParent()->getParent()->getTarget() |
| 441 | .getInstrInfo(); |
| 442 | |
| 443 | if (Reuses.empty()) return PhysReg; // This is most often empty. |
| 444 | |
| 445 | for (unsigned ro = 0, e = Reuses.size(); ro != e; ++ro) { |
| 446 | ReusedOp &Op = Reuses[ro]; |
| 447 | // If we find some other reuse that was supposed to use this register |
| 448 | // exactly for its reload, we can change this reload to use ITS reload |
| 449 | // register. That is, unless its reload register has already been |
| 450 | // considered and subsequently rejected because it has also been reused |
| 451 | // by another operand. |
| 452 | if (Op.PhysRegReused == PhysReg && |
| 453 | Rejected.count(Op.AssignedPhysReg) == 0) { |
| 454 | // Yup, use the reload register that we didn't use before. |
| 455 | unsigned NewReg = Op.AssignedPhysReg; |
| 456 | Rejected.insert(PhysReg); |
| 457 | return GetRegForReload(NewReg, MI, Spills, MaybeDeadStores, Rejected, |
| 458 | RegKills, KillOps, VRM); |
| 459 | } else { |
| 460 | // Otherwise, we might also have a problem if a previously reused |
| 461 | // value aliases the new register. If so, codegen the previous reload |
| 462 | // and use this one. |
| 463 | unsigned PRRU = Op.PhysRegReused; |
| 464 | const TargetRegisterInfo *TRI = Spills.getRegInfo(); |
| 465 | if (TRI->areAliases(PRRU, PhysReg)) { |
| 466 | // Okay, we found out that an alias of a reused register |
| 467 | // was used. This isn't good because it means we have |
| 468 | // to undo a previous reuse. |
| 469 | MachineBasicBlock *MBB = MI->getParent(); |
| 470 | const TargetRegisterClass *AliasRC = |
| 471 | MBB->getParent()->getRegInfo().getRegClass(Op.VirtReg); |
| 472 | |
| 473 | // Copy Op out of the vector and remove it, we're going to insert an |
| 474 | // explicit load for it. |
| 475 | ReusedOp NewOp = Op; |
| 476 | Reuses.erase(Reuses.begin()+ro); |
| 477 | |
| 478 | // Ok, we're going to try to reload the assigned physreg into the |
| 479 | // slot that we were supposed to in the first place. However, that |
| 480 | // register could hold a reuse. Check to see if it conflicts or |
| 481 | // would prefer us to use a different register. |
| 482 | unsigned NewPhysReg = GetRegForReload(NewOp.AssignedPhysReg, |
| 483 | MI, Spills, MaybeDeadStores, |
| 484 | Rejected, RegKills, KillOps, VRM); |
| 485 | |
| 486 | MachineBasicBlock::iterator MII = MI; |
| 487 | if (NewOp.StackSlotOrReMat > VirtRegMap::MAX_STACK_SLOT) { |
| 488 | ReMaterialize(*MBB, MII, NewPhysReg, NewOp.VirtReg, TII, TRI,VRM); |
| 489 | } else { |
| 490 | TII->loadRegFromStackSlot(*MBB, MII, NewPhysReg, |
| 491 | NewOp.StackSlotOrReMat, AliasRC); |
| 492 | MachineInstr *LoadMI = prior(MII); |
| 493 | VRM.addSpillSlotUse(NewOp.StackSlotOrReMat, LoadMI); |
| 494 | // Any stores to this stack slot are not dead anymore. |
| 495 | MaybeDeadStores[NewOp.StackSlotOrReMat] = NULL; |
| 496 | ++NumLoads; |
| 497 | } |
| 498 | Spills.ClobberPhysReg(NewPhysReg); |
| 499 | Spills.ClobberPhysReg(NewOp.PhysRegReused); |
| 500 | |
| 501 | unsigned SubIdx = MI->getOperand(NewOp.Operand).getSubReg(); |
| 502 | unsigned RReg = SubIdx ? TRI->getSubReg(NewPhysReg, SubIdx) : NewPhysReg; |
| 503 | MI->getOperand(NewOp.Operand).setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 504 | MI->getOperand(NewOp.Operand).setSubReg(0); |
| 505 | |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 506 | Spills.addAvailable(NewOp.StackSlotOrReMat, NewPhysReg); |
| 507 | --MII; |
| 508 | UpdateKills(*MII, RegKills, KillOps, TRI); |
| 509 | DOUT << '\t' << *MII; |
| 510 | |
| 511 | DOUT << "Reuse undone!\n"; |
| 512 | --NumReused; |
| 513 | |
| 514 | // Finally, PhysReg is now available, go ahead and use it. |
| 515 | return PhysReg; |
| 516 | } |
| 517 | } |
| 518 | } |
| 519 | return PhysReg; |
| 520 | } |
| 521 | |
| 522 | // ***************************** // |
| 523 | // Local Spiller Implementation // |
| 524 | // ***************************** // |
| 525 | |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 526 | bool LocalSpiller::runOnMachineFunction(MachineFunction &MF, VirtRegMap &VRM, |
| 527 | LiveIntervals* LIs) { |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 528 | RegInfo = &MF.getRegInfo(); |
| 529 | TRI = MF.getTarget().getRegisterInfo(); |
| 530 | TII = MF.getTarget().getInstrInfo(); |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 531 | AllocatableRegs = TRI->getAllocatableSet(MF); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 532 | DOUT << "\n**** Local spiller rewriting function '" |
| 533 | << MF.getFunction()->getName() << "':\n"; |
| 534 | DOUT << "**** Machine Instrs (NOTE! Does not include spills and reloads!)" |
| 535 | " ****\n"; |
| 536 | DEBUG(MF.dump()); |
| 537 | |
| 538 | // Spills - Keep track of which spilled values are available in physregs |
| 539 | // so that we can choose to reuse the physregs instead of emitting |
| 540 | // reloads. This is usually refreshed per basic block. |
| 541 | AvailableSpills Spills(TRI, TII); |
| 542 | |
| 543 | // Keep track of kill information. |
| 544 | BitVector RegKills(TRI->getNumRegs()); |
| 545 | std::vector<MachineOperand*> KillOps; |
| 546 | KillOps.resize(TRI->getNumRegs(), NULL); |
| 547 | |
| 548 | // SingleEntrySuccs - Successor blocks which have a single predecessor. |
| 549 | SmallVector<MachineBasicBlock*, 4> SinglePredSuccs; |
| 550 | SmallPtrSet<MachineBasicBlock*,16> EarlyVisited; |
| 551 | |
| 552 | // Traverse the basic blocks depth first. |
| 553 | MachineBasicBlock *Entry = MF.begin(); |
| 554 | SmallPtrSet<MachineBasicBlock*,16> Visited; |
| 555 | for (df_ext_iterator<MachineBasicBlock*, |
| 556 | SmallPtrSet<MachineBasicBlock*,16> > |
| 557 | DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited); |
| 558 | DFI != E; ++DFI) { |
| 559 | MachineBasicBlock *MBB = *DFI; |
| 560 | if (!EarlyVisited.count(MBB)) |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 561 | RewriteMBB(*MBB, VRM, LIs, Spills, RegKills, KillOps); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 562 | |
| 563 | // If this MBB is the only predecessor of a successor. Keep the |
| 564 | // availability information and visit it next. |
| 565 | do { |
| 566 | // Keep visiting single predecessor successor as long as possible. |
| 567 | SinglePredSuccs.clear(); |
| 568 | findSinglePredSuccessor(MBB, SinglePredSuccs); |
| 569 | if (SinglePredSuccs.empty()) |
| 570 | MBB = 0; |
| 571 | else { |
| 572 | // FIXME: More than one successors, each of which has MBB has |
| 573 | // the only predecessor. |
| 574 | MBB = SinglePredSuccs[0]; |
| 575 | if (!Visited.count(MBB) && EarlyVisited.insert(MBB)) { |
| 576 | Spills.AddAvailableRegsToLiveIn(*MBB, RegKills, KillOps); |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 577 | RewriteMBB(*MBB, VRM, LIs, Spills, RegKills, KillOps); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 578 | } |
| 579 | } |
| 580 | } while (MBB); |
| 581 | |
| 582 | // Clear the availability info. |
| 583 | Spills.clear(); |
| 584 | } |
| 585 | |
| 586 | DOUT << "**** Post Machine Instrs ****\n"; |
| 587 | DEBUG(MF.dump()); |
| 588 | |
| 589 | // Mark unused spill slots. |
| 590 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 591 | int SS = VRM.getLowSpillSlot(); |
| 592 | if (SS != VirtRegMap::NO_STACK_SLOT) |
| 593 | for (int e = VRM.getHighSpillSlot(); SS <= e; ++SS) |
| 594 | if (!VRM.isSpillSlotUsed(SS)) { |
| 595 | MFI->RemoveStackObject(SS); |
| 596 | ++NumDSS; |
| 597 | } |
| 598 | |
| 599 | return true; |
| 600 | } |
| 601 | |
| 602 | |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 603 | /// FoldsStackSlotModRef - Return true if the specified MI folds the specified |
| 604 | /// stack slot mod/ref. It also checks if it's possible to unfold the |
| 605 | /// instruction by having it define a specified physical register instead. |
| 606 | static bool FoldsStackSlotModRef(MachineInstr &MI, int SS, unsigned PhysReg, |
| 607 | const TargetInstrInfo *TII, |
| 608 | const TargetRegisterInfo *TRI, |
| 609 | VirtRegMap &VRM) { |
| 610 | if (VRM.hasEmergencySpills(&MI) || VRM.isSpillPt(&MI)) |
| 611 | return false; |
| 612 | |
| 613 | bool Found = false; |
| 614 | VirtRegMap::MI2VirtMapTy::const_iterator I, End; |
| 615 | for (tie(I, End) = VRM.getFoldedVirts(&MI); I != End; ++I) { |
| 616 | unsigned VirtReg = I->second.first; |
| 617 | VirtRegMap::ModRef MR = I->second.second; |
| 618 | if (MR & VirtRegMap::isModRef) |
| 619 | if (VRM.getStackSlot(VirtReg) == SS) { |
| 620 | Found= TII->getOpcodeAfterMemoryUnfold(MI.getOpcode(), true, true) != 0; |
| 621 | break; |
| 622 | } |
| 623 | } |
| 624 | if (!Found) |
| 625 | return false; |
| 626 | |
| 627 | // Does the instruction uses a register that overlaps the scratch register? |
| 628 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 629 | MachineOperand &MO = MI.getOperand(i); |
| 630 | if (!MO.isReg() || MO.getReg() == 0) |
| 631 | continue; |
| 632 | unsigned Reg = MO.getReg(); |
| 633 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
| 634 | if (!VRM.hasPhys(Reg)) |
| 635 | continue; |
| 636 | Reg = VRM.getPhys(Reg); |
| 637 | } |
| 638 | if (TRI->regsOverlap(PhysReg, Reg)) |
| 639 | return false; |
| 640 | } |
| 641 | return true; |
| 642 | } |
| 643 | |
| 644 | /// FindFreeRegister - Find a free register of a given register class by looking |
| 645 | /// at (at most) the last two machine instructions. |
| 646 | static unsigned FindFreeRegister(MachineBasicBlock::iterator MII, |
| 647 | MachineBasicBlock &MBB, |
| 648 | const TargetRegisterClass *RC, |
| 649 | const TargetRegisterInfo *TRI, |
| 650 | BitVector &AllocatableRegs) { |
| 651 | BitVector Defs(TRI->getNumRegs()); |
| 652 | BitVector Uses(TRI->getNumRegs()); |
| 653 | SmallVector<unsigned, 4> LocalUses; |
| 654 | SmallVector<unsigned, 4> Kills; |
| 655 | |
| 656 | // Take a look at 2 instructions at most. |
| 657 | for (unsigned Count = 0; Count < 2; ++Count) { |
| 658 | if (MII == MBB.begin()) |
| 659 | break; |
| 660 | MachineInstr *PrevMI = prior(MII); |
| 661 | for (unsigned i = 0, e = PrevMI->getNumOperands(); i != e; ++i) { |
| 662 | MachineOperand &MO = PrevMI->getOperand(i); |
| 663 | if (!MO.isReg() || MO.getReg() == 0) |
| 664 | continue; |
| 665 | unsigned Reg = MO.getReg(); |
| 666 | if (MO.isDef()) { |
| 667 | Defs.set(Reg); |
| 668 | for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS) |
| 669 | Defs.set(*AS); |
| 670 | } else { |
| 671 | LocalUses.push_back(Reg); |
| 672 | if (MO.isKill() && AllocatableRegs[Reg]) |
| 673 | Kills.push_back(Reg); |
| 674 | } |
| 675 | } |
| 676 | |
| 677 | for (unsigned i = 0, e = Kills.size(); i != e; ++i) { |
| 678 | unsigned Kill = Kills[i]; |
| 679 | if (!Defs[Kill] && !Uses[Kill] && |
| 680 | TRI->getPhysicalRegisterRegClass(Kill) == RC) |
| 681 | return Kill; |
| 682 | } |
| 683 | for (unsigned i = 0, e = LocalUses.size(); i != e; ++i) { |
| 684 | unsigned Reg = LocalUses[i]; |
| 685 | Uses.set(Reg); |
| 686 | for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS) |
| 687 | Uses.set(*AS); |
| 688 | } |
| 689 | |
| 690 | MII = PrevMI; |
| 691 | } |
| 692 | |
| 693 | return 0; |
| 694 | } |
| 695 | |
| 696 | static |
| 697 | void AssignPhysToVirtReg(MachineInstr *MI, unsigned VirtReg, unsigned PhysReg) { |
| 698 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 699 | MachineOperand &MO = MI->getOperand(i); |
| 700 | if (MO.isReg() && MO.getReg() == VirtReg) |
| 701 | MO.setReg(PhysReg); |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | /// OptimizeByUnfold2 - Unfold a series of load / store folding instructions if |
| 706 | /// a scratch register is available. |
| 707 | /// xorq %r12<kill>, %r13 |
| 708 | /// addq %rax, -184(%rbp) |
| 709 | /// addq %r13, -184(%rbp) |
| 710 | /// ==> |
| 711 | /// xorq %r12<kill>, %r13 |
| 712 | /// movq -184(%rbp), %r12 |
| 713 | /// addq %rax, %r12 |
| 714 | /// addq %r13, %r12 |
| 715 | /// movq %r12, -184(%rbp) |
| 716 | bool LocalSpiller::OptimizeByUnfold2(unsigned VirtReg, int SS, |
| 717 | MachineBasicBlock &MBB, |
| 718 | MachineBasicBlock::iterator &MII, |
| 719 | std::vector<MachineInstr*> &MaybeDeadStores, |
| 720 | AvailableSpills &Spills, |
| 721 | BitVector &RegKills, |
| 722 | std::vector<MachineOperand*> &KillOps, |
| 723 | VirtRegMap &VRM) { |
| 724 | MachineBasicBlock::iterator NextMII = next(MII); |
| 725 | if (NextMII == MBB.end()) |
| 726 | return false; |
| 727 | |
| 728 | if (TII->getOpcodeAfterMemoryUnfold(MII->getOpcode(), true, true) == 0) |
| 729 | return false; |
| 730 | |
| 731 | // Now let's see if the last couple of instructions happens to have freed up |
| 732 | // a register. |
| 733 | const TargetRegisterClass* RC = RegInfo->getRegClass(VirtReg); |
| 734 | unsigned PhysReg = FindFreeRegister(MII, MBB, RC, TRI, AllocatableRegs); |
| 735 | if (!PhysReg) |
| 736 | return false; |
| 737 | |
| 738 | MachineFunction &MF = *MBB.getParent(); |
| 739 | TRI = MF.getTarget().getRegisterInfo(); |
| 740 | MachineInstr &MI = *MII; |
| 741 | if (!FoldsStackSlotModRef(MI, SS, PhysReg, TII, TRI, VRM)) |
| 742 | return false; |
| 743 | |
| 744 | // If the next instruction also folds the same SS modref and can be unfoled, |
| 745 | // then it's worthwhile to issue a load from SS into the free register and |
| 746 | // then unfold these instructions. |
| 747 | if (!FoldsStackSlotModRef(*NextMII, SS, PhysReg, TII, TRI, VRM)) |
| 748 | return false; |
| 749 | |
| 750 | // Load from SS to the spare physical register. |
| 751 | TII->loadRegFromStackSlot(MBB, MII, PhysReg, SS, RC); |
| 752 | // This invalidates Phys. |
| 753 | Spills.ClobberPhysReg(PhysReg); |
| 754 | // Remember it's available. |
| 755 | Spills.addAvailable(SS, PhysReg); |
| 756 | MaybeDeadStores[SS] = NULL; |
| 757 | |
| 758 | // Unfold current MI. |
| 759 | SmallVector<MachineInstr*, 4> NewMIs; |
| 760 | if (!TII->unfoldMemoryOperand(MF, &MI, VirtReg, false, false, NewMIs)) |
| 761 | assert(0 && "Unable unfold the load / store folding instruction!"); |
| 762 | assert(NewMIs.size() == 1); |
| 763 | AssignPhysToVirtReg(NewMIs[0], VirtReg, PhysReg); |
| 764 | VRM.transferRestorePts(&MI, NewMIs[0]); |
| 765 | MII = MBB.insert(MII, NewMIs[0]); |
| 766 | InvalidateKills(MI, RegKills, KillOps); |
| 767 | VRM.RemoveMachineInstrFromMaps(&MI); |
| 768 | MBB.erase(&MI); |
| 769 | ++NumModRefUnfold; |
| 770 | |
| 771 | // Unfold next instructions that fold the same SS. |
| 772 | do { |
| 773 | MachineInstr &NextMI = *NextMII; |
| 774 | NextMII = next(NextMII); |
| 775 | NewMIs.clear(); |
| 776 | if (!TII->unfoldMemoryOperand(MF, &NextMI, VirtReg, false, false, NewMIs)) |
| 777 | assert(0 && "Unable unfold the load / store folding instruction!"); |
| 778 | assert(NewMIs.size() == 1); |
| 779 | AssignPhysToVirtReg(NewMIs[0], VirtReg, PhysReg); |
| 780 | VRM.transferRestorePts(&NextMI, NewMIs[0]); |
| 781 | MBB.insert(NextMII, NewMIs[0]); |
| 782 | InvalidateKills(NextMI, RegKills, KillOps); |
| 783 | VRM.RemoveMachineInstrFromMaps(&NextMI); |
| 784 | MBB.erase(&NextMI); |
| 785 | ++NumModRefUnfold; |
| 786 | } while (FoldsStackSlotModRef(*NextMII, SS, PhysReg, TII, TRI, VRM)); |
| 787 | |
| 788 | // Store the value back into SS. |
| 789 | TII->storeRegToStackSlot(MBB, NextMII, PhysReg, true, SS, RC); |
| 790 | MachineInstr *StoreMI = prior(NextMII); |
| 791 | VRM.addSpillSlotUse(SS, StoreMI); |
| 792 | VRM.virtFolded(VirtReg, StoreMI, VirtRegMap::isMod); |
| 793 | |
| 794 | return true; |
| 795 | } |
| 796 | |
| 797 | /// OptimizeByUnfold - Turn a store folding instruction into a load folding |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 798 | /// instruction. e.g. |
| 799 | /// xorl %edi, %eax |
| 800 | /// movl %eax, -32(%ebp) |
| 801 | /// movl -36(%ebp), %eax |
| 802 | /// orl %eax, -32(%ebp) |
| 803 | /// ==> |
| 804 | /// xorl %edi, %eax |
| 805 | /// orl -36(%ebp), %eax |
| 806 | /// mov %eax, -32(%ebp) |
| 807 | /// This enables unfolding optimization for a subsequent instruction which will |
| 808 | /// also eliminate the newly introduced store instruction. |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 809 | bool LocalSpiller::OptimizeByUnfold(MachineBasicBlock &MBB, |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 810 | MachineBasicBlock::iterator &MII, |
| 811 | std::vector<MachineInstr*> &MaybeDeadStores, |
| 812 | AvailableSpills &Spills, |
| 813 | BitVector &RegKills, |
| 814 | std::vector<MachineOperand*> &KillOps, |
| 815 | VirtRegMap &VRM) { |
| 816 | MachineFunction &MF = *MBB.getParent(); |
| 817 | MachineInstr &MI = *MII; |
| 818 | unsigned UnfoldedOpc = 0; |
| 819 | unsigned UnfoldPR = 0; |
| 820 | unsigned UnfoldVR = 0; |
| 821 | int FoldedSS = VirtRegMap::NO_STACK_SLOT; |
| 822 | VirtRegMap::MI2VirtMapTy::const_iterator I, End; |
| 823 | for (tie(I, End) = VRM.getFoldedVirts(&MI); I != End; ) { |
| 824 | // Only transform a MI that folds a single register. |
| 825 | if (UnfoldedOpc) |
| 826 | return false; |
| 827 | UnfoldVR = I->second.first; |
| 828 | VirtRegMap::ModRef MR = I->second.second; |
| 829 | // MI2VirtMap be can updated which invalidate the iterator. |
| 830 | // Increment the iterator first. |
| 831 | ++I; |
| 832 | if (VRM.isAssignedReg(UnfoldVR)) |
| 833 | continue; |
| 834 | // If this reference is not a use, any previous store is now dead. |
| 835 | // Otherwise, the store to this stack slot is not dead anymore. |
| 836 | FoldedSS = VRM.getStackSlot(UnfoldVR); |
| 837 | MachineInstr* DeadStore = MaybeDeadStores[FoldedSS]; |
| 838 | if (DeadStore && (MR & VirtRegMap::isModRef)) { |
| 839 | unsigned PhysReg = Spills.getSpillSlotOrReMatPhysReg(FoldedSS); |
| 840 | if (!PhysReg || !DeadStore->readsRegister(PhysReg)) |
| 841 | continue; |
| 842 | UnfoldPR = PhysReg; |
| 843 | UnfoldedOpc = TII->getOpcodeAfterMemoryUnfold(MI.getOpcode(), |
| 844 | false, true); |
| 845 | } |
| 846 | } |
| 847 | |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 848 | if (!UnfoldedOpc) { |
| 849 | if (!UnfoldVR) |
| 850 | return false; |
| 851 | |
| 852 | // Look for other unfolding opportunities. |
| 853 | return OptimizeByUnfold2(UnfoldVR, FoldedSS, MBB, MII, |
| 854 | MaybeDeadStores, Spills, RegKills, KillOps, VRM); |
| 855 | } |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 856 | |
| 857 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 858 | MachineOperand &MO = MI.getOperand(i); |
| 859 | if (!MO.isReg() || MO.getReg() == 0 || !MO.isUse()) |
| 860 | continue; |
| 861 | unsigned VirtReg = MO.getReg(); |
| 862 | if (TargetRegisterInfo::isPhysicalRegister(VirtReg) || MO.getSubReg()) |
| 863 | continue; |
| 864 | if (VRM.isAssignedReg(VirtReg)) { |
| 865 | unsigned PhysReg = VRM.getPhys(VirtReg); |
| 866 | if (PhysReg && TRI->regsOverlap(PhysReg, UnfoldPR)) |
| 867 | return false; |
| 868 | } else if (VRM.isReMaterialized(VirtReg)) |
| 869 | continue; |
| 870 | int SS = VRM.getStackSlot(VirtReg); |
| 871 | unsigned PhysReg = Spills.getSpillSlotOrReMatPhysReg(SS); |
| 872 | if (PhysReg) { |
| 873 | if (TRI->regsOverlap(PhysReg, UnfoldPR)) |
| 874 | return false; |
| 875 | continue; |
| 876 | } |
| 877 | if (VRM.hasPhys(VirtReg)) { |
| 878 | PhysReg = VRM.getPhys(VirtReg); |
| 879 | if (!TRI->regsOverlap(PhysReg, UnfoldPR)) |
| 880 | continue; |
| 881 | } |
| 882 | |
| 883 | // Ok, we'll need to reload the value into a register which makes |
| 884 | // it impossible to perform the store unfolding optimization later. |
| 885 | // Let's see if it is possible to fold the load if the store is |
| 886 | // unfolded. This allows us to perform the store unfolding |
| 887 | // optimization. |
| 888 | SmallVector<MachineInstr*, 4> NewMIs; |
| 889 | if (TII->unfoldMemoryOperand(MF, &MI, UnfoldVR, false, false, NewMIs)) { |
| 890 | assert(NewMIs.size() == 1); |
| 891 | MachineInstr *NewMI = NewMIs.back(); |
| 892 | NewMIs.clear(); |
| 893 | int Idx = NewMI->findRegisterUseOperandIdx(VirtReg, false); |
| 894 | assert(Idx != -1); |
| 895 | SmallVector<unsigned, 1> Ops; |
| 896 | Ops.push_back(Idx); |
| 897 | MachineInstr *FoldedMI = TII->foldMemoryOperand(MF, NewMI, Ops, SS); |
| 898 | if (FoldedMI) { |
| 899 | VRM.addSpillSlotUse(SS, FoldedMI); |
| 900 | if (!VRM.hasPhys(UnfoldVR)) |
| 901 | VRM.assignVirt2Phys(UnfoldVR, UnfoldPR); |
| 902 | VRM.virtFolded(VirtReg, FoldedMI, VirtRegMap::isRef); |
| 903 | MII = MBB.insert(MII, FoldedMI); |
| 904 | InvalidateKills(MI, RegKills, KillOps); |
| 905 | VRM.RemoveMachineInstrFromMaps(&MI); |
| 906 | MBB.erase(&MI); |
| 907 | MF.DeleteMachineInstr(NewMI); |
| 908 | return true; |
| 909 | } |
| 910 | MF.DeleteMachineInstr(NewMI); |
| 911 | } |
| 912 | } |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 913 | |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 914 | return false; |
| 915 | } |
| 916 | |
| 917 | /// CommuteToFoldReload - |
| 918 | /// Look for |
| 919 | /// r1 = load fi#1 |
| 920 | /// r1 = op r1, r2<kill> |
| 921 | /// store r1, fi#1 |
| 922 | /// |
| 923 | /// If op is commutable and r2 is killed, then we can xform these to |
| 924 | /// r2 = op r2, fi#1 |
| 925 | /// store r2, fi#1 |
| 926 | bool LocalSpiller::CommuteToFoldReload(MachineBasicBlock &MBB, |
| 927 | MachineBasicBlock::iterator &MII, |
| 928 | unsigned VirtReg, unsigned SrcReg, int SS, |
| 929 | AvailableSpills &Spills, |
| 930 | BitVector &RegKills, |
| 931 | std::vector<MachineOperand*> &KillOps, |
| 932 | const TargetRegisterInfo *TRI, |
| 933 | VirtRegMap &VRM) { |
| 934 | if (MII == MBB.begin() || !MII->killsRegister(SrcReg)) |
| 935 | return false; |
| 936 | |
| 937 | MachineFunction &MF = *MBB.getParent(); |
| 938 | MachineInstr &MI = *MII; |
| 939 | MachineBasicBlock::iterator DefMII = prior(MII); |
| 940 | MachineInstr *DefMI = DefMII; |
| 941 | const TargetInstrDesc &TID = DefMI->getDesc(); |
| 942 | unsigned NewDstIdx; |
| 943 | if (DefMII != MBB.begin() && |
| 944 | TID.isCommutable() && |
| 945 | TII->CommuteChangesDestination(DefMI, NewDstIdx)) { |
| 946 | MachineOperand &NewDstMO = DefMI->getOperand(NewDstIdx); |
| 947 | unsigned NewReg = NewDstMO.getReg(); |
| 948 | if (!NewDstMO.isKill() || TRI->regsOverlap(NewReg, SrcReg)) |
| 949 | return false; |
| 950 | MachineInstr *ReloadMI = prior(DefMII); |
| 951 | int FrameIdx; |
| 952 | unsigned DestReg = TII->isLoadFromStackSlot(ReloadMI, FrameIdx); |
| 953 | if (DestReg != SrcReg || FrameIdx != SS) |
| 954 | return false; |
| 955 | int UseIdx = DefMI->findRegisterUseOperandIdx(DestReg, false); |
| 956 | if (UseIdx == -1) |
| 957 | return false; |
Evan Cheng | a24752f | 2009-03-19 20:30:06 +0000 | [diff] [blame] | 958 | unsigned DefIdx; |
| 959 | if (!MI.isRegTiedToDefOperand(UseIdx, &DefIdx)) |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 960 | return false; |
| 961 | assert(DefMI->getOperand(DefIdx).isReg() && |
| 962 | DefMI->getOperand(DefIdx).getReg() == SrcReg); |
| 963 | |
| 964 | // Now commute def instruction. |
| 965 | MachineInstr *CommutedMI = TII->commuteInstruction(DefMI, true); |
| 966 | if (!CommutedMI) |
| 967 | return false; |
| 968 | SmallVector<unsigned, 1> Ops; |
| 969 | Ops.push_back(NewDstIdx); |
| 970 | MachineInstr *FoldedMI = TII->foldMemoryOperand(MF, CommutedMI, Ops, SS); |
| 971 | // Not needed since foldMemoryOperand returns new MI. |
| 972 | MF.DeleteMachineInstr(CommutedMI); |
| 973 | if (!FoldedMI) |
| 974 | return false; |
| 975 | |
| 976 | VRM.addSpillSlotUse(SS, FoldedMI); |
| 977 | VRM.virtFolded(VirtReg, FoldedMI, VirtRegMap::isRef); |
| 978 | // Insert new def MI and spill MI. |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 979 | const TargetRegisterClass* RC = RegInfo->getRegClass(VirtReg); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 980 | TII->storeRegToStackSlot(MBB, &MI, NewReg, true, SS, RC); |
| 981 | MII = prior(MII); |
| 982 | MachineInstr *StoreMI = MII; |
| 983 | VRM.addSpillSlotUse(SS, StoreMI); |
| 984 | VRM.virtFolded(VirtReg, StoreMI, VirtRegMap::isMod); |
| 985 | MII = MBB.insert(MII, FoldedMI); // Update MII to backtrack. |
| 986 | |
| 987 | // Delete all 3 old instructions. |
| 988 | InvalidateKills(*ReloadMI, RegKills, KillOps); |
| 989 | VRM.RemoveMachineInstrFromMaps(ReloadMI); |
| 990 | MBB.erase(ReloadMI); |
| 991 | InvalidateKills(*DefMI, RegKills, KillOps); |
| 992 | VRM.RemoveMachineInstrFromMaps(DefMI); |
| 993 | MBB.erase(DefMI); |
| 994 | InvalidateKills(MI, RegKills, KillOps); |
| 995 | VRM.RemoveMachineInstrFromMaps(&MI); |
| 996 | MBB.erase(&MI); |
| 997 | |
| 998 | // If NewReg was previously holding value of some SS, it's now clobbered. |
| 999 | // This has to be done now because it's a physical register. When this |
| 1000 | // instruction is re-visited, it's ignored. |
| 1001 | Spills.ClobberPhysReg(NewReg); |
| 1002 | |
| 1003 | ++NumCommutes; |
| 1004 | return true; |
| 1005 | } |
| 1006 | |
| 1007 | return false; |
| 1008 | } |
| 1009 | |
| 1010 | /// SpillRegToStackSlot - Spill a register to a specified stack slot. Check if |
| 1011 | /// the last store to the same slot is now dead. If so, remove the last store. |
Bill Wendling | e67f5e4 | 2009-03-31 08:41:31 +0000 | [diff] [blame] | 1012 | void LocalSpiller::SpillRegToStackSlot(MachineBasicBlock &MBB, |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1013 | MachineBasicBlock::iterator &MII, |
| 1014 | int Idx, unsigned PhysReg, int StackSlot, |
| 1015 | const TargetRegisterClass *RC, |
| 1016 | bool isAvailable, MachineInstr *&LastStore, |
| 1017 | AvailableSpills &Spills, |
| 1018 | SmallSet<MachineInstr*, 4> &ReMatDefs, |
| 1019 | BitVector &RegKills, |
| 1020 | std::vector<MachineOperand*> &KillOps, |
| 1021 | VirtRegMap &VRM) { |
| 1022 | TII->storeRegToStackSlot(MBB, next(MII), PhysReg, true, StackSlot, RC); |
| 1023 | MachineInstr *StoreMI = next(MII); |
| 1024 | VRM.addSpillSlotUse(StackSlot, StoreMI); |
| 1025 | DOUT << "Store:\t" << *StoreMI; |
| 1026 | |
| 1027 | // If there is a dead store to this stack slot, nuke it now. |
Bill Wendling | e67f5e4 | 2009-03-31 08:41:31 +0000 | [diff] [blame] | 1028 | if (LastStore) { |
| 1029 | DOUT << "Removed dead store:\t" << *LastStore; |
| 1030 | ++NumDSE; |
| 1031 | SmallVector<unsigned, 2> KillRegs; |
| 1032 | InvalidateKills(*LastStore, RegKills, KillOps, &KillRegs); |
| 1033 | MachineBasicBlock::iterator PrevMII = LastStore; |
| 1034 | bool CheckDef = PrevMII != MBB.begin(); |
| 1035 | if (CheckDef) |
| 1036 | --PrevMII; |
| 1037 | VRM.RemoveMachineInstrFromMaps(LastStore); |
| 1038 | MBB.erase(LastStore); |
| 1039 | if (CheckDef) { |
| 1040 | // Look at defs of killed registers on the store. Mark the defs |
| 1041 | // as dead since the store has been deleted and they aren't |
| 1042 | // being reused. |
| 1043 | for (unsigned j = 0, ee = KillRegs.size(); j != ee; ++j) { |
| 1044 | bool HasOtherDef = false; |
| 1045 | if (InvalidateRegDef(PrevMII, *MII, KillRegs[j], HasOtherDef)) { |
| 1046 | MachineInstr *DeadDef = PrevMII; |
| 1047 | if (ReMatDefs.count(DeadDef) && !HasOtherDef) { |
| 1048 | // FIXME: This assumes a remat def does not have side |
| 1049 | // effects. |
| 1050 | VRM.RemoveMachineInstrFromMaps(DeadDef); |
| 1051 | MBB.erase(DeadDef); |
| 1052 | ++NumDRM; |
| 1053 | } |
| 1054 | } |
| 1055 | } |
| 1056 | } |
| 1057 | } |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1058 | |
| 1059 | LastStore = next(MII); |
| 1060 | |
| 1061 | // If the stack slot value was previously available in some other |
| 1062 | // register, change it now. Otherwise, make the register available, |
| 1063 | // in PhysReg. |
| 1064 | Spills.ModifyStackSlotOrReMat(StackSlot); |
| 1065 | Spills.ClobberPhysReg(PhysReg); |
| 1066 | Spills.addAvailable(StackSlot, PhysReg, isAvailable); |
| 1067 | ++NumStores; |
| 1068 | } |
| 1069 | |
| 1070 | /// TransferDeadness - A identity copy definition is dead and it's being |
| 1071 | /// removed. Find the last def or use and mark it as dead / kill. |
| 1072 | void LocalSpiller::TransferDeadness(MachineBasicBlock *MBB, unsigned CurDist, |
| 1073 | unsigned Reg, BitVector &RegKills, |
| 1074 | std::vector<MachineOperand*> &KillOps) { |
| 1075 | int LastUDDist = -1; |
| 1076 | MachineInstr *LastUDMI = NULL; |
| 1077 | for (MachineRegisterInfo::reg_iterator RI = RegInfo->reg_begin(Reg), |
| 1078 | RE = RegInfo->reg_end(); RI != RE; ++RI) { |
| 1079 | MachineInstr *UDMI = &*RI; |
| 1080 | if (UDMI->getParent() != MBB) |
| 1081 | continue; |
| 1082 | DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UDMI); |
| 1083 | if (DI == DistanceMap.end() || DI->second > CurDist) |
| 1084 | continue; |
| 1085 | if ((int)DI->second < LastUDDist) |
| 1086 | continue; |
| 1087 | LastUDDist = DI->second; |
| 1088 | LastUDMI = UDMI; |
| 1089 | } |
| 1090 | |
| 1091 | if (LastUDMI) { |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1092 | MachineOperand *LastUD = NULL; |
| 1093 | for (unsigned i = 0, e = LastUDMI->getNumOperands(); i != e; ++i) { |
| 1094 | MachineOperand &MO = LastUDMI->getOperand(i); |
| 1095 | if (!MO.isReg() || MO.getReg() != Reg) |
| 1096 | continue; |
| 1097 | if (!LastUD || (LastUD->isUse() && MO.isDef())) |
| 1098 | LastUD = &MO; |
Evan Cheng | a24752f | 2009-03-19 20:30:06 +0000 | [diff] [blame] | 1099 | if (LastUDMI->isRegTiedToDefOperand(i)) |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1100 | return; |
| 1101 | } |
| 1102 | if (LastUD->isDef()) |
| 1103 | LastUD->setIsDead(); |
| 1104 | else { |
| 1105 | LastUD->setIsKill(); |
| 1106 | RegKills.set(Reg); |
| 1107 | KillOps[Reg] = LastUD; |
| 1108 | } |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | /// rewriteMBB - Keep track of which spills are available even after the |
| 1113 | /// register allocator is done with them. If possible, avid reloading vregs. |
| 1114 | void LocalSpiller::RewriteMBB(MachineBasicBlock &MBB, VirtRegMap &VRM, |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 1115 | LiveIntervals *LIs, |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1116 | AvailableSpills &Spills, BitVector &RegKills, |
| 1117 | std::vector<MachineOperand*> &KillOps) { |
| 1118 | DOUT << "\n**** Local spiller rewriting MBB '" |
Bill Wendling | fd302b7 | 2009-03-30 20:32:22 +0000 | [diff] [blame] | 1119 | << MBB.getBasicBlock()->getName() << "':\n"; |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1120 | |
| 1121 | MachineFunction &MF = *MBB.getParent(); |
| 1122 | |
| 1123 | // MaybeDeadStores - When we need to write a value back into a stack slot, |
| 1124 | // keep track of the inserted store. If the stack slot value is never read |
| 1125 | // (because the value was used from some available register, for example), and |
| 1126 | // subsequently stored to, the original store is dead. This map keeps track |
| 1127 | // of inserted stores that are not used. If we see a subsequent store to the |
| 1128 | // same stack slot, the original store is deleted. |
| 1129 | std::vector<MachineInstr*> MaybeDeadStores; |
| 1130 | MaybeDeadStores.resize(MF.getFrameInfo()->getObjectIndexEnd(), NULL); |
| 1131 | |
| 1132 | // ReMatDefs - These are rematerializable def MIs which are not deleted. |
| 1133 | SmallSet<MachineInstr*, 4> ReMatDefs; |
| 1134 | |
| 1135 | // Clear kill info. |
| 1136 | SmallSet<unsigned, 2> KilledMIRegs; |
| 1137 | RegKills.reset(); |
| 1138 | KillOps.clear(); |
| 1139 | KillOps.resize(TRI->getNumRegs(), NULL); |
| 1140 | |
| 1141 | unsigned Dist = 0; |
| 1142 | DistanceMap.clear(); |
| 1143 | for (MachineBasicBlock::iterator MII = MBB.begin(), E = MBB.end(); |
| 1144 | MII != E; ) { |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 1145 | MachineBasicBlock::iterator NextMII = next(MII); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1146 | |
| 1147 | VirtRegMap::MI2VirtMapTy::const_iterator I, End; |
| 1148 | bool Erased = false; |
| 1149 | bool BackTracked = false; |
Evan Cheng | 276b77e | 2009-04-17 01:29:40 +0000 | [diff] [blame] | 1150 | if (OptimizeByUnfold(MBB, MII, |
| 1151 | MaybeDeadStores, Spills, RegKills, KillOps, VRM)) |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1152 | NextMII = next(MII); |
| 1153 | |
| 1154 | MachineInstr &MI = *MII; |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1155 | |
| 1156 | if (VRM.hasEmergencySpills(&MI)) { |
| 1157 | // Spill physical register(s) in the rare case the allocator has run out |
| 1158 | // of registers to allocate. |
| 1159 | SmallSet<int, 4> UsedSS; |
| 1160 | std::vector<unsigned> &EmSpills = VRM.getEmergencySpills(&MI); |
| 1161 | for (unsigned i = 0, e = EmSpills.size(); i != e; ++i) { |
| 1162 | unsigned PhysReg = EmSpills[i]; |
| 1163 | const TargetRegisterClass *RC = |
| 1164 | TRI->getPhysicalRegisterRegClass(PhysReg); |
| 1165 | assert(RC && "Unable to determine register class!"); |
| 1166 | int SS = VRM.getEmergencySpillSlot(RC); |
| 1167 | if (UsedSS.count(SS)) |
| 1168 | assert(0 && "Need to spill more than one physical registers!"); |
| 1169 | UsedSS.insert(SS); |
| 1170 | TII->storeRegToStackSlot(MBB, MII, PhysReg, true, SS, RC); |
| 1171 | MachineInstr *StoreMI = prior(MII); |
| 1172 | VRM.addSpillSlotUse(SS, StoreMI); |
| 1173 | TII->loadRegFromStackSlot(MBB, next(MII), PhysReg, SS, RC); |
| 1174 | MachineInstr *LoadMI = next(MII); |
| 1175 | VRM.addSpillSlotUse(SS, LoadMI); |
| 1176 | ++NumPSpills; |
| 1177 | } |
| 1178 | NextMII = next(MII); |
| 1179 | } |
| 1180 | |
| 1181 | // Insert restores here if asked to. |
| 1182 | if (VRM.isRestorePt(&MI)) { |
| 1183 | std::vector<unsigned> &RestoreRegs = VRM.getRestorePtRestores(&MI); |
| 1184 | for (unsigned i = 0, e = RestoreRegs.size(); i != e; ++i) { |
| 1185 | unsigned VirtReg = RestoreRegs[e-i-1]; // Reverse order. |
| 1186 | if (!VRM.getPreSplitReg(VirtReg)) |
| 1187 | continue; // Split interval spilled again. |
| 1188 | unsigned Phys = VRM.getPhys(VirtReg); |
| 1189 | RegInfo->setPhysRegUsed(Phys); |
| 1190 | |
| 1191 | // Check if the value being restored if available. If so, it must be |
| 1192 | // from a predecessor BB that fallthrough into this BB. We do not |
| 1193 | // expect: |
| 1194 | // BB1: |
| 1195 | // r1 = load fi#1 |
| 1196 | // ... |
| 1197 | // = r1<kill> |
| 1198 | // ... # r1 not clobbered |
| 1199 | // ... |
| 1200 | // = load fi#1 |
| 1201 | bool DoReMat = VRM.isReMaterialized(VirtReg); |
| 1202 | int SSorRMId = DoReMat |
| 1203 | ? VRM.getReMatId(VirtReg) : VRM.getStackSlot(VirtReg); |
| 1204 | const TargetRegisterClass* RC = RegInfo->getRegClass(VirtReg); |
| 1205 | unsigned InReg = Spills.getSpillSlotOrReMatPhysReg(SSorRMId); |
| 1206 | if (InReg == Phys) { |
| 1207 | // If the value is already available in the expected register, save |
| 1208 | // a reload / remat. |
| 1209 | if (SSorRMId) |
| 1210 | DOUT << "Reusing RM#" << SSorRMId-VirtRegMap::MAX_STACK_SLOT-1; |
| 1211 | else |
| 1212 | DOUT << "Reusing SS#" << SSorRMId; |
| 1213 | DOUT << " from physreg " |
| 1214 | << TRI->getName(InReg) << " for vreg" |
| 1215 | << VirtReg <<" instead of reloading into physreg " |
| 1216 | << TRI->getName(Phys) << "\n"; |
| 1217 | ++NumOmitted; |
| 1218 | continue; |
| 1219 | } else if (InReg && InReg != Phys) { |
| 1220 | if (SSorRMId) |
| 1221 | DOUT << "Reusing RM#" << SSorRMId-VirtRegMap::MAX_STACK_SLOT-1; |
| 1222 | else |
| 1223 | DOUT << "Reusing SS#" << SSorRMId; |
| 1224 | DOUT << " from physreg " |
| 1225 | << TRI->getName(InReg) << " for vreg" |
| 1226 | << VirtReg <<" by copying it into physreg " |
| 1227 | << TRI->getName(Phys) << "\n"; |
| 1228 | |
| 1229 | // If the reloaded / remat value is available in another register, |
| 1230 | // copy it to the desired register. |
| 1231 | TII->copyRegToReg(MBB, &MI, Phys, InReg, RC, RC); |
| 1232 | |
| 1233 | // This invalidates Phys. |
| 1234 | Spills.ClobberPhysReg(Phys); |
| 1235 | // Remember it's available. |
| 1236 | Spills.addAvailable(SSorRMId, Phys); |
| 1237 | |
| 1238 | // Mark is killed. |
| 1239 | MachineInstr *CopyMI = prior(MII); |
| 1240 | MachineOperand *KillOpnd = CopyMI->findRegisterUseOperand(InReg); |
| 1241 | KillOpnd->setIsKill(); |
| 1242 | UpdateKills(*CopyMI, RegKills, KillOps, TRI); |
| 1243 | |
| 1244 | DOUT << '\t' << *CopyMI; |
| 1245 | ++NumCopified; |
| 1246 | continue; |
| 1247 | } |
| 1248 | |
| 1249 | if (VRM.isReMaterialized(VirtReg)) { |
| 1250 | ReMaterialize(MBB, MII, Phys, VirtReg, TII, TRI, VRM); |
| 1251 | } else { |
| 1252 | const TargetRegisterClass* RC = RegInfo->getRegClass(VirtReg); |
| 1253 | TII->loadRegFromStackSlot(MBB, &MI, Phys, SSorRMId, RC); |
| 1254 | MachineInstr *LoadMI = prior(MII); |
| 1255 | VRM.addSpillSlotUse(SSorRMId, LoadMI); |
| 1256 | ++NumLoads; |
| 1257 | } |
| 1258 | |
| 1259 | // This invalidates Phys. |
| 1260 | Spills.ClobberPhysReg(Phys); |
| 1261 | // Remember it's available. |
| 1262 | Spills.addAvailable(SSorRMId, Phys); |
| 1263 | |
| 1264 | UpdateKills(*prior(MII), RegKills, KillOps, TRI); |
| 1265 | DOUT << '\t' << *prior(MII); |
| 1266 | } |
| 1267 | } |
| 1268 | |
| 1269 | // Insert spills here if asked to. |
| 1270 | if (VRM.isSpillPt(&MI)) { |
| 1271 | std::vector<std::pair<unsigned,bool> > &SpillRegs = |
| 1272 | VRM.getSpillPtSpills(&MI); |
| 1273 | for (unsigned i = 0, e = SpillRegs.size(); i != e; ++i) { |
| 1274 | unsigned VirtReg = SpillRegs[i].first; |
| 1275 | bool isKill = SpillRegs[i].second; |
| 1276 | if (!VRM.getPreSplitReg(VirtReg)) |
| 1277 | continue; // Split interval spilled again. |
| 1278 | const TargetRegisterClass *RC = RegInfo->getRegClass(VirtReg); |
| 1279 | unsigned Phys = VRM.getPhys(VirtReg); |
| 1280 | int StackSlot = VRM.getStackSlot(VirtReg); |
| 1281 | TII->storeRegToStackSlot(MBB, next(MII), Phys, isKill, StackSlot, RC); |
| 1282 | MachineInstr *StoreMI = next(MII); |
| 1283 | VRM.addSpillSlotUse(StackSlot, StoreMI); |
| 1284 | DOUT << "Store:\t" << *StoreMI; |
| 1285 | VRM.virtFolded(VirtReg, StoreMI, VirtRegMap::isMod); |
| 1286 | } |
| 1287 | NextMII = next(MII); |
| 1288 | } |
| 1289 | |
| 1290 | /// ReusedOperands - Keep track of operand reuse in case we need to undo |
| 1291 | /// reuse. |
| 1292 | ReuseInfo ReusedOperands(MI, TRI); |
| 1293 | SmallVector<unsigned, 4> VirtUseOps; |
| 1294 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 1295 | MachineOperand &MO = MI.getOperand(i); |
| 1296 | if (!MO.isReg() || MO.getReg() == 0) |
| 1297 | continue; // Ignore non-register operands. |
| 1298 | |
| 1299 | unsigned VirtReg = MO.getReg(); |
| 1300 | if (TargetRegisterInfo::isPhysicalRegister(VirtReg)) { |
| 1301 | // Ignore physregs for spilling, but remember that it is used by this |
| 1302 | // function. |
| 1303 | RegInfo->setPhysRegUsed(VirtReg); |
| 1304 | continue; |
| 1305 | } |
| 1306 | |
| 1307 | // We want to process implicit virtual register uses first. |
| 1308 | if (MO.isImplicit()) |
| 1309 | // If the virtual register is implicitly defined, emit a implicit_def |
| 1310 | // before so scavenger knows it's "defined". |
| 1311 | VirtUseOps.insert(VirtUseOps.begin(), i); |
| 1312 | else |
| 1313 | VirtUseOps.push_back(i); |
| 1314 | } |
| 1315 | |
| 1316 | // Process all of the spilled uses and all non spilled reg references. |
| 1317 | SmallVector<int, 2> PotentialDeadStoreSlots; |
| 1318 | KilledMIRegs.clear(); |
| 1319 | for (unsigned j = 0, e = VirtUseOps.size(); j != e; ++j) { |
| 1320 | unsigned i = VirtUseOps[j]; |
| 1321 | MachineOperand &MO = MI.getOperand(i); |
| 1322 | unsigned VirtReg = MO.getReg(); |
| 1323 | assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && |
| 1324 | "Not a virtual register?"); |
| 1325 | |
| 1326 | unsigned SubIdx = MO.getSubReg(); |
| 1327 | if (VRM.isAssignedReg(VirtReg)) { |
| 1328 | // This virtual register was assigned a physreg! |
| 1329 | unsigned Phys = VRM.getPhys(VirtReg); |
| 1330 | RegInfo->setPhysRegUsed(Phys); |
| 1331 | if (MO.isDef()) |
| 1332 | ReusedOperands.markClobbered(Phys); |
| 1333 | unsigned RReg = SubIdx ? TRI->getSubReg(Phys, SubIdx) : Phys; |
| 1334 | MI.getOperand(i).setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 1335 | MI.getOperand(i).setSubReg(0); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1336 | if (VRM.isImplicitlyDefined(VirtReg)) |
| 1337 | BuildMI(MBB, &MI, MI.getDebugLoc(), |
| 1338 | TII->get(TargetInstrInfo::IMPLICIT_DEF), RReg); |
| 1339 | continue; |
| 1340 | } |
| 1341 | |
| 1342 | // This virtual register is now known to be a spilled value. |
| 1343 | if (!MO.isUse()) |
| 1344 | continue; // Handle defs in the loop below (handle use&def here though) |
| 1345 | |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 1346 | bool AvoidReload = false; |
| 1347 | if (LIs->hasInterval(VirtReg)) { |
| 1348 | LiveInterval &LI = LIs->getInterval(VirtReg); |
| 1349 | if (!LI.liveAt(LIs->getUseIndex(LI.beginNumber()))) |
| 1350 | // Must be defined by an implicit def. It should not be spilled. Note, |
| 1351 | // this is for correctness reason. e.g. |
| 1352 | // 8 %reg1024<def> = IMPLICIT_DEF |
| 1353 | // 12 %reg1024<def> = INSERT_SUBREG %reg1024<kill>, %reg1025, 2 |
| 1354 | // The live range [12, 14) are not part of the r1024 live interval since |
| 1355 | // it's defined by an implicit def. It will not conflicts with live |
| 1356 | // interval of r1025. Now suppose both registers are spilled, you can |
| 1357 | // easily see a situation where both registers are reloaded before |
| 1358 | // the INSERT_SUBREG and both target registers that would overlap. |
| 1359 | AvoidReload = true; |
| 1360 | } |
| 1361 | |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1362 | bool DoReMat = VRM.isReMaterialized(VirtReg); |
| 1363 | int SSorRMId = DoReMat |
| 1364 | ? VRM.getReMatId(VirtReg) : VRM.getStackSlot(VirtReg); |
| 1365 | int ReuseSlot = SSorRMId; |
| 1366 | |
| 1367 | // Check to see if this stack slot is available. |
| 1368 | unsigned PhysReg = Spills.getSpillSlotOrReMatPhysReg(SSorRMId); |
| 1369 | |
| 1370 | // If this is a sub-register use, make sure the reuse register is in the |
| 1371 | // right register class. For example, for x86 not all of the 32-bit |
| 1372 | // registers have accessible sub-registers. |
| 1373 | // Similarly so for EXTRACT_SUBREG. Consider this: |
| 1374 | // EDI = op |
| 1375 | // MOV32_mr fi#1, EDI |
| 1376 | // ... |
| 1377 | // = EXTRACT_SUBREG fi#1 |
| 1378 | // fi#1 is available in EDI, but it cannot be reused because it's not in |
| 1379 | // the right register file. |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 1380 | if (PhysReg && !AvoidReload && |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1381 | (SubIdx || MI.getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)) { |
| 1382 | const TargetRegisterClass* RC = RegInfo->getRegClass(VirtReg); |
| 1383 | if (!RC->contains(PhysReg)) |
| 1384 | PhysReg = 0; |
| 1385 | } |
| 1386 | |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 1387 | if (PhysReg && !AvoidReload) { |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1388 | // This spilled operand might be part of a two-address operand. If this |
| 1389 | // is the case, then changing it will necessarily require changing the |
| 1390 | // def part of the instruction as well. However, in some cases, we |
| 1391 | // aren't allowed to modify the reused register. If none of these cases |
| 1392 | // apply, reuse it. |
| 1393 | bool CanReuse = true; |
Evan Cheng | a24752f | 2009-03-19 20:30:06 +0000 | [diff] [blame] | 1394 | bool isTied = MI.isRegTiedToDefOperand(i); |
| 1395 | if (isTied) { |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1396 | // Okay, we have a two address operand. We can reuse this physreg as |
| 1397 | // long as we are allowed to clobber the value and there isn't an |
| 1398 | // earlier def that has already clobbered the physreg. |
Evan Cheng | e47b008 | 2009-03-17 01:23:09 +0000 | [diff] [blame] | 1399 | CanReuse = !ReusedOperands.isClobbered(PhysReg) && |
| 1400 | Spills.canClobberPhysReg(PhysReg); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1401 | } |
| 1402 | |
| 1403 | if (CanReuse) { |
| 1404 | // If this stack slot value is already available, reuse it! |
| 1405 | if (ReuseSlot > VirtRegMap::MAX_STACK_SLOT) |
| 1406 | DOUT << "Reusing RM#" << ReuseSlot-VirtRegMap::MAX_STACK_SLOT-1; |
| 1407 | else |
| 1408 | DOUT << "Reusing SS#" << ReuseSlot; |
| 1409 | DOUT << " from physreg " |
| 1410 | << TRI->getName(PhysReg) << " for vreg" |
| 1411 | << VirtReg <<" instead of reloading into physreg " |
| 1412 | << TRI->getName(VRM.getPhys(VirtReg)) << "\n"; |
| 1413 | unsigned RReg = SubIdx ? TRI->getSubReg(PhysReg, SubIdx) : PhysReg; |
| 1414 | MI.getOperand(i).setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 1415 | MI.getOperand(i).setSubReg(0); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1416 | |
| 1417 | // The only technical detail we have is that we don't know that |
| 1418 | // PhysReg won't be clobbered by a reloaded stack slot that occurs |
| 1419 | // later in the instruction. In particular, consider 'op V1, V2'. |
| 1420 | // If V1 is available in physreg R0, we would choose to reuse it |
| 1421 | // here, instead of reloading it into the register the allocator |
| 1422 | // indicated (say R1). However, V2 might have to be reloaded |
| 1423 | // later, and it might indicate that it needs to live in R0. When |
| 1424 | // this occurs, we need to have information available that |
| 1425 | // indicates it is safe to use R1 for the reload instead of R0. |
| 1426 | // |
| 1427 | // To further complicate matters, we might conflict with an alias, |
| 1428 | // or R0 and R1 might not be compatible with each other. In this |
| 1429 | // case, we actually insert a reload for V1 in R1, ensuring that |
| 1430 | // we can get at R0 or its alias. |
| 1431 | ReusedOperands.addReuse(i, ReuseSlot, PhysReg, |
| 1432 | VRM.getPhys(VirtReg), VirtReg); |
Evan Cheng | a24752f | 2009-03-19 20:30:06 +0000 | [diff] [blame] | 1433 | if (isTied) |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1434 | // Only mark it clobbered if this is a use&def operand. |
| 1435 | ReusedOperands.markClobbered(PhysReg); |
| 1436 | ++NumReused; |
| 1437 | |
| 1438 | if (MI.getOperand(i).isKill() && |
| 1439 | ReuseSlot <= VirtRegMap::MAX_STACK_SLOT) { |
| 1440 | |
| 1441 | // The store of this spilled value is potentially dead, but we |
| 1442 | // won't know for certain until we've confirmed that the re-use |
| 1443 | // above is valid, which means waiting until the other operands |
| 1444 | // are processed. For now we just track the spill slot, we'll |
| 1445 | // remove it after the other operands are processed if valid. |
| 1446 | |
| 1447 | PotentialDeadStoreSlots.push_back(ReuseSlot); |
| 1448 | } |
| 1449 | |
| 1450 | // Mark is isKill if it's there no other uses of the same virtual |
| 1451 | // register and it's not a two-address operand. IsKill will be |
| 1452 | // unset if reg is reused. |
Evan Cheng | a24752f | 2009-03-19 20:30:06 +0000 | [diff] [blame] | 1453 | if (!isTied && KilledMIRegs.count(VirtReg) == 0) { |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1454 | MI.getOperand(i).setIsKill(); |
| 1455 | KilledMIRegs.insert(VirtReg); |
| 1456 | } |
| 1457 | |
| 1458 | continue; |
| 1459 | } // CanReuse |
| 1460 | |
| 1461 | // Otherwise we have a situation where we have a two-address instruction |
| 1462 | // whose mod/ref operand needs to be reloaded. This reload is already |
| 1463 | // available in some register "PhysReg", but if we used PhysReg as the |
| 1464 | // operand to our 2-addr instruction, the instruction would modify |
| 1465 | // PhysReg. This isn't cool if something later uses PhysReg and expects |
| 1466 | // to get its initial value. |
| 1467 | // |
| 1468 | // To avoid this problem, and to avoid doing a load right after a store, |
| 1469 | // we emit a copy from PhysReg into the designated register for this |
| 1470 | // operand. |
| 1471 | unsigned DesignatedReg = VRM.getPhys(VirtReg); |
| 1472 | assert(DesignatedReg && "Must map virtreg to physreg!"); |
| 1473 | |
| 1474 | // Note that, if we reused a register for a previous operand, the |
| 1475 | // register we want to reload into might not actually be |
| 1476 | // available. If this occurs, use the register indicated by the |
| 1477 | // reuser. |
| 1478 | if (ReusedOperands.hasReuses()) |
| 1479 | DesignatedReg = ReusedOperands.GetRegForReload(DesignatedReg, &MI, |
| 1480 | Spills, MaybeDeadStores, RegKills, KillOps, VRM); |
| 1481 | |
| 1482 | // If the mapped designated register is actually the physreg we have |
| 1483 | // incoming, we don't need to inserted a dead copy. |
| 1484 | if (DesignatedReg == PhysReg) { |
| 1485 | // If this stack slot value is already available, reuse it! |
| 1486 | if (ReuseSlot > VirtRegMap::MAX_STACK_SLOT) |
| 1487 | DOUT << "Reusing RM#" << ReuseSlot-VirtRegMap::MAX_STACK_SLOT-1; |
| 1488 | else |
| 1489 | DOUT << "Reusing SS#" << ReuseSlot; |
| 1490 | DOUT << " from physreg " << TRI->getName(PhysReg) |
| 1491 | << " for vreg" << VirtReg |
| 1492 | << " instead of reloading into same physreg.\n"; |
| 1493 | unsigned RReg = SubIdx ? TRI->getSubReg(PhysReg, SubIdx) : PhysReg; |
| 1494 | MI.getOperand(i).setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 1495 | MI.getOperand(i).setSubReg(0); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1496 | ReusedOperands.markClobbered(RReg); |
| 1497 | ++NumReused; |
| 1498 | continue; |
| 1499 | } |
| 1500 | |
| 1501 | const TargetRegisterClass* RC = RegInfo->getRegClass(VirtReg); |
| 1502 | RegInfo->setPhysRegUsed(DesignatedReg); |
| 1503 | ReusedOperands.markClobbered(DesignatedReg); |
| 1504 | TII->copyRegToReg(MBB, &MI, DesignatedReg, PhysReg, RC, RC); |
| 1505 | |
| 1506 | MachineInstr *CopyMI = prior(MII); |
| 1507 | UpdateKills(*CopyMI, RegKills, KillOps, TRI); |
| 1508 | |
| 1509 | // This invalidates DesignatedReg. |
| 1510 | Spills.ClobberPhysReg(DesignatedReg); |
| 1511 | |
| 1512 | Spills.addAvailable(ReuseSlot, DesignatedReg); |
| 1513 | unsigned RReg = |
| 1514 | SubIdx ? TRI->getSubReg(DesignatedReg, SubIdx) : DesignatedReg; |
| 1515 | MI.getOperand(i).setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 1516 | MI.getOperand(i).setSubReg(0); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1517 | DOUT << '\t' << *prior(MII); |
| 1518 | ++NumReused; |
| 1519 | continue; |
| 1520 | } // if (PhysReg) |
| 1521 | |
| 1522 | // Otherwise, reload it and remember that we have it. |
| 1523 | PhysReg = VRM.getPhys(VirtReg); |
| 1524 | assert(PhysReg && "Must map virtreg to physreg!"); |
| 1525 | |
| 1526 | // Note that, if we reused a register for a previous operand, the |
| 1527 | // register we want to reload into might not actually be |
| 1528 | // available. If this occurs, use the register indicated by the |
| 1529 | // reuser. |
| 1530 | if (ReusedOperands.hasReuses()) |
| 1531 | PhysReg = ReusedOperands.GetRegForReload(PhysReg, &MI, |
| 1532 | Spills, MaybeDeadStores, RegKills, KillOps, VRM); |
| 1533 | |
| 1534 | RegInfo->setPhysRegUsed(PhysReg); |
| 1535 | ReusedOperands.markClobbered(PhysReg); |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 1536 | if (AvoidReload) |
| 1537 | ++NumAvoided; |
| 1538 | else { |
| 1539 | if (DoReMat) { |
| 1540 | ReMaterialize(MBB, MII, PhysReg, VirtReg, TII, TRI, VRM); |
| 1541 | } else { |
| 1542 | const TargetRegisterClass* RC = RegInfo->getRegClass(VirtReg); |
| 1543 | TII->loadRegFromStackSlot(MBB, &MI, PhysReg, SSorRMId, RC); |
| 1544 | MachineInstr *LoadMI = prior(MII); |
| 1545 | VRM.addSpillSlotUse(SSorRMId, LoadMI); |
| 1546 | ++NumLoads; |
| 1547 | } |
| 1548 | // This invalidates PhysReg. |
| 1549 | Spills.ClobberPhysReg(PhysReg); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1550 | |
Evan Cheng | 5b69eba | 2009-04-21 22:46:52 +0000 | [diff] [blame] | 1551 | // Any stores to this stack slot are not dead anymore. |
| 1552 | if (!DoReMat) |
| 1553 | MaybeDeadStores[SSorRMId] = NULL; |
| 1554 | Spills.addAvailable(SSorRMId, PhysReg); |
| 1555 | // Assumes this is the last use. IsKill will be unset if reg is reused |
| 1556 | // unless it's a two-address operand. |
| 1557 | if (!MI.isRegTiedToDefOperand(i) && |
| 1558 | KilledMIRegs.count(VirtReg) == 0) { |
| 1559 | MI.getOperand(i).setIsKill(); |
| 1560 | KilledMIRegs.insert(VirtReg); |
| 1561 | } |
| 1562 | |
| 1563 | UpdateKills(*prior(MII), RegKills, KillOps, TRI); |
| 1564 | DOUT << '\t' << *prior(MII); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1565 | } |
| 1566 | unsigned RReg = SubIdx ? TRI->getSubReg(PhysReg, SubIdx) : PhysReg; |
| 1567 | MI.getOperand(i).setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 1568 | MI.getOperand(i).setSubReg(0); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1569 | } |
| 1570 | |
| 1571 | // Ok - now we can remove stores that have been confirmed dead. |
| 1572 | for (unsigned j = 0, e = PotentialDeadStoreSlots.size(); j != e; ++j) { |
| 1573 | // This was the last use and the spilled value is still available |
| 1574 | // for reuse. That means the spill was unnecessary! |
| 1575 | int PDSSlot = PotentialDeadStoreSlots[j]; |
| 1576 | MachineInstr* DeadStore = MaybeDeadStores[PDSSlot]; |
| 1577 | if (DeadStore) { |
| 1578 | DOUT << "Removed dead store:\t" << *DeadStore; |
| 1579 | InvalidateKills(*DeadStore, RegKills, KillOps); |
| 1580 | VRM.RemoveMachineInstrFromMaps(DeadStore); |
| 1581 | MBB.erase(DeadStore); |
| 1582 | MaybeDeadStores[PDSSlot] = NULL; |
| 1583 | ++NumDSE; |
| 1584 | } |
| 1585 | } |
| 1586 | |
| 1587 | |
| 1588 | DOUT << '\t' << MI; |
| 1589 | |
| 1590 | |
| 1591 | // If we have folded references to memory operands, make sure we clear all |
| 1592 | // physical registers that may contain the value of the spilled virtual |
| 1593 | // register |
| 1594 | SmallSet<int, 2> FoldedSS; |
| 1595 | for (tie(I, End) = VRM.getFoldedVirts(&MI); I != End; ) { |
| 1596 | unsigned VirtReg = I->second.first; |
| 1597 | VirtRegMap::ModRef MR = I->second.second; |
| 1598 | DOUT << "Folded vreg: " << VirtReg << " MR: " << MR; |
| 1599 | |
| 1600 | // MI2VirtMap be can updated which invalidate the iterator. |
| 1601 | // Increment the iterator first. |
| 1602 | ++I; |
| 1603 | int SS = VRM.getStackSlot(VirtReg); |
| 1604 | if (SS == VirtRegMap::NO_STACK_SLOT) |
| 1605 | continue; |
| 1606 | FoldedSS.insert(SS); |
| 1607 | DOUT << " - StackSlot: " << SS << "\n"; |
| 1608 | |
| 1609 | // If this folded instruction is just a use, check to see if it's a |
| 1610 | // straight load from the virt reg slot. |
| 1611 | if ((MR & VirtRegMap::isRef) && !(MR & VirtRegMap::isMod)) { |
| 1612 | int FrameIdx; |
| 1613 | unsigned DestReg = TII->isLoadFromStackSlot(&MI, FrameIdx); |
| 1614 | if (DestReg && FrameIdx == SS) { |
| 1615 | // If this spill slot is available, turn it into a copy (or nothing) |
| 1616 | // instead of leaving it as a load! |
| 1617 | if (unsigned InReg = Spills.getSpillSlotOrReMatPhysReg(SS)) { |
| 1618 | DOUT << "Promoted Load To Copy: " << MI; |
| 1619 | if (DestReg != InReg) { |
| 1620 | const TargetRegisterClass *RC = RegInfo->getRegClass(VirtReg); |
| 1621 | TII->copyRegToReg(MBB, &MI, DestReg, InReg, RC, RC); |
| 1622 | MachineOperand *DefMO = MI.findRegisterDefOperand(DestReg); |
| 1623 | unsigned SubIdx = DefMO->getSubReg(); |
| 1624 | // Revisit the copy so we make sure to notice the effects of the |
| 1625 | // operation on the destreg (either needing to RA it if it's |
| 1626 | // virtual or needing to clobber any values if it's physical). |
| 1627 | NextMII = &MI; |
| 1628 | --NextMII; // backtrack to the copy. |
| 1629 | // Propagate the sub-register index over. |
| 1630 | if (SubIdx) { |
| 1631 | DefMO = NextMII->findRegisterDefOperand(DestReg); |
| 1632 | DefMO->setSubReg(SubIdx); |
| 1633 | } |
| 1634 | |
| 1635 | // Mark is killed. |
| 1636 | MachineOperand *KillOpnd = NextMII->findRegisterUseOperand(InReg); |
| 1637 | KillOpnd->setIsKill(); |
| 1638 | |
| 1639 | BackTracked = true; |
| 1640 | } else { |
| 1641 | DOUT << "Removing now-noop copy: " << MI; |
| 1642 | // Unset last kill since it's being reused. |
| 1643 | InvalidateKill(InReg, RegKills, KillOps); |
Evan Cheng | e47b008 | 2009-03-17 01:23:09 +0000 | [diff] [blame] | 1644 | Spills.disallowClobberPhysReg(InReg); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1645 | } |
| 1646 | |
| 1647 | InvalidateKills(MI, RegKills, KillOps); |
| 1648 | VRM.RemoveMachineInstrFromMaps(&MI); |
| 1649 | MBB.erase(&MI); |
| 1650 | Erased = true; |
| 1651 | goto ProcessNextInst; |
| 1652 | } |
| 1653 | } else { |
| 1654 | unsigned PhysReg = Spills.getSpillSlotOrReMatPhysReg(SS); |
| 1655 | SmallVector<MachineInstr*, 4> NewMIs; |
| 1656 | if (PhysReg && |
| 1657 | TII->unfoldMemoryOperand(MF, &MI, PhysReg, false, false, NewMIs)) { |
| 1658 | MBB.insert(MII, NewMIs[0]); |
| 1659 | InvalidateKills(MI, RegKills, KillOps); |
| 1660 | VRM.RemoveMachineInstrFromMaps(&MI); |
| 1661 | MBB.erase(&MI); |
| 1662 | Erased = true; |
| 1663 | --NextMII; // backtrack to the unfolded instruction. |
| 1664 | BackTracked = true; |
| 1665 | goto ProcessNextInst; |
| 1666 | } |
| 1667 | } |
| 1668 | } |
| 1669 | |
| 1670 | // If this reference is not a use, any previous store is now dead. |
| 1671 | // Otherwise, the store to this stack slot is not dead anymore. |
| 1672 | MachineInstr* DeadStore = MaybeDeadStores[SS]; |
| 1673 | if (DeadStore) { |
| 1674 | bool isDead = !(MR & VirtRegMap::isRef); |
| 1675 | MachineInstr *NewStore = NULL; |
| 1676 | if (MR & VirtRegMap::isModRef) { |
| 1677 | unsigned PhysReg = Spills.getSpillSlotOrReMatPhysReg(SS); |
| 1678 | SmallVector<MachineInstr*, 4> NewMIs; |
| 1679 | // We can reuse this physreg as long as we are allowed to clobber |
| 1680 | // the value and there isn't an earlier def that has already clobbered |
| 1681 | // the physreg. |
| 1682 | if (PhysReg && |
Evan Cheng | e47b008 | 2009-03-17 01:23:09 +0000 | [diff] [blame] | 1683 | !ReusedOperands.isClobbered(PhysReg) && |
| 1684 | Spills.canClobberPhysReg(PhysReg) && |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1685 | !TII->isStoreToStackSlot(&MI, SS)) { // Not profitable! |
| 1686 | MachineOperand *KillOpnd = |
| 1687 | DeadStore->findRegisterUseOperand(PhysReg, true); |
| 1688 | // Note, if the store is storing a sub-register, it's possible the |
| 1689 | // super-register is needed below. |
| 1690 | if (KillOpnd && !KillOpnd->getSubReg() && |
| 1691 | TII->unfoldMemoryOperand(MF, &MI, PhysReg, false, true,NewMIs)){ |
Evan Cheng | e47b008 | 2009-03-17 01:23:09 +0000 | [diff] [blame] | 1692 | MBB.insert(MII, NewMIs[0]); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1693 | NewStore = NewMIs[1]; |
| 1694 | MBB.insert(MII, NewStore); |
| 1695 | VRM.addSpillSlotUse(SS, NewStore); |
| 1696 | InvalidateKills(MI, RegKills, KillOps); |
| 1697 | VRM.RemoveMachineInstrFromMaps(&MI); |
| 1698 | MBB.erase(&MI); |
| 1699 | Erased = true; |
| 1700 | --NextMII; |
| 1701 | --NextMII; // backtrack to the unfolded instruction. |
| 1702 | BackTracked = true; |
| 1703 | isDead = true; |
Evan Cheng | e47b008 | 2009-03-17 01:23:09 +0000 | [diff] [blame] | 1704 | ++NumSUnfold; |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1705 | } |
| 1706 | } |
| 1707 | } |
| 1708 | |
| 1709 | if (isDead) { // Previous store is dead. |
| 1710 | // If we get here, the store is dead, nuke it now. |
| 1711 | DOUT << "Removed dead store:\t" << *DeadStore; |
| 1712 | InvalidateKills(*DeadStore, RegKills, KillOps); |
| 1713 | VRM.RemoveMachineInstrFromMaps(DeadStore); |
| 1714 | MBB.erase(DeadStore); |
| 1715 | if (!NewStore) |
| 1716 | ++NumDSE; |
| 1717 | } |
| 1718 | |
| 1719 | MaybeDeadStores[SS] = NULL; |
| 1720 | if (NewStore) { |
| 1721 | // Treat this store as a spill merged into a copy. That makes the |
| 1722 | // stack slot value available. |
| 1723 | VRM.virtFolded(VirtReg, NewStore, VirtRegMap::isMod); |
| 1724 | goto ProcessNextInst; |
| 1725 | } |
| 1726 | } |
| 1727 | |
| 1728 | // If the spill slot value is available, and this is a new definition of |
| 1729 | // the value, the value is not available anymore. |
| 1730 | if (MR & VirtRegMap::isMod) { |
| 1731 | // Notice that the value in this stack slot has been modified. |
| 1732 | Spills.ModifyStackSlotOrReMat(SS); |
| 1733 | |
| 1734 | // If this is *just* a mod of the value, check to see if this is just a |
| 1735 | // store to the spill slot (i.e. the spill got merged into the copy). If |
| 1736 | // so, realize that the vreg is available now, and add the store to the |
| 1737 | // MaybeDeadStore info. |
| 1738 | int StackSlot; |
| 1739 | if (!(MR & VirtRegMap::isRef)) { |
| 1740 | if (unsigned SrcReg = TII->isStoreToStackSlot(&MI, StackSlot)) { |
| 1741 | assert(TargetRegisterInfo::isPhysicalRegister(SrcReg) && |
| 1742 | "Src hasn't been allocated yet?"); |
| 1743 | |
| 1744 | if (CommuteToFoldReload(MBB, MII, VirtReg, SrcReg, StackSlot, |
| 1745 | Spills, RegKills, KillOps, TRI, VRM)) { |
| 1746 | NextMII = next(MII); |
| 1747 | BackTracked = true; |
| 1748 | goto ProcessNextInst; |
| 1749 | } |
| 1750 | |
| 1751 | // Okay, this is certainly a store of SrcReg to [StackSlot]. Mark |
| 1752 | // this as a potentially dead store in case there is a subsequent |
| 1753 | // store into the stack slot without a read from it. |
| 1754 | MaybeDeadStores[StackSlot] = &MI; |
| 1755 | |
| 1756 | // If the stack slot value was previously available in some other |
| 1757 | // register, change it now. Otherwise, make the register |
| 1758 | // available in PhysReg. |
Evan Cheng | e47b008 | 2009-03-17 01:23:09 +0000 | [diff] [blame] | 1759 | Spills.addAvailable(StackSlot, SrcReg, MI.killsRegister(SrcReg)); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1760 | } |
| 1761 | } |
| 1762 | } |
| 1763 | } |
| 1764 | |
| 1765 | // Process all of the spilled defs. |
| 1766 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 1767 | MachineOperand &MO = MI.getOperand(i); |
| 1768 | if (!(MO.isReg() && MO.getReg() && MO.isDef())) |
| 1769 | continue; |
| 1770 | |
| 1771 | unsigned VirtReg = MO.getReg(); |
| 1772 | if (!TargetRegisterInfo::isVirtualRegister(VirtReg)) { |
| 1773 | // Check to see if this is a noop copy. If so, eliminate the |
| 1774 | // instruction before considering the dest reg to be changed. |
| 1775 | unsigned Src, Dst, SrcSR, DstSR; |
| 1776 | if (TII->isMoveInstr(MI, Src, Dst, SrcSR, DstSR) && Src == Dst) { |
| 1777 | ++NumDCE; |
| 1778 | DOUT << "Removing now-noop copy: " << MI; |
| 1779 | SmallVector<unsigned, 2> KillRegs; |
| 1780 | InvalidateKills(MI, RegKills, KillOps, &KillRegs); |
| 1781 | if (MO.isDead() && !KillRegs.empty()) { |
| 1782 | // Source register or an implicit super/sub-register use is killed. |
| 1783 | assert(KillRegs[0] == Dst || |
| 1784 | TRI->isSubRegister(KillRegs[0], Dst) || |
| 1785 | TRI->isSuperRegister(KillRegs[0], Dst)); |
| 1786 | // Last def is now dead. |
| 1787 | TransferDeadness(&MBB, Dist, Src, RegKills, KillOps); |
| 1788 | } |
| 1789 | VRM.RemoveMachineInstrFromMaps(&MI); |
| 1790 | MBB.erase(&MI); |
| 1791 | Erased = true; |
| 1792 | Spills.disallowClobberPhysReg(VirtReg); |
| 1793 | goto ProcessNextInst; |
| 1794 | } |
| 1795 | |
| 1796 | // If it's not a no-op copy, it clobbers the value in the destreg. |
| 1797 | Spills.ClobberPhysReg(VirtReg); |
| 1798 | ReusedOperands.markClobbered(VirtReg); |
| 1799 | |
| 1800 | // Check to see if this instruction is a load from a stack slot into |
| 1801 | // a register. If so, this provides the stack slot value in the reg. |
| 1802 | int FrameIdx; |
| 1803 | if (unsigned DestReg = TII->isLoadFromStackSlot(&MI, FrameIdx)) { |
| 1804 | assert(DestReg == VirtReg && "Unknown load situation!"); |
| 1805 | |
| 1806 | // If it is a folded reference, then it's not safe to clobber. |
| 1807 | bool Folded = FoldedSS.count(FrameIdx); |
| 1808 | // Otherwise, if it wasn't available, remember that it is now! |
| 1809 | Spills.addAvailable(FrameIdx, DestReg, !Folded); |
| 1810 | goto ProcessNextInst; |
| 1811 | } |
| 1812 | |
| 1813 | continue; |
| 1814 | } |
| 1815 | |
| 1816 | unsigned SubIdx = MO.getSubReg(); |
| 1817 | bool DoReMat = VRM.isReMaterialized(VirtReg); |
| 1818 | if (DoReMat) |
| 1819 | ReMatDefs.insert(&MI); |
| 1820 | |
| 1821 | // The only vregs left are stack slot definitions. |
| 1822 | int StackSlot = VRM.getStackSlot(VirtReg); |
| 1823 | const TargetRegisterClass *RC = RegInfo->getRegClass(VirtReg); |
| 1824 | |
| 1825 | // If this def is part of a two-address operand, make sure to execute |
| 1826 | // the store from the correct physical register. |
| 1827 | unsigned PhysReg; |
Bob Wilson | d9df501 | 2009-04-09 17:16:43 +0000 | [diff] [blame] | 1828 | unsigned TiedOp; |
| 1829 | if (MI.isRegTiedToUseOperand(i, &TiedOp)) { |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1830 | PhysReg = MI.getOperand(TiedOp).getReg(); |
| 1831 | if (SubIdx) { |
| 1832 | unsigned SuperReg = findSuperReg(RC, PhysReg, SubIdx, TRI); |
| 1833 | assert(SuperReg && TRI->getSubReg(SuperReg, SubIdx) == PhysReg && |
| 1834 | "Can't find corresponding super-register!"); |
| 1835 | PhysReg = SuperReg; |
| 1836 | } |
| 1837 | } else { |
| 1838 | PhysReg = VRM.getPhys(VirtReg); |
| 1839 | if (ReusedOperands.isClobbered(PhysReg)) { |
| 1840 | // Another def has taken the assigned physreg. It must have been a |
| 1841 | // use&def which got it due to reuse. Undo the reuse! |
| 1842 | PhysReg = ReusedOperands.GetRegForReload(PhysReg, &MI, |
| 1843 | Spills, MaybeDeadStores, RegKills, KillOps, VRM); |
| 1844 | } |
| 1845 | } |
| 1846 | |
| 1847 | assert(PhysReg && "VR not assigned a physical register?"); |
| 1848 | RegInfo->setPhysRegUsed(PhysReg); |
| 1849 | unsigned RReg = SubIdx ? TRI->getSubReg(PhysReg, SubIdx) : PhysReg; |
| 1850 | ReusedOperands.markClobbered(RReg); |
| 1851 | MI.getOperand(i).setReg(RReg); |
Dan Gohman | 9a77a92 | 2009-04-13 15:21:32 +0000 | [diff] [blame] | 1852 | MI.getOperand(i).setSubReg(0); |
Owen Anderson | 1ed5b71 | 2009-03-11 22:31:21 +0000 | [diff] [blame] | 1853 | |
| 1854 | if (!MO.isDead()) { |
| 1855 | MachineInstr *&LastStore = MaybeDeadStores[StackSlot]; |
| 1856 | SpillRegToStackSlot(MBB, MII, -1, PhysReg, StackSlot, RC, true, |
| 1857 | LastStore, Spills, ReMatDefs, RegKills, KillOps, VRM); |
| 1858 | NextMII = next(MII); |
| 1859 | |
| 1860 | // Check to see if this is a noop copy. If so, eliminate the |
| 1861 | // instruction before considering the dest reg to be changed. |
| 1862 | { |
| 1863 | unsigned Src, Dst, SrcSR, DstSR; |
| 1864 | if (TII->isMoveInstr(MI, Src, Dst, SrcSR, DstSR) && Src == Dst) { |
| 1865 | ++NumDCE; |
| 1866 | DOUT << "Removing now-noop copy: " << MI; |
| 1867 | InvalidateKills(MI, RegKills, KillOps); |
| 1868 | VRM.RemoveMachineInstrFromMaps(&MI); |
| 1869 | MBB.erase(&MI); |
| 1870 | Erased = true; |
| 1871 | UpdateKills(*LastStore, RegKills, KillOps, TRI); |
| 1872 | goto ProcessNextInst; |
| 1873 | } |
| 1874 | } |
| 1875 | } |
| 1876 | } |
| 1877 | ProcessNextInst: |
| 1878 | DistanceMap.insert(std::make_pair(&MI, Dist++)); |
| 1879 | if (!Erased && !BackTracked) { |
| 1880 | for (MachineBasicBlock::iterator II = &MI; II != NextMII; ++II) |
| 1881 | UpdateKills(*II, RegKills, KillOps, TRI); |
| 1882 | } |
| 1883 | MII = NextMII; |
| 1884 | } |
| 1885 | |
| 1886 | } |
| 1887 | |
| 1888 | llvm::Spiller* llvm::createSpiller() { |
| 1889 | switch (SpillerOpt) { |
| 1890 | default: assert(0 && "Unreachable!"); |
| 1891 | case local: |
| 1892 | return new LocalSpiller(); |
| 1893 | case simple: |
| 1894 | return new SimpleSpiller(); |
| 1895 | } |
Daniel Dunbar | cfbf05e | 2009-03-14 01:53:05 +0000 | [diff] [blame] | 1896 | } |