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