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