Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 1 | //===-- RegAllocLocal.cpp - A BasicBlock generic register allocator -------===// |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 9 | // |
| 10 | // This register allocator allocates registers to a basic block at a time, |
| 11 | // attempting to keep values in registers and reusing registers as appropriate. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chris Lattner | 4cc662b | 2003-08-03 21:47:31 +0000 | [diff] [blame] | 15 | #define DEBUG_TYPE "regalloc" |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 16 | #include "llvm/BasicBlock.h" |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/Passes.h" |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineInstr.h" |
Chris Lattner | eb24db9 | 2002-12-28 21:08:26 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/LiveVariables.h" |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/RegAllocRegistry.h" |
Chris Lattner | 3501fea | 2003-01-14 22:00:31 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetMachine.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 26 | #include "llvm/Support/CommandLine.h" |
| 27 | #include "llvm/Support/Debug.h" |
Chris Lattner | a4f0b3a | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Compiler.h" |
Chris Lattner | 94c002a | 2007-02-01 05:32:05 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/IndexedMap.h" |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/SmallVector.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | 27f2916 | 2004-10-26 15:35:58 +0000 | [diff] [blame] | 32 | #include <algorithm> |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 33 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 34 | |
Chris Lattner | cd3245a | 2006-12-19 22:41:21 +0000 | [diff] [blame] | 35 | STATISTIC(NumStores, "Number of stores added"); |
| 36 | STATISTIC(NumLoads , "Number of loads added"); |
| 37 | STATISTIC(NumFolded, "Number of loads/stores folded into instructions"); |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 38 | |
Chris Lattner | cd3245a | 2006-12-19 22:41:21 +0000 | [diff] [blame] | 39 | namespace { |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 40 | static RegisterRegAlloc |
| 41 | localRegAlloc("local", " local register allocator", |
| 42 | createLocalRegisterAllocator); |
| 43 | |
| 44 | |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 45 | class VISIBILITY_HIDDEN RALocal : public MachineFunctionPass { |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 46 | public: |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 47 | static char ID; |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 48 | RALocal() : MachineFunctionPass((intptr_t)&ID) {} |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 49 | private: |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 50 | const TargetMachine *TM; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 51 | MachineFunction *MF; |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 52 | const MRegisterInfo *MRI; |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 53 | LiveVariables *LV; |
Chris Lattner | ff863ba | 2002-12-25 05:05:46 +0000 | [diff] [blame] | 54 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 55 | // StackSlotForVirtReg - Maps virtual regs to the frame index where these |
| 56 | // values are spilled. |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 57 | std::map<unsigned, int> StackSlotForVirtReg; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 58 | |
| 59 | // Virt2PhysRegMap - This map contains entries for each virtual register |
Alkis Evlogimenos | 4d0d864 | 2004-02-25 21:55:45 +0000 | [diff] [blame] | 60 | // that is currently available in a physical register. |
Chris Lattner | 94c002a | 2007-02-01 05:32:05 +0000 | [diff] [blame] | 61 | IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap; |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 62 | |
| 63 | unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) { |
Alkis Evlogimenos | 4d0d864 | 2004-02-25 21:55:45 +0000 | [diff] [blame] | 64 | return Virt2PhysRegMap[VirtReg]; |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 65 | } |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 66 | |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 67 | // PhysRegsUsed - This array is effectively a map, containing entries for |
| 68 | // each physical register that currently has a value (ie, it is in |
| 69 | // Virt2PhysRegMap). The value mapped to is the virtual register |
| 70 | // corresponding to the physical register (the inverse of the |
| 71 | // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 72 | // because it is used by a future instruction, and to -2 if it is not |
| 73 | // allocatable. If the entry for a physical register is -1, then the |
| 74 | // physical register is "not in the map". |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 75 | // |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 76 | std::vector<int> PhysRegsUsed; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 77 | |
| 78 | // PhysRegsUseOrder - This contains a list of the physical registers that |
| 79 | // currently have a virtual register value in them. This list provides an |
| 80 | // ordering of registers, imposing a reallocation order. This list is only |
| 81 | // used if all registers are allocated and we have to spill one, in which |
| 82 | // case we spill the least recently used register. Entries at the front of |
| 83 | // the list are the least recently used registers, entries at the back are |
| 84 | // the most recently used. |
| 85 | // |
| 86 | std::vector<unsigned> PhysRegsUseOrder; |
| 87 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 88 | // VirtRegModified - This bitset contains information about which virtual |
| 89 | // registers need to be spilled back to memory when their registers are |
| 90 | // scavenged. If a virtual register has simply been rematerialized, there |
| 91 | // is no reason to spill it to memory when we need the register back. |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 92 | // |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 93 | std::vector<bool> VirtRegModified; |
| 94 | |
| 95 | void markVirtRegModified(unsigned Reg, bool Val = true) { |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 96 | assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!"); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 97 | Reg -= MRegisterInfo::FirstVirtualRegister; |
| 98 | if (VirtRegModified.size() <= Reg) VirtRegModified.resize(Reg+1); |
| 99 | VirtRegModified[Reg] = Val; |
| 100 | } |
| 101 | |
| 102 | bool isVirtRegModified(unsigned Reg) const { |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 103 | assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!"); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 104 | assert(Reg - MRegisterInfo::FirstVirtualRegister < VirtRegModified.size() |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 105 | && "Illegal virtual register!"); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 106 | return VirtRegModified[Reg - MRegisterInfo::FirstVirtualRegister]; |
| 107 | } |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 108 | |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 109 | void AddToPhysRegsUseOrder(unsigned Reg) { |
| 110 | std::vector<unsigned>::iterator It = |
| 111 | std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), Reg); |
| 112 | if (It != PhysRegsUseOrder.end()) |
| 113 | PhysRegsUseOrder.erase(It); |
| 114 | PhysRegsUseOrder.push_back(Reg); |
| 115 | } |
| 116 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 117 | void MarkPhysRegRecentlyUsed(unsigned Reg) { |
Chris Lattner | 5e50349 | 2006-09-03 07:15:37 +0000 | [diff] [blame] | 118 | if (PhysRegsUseOrder.empty() || |
| 119 | PhysRegsUseOrder.back() == Reg) return; // Already most recently used |
Chris Lattner | 0eb172c | 2002-12-24 00:04:55 +0000 | [diff] [blame] | 120 | |
| 121 | for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i) |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 122 | if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) { |
| 123 | unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle |
| 124 | PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1); |
| 125 | // Add it to the end of the list |
| 126 | PhysRegsUseOrder.push_back(RegMatch); |
| 127 | if (RegMatch == Reg) |
| 128 | return; // Found an exact match, exit early |
| 129 | } |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | public: |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 133 | virtual const char *getPassName() const { |
| 134 | return "Local Register Allocator"; |
| 135 | } |
| 136 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 137 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 138 | AU.addRequired<LiveVariables>(); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 139 | AU.addRequiredID(PHIEliminationID); |
Alkis Evlogimenos | 4c08086 | 2003-12-18 22:40:24 +0000 | [diff] [blame] | 140 | AU.addRequiredID(TwoAddressInstructionPassID); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 141 | MachineFunctionPass::getAnalysisUsage(AU); |
| 142 | } |
| 143 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 144 | private: |
| 145 | /// runOnMachineFunction - Register allocate the whole function |
| 146 | bool runOnMachineFunction(MachineFunction &Fn); |
| 147 | |
| 148 | /// AllocateBasicBlock - Register allocate the specified basic block. |
| 149 | void AllocateBasicBlock(MachineBasicBlock &MBB); |
| 150 | |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 151 | |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 152 | /// areRegsEqual - This method returns true if the specified registers are |
| 153 | /// related to each other. To do this, it checks to see if they are equal |
| 154 | /// or if the first register is in the alias set of the second register. |
| 155 | /// |
| 156 | bool areRegsEqual(unsigned R1, unsigned R2) const { |
| 157 | if (R1 == R2) return true; |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 158 | for (const unsigned *AliasSet = MRI->getAliasSet(R2); |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 159 | *AliasSet; ++AliasSet) { |
| 160 | if (*AliasSet == R1) return true; |
| 161 | } |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 162 | return false; |
| 163 | } |
| 164 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 165 | /// getStackSpaceFor - This returns the frame index of the specified virtual |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 166 | /// register on the stack, allocating space if necessary. |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 167 | int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 168 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 169 | /// removePhysReg - This method marks the specified physical register as no |
| 170 | /// longer being in use. |
| 171 | /// |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 172 | void removePhysReg(unsigned PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 173 | |
| 174 | /// spillVirtReg - This method spills the value specified by PhysReg into |
| 175 | /// the virtual register slot specified by VirtReg. It then updates the RA |
| 176 | /// data structures to indicate the fact that PhysReg is now available. |
| 177 | /// |
Chris Lattner | 688c825 | 2004-02-22 19:08:15 +0000 | [diff] [blame] | 178 | void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 179 | unsigned VirtReg, unsigned PhysReg); |
| 180 | |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 181 | /// spillPhysReg - This method spills the specified physical register into |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 182 | /// the virtual register slot associated with it. If OnlyVirtRegs is set to |
| 183 | /// true, then the request is ignored if the physical register does not |
| 184 | /// contain a virtual register. |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 185 | /// |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 186 | void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I, |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 187 | unsigned PhysReg, bool OnlyVirtRegs = false); |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 188 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 189 | /// assignVirtToPhysReg - This method updates local state so that we know |
| 190 | /// that PhysReg is the proper container for VirtReg now. The physical |
| 191 | /// register must not be used for anything else when this is called. |
| 192 | /// |
| 193 | void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg); |
| 194 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 195 | /// isPhysRegAvailable - Return true if the specified physical register is |
| 196 | /// free and available for use. This also includes checking to see if |
| 197 | /// aliased registers are all free... |
| 198 | /// |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 199 | bool isPhysRegAvailable(unsigned PhysReg) const; |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 200 | |
| 201 | /// getFreeReg - Look to see if there is a free register available in the |
| 202 | /// specified register class. If not, return 0. |
| 203 | /// |
| 204 | unsigned getFreeReg(const TargetRegisterClass *RC); |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 205 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 206 | /// getReg - Find a physical register to hold the specified virtual |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 207 | /// register. If all compatible physical registers are used, this method |
| 208 | /// spills the last used virtual register to the stack, and uses that |
| 209 | /// register. |
| 210 | /// |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 211 | unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI, |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 212 | unsigned VirtReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 213 | |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 214 | /// reloadVirtReg - This method transforms the specified specified virtual |
| 215 | /// register use to refer to a physical register. This method may do this |
| 216 | /// in one of several ways: if the register is available in a physical |
| 217 | /// register already, it uses that physical register. If the value is not |
| 218 | /// in a physical register, and if there are physical registers available, |
| 219 | /// it loads it into a register. If register pressure is high, and it is |
| 220 | /// possible, it tries to fold the load of the virtual register into the |
| 221 | /// instruction itself. It avoids doing this if register pressure is low to |
| 222 | /// improve the chance that subsequent instructions can use the reloaded |
| 223 | /// value. This method returns the modified instruction. |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 224 | /// |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 225 | MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI, |
| 226 | unsigned OpNum); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 227 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 228 | |
| 229 | void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
| 230 | unsigned PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 231 | }; |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 232 | char RALocal::ID = 0; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 233 | } |
| 234 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 235 | /// getStackSpaceFor - This allocates space for the specified virtual register |
| 236 | /// to be held on the stack. |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 237 | int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) { |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 238 | // Find the location Reg would belong... |
| 239 | std::map<unsigned, int>::iterator I =StackSlotForVirtReg.lower_bound(VirtReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 240 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 241 | if (I != StackSlotForVirtReg.end() && I->first == VirtReg) |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 242 | return I->second; // Already has space allocated? |
| 243 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 244 | // Allocate a new stack object for this spill location... |
Chris Lattner | 26eb14b | 2004-08-15 22:02:22 +0000 | [diff] [blame] | 245 | int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(), |
| 246 | RC->getAlignment()); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 247 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 248 | // Assign the slot... |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 249 | StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx)); |
| 250 | return FrameIdx; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 253 | |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 254 | /// removePhysReg - This method marks the specified physical register as no |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 255 | /// longer being in use. |
| 256 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 257 | void RALocal::removePhysReg(unsigned PhysReg) { |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 258 | PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 259 | |
| 260 | std::vector<unsigned>::iterator It = |
| 261 | std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg); |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 262 | if (It != PhysRegsUseOrder.end()) |
| 263 | PhysRegsUseOrder.erase(It); |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 266 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 267 | /// spillVirtReg - This method spills the value specified by PhysReg into the |
| 268 | /// virtual register slot specified by VirtReg. It then updates the RA data |
| 269 | /// structures to indicate the fact that PhysReg is now available. |
| 270 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 271 | void RALocal::spillVirtReg(MachineBasicBlock &MBB, |
| 272 | MachineBasicBlock::iterator I, |
| 273 | unsigned VirtReg, unsigned PhysReg) { |
Chris Lattner | 8c81945 | 2003-08-05 04:13:58 +0000 | [diff] [blame] | 274 | assert(VirtReg && "Spilling a physical register is illegal!" |
Chris Lattner | d9ac6a7 | 2003-08-05 00:49:09 +0000 | [diff] [blame] | 275 | " Must not have appropriate kill for the register or use exists beyond" |
| 276 | " the intended one."); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 277 | DOUT << " Spilling register " << MRI->getName(PhysReg) |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 278 | << " containing %reg" << VirtReg; |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 279 | |
| 280 | const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo(); |
| 281 | |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 282 | if (!isVirtRegModified(VirtReg)) |
| 283 | DOUT << " which has not been modified, so no store necessary!"; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 284 | |
Chris Lattner | d9ac6a7 | 2003-08-05 00:49:09 +0000 | [diff] [blame] | 285 | // Otherwise, there is a virtual register corresponding to this physical |
| 286 | // register. We only need to spill it into its stack slot if it has been |
| 287 | // modified. |
| 288 | if (isVirtRegModified(VirtReg)) { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 289 | const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg); |
Chris Lattner | d9ac6a7 | 2003-08-05 00:49:09 +0000 | [diff] [blame] | 290 | int FrameIndex = getStackSpaceFor(VirtReg, RC); |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 291 | DOUT << " to stack slot #" << FrameIndex; |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 292 | TII->storeRegToStackSlot(MBB, I, PhysReg, true, FrameIndex, RC); |
Alkis Evlogimenos | 2acef2d | 2004-02-19 06:19:09 +0000 | [diff] [blame] | 293 | ++NumStores; // Update statistics |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 294 | } |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 295 | |
| 296 | getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 297 | |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 298 | DOUT << "\n"; |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 299 | removePhysReg(PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 300 | } |
| 301 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 302 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 303 | /// spillPhysReg - This method spills the specified physical register into the |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 304 | /// virtual register slot associated with it. If OnlyVirtRegs is set to true, |
| 305 | /// then the request is ignored if the physical register does not contain a |
| 306 | /// virtual register. |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 307 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 308 | void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I, |
| 309 | unsigned PhysReg, bool OnlyVirtRegs) { |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 310 | if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used! |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 311 | assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!"); |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 312 | if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs) |
| 313 | spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg); |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 314 | } else { |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 315 | // If the selected register aliases any other registers, we must make |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 316 | // sure that one of the aliases isn't alive. |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 317 | for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg); |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 318 | *AliasSet; ++AliasSet) |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 319 | if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register. |
| 320 | PhysRegsUsed[*AliasSet] != -2) // If allocatable. |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 321 | if (PhysRegsUsed[*AliasSet]) |
| 322 | spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 323 | } |
| 324 | } |
| 325 | |
| 326 | |
| 327 | /// assignVirtToPhysReg - This method updates local state so that we know |
| 328 | /// that PhysReg is the proper container for VirtReg now. The physical |
| 329 | /// register must not be used for anything else when this is called. |
| 330 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 331 | void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) { |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 332 | assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!"); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 333 | // Update information to note the fact that this register was just used, and |
| 334 | // it holds VirtReg. |
| 335 | PhysRegsUsed[PhysReg] = VirtReg; |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 336 | getVirt2PhysRegMapSlot(VirtReg) = PhysReg; |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 337 | AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 341 | /// isPhysRegAvailable - Return true if the specified physical register is free |
| 342 | /// and available for use. This also includes checking to see if aliased |
| 343 | /// registers are all free... |
| 344 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 345 | bool RALocal::isPhysRegAvailable(unsigned PhysReg) const { |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 346 | if (PhysRegsUsed[PhysReg] != -1) return false; |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 347 | |
| 348 | // If the selected register aliases any other allocated registers, it is |
| 349 | // not free! |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 350 | for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg); |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 351 | *AliasSet; ++AliasSet) |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 352 | if (PhysRegsUsed[*AliasSet] != -1) // Aliased register in use? |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 353 | return false; // Can't use this reg then. |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 354 | return true; |
| 355 | } |
| 356 | |
| 357 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 358 | /// getFreeReg - Look to see if there is a free register available in the |
| 359 | /// specified register class. If not, return 0. |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 360 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 361 | unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) { |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 362 | // Get iterators defining the range of registers that are valid to allocate in |
| 363 | // this class, which also specifies the preferred allocation order. |
| 364 | TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF); |
| 365 | TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF); |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 366 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 367 | for (; RI != RE; ++RI) |
| 368 | if (isPhysRegAvailable(*RI)) { // Is reg unused? |
| 369 | assert(*RI != 0 && "Cannot use register!"); |
| 370 | return *RI; // Found an unused register! |
| 371 | } |
| 372 | return 0; |
| 373 | } |
| 374 | |
| 375 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 376 | /// getReg - Find a physical register to hold the specified virtual |
| 377 | /// register. If all compatible physical registers are used, this method spills |
| 378 | /// the last used virtual register to the stack, and uses that register. |
| 379 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 380 | unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I, |
| 381 | unsigned VirtReg) { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 382 | const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 383 | |
| 384 | // First check to see if we have a free register of the requested type... |
| 385 | unsigned PhysReg = getFreeReg(RC); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 386 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 387 | // If we didn't find an unused register, scavenge one now! |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 388 | if (PhysReg == 0) { |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 389 | assert(!PhysRegsUseOrder.empty() && "No allocated registers??"); |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 390 | |
| 391 | // Loop over all of the preallocated registers from the least recently used |
| 392 | // to the most recently used. When we find one that is capable of holding |
| 393 | // our register, use it. |
| 394 | for (unsigned i = 0; PhysReg == 0; ++i) { |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 395 | assert(i != PhysRegsUseOrder.size() && |
| 396 | "Couldn't find a register of the appropriate class!"); |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 397 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 398 | unsigned R = PhysRegsUseOrder[i]; |
Chris Lattner | 41822c7 | 2003-08-23 23:49:42 +0000 | [diff] [blame] | 399 | |
| 400 | // We can only use this register if it holds a virtual register (ie, it |
| 401 | // can be spilled). Do not use it if it is an explicitly allocated |
| 402 | // physical register! |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 403 | assert(PhysRegsUsed[R] != -1 && |
Chris Lattner | 41822c7 | 2003-08-23 23:49:42 +0000 | [diff] [blame] | 404 | "PhysReg in PhysRegsUseOrder, but is not allocated?"); |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 405 | if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) { |
Chris Lattner | 41822c7 | 2003-08-23 23:49:42 +0000 | [diff] [blame] | 406 | // If the current register is compatible, use it. |
Chris Lattner | 3bba026 | 2004-08-15 22:23:09 +0000 | [diff] [blame] | 407 | if (RC->contains(R)) { |
Chris Lattner | 41822c7 | 2003-08-23 23:49:42 +0000 | [diff] [blame] | 408 | PhysReg = R; |
| 409 | break; |
| 410 | } else { |
| 411 | // If one of the registers aliased to the current register is |
| 412 | // compatible, use it. |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 413 | for (const unsigned *AliasIt = MRI->getAliasSet(R); |
Chris Lattner | 5e50349 | 2006-09-03 07:15:37 +0000 | [diff] [blame] | 414 | *AliasIt; ++AliasIt) { |
| 415 | if (RC->contains(*AliasIt) && |
| 416 | // If this is pinned down for some reason, don't use it. For |
| 417 | // example, if CL is pinned, and we run across CH, don't use |
| 418 | // CH as justification for using scavenging ECX (which will |
| 419 | // fail). |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 420 | PhysRegsUsed[*AliasIt] != 0 && |
| 421 | |
| 422 | // Make sure the register is allocatable. Don't allocate SIL on |
| 423 | // x86-32. |
| 424 | PhysRegsUsed[*AliasIt] != -2) { |
Chris Lattner | 5e50349 | 2006-09-03 07:15:37 +0000 | [diff] [blame] | 425 | PhysReg = *AliasIt; // Take an aliased register |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 426 | break; |
| 427 | } |
| 428 | } |
Chris Lattner | 41822c7 | 2003-08-23 23:49:42 +0000 | [diff] [blame] | 429 | } |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 430 | } |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 431 | } |
| 432 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 433 | assert(PhysReg && "Physical register not assigned!?!?"); |
| 434 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 435 | // At this point PhysRegsUseOrder[i] is the least recently used register of |
| 436 | // compatible register class. Spill it to memory and reap its remains. |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 437 | spillPhysReg(MBB, I, PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | // Now that we know which register we need to assign this to, do it now! |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 441 | assignVirtToPhysReg(VirtReg, PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 442 | return PhysReg; |
| 443 | } |
| 444 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 445 | |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 446 | /// reloadVirtReg - This method transforms the specified specified virtual |
| 447 | /// register use to refer to a physical register. This method may do this in |
| 448 | /// one of several ways: if the register is available in a physical register |
| 449 | /// already, it uses that physical register. If the value is not in a physical |
| 450 | /// register, and if there are physical registers available, it loads it into a |
| 451 | /// register. If register pressure is high, and it is possible, it tries to |
| 452 | /// fold the load of the virtual register into the instruction itself. It |
| 453 | /// avoids doing this if register pressure is low to improve the chance that |
| 454 | /// subsequent instructions can use the reloaded value. This method returns the |
| 455 | /// modified instruction. |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 456 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 457 | MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI, |
| 458 | unsigned OpNum) { |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 459 | unsigned VirtReg = MI->getOperand(OpNum).getReg(); |
| 460 | |
| 461 | // If the virtual register is already available, just update the instruction |
| 462 | // and return. |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 463 | if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) { |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 464 | MarkPhysRegRecentlyUsed(PR); // Already have this value available! |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 465 | MI->getOperand(OpNum).setReg(PR); // Assign the input register |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 466 | return MI; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Chris Lattner | 1e3812c | 2004-02-17 04:08:37 +0000 | [diff] [blame] | 469 | // Otherwise, we need to fold it into the current instruction, or reload it. |
| 470 | // If we have registers available to hold the value, use them. |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 471 | const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg); |
Chris Lattner | 1e3812c | 2004-02-17 04:08:37 +0000 | [diff] [blame] | 472 | unsigned PhysReg = getFreeReg(RC); |
Chris Lattner | 11390e7 | 2004-02-17 08:09:40 +0000 | [diff] [blame] | 473 | int FrameIndex = getStackSpaceFor(VirtReg, RC); |
Chris Lattner | 1e3812c | 2004-02-17 04:08:37 +0000 | [diff] [blame] | 474 | |
Chris Lattner | 11390e7 | 2004-02-17 08:09:40 +0000 | [diff] [blame] | 475 | if (PhysReg) { // Register is available, allocate it! |
| 476 | assignVirtToPhysReg(VirtReg, PhysReg); |
| 477 | } else { // No registers available. |
| 478 | // If we can fold this spill into this instruction, do so now. |
Evan Cheng | aee4af6 | 2007-12-02 08:30:39 +0000 | [diff] [blame] | 479 | SmallVector<unsigned, 2> Ops; |
| 480 | Ops.push_back(OpNum); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 481 | if (MachineInstr* FMI = MRI->foldMemoryOperand(MI, Ops, FrameIndex)) { |
Alkis Evlogimenos | d6f6d1a | 2004-02-21 18:07:33 +0000 | [diff] [blame] | 482 | ++NumFolded; |
Chris Lattner | d368c61 | 2004-02-19 18:34:02 +0000 | [diff] [blame] | 483 | // Since we changed the address of MI, make sure to update live variables |
| 484 | // to know that the new instruction has the properties of the old one. |
Alkis Evlogimenos | 39354c9 | 2004-03-14 07:19:51 +0000 | [diff] [blame] | 485 | LV->instructionChanged(MI, FMI); |
| 486 | return MBB.insert(MBB.erase(MI), FMI); |
Chris Lattner | 1e3812c | 2004-02-17 04:08:37 +0000 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | // It looks like we can't fold this virtual register load into this |
| 490 | // instruction. Force some poor hapless value out of the register file to |
| 491 | // make room for the new register, and reload it. |
| 492 | PhysReg = getReg(MBB, MI, VirtReg); |
| 493 | } |
| 494 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 495 | markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded |
| 496 | |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 497 | DOUT << " Reloading %reg" << VirtReg << " into " |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 498 | << MRI->getName(PhysReg) << "\n"; |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 499 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 500 | // Add move instruction(s) |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 501 | const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo(); |
| 502 | TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC); |
Alkis Evlogimenos | 2acef2d | 2004-02-19 06:19:09 +0000 | [diff] [blame] | 503 | ++NumLoads; // Update statistics |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 504 | |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 505 | MF->getRegInfo().setPhysRegUsed(PhysReg); |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 506 | MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 507 | return MI; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 508 | } |
| 509 | |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 510 | /// isReadModWriteImplicitKill - True if this is an implicit kill for a |
| 511 | /// read/mod/write register, i.e. update partial register. |
| 512 | static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) { |
| 513 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 514 | MachineOperand& MO = MI->getOperand(i); |
| 515 | if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() && |
| 516 | MO.isDef() && !MO.isDead()) |
| 517 | return true; |
| 518 | } |
| 519 | return false; |
| 520 | } |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 521 | |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 522 | /// isReadModWriteImplicitDef - True if this is an implicit def for a |
| 523 | /// read/mod/write register, i.e. update partial register. |
| 524 | static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) { |
| 525 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 526 | MachineOperand& MO = MI->getOperand(i); |
| 527 | if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() && |
| 528 | !MO.isDef() && MO.isKill()) |
| 529 | return true; |
| 530 | } |
| 531 | return false; |
| 532 | } |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 533 | |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 534 | void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) { |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 535 | // loop over each instruction |
Chris Lattner | e6a88ac | 2005-11-09 18:22:42 +0000 | [diff] [blame] | 536 | MachineBasicBlock::iterator MII = MBB.begin(); |
| 537 | const TargetInstrInfo &TII = *TM->getInstrInfo(); |
Chris Lattner | 44500e3 | 2006-06-15 22:21:53 +0000 | [diff] [blame] | 538 | |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 539 | DEBUG(const BasicBlock *LBB = MBB.getBasicBlock(); |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 540 | if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName()); |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 541 | |
Chris Lattner | 44500e3 | 2006-06-15 22:21:53 +0000 | [diff] [blame] | 542 | // If this is the first basic block in the machine function, add live-in |
| 543 | // registers as active. |
| 544 | if (&MBB == &*MF->begin()) { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 545 | for (MachineRegisterInfo::livein_iterator I=MF->getRegInfo().livein_begin(), |
| 546 | E = MF->getRegInfo().livein_end(); I != E; ++I) { |
Chris Lattner | 44500e3 | 2006-06-15 22:21:53 +0000 | [diff] [blame] | 547 | unsigned Reg = I->first; |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 548 | MF->getRegInfo().setPhysRegUsed(Reg); |
Chris Lattner | 44500e3 | 2006-06-15 22:21:53 +0000 | [diff] [blame] | 549 | PhysRegsUsed[Reg] = 0; // It is free and reserved now |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 550 | AddToPhysRegsUseOrder(Reg); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 551 | for (const unsigned *AliasSet = MRI->getSubRegisters(Reg); |
Chris Lattner | 44500e3 | 2006-06-15 22:21:53 +0000 | [diff] [blame] | 552 | *AliasSet; ++AliasSet) { |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 553 | if (PhysRegsUsed[*AliasSet] != -2) { |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 554 | AddToPhysRegsUseOrder(*AliasSet); |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 555 | PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 556 | MF->getRegInfo().setPhysRegUsed(*AliasSet); |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 557 | } |
Chris Lattner | 44500e3 | 2006-06-15 22:21:53 +0000 | [diff] [blame] | 558 | } |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | // Otherwise, sequentially allocate each instruction in the MBB. |
Chris Lattner | e6a88ac | 2005-11-09 18:22:42 +0000 | [diff] [blame] | 563 | while (MII != MBB.end()) { |
| 564 | MachineInstr *MI = MII++; |
| 565 | const TargetInstrDescriptor &TID = TII.get(MI->getOpcode()); |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 566 | DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI; |
| 567 | DOUT << " Regs have values: "; |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 568 | for (unsigned i = 0; i != MRI->getNumRegs(); ++i) |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 569 | if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2) |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 570 | DOUT << "[" << MRI->getName(i) |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 571 | << ",%reg" << PhysRegsUsed[i] << "] "; |
| 572 | DOUT << "\n"); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 573 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 574 | // Loop over the implicit uses, making sure that they are at the head of the |
| 575 | // use order list, so they don't get reallocated. |
Jim Laskey | cd4317e | 2006-07-21 21:15:20 +0000 | [diff] [blame] | 576 | if (TID.ImplicitUses) { |
| 577 | for (const unsigned *ImplicitUses = TID.ImplicitUses; |
| 578 | *ImplicitUses; ++ImplicitUses) |
| 579 | MarkPhysRegRecentlyUsed(*ImplicitUses); |
| 580 | } |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 581 | |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 582 | SmallVector<unsigned, 8> Kills; |
| 583 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 584 | MachineOperand& MO = MI->getOperand(i); |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 585 | if (MO.isRegister() && MO.isKill()) { |
| 586 | if (!MO.isImplicit()) |
| 587 | Kills.push_back(MO.getReg()); |
| 588 | else if (!isReadModWriteImplicitKill(MI, MO.getReg())) |
| 589 | // These are extra physical register kills when a sub-register |
| 590 | // is defined (def of a sub-register is a read/mod/write of the |
| 591 | // larger registers). Ignore. |
| 592 | Kills.push_back(MO.getReg()); |
| 593 | } |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 594 | } |
| 595 | |
Brian Gaeke | 53b99a0 | 2003-08-15 21:19:25 +0000 | [diff] [blame] | 596 | // Get the used operands into registers. This has the potential to spill |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 597 | // incoming values if we are out of registers. Note that we completely |
| 598 | // ignore physical register uses here. We assume that if an explicit |
| 599 | // physical register is referenced by the instruction, that it is guaranteed |
| 600 | // to be live-in, or the input is badly hosed. |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 601 | // |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 602 | for (unsigned i = 0; i != MI->getNumOperands(); ++i) { |
| 603 | MachineOperand& MO = MI->getOperand(i); |
| 604 | // here we are looking for only used operands (never def&use) |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 605 | if (MO.isRegister() && !MO.isDef() && MO.getReg() && !MO.isImplicit() && |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 606 | MRegisterInfo::isVirtualRegister(MO.getReg())) |
Chris Lattner | 42e0a8f | 2004-02-17 03:57:19 +0000 | [diff] [blame] | 607 | MI = reloadVirtReg(MBB, MI, i); |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 608 | } |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 609 | |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 610 | // If this instruction is the last user of this register, kill the |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 611 | // value, freeing the register being used, so it doesn't need to be |
| 612 | // spilled to memory. |
| 613 | // |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 614 | for (unsigned i = 0, e = Kills.size(); i != e; ++i) { |
| 615 | unsigned VirtReg = Kills[i]; |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 616 | unsigned PhysReg = VirtReg; |
| 617 | if (MRegisterInfo::isVirtualRegister(VirtReg)) { |
| 618 | // If the virtual register was never materialized into a register, it |
| 619 | // might not be in the map, but it won't hurt to zero it out anyway. |
| 620 | unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg); |
| 621 | PhysReg = PhysRegSlot; |
| 622 | PhysRegSlot = 0; |
Chris Lattner | 0c5b8da | 2006-09-08 20:21:31 +0000 | [diff] [blame] | 623 | } else if (PhysRegsUsed[PhysReg] == -2) { |
| 624 | // Unallocatable register dead, ignore. |
| 625 | continue; |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 626 | } else { |
Evan Cheng | 76500d5 | 2007-10-22 19:42:28 +0000 | [diff] [blame] | 627 | assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) && |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 628 | "Silently clearing a virtual register?"); |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 629 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 630 | |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 631 | if (PhysReg) { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 632 | DOUT << " Last use of " << MRI->getName(PhysReg) |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 633 | << "[%reg" << VirtReg <<"], removing it from live set\n"; |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 634 | removePhysReg(PhysReg); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 635 | for (const unsigned *AliasSet = MRI->getSubRegisters(PhysReg); |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 636 | *AliasSet; ++AliasSet) { |
| 637 | if (PhysRegsUsed[*AliasSet] != -2) { |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 638 | DOUT << " Last use of " |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 639 | << MRI->getName(*AliasSet) |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 640 | << "[%reg" << VirtReg <<"], removing it from live set\n"; |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 641 | removePhysReg(*AliasSet); |
| 642 | } |
| 643 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 644 | } |
| 645 | } |
| 646 | |
| 647 | // Loop over all of the operands of the instruction, spilling registers that |
| 648 | // are defined, and marking explicit destinations in the PhysRegsUsed map. |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 649 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 650 | MachineOperand& MO = MI->getOperand(i); |
Evan Cheng | 438f7bc | 2006-11-10 08:43:01 +0000 | [diff] [blame] | 651 | if (MO.isRegister() && MO.isDef() && !MO.isImplicit() && MO.getReg() && |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 652 | MRegisterInfo::isPhysicalRegister(MO.getReg())) { |
| 653 | unsigned Reg = MO.getReg(); |
Chris Lattner | cc40632 | 2006-09-08 19:11:11 +0000 | [diff] [blame] | 654 | if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP. |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 655 | // These are extra physical register defs when a sub-register |
| 656 | // is defined (def of a sub-register is a read/mod/write of the |
| 657 | // larger registers). Ignore. |
| 658 | if (isReadModWriteImplicitDef(MI, MO.getReg())) continue; |
| 659 | |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 660 | MF->getRegInfo().setPhysRegUsed(Reg); |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 661 | spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 662 | PhysRegsUsed[Reg] = 0; // It is free and reserved now |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 663 | AddToPhysRegsUseOrder(Reg); |
| 664 | |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 665 | for (const unsigned *AliasSet = MRI->getSubRegisters(Reg); |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 666 | *AliasSet; ++AliasSet) { |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 667 | if (PhysRegsUsed[*AliasSet] != -2) { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 668 | MF->getRegInfo().setPhysRegUsed(*AliasSet); |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 669 | PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now |
| 670 | AddToPhysRegsUseOrder(*AliasSet); |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 671 | } |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 672 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 673 | } |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 674 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 675 | |
| 676 | // Loop over the implicit defs, spilling them as well. |
Jim Laskey | cd4317e | 2006-07-21 21:15:20 +0000 | [diff] [blame] | 677 | if (TID.ImplicitDefs) { |
| 678 | for (const unsigned *ImplicitDefs = TID.ImplicitDefs; |
| 679 | *ImplicitDefs; ++ImplicitDefs) { |
| 680 | unsigned Reg = *ImplicitDefs; |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 681 | if (PhysRegsUsed[Reg] != -2) { |
Chris Lattner | 2b41b8e | 2006-09-19 18:02:01 +0000 | [diff] [blame] | 682 | spillPhysReg(MBB, MI, Reg, true); |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 683 | AddToPhysRegsUseOrder(Reg); |
Chris Lattner | 2b41b8e | 2006-09-19 18:02:01 +0000 | [diff] [blame] | 684 | PhysRegsUsed[Reg] = 0; // It is free and reserved now |
| 685 | } |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 686 | MF->getRegInfo().setPhysRegUsed(Reg); |
| 687 | for (const unsigned *AliasSet = MRI->getSubRegisters(Reg); |
Jim Laskey | cd4317e | 2006-07-21 21:15:20 +0000 | [diff] [blame] | 688 | *AliasSet; ++AliasSet) { |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 689 | if (PhysRegsUsed[*AliasSet] != -2) { |
Evan Cheng | 7ac19af | 2007-06-26 21:05:13 +0000 | [diff] [blame] | 690 | AddToPhysRegsUseOrder(*AliasSet); |
| 691 | PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 692 | MF->getRegInfo().setPhysRegUsed(*AliasSet); |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 693 | } |
Jim Laskey | cd4317e | 2006-07-21 21:15:20 +0000 | [diff] [blame] | 694 | } |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 695 | } |
Alkis Evlogimenos | efe995a | 2003-12-13 01:20:58 +0000 | [diff] [blame] | 696 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 697 | |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 698 | SmallVector<unsigned, 8> DeadDefs; |
| 699 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 700 | MachineOperand& MO = MI->getOperand(i); |
| 701 | if (MO.isRegister() && MO.isDead()) |
| 702 | DeadDefs.push_back(MO.getReg()); |
| 703 | } |
| 704 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 705 | // Okay, we have allocated all of the source operands and spilled any values |
| 706 | // that would be destroyed by defs of this instruction. Loop over the |
Chris Lattner | 0648b16 | 2005-01-23 22:51:56 +0000 | [diff] [blame] | 707 | // explicit defs and assign them to a register, spilling incoming values if |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 708 | // we need to scavenge a register. |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 709 | // |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 710 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 711 | MachineOperand& MO = MI->getOperand(i); |
Evan Cheng | 5d8062b | 2006-09-05 20:32:06 +0000 | [diff] [blame] | 712 | if (MO.isRegister() && MO.isDef() && MO.getReg() && |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 713 | MRegisterInfo::isVirtualRegister(MO.getReg())) { |
| 714 | unsigned DestVirtReg = MO.getReg(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 715 | unsigned DestPhysReg; |
| 716 | |
Alkis Evlogimenos | 9af9dbd | 2003-12-18 13:08:52 +0000 | [diff] [blame] | 717 | // If DestVirtReg already has a value, use it. |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 718 | if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg))) |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 719 | DestPhysReg = getReg(MBB, MI, DestVirtReg); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 720 | MF->getRegInfo().setPhysRegUsed(DestPhysReg); |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 721 | markVirtRegModified(DestVirtReg); |
Chris Lattner | e53f4a0 | 2006-05-04 17:52:23 +0000 | [diff] [blame] | 722 | MI->getOperand(i).setReg(DestPhysReg); // Assign the output register |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 723 | } |
Alkis Evlogimenos | 71e353e | 2004-02-26 22:00:20 +0000 | [diff] [blame] | 724 | } |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 725 | |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 726 | // If this instruction defines any registers that are immediately dead, |
| 727 | // kill them now. |
| 728 | // |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 729 | for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) { |
| 730 | unsigned VirtReg = DeadDefs[i]; |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 731 | unsigned PhysReg = VirtReg; |
| 732 | if (MRegisterInfo::isVirtualRegister(VirtReg)) { |
| 733 | unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg); |
| 734 | PhysReg = PhysRegSlot; |
| 735 | assert(PhysReg != 0); |
| 736 | PhysRegSlot = 0; |
Chris Lattner | 0c5b8da | 2006-09-08 20:21:31 +0000 | [diff] [blame] | 737 | } else if (PhysRegsUsed[PhysReg] == -2) { |
| 738 | // Unallocatable register dead, ignore. |
| 739 | continue; |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 740 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 741 | |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 742 | if (PhysReg) { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 743 | DOUT << " Register " << MRI->getName(PhysReg) |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 744 | << " [%reg" << VirtReg |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 745 | << "] is never used, removing it frame live list\n"; |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 746 | removePhysReg(PhysReg); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 747 | for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg); |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 748 | *AliasSet; ++AliasSet) { |
| 749 | if (PhysRegsUsed[*AliasSet] != -2) { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 750 | DOUT << " Register " << MRI->getName(*AliasSet) |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 751 | << " [%reg" << *AliasSet |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 752 | << "] is never used, removing it frame live list\n"; |
Evan Cheng | ddee842 | 2006-11-15 20:55:15 +0000 | [diff] [blame] | 753 | removePhysReg(*AliasSet); |
| 754 | } |
| 755 | } |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 756 | } |
| 757 | } |
Chris Lattner | e6a88ac | 2005-11-09 18:22:42 +0000 | [diff] [blame] | 758 | |
| 759 | // Finally, if this is a noop copy instruction, zap it. |
| 760 | unsigned SrcReg, DstReg; |
Chris Lattner | 2ac0d43 | 2006-09-03 00:06:08 +0000 | [diff] [blame] | 761 | if (TII.isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg) { |
| 762 | LV->removeVirtualRegistersKilled(MI); |
| 763 | LV->removeVirtualRegistersDead(MI); |
Chris Lattner | e6a88ac | 2005-11-09 18:22:42 +0000 | [diff] [blame] | 764 | MBB.erase(MI); |
Chris Lattner | 2ac0d43 | 2006-09-03 00:06:08 +0000 | [diff] [blame] | 765 | } |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 766 | } |
| 767 | |
Chris Lattner | e6a88ac | 2005-11-09 18:22:42 +0000 | [diff] [blame] | 768 | MachineBasicBlock::iterator MI = MBB.getFirstTerminator(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 769 | |
| 770 | // Spill all physical registers holding virtual registers now. |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 771 | for (unsigned i = 0, e = MRI->getNumRegs(); i != e; ++i) |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 772 | if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2) |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 773 | if (unsigned VirtReg = PhysRegsUsed[i]) |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 774 | spillVirtReg(MBB, MI, VirtReg, i); |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 775 | else |
| 776 | removePhysReg(i); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 777 | |
Chris Lattner | 9a5ef20 | 2005-11-09 05:28:45 +0000 | [diff] [blame] | 778 | #if 0 |
| 779 | // This checking code is very expensive. |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 780 | bool AllOk = true; |
Alkis Evlogimenos | 4d0d864 | 2004-02-25 21:55:45 +0000 | [diff] [blame] | 781 | for (unsigned i = MRegisterInfo::FirstVirtualRegister, |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 782 | e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i) |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 783 | if (unsigned PR = Virt2PhysRegMap[i]) { |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 784 | cerr << "Register still mapped: " << i << " -> " << PR << "\n"; |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 785 | AllOk = false; |
| 786 | } |
| 787 | assert(AllOk && "Virtual registers still in phys regs?"); |
| 788 | #endif |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 789 | |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 790 | // Clear any physical register which appear live at the end of the basic |
| 791 | // block, but which do not hold any virtual registers. e.g., the stack |
| 792 | // pointer. |
| 793 | PhysRegsUseOrder.clear(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 794 | } |
| 795 | |
Chris Lattner | 86c69a6 | 2002-12-17 03:16:10 +0000 | [diff] [blame] | 796 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 797 | /// runOnMachineFunction - Register allocate the whole function |
| 798 | /// |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 799 | bool RALocal::runOnMachineFunction(MachineFunction &Fn) { |
Bill Wendling | b2b9c20 | 2006-11-17 02:09:07 +0000 | [diff] [blame] | 800 | DOUT << "Machine Function " << "\n"; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 801 | MF = &Fn; |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 802 | TM = &Fn.getTarget(); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 803 | MRI = TM->getRegisterInfo(); |
Chris Lattner | 56ddada | 2004-02-17 17:49:10 +0000 | [diff] [blame] | 804 | LV = &getAnalysis<LiveVariables>(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 805 | |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 806 | PhysRegsUsed.assign(MRI->getNumRegs(), -1); |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 807 | |
| 808 | // At various places we want to efficiently check to see whether a register |
| 809 | // is allocatable. To handle this, we mark all unallocatable registers as |
| 810 | // being pinned down, permanently. |
| 811 | { |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 812 | BitVector Allocable = MRI->getAllocatableSet(Fn); |
Chris Lattner | 45d5788 | 2006-09-08 19:03:30 +0000 | [diff] [blame] | 813 | for (unsigned i = 0, e = Allocable.size(); i != e; ++i) |
| 814 | if (!Allocable[i]) |
| 815 | PhysRegsUsed[i] = -2; // Mark the reg unallocable. |
| 816 | } |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 817 | |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 818 | // initialize the virtual->physical register map to have a 'null' |
| 819 | // mapping for all virtual registers |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 820 | Virt2PhysRegMap.grow(MF->getRegInfo().getLastVirtReg()); |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 821 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 822 | // Loop over all of the basic blocks, eliminating virtual register references |
| 823 | for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end(); |
| 824 | MBB != MBBe; ++MBB) |
| 825 | AllocateBasicBlock(*MBB); |
| 826 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 827 | StackSlotForVirtReg.clear(); |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 828 | PhysRegsUsed.clear(); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 829 | VirtRegModified.clear(); |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 830 | Virt2PhysRegMap.clear(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 831 | return true; |
| 832 | } |
| 833 | |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 834 | FunctionPass *llvm::createLocalRegisterAllocator() { |
Bill Wendling | e23e00d | 2007-05-08 19:02:46 +0000 | [diff] [blame] | 835 | return new RALocal(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 836 | } |