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 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
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" |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/Passes.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 | ff863ba | 2002-12-25 05:05:46 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/SSARegMap.h" |
Chris Lattner | eb24db9 | 2002-12-28 21:08:26 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/LiveVariables.h" |
Chris Lattner | 3501fea | 2003-01-14 22:00:31 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 24 | #include "Support/CommandLine.h" |
Chris Lattner | a11136b | 2003-08-01 22:21:34 +0000 | [diff] [blame] | 25 | #include "Support/Debug.h" |
| 26 | #include "Support/Statistic.h" |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 27 | #include <iostream> |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 28 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 29 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 30 | namespace { |
| 31 | Statistic<> NumSpilled ("ra-local", "Number of registers spilled"); |
| 32 | Statistic<> NumReloaded("ra-local", "Number of registers reloaded"); |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 33 | cl::opt<bool> DisableKill("disable-kill", cl::Hidden, |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 34 | cl::desc("Disable register kill in local-ra")); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 35 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 36 | class RA : public MachineFunctionPass { |
| 37 | const TargetMachine *TM; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 38 | MachineFunction *MF; |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 39 | const MRegisterInfo *RegInfo; |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 40 | LiveVariables *LV; |
Chris Lattner | ff863ba | 2002-12-25 05:05:46 +0000 | [diff] [blame] | 41 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 42 | // StackSlotForVirtReg - Maps virtual regs to the frame index where these |
| 43 | // values are spilled. |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 44 | std::map<unsigned, int> StackSlotForVirtReg; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 45 | |
| 46 | // Virt2PhysRegMap - This map contains entries for each virtual register |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 47 | // that is currently available in a physical register. This is "logically" |
| 48 | // a map from virtual register numbers to physical register numbers. |
| 49 | // Instead of using a map, however, which is slow, we use a vector. The |
| 50 | // index is the VREG number - FirstVirtualRegister. If the entry is zero, |
| 51 | // then it is logically "not in the map". |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 52 | // |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 53 | std::vector<unsigned> Virt2PhysRegMap; |
| 54 | |
| 55 | unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) { |
| 56 | assert(VirtReg >= MRegisterInfo::FirstVirtualRegister &&"Illegal VREG #"); |
| 57 | assert(VirtReg-MRegisterInfo::FirstVirtualRegister <Virt2PhysRegMap.size() |
| 58 | && "VirtReg not in map!"); |
| 59 | return Virt2PhysRegMap[VirtReg-MRegisterInfo::FirstVirtualRegister]; |
| 60 | } |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 61 | |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 62 | // PhysRegsUsed - This array is effectively a map, containing entries for |
| 63 | // each physical register that currently has a value (ie, it is in |
| 64 | // Virt2PhysRegMap). The value mapped to is the virtual register |
| 65 | // corresponding to the physical register (the inverse of the |
| 66 | // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned |
| 67 | // because it is used by a future instruction. If the entry for a physical |
| 68 | // register is -1, then the physical register is "not in the map". |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 69 | // |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 70 | std::vector<int> PhysRegsUsed; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 71 | |
| 72 | // PhysRegsUseOrder - This contains a list of the physical registers that |
| 73 | // currently have a virtual register value in them. This list provides an |
| 74 | // ordering of registers, imposing a reallocation order. This list is only |
| 75 | // used if all registers are allocated and we have to spill one, in which |
| 76 | // case we spill the least recently used register. Entries at the front of |
| 77 | // the list are the least recently used registers, entries at the back are |
| 78 | // the most recently used. |
| 79 | // |
| 80 | std::vector<unsigned> PhysRegsUseOrder; |
| 81 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 82 | // VirtRegModified - This bitset contains information about which virtual |
| 83 | // registers need to be spilled back to memory when their registers are |
| 84 | // scavenged. If a virtual register has simply been rematerialized, there |
| 85 | // 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] | 86 | // |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 87 | std::vector<bool> VirtRegModified; |
| 88 | |
| 89 | void markVirtRegModified(unsigned Reg, bool Val = true) { |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 90 | assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!"); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 91 | Reg -= MRegisterInfo::FirstVirtualRegister; |
| 92 | if (VirtRegModified.size() <= Reg) VirtRegModified.resize(Reg+1); |
| 93 | VirtRegModified[Reg] = Val; |
| 94 | } |
| 95 | |
| 96 | bool isVirtRegModified(unsigned Reg) const { |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 97 | assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!"); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 98 | assert(Reg - MRegisterInfo::FirstVirtualRegister < VirtRegModified.size() |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 99 | && "Illegal virtual register!"); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 100 | return VirtRegModified[Reg - MRegisterInfo::FirstVirtualRegister]; |
| 101 | } |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 102 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 103 | void MarkPhysRegRecentlyUsed(unsigned Reg) { |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 104 | assert(!PhysRegsUseOrder.empty() && "No registers used!"); |
Chris Lattner | 0eb172c | 2002-12-24 00:04:55 +0000 | [diff] [blame] | 105 | if (PhysRegsUseOrder.back() == Reg) return; // Already most recently used |
| 106 | |
| 107 | for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i) |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 108 | if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) { |
| 109 | unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle |
| 110 | PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1); |
| 111 | // Add it to the end of the list |
| 112 | PhysRegsUseOrder.push_back(RegMatch); |
| 113 | if (RegMatch == Reg) |
| 114 | return; // Found an exact match, exit early |
| 115 | } |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | public: |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 119 | virtual const char *getPassName() const { |
| 120 | return "Local Register Allocator"; |
| 121 | } |
| 122 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 123 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 124 | if (!DisableKill) |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 125 | AU.addRequired<LiveVariables>(); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 126 | AU.addRequiredID(PHIEliminationID); |
Alkis Evlogimenos | 4c08086 | 2003-12-18 22:40:24 +0000 | [diff] [blame] | 127 | AU.addRequiredID(TwoAddressInstructionPassID); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 128 | MachineFunctionPass::getAnalysisUsage(AU); |
| 129 | } |
| 130 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 131 | private: |
| 132 | /// runOnMachineFunction - Register allocate the whole function |
| 133 | bool runOnMachineFunction(MachineFunction &Fn); |
| 134 | |
| 135 | /// AllocateBasicBlock - Register allocate the specified basic block. |
| 136 | void AllocateBasicBlock(MachineBasicBlock &MBB); |
| 137 | |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 138 | |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 139 | /// areRegsEqual - This method returns true if the specified registers are |
| 140 | /// related to each other. To do this, it checks to see if they are equal |
| 141 | /// or if the first register is in the alias set of the second register. |
| 142 | /// |
| 143 | bool areRegsEqual(unsigned R1, unsigned R2) const { |
| 144 | if (R1 == R2) return true; |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 145 | for (const unsigned *AliasSet = RegInfo->getAliasSet(R2); |
| 146 | *AliasSet; ++AliasSet) { |
| 147 | if (*AliasSet == R1) return true; |
| 148 | } |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 149 | return false; |
| 150 | } |
| 151 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 152 | /// getStackSpaceFor - This returns the frame index of the specified virtual |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 153 | /// register on the stack, allocating space if necessary. |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 154 | int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 155 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 156 | /// removePhysReg - This method marks the specified physical register as no |
| 157 | /// longer being in use. |
| 158 | /// |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 159 | void removePhysReg(unsigned PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 160 | |
| 161 | /// spillVirtReg - This method spills the value specified by PhysReg into |
| 162 | /// the virtual register slot specified by VirtReg. It then updates the RA |
| 163 | /// data structures to indicate the fact that PhysReg is now available. |
| 164 | /// |
| 165 | void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
| 166 | unsigned VirtReg, unsigned PhysReg); |
| 167 | |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 168 | /// spillPhysReg - This method spills the specified physical register into |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 169 | /// the virtual register slot associated with it. If OnlyVirtRegs is set to |
| 170 | /// true, then the request is ignored if the physical register does not |
| 171 | /// contain a virtual register. |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 172 | /// |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 173 | void spillPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 174 | unsigned PhysReg, bool OnlyVirtRegs = false); |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 175 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 176 | /// assignVirtToPhysReg - This method updates local state so that we know |
| 177 | /// that PhysReg is the proper container for VirtReg now. The physical |
| 178 | /// register must not be used for anything else when this is called. |
| 179 | /// |
| 180 | void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg); |
| 181 | |
| 182 | /// liberatePhysReg - Make sure the specified physical register is available |
| 183 | /// for use. If there is currently a value in it, it is either moved out of |
| 184 | /// the way or spilled to memory. |
| 185 | /// |
| 186 | void liberatePhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 187 | unsigned PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 188 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 189 | /// isPhysRegAvailable - Return true if the specified physical register is |
| 190 | /// free and available for use. This also includes checking to see if |
| 191 | /// aliased registers are all free... |
| 192 | /// |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 193 | bool isPhysRegAvailable(unsigned PhysReg) const; |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 194 | |
| 195 | /// getFreeReg - Look to see if there is a free register available in the |
| 196 | /// specified register class. If not, return 0. |
| 197 | /// |
| 198 | unsigned getFreeReg(const TargetRegisterClass *RC); |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 199 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 200 | /// getReg - Find a physical register to hold the specified virtual |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 201 | /// register. If all compatible physical registers are used, this method |
| 202 | /// spills the last used virtual register to the stack, and uses that |
| 203 | /// register. |
| 204 | /// |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 205 | unsigned getReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 206 | unsigned VirtReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 207 | |
| 208 | /// reloadVirtReg - This method loads the specified virtual register into a |
| 209 | /// physical register, returning the physical register chosen. This updates |
| 210 | /// the regalloc data structures to reflect the fact that the virtual reg is |
| 211 | /// now alive in a physical register, and the previous one isn't. |
| 212 | /// |
| 213 | unsigned reloadVirtReg(MachineBasicBlock &MBB, |
| 214 | MachineBasicBlock::iterator &I, unsigned VirtReg); |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 215 | |
| 216 | void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
| 217 | unsigned PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 218 | }; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 221 | /// getStackSpaceFor - This allocates space for the specified virtual register |
| 222 | /// to be held on the stack. |
| 223 | int RA::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) { |
| 224 | // Find the location Reg would belong... |
| 225 | std::map<unsigned, int>::iterator I =StackSlotForVirtReg.lower_bound(VirtReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 226 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 227 | if (I != StackSlotForVirtReg.end() && I->first == VirtReg) |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 228 | return I->second; // Already has space allocated? |
| 229 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 230 | // Allocate a new stack object for this spill location... |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 231 | int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 232 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 233 | // Assign the slot... |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 234 | StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx)); |
| 235 | return FrameIdx; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 236 | } |
| 237 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 238 | |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 239 | /// removePhysReg - This method marks the specified physical register as no |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 240 | /// longer being in use. |
| 241 | /// |
| 242 | void RA::removePhysReg(unsigned PhysReg) { |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 243 | PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 244 | |
| 245 | std::vector<unsigned>::iterator It = |
| 246 | std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg); |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 247 | if (It != PhysRegsUseOrder.end()) |
| 248 | PhysRegsUseOrder.erase(It); |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 249 | } |
| 250 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 251 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 252 | /// spillVirtReg - This method spills the value specified by PhysReg into the |
| 253 | /// virtual register slot specified by VirtReg. It then updates the RA data |
| 254 | /// structures to indicate the fact that PhysReg is now available. |
| 255 | /// |
| 256 | void RA::spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
| 257 | unsigned VirtReg, unsigned PhysReg) { |
Chris Lattner | 8c81945 | 2003-08-05 04:13:58 +0000 | [diff] [blame] | 258 | if (!VirtReg && DisableKill) return; |
| 259 | assert(VirtReg && "Spilling a physical register is illegal!" |
Chris Lattner | d9ac6a7 | 2003-08-05 00:49:09 +0000 | [diff] [blame] | 260 | " Must not have appropriate kill for the register or use exists beyond" |
| 261 | " the intended one."); |
| 262 | DEBUG(std::cerr << " Spilling register " << RegInfo->getName(PhysReg); |
| 263 | std::cerr << " containing %reg" << VirtReg; |
| 264 | if (!isVirtRegModified(VirtReg)) |
| 265 | std::cerr << " which has not been modified, so no store necessary!"); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 266 | |
Chris Lattner | d9ac6a7 | 2003-08-05 00:49:09 +0000 | [diff] [blame] | 267 | // Otherwise, there is a virtual register corresponding to this physical |
| 268 | // register. We only need to spill it into its stack slot if it has been |
| 269 | // modified. |
| 270 | if (isVirtRegModified(VirtReg)) { |
| 271 | const TargetRegisterClass *RC = MF->getSSARegMap()->getRegClass(VirtReg); |
| 272 | int FrameIndex = getStackSpaceFor(VirtReg, RC); |
| 273 | DEBUG(std::cerr << " to stack slot #" << FrameIndex); |
| 274 | RegInfo->storeRegToStackSlot(MBB, I, PhysReg, FrameIndex, RC); |
| 275 | ++NumSpilled; // Update statistics |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 276 | } |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 277 | |
| 278 | getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 279 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 280 | DEBUG(std::cerr << "\n"); |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 281 | removePhysReg(PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 284 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 285 | /// spillPhysReg - This method spills the specified physical register into the |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 286 | /// virtual register slot associated with it. If OnlyVirtRegs is set to true, |
| 287 | /// then the request is ignored if the physical register does not contain a |
| 288 | /// virtual register. |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 289 | /// |
| 290 | void RA::spillPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 291 | unsigned PhysReg, bool OnlyVirtRegs) { |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 292 | if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used! |
| 293 | if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs) |
| 294 | spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg); |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 295 | } else { |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 296 | // If the selected register aliases any other registers, we must make |
| 297 | // sure that one of the aliases isn't alive... |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 298 | for (const unsigned *AliasSet = RegInfo->getAliasSet(PhysReg); |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 299 | *AliasSet; ++AliasSet) |
| 300 | if (PhysRegsUsed[*AliasSet] != -1) // Spill aliased register... |
| 301 | if (PhysRegsUsed[*AliasSet] || !OnlyVirtRegs) |
| 302 | spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 303 | } |
| 304 | } |
| 305 | |
| 306 | |
| 307 | /// assignVirtToPhysReg - This method updates local state so that we know |
| 308 | /// that PhysReg is the proper container for VirtReg now. The physical |
| 309 | /// register must not be used for anything else when this is called. |
| 310 | /// |
| 311 | void RA::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) { |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 312 | assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!"); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 313 | // Update information to note the fact that this register was just used, and |
| 314 | // it holds VirtReg. |
| 315 | PhysRegsUsed[PhysReg] = VirtReg; |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 316 | getVirt2PhysRegMapSlot(VirtReg) = PhysReg; |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 317 | PhysRegsUseOrder.push_back(PhysReg); // New use of PhysReg |
| 318 | } |
| 319 | |
| 320 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 321 | /// isPhysRegAvailable - Return true if the specified physical register is free |
| 322 | /// and available for use. This also includes checking to see if aliased |
| 323 | /// registers are all free... |
| 324 | /// |
| 325 | bool RA::isPhysRegAvailable(unsigned PhysReg) const { |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 326 | if (PhysRegsUsed[PhysReg] != -1) return false; |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 327 | |
| 328 | // If the selected register aliases any other allocated registers, it is |
| 329 | // not free! |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 330 | for (const unsigned *AliasSet = RegInfo->getAliasSet(PhysReg); |
| 331 | *AliasSet; ++AliasSet) |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 332 | if (PhysRegsUsed[*AliasSet] != -1) // Aliased register in use? |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 333 | return false; // Can't use this reg then. |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 334 | return true; |
| 335 | } |
| 336 | |
| 337 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 338 | /// getFreeReg - Look to see if there is a free register available in the |
| 339 | /// specified register class. If not, return 0. |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 340 | /// |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 341 | unsigned RA::getFreeReg(const TargetRegisterClass *RC) { |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 342 | // Get iterators defining the range of registers that are valid to allocate in |
| 343 | // this class, which also specifies the preferred allocation order. |
| 344 | TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF); |
| 345 | TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF); |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 346 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 347 | for (; RI != RE; ++RI) |
| 348 | if (isPhysRegAvailable(*RI)) { // Is reg unused? |
| 349 | assert(*RI != 0 && "Cannot use register!"); |
| 350 | return *RI; // Found an unused register! |
| 351 | } |
| 352 | return 0; |
| 353 | } |
| 354 | |
| 355 | |
| 356 | /// liberatePhysReg - Make sure the specified physical register is available for |
| 357 | /// use. If there is currently a value in it, it is either moved out of the way |
| 358 | /// or spilled to memory. |
| 359 | /// |
| 360 | void RA::liberatePhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 361 | unsigned PhysReg) { |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 362 | // FIXME: This code checks to see if a register is available, but it really |
| 363 | // wants to know if a reg is available BEFORE the instruction executes. If |
| 364 | // called after killed operands are freed, it runs the risk of reallocating a |
| 365 | // used operand... |
| 366 | #if 0 |
| 367 | if (isPhysRegAvailable(PhysReg)) return; // Already available... |
| 368 | |
| 369 | // Check to see if the register is directly used, not indirectly used through |
| 370 | // aliases. If aliased registers are the ones actually used, we cannot be |
| 371 | // sure that we will be able to save the whole thing if we do a reg-reg copy. |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 372 | if (PhysRegsUsed[PhysReg] != -1) { |
| 373 | // The virtual register held... |
| 374 | unsigned VirtReg = PhysRegsUsed[PhysReg]->second; |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 375 | |
| 376 | // Check to see if there is a compatible register available. If so, we can |
| 377 | // move the value into the new register... |
| 378 | // |
| 379 | const TargetRegisterClass *RC = RegInfo->getRegClass(PhysReg); |
| 380 | if (unsigned NewReg = getFreeReg(RC)) { |
| 381 | // Emit the code to copy the value... |
| 382 | RegInfo->copyRegToReg(MBB, I, NewReg, PhysReg, RC); |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 383 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 384 | // Update our internal state to indicate that PhysReg is available and Reg |
| 385 | // isn't. |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 386 | getVirt2PhysRegMapSlot[VirtReg] = 0; |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 387 | removePhysReg(PhysReg); // Free the physreg |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 388 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 389 | // Move reference over to new register... |
| 390 | assignVirtToPhysReg(VirtReg, NewReg); |
| 391 | return; |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 392 | } |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 393 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 394 | #endif |
| 395 | spillPhysReg(MBB, I, PhysReg); |
| 396 | } |
| 397 | |
| 398 | |
| 399 | /// getReg - Find a physical register to hold the specified virtual |
| 400 | /// register. If all compatible physical registers are used, this method spills |
| 401 | /// the last used virtual register to the stack, and uses that register. |
| 402 | /// |
| 403 | unsigned RA::getReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I, |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 404 | unsigned VirtReg) { |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 405 | const TargetRegisterClass *RC = MF->getSSARegMap()->getRegClass(VirtReg); |
| 406 | |
| 407 | // First check to see if we have a free register of the requested type... |
| 408 | unsigned PhysReg = getFreeReg(RC); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 409 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 410 | // If we didn't find an unused register, scavenge one now! |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 411 | if (PhysReg == 0) { |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 412 | assert(!PhysRegsUseOrder.empty() && "No allocated registers??"); |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 413 | |
| 414 | // Loop over all of the preallocated registers from the least recently used |
| 415 | // to the most recently used. When we find one that is capable of holding |
| 416 | // our register, use it. |
| 417 | for (unsigned i = 0; PhysReg == 0; ++i) { |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 418 | assert(i != PhysRegsUseOrder.size() && |
| 419 | "Couldn't find a register of the appropriate class!"); |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 420 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 421 | unsigned R = PhysRegsUseOrder[i]; |
Chris Lattner | 41822c7 | 2003-08-23 23:49:42 +0000 | [diff] [blame] | 422 | |
| 423 | // We can only use this register if it holds a virtual register (ie, it |
| 424 | // can be spilled). Do not use it if it is an explicitly allocated |
| 425 | // physical register! |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 426 | assert(PhysRegsUsed[R] != -1 && |
Chris Lattner | 41822c7 | 2003-08-23 23:49:42 +0000 | [diff] [blame] | 427 | "PhysReg in PhysRegsUseOrder, but is not allocated?"); |
| 428 | if (PhysRegsUsed[R]) { |
| 429 | // If the current register is compatible, use it. |
| 430 | if (RegInfo->getRegClass(R) == RC) { |
| 431 | PhysReg = R; |
| 432 | break; |
| 433 | } else { |
| 434 | // If one of the registers aliased to the current register is |
| 435 | // compatible, use it. |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 436 | for (const unsigned *AliasSet = RegInfo->getAliasSet(R); |
| 437 | *AliasSet; ++AliasSet) { |
| 438 | if (RegInfo->getRegClass(*AliasSet) == RC) { |
| 439 | PhysReg = *AliasSet; // Take an aliased register |
| 440 | break; |
| 441 | } |
| 442 | } |
Chris Lattner | 41822c7 | 2003-08-23 23:49:42 +0000 | [diff] [blame] | 443 | } |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 444 | } |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 447 | assert(PhysReg && "Physical register not assigned!?!?"); |
| 448 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 449 | // At this point PhysRegsUseOrder[i] is the least recently used register of |
| 450 | // compatible register class. Spill it to memory and reap its remains. |
Chris Lattner | c21be92 | 2002-12-16 17:44:42 +0000 | [diff] [blame] | 451 | spillPhysReg(MBB, I, PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | // 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] | 455 | assignVirtToPhysReg(VirtReg, PhysReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 456 | return PhysReg; |
| 457 | } |
| 458 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 459 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 460 | /// reloadVirtReg - This method loads the specified virtual register into a |
| 461 | /// physical register, returning the physical register chosen. This updates the |
| 462 | /// regalloc data structures to reflect the fact that the virtual reg is now |
| 463 | /// alive in a physical register, and the previous one isn't. |
| 464 | /// |
| 465 | unsigned RA::reloadVirtReg(MachineBasicBlock &MBB, |
| 466 | MachineBasicBlock::iterator &I, |
| 467 | unsigned VirtReg) { |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 468 | if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) { |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 469 | MarkPhysRegRecentlyUsed(PR); |
| 470 | return PR; // Already have this value available! |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 473 | unsigned PhysReg = getReg(MBB, I, VirtReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 474 | |
Chris Lattner | ff863ba | 2002-12-25 05:05:46 +0000 | [diff] [blame] | 475 | const TargetRegisterClass *RC = MF->getSSARegMap()->getRegClass(VirtReg); |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 476 | int FrameIndex = getStackSpaceFor(VirtReg, RC); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 477 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 478 | markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded |
| 479 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 480 | DEBUG(std::cerr << " Reloading %reg" << VirtReg << " into " |
| 481 | << RegInfo->getName(PhysReg) << "\n"); |
| 482 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 483 | // Add move instruction(s) |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 484 | RegInfo->loadRegFromStackSlot(MBB, I, PhysReg, FrameIndex, RC); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 485 | ++NumReloaded; // Update statistics |
| 486 | return PhysReg; |
| 487 | } |
| 488 | |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 489 | |
| 490 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 491 | void RA::AllocateBasicBlock(MachineBasicBlock &MBB) { |
| 492 | // loop over each instruction |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 493 | MachineBasicBlock::iterator MI = MBB.begin(); |
| 494 | for (; MI != MBB.end(); ++MI) { |
Chris Lattner | 3501fea | 2003-01-14 22:00:31 +0000 | [diff] [blame] | 495 | const TargetInstrDescriptor &TID = TM->getInstrInfo().get(MI->getOpcode()); |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 496 | DEBUG(std::cerr << "\nStarting RegAlloc of: " << *MI; |
| 497 | std::cerr << " Regs have values: "; |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 498 | for (unsigned i = 0; i != RegInfo->getNumRegs(); ++i) |
| 499 | if (PhysRegsUsed[i] != -1) |
| 500 | std::cerr << "[" << RegInfo->getName(i) |
| 501 | << ",%reg" << PhysRegsUsed[i] << "] "; |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 502 | std::cerr << "\n"); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 503 | |
Chris Lattner | ae64043 | 2002-12-17 02:50:10 +0000 | [diff] [blame] | 504 | // Loop over the implicit uses, making sure that they are at the head of the |
| 505 | // use order list, so they don't get reallocated. |
Alkis Evlogimenos | 73ff512 | 2003-10-08 05:20:08 +0000 | [diff] [blame] | 506 | for (const unsigned *ImplicitUses = TID.ImplicitUses; |
| 507 | *ImplicitUses; ++ImplicitUses) |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 508 | MarkPhysRegRecentlyUsed(*ImplicitUses); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 509 | |
Brian Gaeke | 53b99a0 | 2003-08-15 21:19:25 +0000 | [diff] [blame] | 510 | // Get the used operands into registers. This has the potential to spill |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 511 | // incoming values if we are out of registers. Note that we completely |
| 512 | // ignore physical register uses here. We assume that if an explicit |
| 513 | // physical register is referenced by the instruction, that it is guaranteed |
| 514 | // to be live-in, or the input is badly hosed. |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 515 | // |
| 516 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) |
Alkis Evlogimenos | 4d7af65 | 2003-12-14 13:24:17 +0000 | [diff] [blame] | 517 | if (MI->getOperand(i).isUse() && |
Chris Lattner | 1cbe4d0 | 2004-02-10 21:12:22 +0000 | [diff] [blame] | 518 | !MI->getOperand(i).isDef() && MI->getOperand(i).isRegister() && |
| 519 | MRegisterInfo::isVirtualRegister(MI->getOperand(i).getReg())) { |
Alkis Evlogimenos | be766c7 | 2004-02-13 21:01:20 +0000 | [diff] [blame^] | 520 | unsigned VirtSrcReg = MI->getOperand(i).getReg(); |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 521 | unsigned PhysSrcReg = reloadVirtReg(MBB, MI, VirtSrcReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 522 | MI->SetMachineOperandReg(i, PhysSrcReg); // Assign the input register |
| 523 | } |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 524 | |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 525 | if (!DisableKill) { |
| 526 | // If this instruction is the last user of anything in registers, kill the |
| 527 | // value, freeing the register being used, so it doesn't need to be |
| 528 | // spilled to memory. |
| 529 | // |
| 530 | for (LiveVariables::killed_iterator KI = LV->killed_begin(MI), |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 531 | KE = LV->killed_end(MI); KI != KE; ++KI) { |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 532 | unsigned VirtReg = KI->second; |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 533 | unsigned PhysReg = VirtReg; |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 534 | if (MRegisterInfo::isVirtualRegister(VirtReg)) { |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 535 | unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg); |
| 536 | PhysReg = PhysRegSlot; |
| 537 | assert(PhysReg != 0); |
| 538 | PhysRegSlot = 0; |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 539 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 540 | |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 541 | if (PhysReg) { |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 542 | DEBUG(std::cerr << " Last use of " << RegInfo->getName(PhysReg) |
| 543 | << "[%reg" << VirtReg <<"], removing it from live set\n"); |
Chris Lattner | d9ac6a7 | 2003-08-05 00:49:09 +0000 | [diff] [blame] | 544 | removePhysReg(PhysReg); |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 545 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 546 | } |
| 547 | } |
| 548 | |
| 549 | // Loop over all of the operands of the instruction, spilling registers that |
| 550 | // are defined, and marking explicit destinations in the PhysRegsUsed map. |
| 551 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) |
Chris Lattner | 3d878d8 | 2004-02-10 20:41:10 +0000 | [diff] [blame] | 552 | if (MI->getOperand(i).isDef() && MI->getOperand(i).isRegister() && |
| 553 | MRegisterInfo::isPhysicalRegister(MI->getOperand(i).getReg())) { |
Alkis Evlogimenos | be766c7 | 2004-02-13 21:01:20 +0000 | [diff] [blame^] | 554 | unsigned Reg = MI->getOperand(i).getReg(); |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 555 | spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in the reg |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 556 | PhysRegsUsed[Reg] = 0; // It is free and reserved now |
| 557 | PhysRegsUseOrder.push_back(Reg); |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 558 | for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg); |
| 559 | *AliasSet; ++AliasSet) { |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 560 | PhysRegsUseOrder.push_back(*AliasSet); |
| 561 | PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 562 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | // Loop over the implicit defs, spilling them as well. |
Alkis Evlogimenos | efe995a | 2003-12-13 01:20:58 +0000 | [diff] [blame] | 566 | for (const unsigned *ImplicitDefs = TID.ImplicitDefs; |
| 567 | *ImplicitDefs; ++ImplicitDefs) { |
| 568 | unsigned Reg = *ImplicitDefs; |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 569 | spillPhysReg(MBB, MI, Reg); |
Alkis Evlogimenos | efe995a | 2003-12-13 01:20:58 +0000 | [diff] [blame] | 570 | PhysRegsUseOrder.push_back(Reg); |
| 571 | PhysRegsUsed[Reg] = 0; // It is free and reserved now |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 572 | for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg); |
| 573 | *AliasSet; ++AliasSet) { |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 574 | PhysRegsUseOrder.push_back(*AliasSet); |
| 575 | PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 576 | } |
Alkis Evlogimenos | efe995a | 2003-12-13 01:20:58 +0000 | [diff] [blame] | 577 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 578 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 579 | // Okay, we have allocated all of the source operands and spilled any values |
| 580 | // that would be destroyed by defs of this instruction. Loop over the |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 581 | // implicit defs and assign them to a register, spilling incoming values if |
| 582 | // we need to scavenge a register. |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 583 | // |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 584 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) |
Chris Lattner | 1cbe4d0 | 2004-02-10 21:12:22 +0000 | [diff] [blame] | 585 | if (MI->getOperand(i).isDef() && MI->getOperand(i).isRegister() && |
| 586 | MRegisterInfo::isVirtualRegister(MI->getOperand(i).getReg())) { |
Alkis Evlogimenos | be766c7 | 2004-02-13 21:01:20 +0000 | [diff] [blame^] | 587 | unsigned DestVirtReg = MI->getOperand(i).getReg(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 588 | unsigned DestPhysReg; |
| 589 | |
Alkis Evlogimenos | 9af9dbd | 2003-12-18 13:08:52 +0000 | [diff] [blame] | 590 | // If DestVirtReg already has a value, use it. |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 591 | if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg))) |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 592 | DestPhysReg = getReg(MBB, MI, DestVirtReg); |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 593 | markVirtRegModified(DestVirtReg); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 594 | MI->SetMachineOperandReg(i, DestPhysReg); // Assign the output register |
| 595 | } |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 596 | |
| 597 | if (!DisableKill) { |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 598 | // If this instruction defines any registers that are immediately dead, |
| 599 | // kill them now. |
| 600 | // |
| 601 | for (LiveVariables::killed_iterator KI = LV->dead_begin(MI), |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 602 | KE = LV->dead_end(MI); KI != KE; ++KI) { |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 603 | unsigned VirtReg = KI->second; |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 604 | unsigned PhysReg = VirtReg; |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 605 | if (MRegisterInfo::isVirtualRegister(VirtReg)) { |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 606 | unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg); |
| 607 | PhysReg = PhysRegSlot; |
| 608 | assert(PhysReg != 0); |
| 609 | PhysRegSlot = 0; |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 610 | } |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 611 | |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 612 | if (PhysReg) { |
Chris Lattner | b8822ad | 2003-08-04 23:36:39 +0000 | [diff] [blame] | 613 | DEBUG(std::cerr << " Register " << RegInfo->getName(PhysReg) |
| 614 | << " [%reg" << VirtReg |
| 615 | << "] is never used, removing it frame live list\n"); |
Chris Lattner | d572563 | 2003-05-12 03:54:14 +0000 | [diff] [blame] | 616 | removePhysReg(PhysReg); |
| 617 | } |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 618 | } |
| 619 | } |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | // Rewind the iterator to point to the first flow control instruction... |
Chris Lattner | 3501fea | 2003-01-14 22:00:31 +0000 | [diff] [blame] | 623 | const TargetInstrInfo &TII = TM->getInstrInfo(); |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 624 | MI = MBB.end(); |
| 625 | while (MI != MBB.begin() && TII.isTerminatorInstr((--MI)->getOpcode())); |
| 626 | ++MI; |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 627 | |
| 628 | // Spill all physical registers holding virtual registers now. |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 629 | for (unsigned i = 0, e = RegInfo->getNumRegs(); i != e; ++i) |
| 630 | if (PhysRegsUsed[i] != -1) |
| 631 | if (unsigned VirtReg = PhysRegsUsed[i]) |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 632 | spillVirtReg(MBB, MI, VirtReg, i); |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 633 | else |
| 634 | removePhysReg(i); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 635 | |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 636 | #ifndef NDEBUG |
| 637 | bool AllOk = true; |
| 638 | for (unsigned i = 0, e = Virt2PhysRegMap.size(); i != e; ++i) |
| 639 | if (unsigned PR = Virt2PhysRegMap[i]) { |
| 640 | std::cerr << "Register still mapped: " << i << " -> " << PR << "\n"; |
| 641 | AllOk = false; |
| 642 | } |
| 643 | assert(AllOk && "Virtual registers still in phys regs?"); |
| 644 | #endif |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 645 | |
Chris Lattner | 128c2aa | 2003-08-17 18:01:15 +0000 | [diff] [blame] | 646 | // Clear any physical register which appear live at the end of the basic |
| 647 | // block, but which do not hold any virtual registers. e.g., the stack |
| 648 | // pointer. |
| 649 | PhysRegsUseOrder.clear(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 650 | } |
| 651 | |
Chris Lattner | 86c69a6 | 2002-12-17 03:16:10 +0000 | [diff] [blame] | 652 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 653 | /// runOnMachineFunction - Register allocate the whole function |
| 654 | /// |
| 655 | bool RA::runOnMachineFunction(MachineFunction &Fn) { |
| 656 | DEBUG(std::cerr << "Machine Function " << "\n"); |
| 657 | MF = &Fn; |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 658 | TM = &Fn.getTarget(); |
| 659 | RegInfo = TM->getRegisterInfo(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 660 | |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 661 | PhysRegsUsed.assign(RegInfo->getNumRegs(), -1); |
Chris Lattner | 64667b6 | 2004-02-09 01:26:13 +0000 | [diff] [blame] | 662 | |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 663 | // initialize the virtual->physical register map to have a 'null' |
| 664 | // mapping for all virtual registers |
| 665 | Virt2PhysRegMap.assign(MF->getSSARegMap()->getNumVirtualRegs(), 0); |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 666 | |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 667 | if (!DisableKill) |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 668 | LV = &getAnalysis<LiveVariables>(); |
Chris Lattner | 82bee0f | 2002-12-18 08:14:26 +0000 | [diff] [blame] | 669 | |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 670 | // Loop over all of the basic blocks, eliminating virtual register references |
| 671 | for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end(); |
| 672 | MBB != MBBe; ++MBB) |
| 673 | AllocateBasicBlock(*MBB); |
| 674 | |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 675 | StackSlotForVirtReg.clear(); |
Alkis Evlogimenos | 4de473b | 2004-02-13 18:20:47 +0000 | [diff] [blame] | 676 | PhysRegsUsed.clear(); |
Chris Lattner | 91a452b | 2003-01-13 00:25:40 +0000 | [diff] [blame] | 677 | VirtRegModified.clear(); |
Chris Lattner | ecea563 | 2004-02-09 02:12:04 +0000 | [diff] [blame] | 678 | Virt2PhysRegMap.clear(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 679 | return true; |
| 680 | } |
| 681 | |
Chris Lattner | ef09c63 | 2004-01-31 21:27:19 +0000 | [diff] [blame] | 682 | FunctionPass *llvm::createLocalRegisterAllocator() { |
Chris Lattner | 580f9be | 2002-12-28 20:40:43 +0000 | [diff] [blame] | 683 | return new RA(); |
Chris Lattner | b74e83c | 2002-12-16 16:15:28 +0000 | [diff] [blame] | 684 | } |