Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 1 | //===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +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. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 5cdfbad | 2003-05-07 20:08:36 +0000 | [diff] [blame] | 10 | // This file implements the LiveVariable analysis pass. For each machine |
| 11 | // instruction in the function, this pass calculates the set of registers that |
| 12 | // are immediately dead after the instruction (i.e., the instruction calculates |
| 13 | // the value, but it is never used) and the set of registers that are used by |
| 14 | // the instruction, but are never used after the instruction (i.e., they are |
| 15 | // killed). |
| 16 | // |
| 17 | // This class computes live variables using are sparse implementation based on |
| 18 | // the machine code SSA form. This class computes live variable information for |
| 19 | // each virtual and _register allocatable_ physical register in a function. It |
| 20 | // uses the dominance properties of SSA form to efficiently compute live |
| 21 | // variables for virtual registers, and assumes that physical registers are only |
| 22 | // live within a single basic block (allowing it to do a single local analysis |
| 23 | // to resolve physical register lifetimes in each basic block). If a physical |
| 24 | // register is not register allocatable, it is not tracked. This is useful for |
| 25 | // things like the stack pointer and condition codes. |
| 26 | // |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 27 | //===----------------------------------------------------------------------===// |
| 28 | |
| 29 | #include "llvm/CodeGen/LiveVariables.h" |
| 30 | #include "llvm/CodeGen/MachineInstr.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Owen Anderson | bd3ba46 | 2008-08-04 23:54:43 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/Passes.h" |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 33 | #include "llvm/Target/TargetRegisterInfo.h" |
Chris Lattner | 3501fea | 2003-01-14 22:00:31 +0000 | [diff] [blame] | 34 | #include "llvm/Target/TargetInstrInfo.h" |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 35 | #include "llvm/Target/TargetMachine.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/DepthFirstIterator.h" |
Evan Cheng | 0410407 | 2007-06-27 05:23:00 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/SmallPtrSet.h" |
Owen Anderson | bffdf66 | 2008-06-27 07:05:59 +0000 | [diff] [blame] | 38 | #include "llvm/ADT/SmallSet.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 39 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | 6fcd8d8 | 2004-10-25 18:44:14 +0000 | [diff] [blame] | 40 | #include "llvm/Config/alloca.h" |
Chris Lattner | 657b4d1 | 2005-08-24 00:09:33 +0000 | [diff] [blame] | 41 | #include <algorithm> |
Chris Lattner | 49a5aaa | 2004-01-30 22:08:53 +0000 | [diff] [blame] | 42 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 43 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 44 | char LiveVariables::ID = 0; |
Chris Lattner | 5d8925c | 2006-08-27 22:30:17 +0000 | [diff] [blame] | 45 | static RegisterPass<LiveVariables> X("livevars", "Live Variable Analysis"); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 46 | |
Owen Anderson | bd3ba46 | 2008-08-04 23:54:43 +0000 | [diff] [blame] | 47 | |
| 48 | void LiveVariables::getAnalysisUsage(AnalysisUsage &AU) const { |
| 49 | AU.addRequiredID(UnreachableMachineBlockElimID); |
| 50 | AU.setPreservesAll(); |
| 51 | } |
| 52 | |
Chris Lattner | dacceef | 2006-01-04 05:40:30 +0000 | [diff] [blame] | 53 | void LiveVariables::VarInfo::dump() const { |
Bill Wendling | bcd2498 | 2006-12-07 20:28:15 +0000 | [diff] [blame] | 54 | cerr << " Alive in blocks: "; |
Chris Lattner | dacceef | 2006-01-04 05:40:30 +0000 | [diff] [blame] | 55 | for (unsigned i = 0, e = AliveBlocks.size(); i != e; ++i) |
Bill Wendling | bcd2498 | 2006-12-07 20:28:15 +0000 | [diff] [blame] | 56 | if (AliveBlocks[i]) cerr << i << ", "; |
Owen Anderson | a018540 | 2007-11-08 01:20:48 +0000 | [diff] [blame] | 57 | cerr << " Used in blocks: "; |
| 58 | for (unsigned i = 0, e = UsedBlocks.size(); i != e; ++i) |
| 59 | if (UsedBlocks[i]) cerr << i << ", "; |
Bill Wendling | bcd2498 | 2006-12-07 20:28:15 +0000 | [diff] [blame] | 60 | cerr << "\n Killed by:"; |
Chris Lattner | dacceef | 2006-01-04 05:40:30 +0000 | [diff] [blame] | 61 | if (Kills.empty()) |
Bill Wendling | bcd2498 | 2006-12-07 20:28:15 +0000 | [diff] [blame] | 62 | cerr << " No instructions.\n"; |
Chris Lattner | dacceef | 2006-01-04 05:40:30 +0000 | [diff] [blame] | 63 | else { |
| 64 | for (unsigned i = 0, e = Kills.size(); i != e; ++i) |
Bill Wendling | bcd2498 | 2006-12-07 20:28:15 +0000 | [diff] [blame] | 65 | cerr << "\n #" << i << ": " << *Kills[i]; |
| 66 | cerr << "\n"; |
Chris Lattner | dacceef | 2006-01-04 05:40:30 +0000 | [diff] [blame] | 67 | } |
| 68 | } |
| 69 | |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 70 | /// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg. |
Chris Lattner | fb2cb69 | 2003-05-12 14:24:00 +0000 | [diff] [blame] | 71 | LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) { |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 72 | assert(TargetRegisterInfo::isVirtualRegister(RegIdx) && |
Chris Lattner | fb2cb69 | 2003-05-12 14:24:00 +0000 | [diff] [blame] | 73 | "getVarInfo: not a virtual register!"); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 74 | RegIdx -= TargetRegisterInfo::FirstVirtualRegister; |
Chris Lattner | fb2cb69 | 2003-05-12 14:24:00 +0000 | [diff] [blame] | 75 | if (RegIdx >= VirtRegInfo.size()) { |
| 76 | if (RegIdx >= 2*VirtRegInfo.size()) |
| 77 | VirtRegInfo.resize(RegIdx*2); |
| 78 | else |
| 79 | VirtRegInfo.resize(2*VirtRegInfo.size()); |
| 80 | } |
Evan Cheng | c6a2410 | 2007-03-17 09:29:54 +0000 | [diff] [blame] | 81 | VarInfo &VI = VirtRegInfo[RegIdx]; |
| 82 | VI.AliveBlocks.resize(MF->getNumBlockIDs()); |
Owen Anderson | a018540 | 2007-11-08 01:20:48 +0000 | [diff] [blame] | 83 | VI.UsedBlocks.resize(MF->getNumBlockIDs()); |
Evan Cheng | c6a2410 | 2007-03-17 09:29:54 +0000 | [diff] [blame] | 84 | return VI; |
Chris Lattner | fb2cb69 | 2003-05-12 14:24:00 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Owen Anderson | 40a627d | 2008-01-15 22:58:11 +0000 | [diff] [blame] | 87 | void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo, |
| 88 | MachineBasicBlock *DefBlock, |
Evan Cheng | 5618490 | 2007-05-08 19:00:00 +0000 | [diff] [blame] | 89 | MachineBasicBlock *MBB, |
| 90 | std::vector<MachineBasicBlock*> &WorkList) { |
Chris Lattner | 8ba9771 | 2004-07-01 04:29:47 +0000 | [diff] [blame] | 91 | unsigned BBNum = MBB->getNumber(); |
Owen Anderson | 7047dd4 | 2008-01-15 22:02:46 +0000 | [diff] [blame] | 92 | |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 93 | // Check to see if this basic block is one of the killing blocks. If so, |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 94 | // remove it. |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 95 | for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i) |
Chris Lattner | 74de8b1 | 2004-07-19 07:04:55 +0000 | [diff] [blame] | 96 | if (VRInfo.Kills[i]->getParent() == MBB) { |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 97 | VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry |
| 98 | break; |
| 99 | } |
Owen Anderson | 7047dd4 | 2008-01-15 22:02:46 +0000 | [diff] [blame] | 100 | |
Owen Anderson | 40a627d | 2008-01-15 22:58:11 +0000 | [diff] [blame] | 101 | if (MBB == DefBlock) return; // Terminate recursion |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 102 | |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 103 | if (VRInfo.AliveBlocks[BBNum]) |
| 104 | return; // We already know the block is live |
| 105 | |
| 106 | // Mark the variable known alive in this bb |
| 107 | VRInfo.AliveBlocks[BBNum] = true; |
| 108 | |
Evan Cheng | 5618490 | 2007-05-08 19:00:00 +0000 | [diff] [blame] | 109 | for (MachineBasicBlock::const_pred_reverse_iterator PI = MBB->pred_rbegin(), |
| 110 | E = MBB->pred_rend(); PI != E; ++PI) |
| 111 | WorkList.push_back(*PI); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 112 | } |
| 113 | |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 114 | void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo, |
Owen Anderson | 40a627d | 2008-01-15 22:58:11 +0000 | [diff] [blame] | 115 | MachineBasicBlock *DefBlock, |
Evan Cheng | 5618490 | 2007-05-08 19:00:00 +0000 | [diff] [blame] | 116 | MachineBasicBlock *MBB) { |
| 117 | std::vector<MachineBasicBlock*> WorkList; |
Owen Anderson | 40a627d | 2008-01-15 22:58:11 +0000 | [diff] [blame] | 118 | MarkVirtRegAliveInBlock(VRInfo, DefBlock, MBB, WorkList); |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 119 | |
Evan Cheng | 5618490 | 2007-05-08 19:00:00 +0000 | [diff] [blame] | 120 | while (!WorkList.empty()) { |
| 121 | MachineBasicBlock *Pred = WorkList.back(); |
| 122 | WorkList.pop_back(); |
Owen Anderson | 40a627d | 2008-01-15 22:58:11 +0000 | [diff] [blame] | 123 | MarkVirtRegAliveInBlock(VRInfo, DefBlock, Pred, WorkList); |
Evan Cheng | 5618490 | 2007-05-08 19:00:00 +0000 | [diff] [blame] | 124 | } |
| 125 | } |
| 126 | |
Owen Anderson | 7047dd4 | 2008-01-15 22:02:46 +0000 | [diff] [blame] | 127 | void LiveVariables::HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB, |
Misha Brukman | 09ba906 | 2004-06-24 21:31:16 +0000 | [diff] [blame] | 128 | MachineInstr *MI) { |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 129 | assert(MRI->getVRegDef(reg) && "Register use before def!"); |
Alkis Evlogimenos | 2e58a41 | 2004-09-01 22:34:52 +0000 | [diff] [blame] | 130 | |
Owen Anderson | a018540 | 2007-11-08 01:20:48 +0000 | [diff] [blame] | 131 | unsigned BBNum = MBB->getNumber(); |
| 132 | |
Owen Anderson | 7047dd4 | 2008-01-15 22:02:46 +0000 | [diff] [blame] | 133 | VarInfo& VRInfo = getVarInfo(reg); |
Owen Anderson | a018540 | 2007-11-08 01:20:48 +0000 | [diff] [blame] | 134 | VRInfo.UsedBlocks[BBNum] = true; |
Evan Cheng | 38b7ca6 | 2007-04-17 20:22:11 +0000 | [diff] [blame] | 135 | VRInfo.NumUses++; |
Evan Cheng | c6a2410 | 2007-03-17 09:29:54 +0000 | [diff] [blame] | 136 | |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 137 | // Check to see if this basic block is already a kill block. |
Chris Lattner | 74de8b1 | 2004-07-19 07:04:55 +0000 | [diff] [blame] | 138 | if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) { |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 139 | // Yes, this register is killed in this basic block already. Increase the |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 140 | // live range by updating the kill instruction. |
Chris Lattner | 74de8b1 | 2004-07-19 07:04:55 +0000 | [diff] [blame] | 141 | VRInfo.Kills.back() = MI; |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 142 | return; |
| 143 | } |
| 144 | |
| 145 | #ifndef NDEBUG |
| 146 | for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i) |
Chris Lattner | 74de8b1 | 2004-07-19 07:04:55 +0000 | [diff] [blame] | 147 | assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!"); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 148 | #endif |
| 149 | |
Bill Wendling | ebcba61 | 2008-06-23 23:41:14 +0000 | [diff] [blame] | 150 | // This situation can occur: |
| 151 | // |
| 152 | // ,------. |
| 153 | // | | |
| 154 | // | v |
| 155 | // | t2 = phi ... t1 ... |
| 156 | // | | |
| 157 | // | v |
| 158 | // | t1 = ... |
| 159 | // | ... = ... t1 ... |
| 160 | // | | |
| 161 | // `------' |
| 162 | // |
| 163 | // where there is a use in a PHI node that's a predecessor to the defining |
| 164 | // block. We don't want to mark all predecessors as having the value "alive" |
| 165 | // in this case. |
| 166 | if (MBB == MRI->getVRegDef(reg)->getParent()) return; |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 167 | |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 168 | // Add a new kill entry for this basic block. If this virtual register is |
| 169 | // already marked as alive in this basic block, that means it is alive in at |
| 170 | // least one of the successor blocks, it's not a kill. |
Owen Anderson | a018540 | 2007-11-08 01:20:48 +0000 | [diff] [blame] | 171 | if (!VRInfo.AliveBlocks[BBNum]) |
Evan Cheng | e2ee996 | 2007-03-09 09:48:56 +0000 | [diff] [blame] | 172 | VRInfo.Kills.push_back(MI); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 173 | |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 174 | // Update all dominating blocks to mark them as "known live". |
Chris Lattner | f25fb4b | 2004-05-01 21:24:24 +0000 | [diff] [blame] | 175 | for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), |
| 176 | E = MBB->pred_end(); PI != E; ++PI) |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 177 | MarkVirtRegAliveInBlock(VRInfo, MRI->getVRegDef(reg)->getParent(), *PI); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 180 | /// FindLastPartialDef - Return the last partial def of the specified register. |
| 181 | /// Also returns the sub-register that's defined. |
| 182 | MachineInstr *LiveVariables::FindLastPartialDef(unsigned Reg, |
| 183 | unsigned &PartDefReg) { |
| 184 | unsigned LastDefReg = 0; |
| 185 | unsigned LastDefDist = 0; |
| 186 | MachineInstr *LastDef = NULL; |
| 187 | for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); |
| 188 | unsigned SubReg = *SubRegs; ++SubRegs) { |
| 189 | MachineInstr *Def = PhysRegDef[SubReg]; |
| 190 | if (!Def) |
| 191 | continue; |
| 192 | unsigned Dist = DistanceMap[Def]; |
| 193 | if (Dist > LastDefDist) { |
| 194 | LastDefReg = SubReg; |
| 195 | LastDef = Def; |
| 196 | LastDefDist = Dist; |
| 197 | } |
| 198 | } |
| 199 | PartDefReg = LastDefReg; |
| 200 | return LastDef; |
| 201 | } |
| 202 | |
Bill Wendling | 6d79474 | 2008-02-20 09:15:16 +0000 | [diff] [blame] | 203 | /// HandlePhysRegUse - Turn previous partial def's into read/mod/writes. Add |
| 204 | /// implicit defs to a machine instruction if there was an earlier def of its |
| 205 | /// super-register. |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 206 | void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) { |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 207 | // If there was a previous use or a "full" def all is well. |
| 208 | if (!PhysRegDef[Reg] && !PhysRegUse[Reg]) { |
| 209 | // Otherwise, the last sub-register def implicitly defines this register. |
| 210 | // e.g. |
| 211 | // AH = |
| 212 | // AL = ... <imp-def EAX>, <imp-kill AH> |
| 213 | // = AH |
| 214 | // ... |
| 215 | // = EAX |
| 216 | // All of the sub-registers must have been defined before the use of Reg! |
| 217 | unsigned PartDefReg = 0; |
| 218 | MachineInstr *LastPartialDef = FindLastPartialDef(Reg, PartDefReg); |
| 219 | // If LastPartialDef is NULL, it must be using a livein register. |
| 220 | if (LastPartialDef) { |
| 221 | LastPartialDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/, |
| 222 | true/*IsImp*/)); |
| 223 | PhysRegDef[Reg] = LastPartialDef; |
Owen Anderson | bbf5583 | 2008-08-14 23:41:38 +0000 | [diff] [blame] | 224 | SmallSet<unsigned, 8> Processed; |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 225 | for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); |
| 226 | unsigned SubReg = *SubRegs; ++SubRegs) { |
| 227 | if (Processed.count(SubReg)) |
| 228 | continue; |
| 229 | if (SubReg == PartDefReg || TRI->isSubRegister(PartDefReg, SubReg)) |
| 230 | continue; |
| 231 | // This part of Reg was defined before the last partial def. It's killed |
| 232 | // here. |
| 233 | LastPartialDef->addOperand(MachineOperand::CreateReg(SubReg, |
| 234 | false/*IsDef*/, |
| 235 | true/*IsImp*/)); |
| 236 | PhysRegDef[SubReg] = LastPartialDef; |
| 237 | for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS) |
| 238 | Processed.insert(*SS); |
| 239 | } |
| 240 | } |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 241 | } |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 242 | |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 243 | // There was an earlier def of a super-register. Add implicit def to that MI. |
Bill Wendling | 6d79474 | 2008-02-20 09:15:16 +0000 | [diff] [blame] | 244 | // |
| 245 | // A: EAX = ... |
| 246 | // B: ... = AX |
| 247 | // |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 248 | // Add implicit def to A if there isn't a use of AX (or EAX) before B. |
| 249 | if (!PhysRegUse[Reg]) { |
| 250 | MachineInstr *Def = PhysRegDef[Reg]; |
| 251 | if (Def && !Def->modifiesRegister(Reg)) |
Bill Wendling | 6d79474 | 2008-02-20 09:15:16 +0000 | [diff] [blame] | 252 | Def->addOperand(MachineOperand::CreateReg(Reg, |
| 253 | true /*IsDef*/, |
| 254 | true /*IsImp*/)); |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 255 | } |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 256 | |
| 257 | // Remember this use. |
| 258 | PhysRegUse[Reg] = MI; |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 259 | for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 260 | unsigned SubReg = *SubRegs; ++SubRegs) |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 261 | PhysRegUse[SubReg] = MI; |
Evan Cheng | 4efe741 | 2007-06-26 21:03:35 +0000 | [diff] [blame] | 262 | } |
| 263 | |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 264 | /// hasRegisterUseBelow - Return true if the specified register is used after |
| 265 | /// the current instruction and before it's next definition. |
| 266 | bool LiveVariables::hasRegisterUseBelow(unsigned Reg, |
| 267 | MachineBasicBlock::iterator I, |
| 268 | MachineBasicBlock *MBB) { |
| 269 | if (I == MBB->end()) |
| 270 | return false; |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 271 | |
| 272 | // First find out if there are any uses / defs below. |
| 273 | bool hasDistInfo = true; |
| 274 | unsigned CurDist = DistanceMap[I]; |
| 275 | SmallVector<MachineInstr*, 4> Uses; |
| 276 | SmallVector<MachineInstr*, 4> Defs; |
| 277 | for (MachineRegisterInfo::reg_iterator RI = MRI->reg_begin(Reg), |
| 278 | RE = MRI->reg_end(); RI != RE; ++RI) { |
| 279 | MachineOperand &UDO = RI.getOperand(); |
| 280 | MachineInstr *UDMI = &*RI; |
| 281 | if (UDMI->getParent() != MBB) |
| 282 | continue; |
| 283 | DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UDMI); |
| 284 | bool isBelow = false; |
| 285 | if (DI == DistanceMap.end()) { |
| 286 | // Must be below if it hasn't been assigned a distance yet. |
| 287 | isBelow = true; |
| 288 | hasDistInfo = false; |
| 289 | } else if (DI->second > CurDist) |
| 290 | isBelow = true; |
| 291 | if (isBelow) { |
| 292 | if (UDO.isUse()) |
| 293 | Uses.push_back(UDMI); |
| 294 | if (UDO.isDef()) |
| 295 | Defs.push_back(UDMI); |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 296 | } |
| 297 | } |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 298 | |
| 299 | if (Uses.empty()) |
| 300 | // No uses below. |
| 301 | return false; |
| 302 | else if (!Uses.empty() && Defs.empty()) |
| 303 | // There are uses below but no defs below. |
| 304 | return true; |
| 305 | // There are both uses and defs below. We need to know which comes first. |
| 306 | if (!hasDistInfo) { |
| 307 | // Complete DistanceMap for this MBB. This information is computed only |
| 308 | // once per MBB. |
| 309 | ++I; |
| 310 | ++CurDist; |
| 311 | for (MachineBasicBlock::iterator E = MBB->end(); I != E; ++I, ++CurDist) |
| 312 | DistanceMap.insert(std::make_pair(I, CurDist)); |
| 313 | } |
| 314 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 315 | unsigned EarliestUse = DistanceMap[Uses[0]]; |
| 316 | for (unsigned i = 1, e = Uses.size(); i != e; ++i) { |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 317 | unsigned Dist = DistanceMap[Uses[i]]; |
| 318 | if (Dist < EarliestUse) |
| 319 | EarliestUse = Dist; |
| 320 | } |
| 321 | for (unsigned i = 0, e = Defs.size(); i != e; ++i) { |
| 322 | unsigned Dist = DistanceMap[Defs[i]]; |
| 323 | if (Dist < EarliestUse) |
| 324 | // The register is defined before its first use below. |
| 325 | return false; |
| 326 | } |
| 327 | return true; |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 330 | bool LiveVariables::HandlePhysRegKill(unsigned Reg) { |
| 331 | if (!PhysRegUse[Reg] && !PhysRegDef[Reg]) |
| 332 | return false; |
| 333 | |
| 334 | MachineInstr *LastRefOrPartRef = PhysRegUse[Reg] |
| 335 | ? PhysRegUse[Reg] : PhysRegDef[Reg]; |
| 336 | unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef]; |
| 337 | // The whole register is used. |
| 338 | // AL = |
| 339 | // AH = |
| 340 | // |
| 341 | // = AX |
| 342 | // = AL, AX<imp-use, kill> |
| 343 | // AX = |
| 344 | // |
| 345 | // Or whole register is defined, but not used at all. |
| 346 | // AX<dead> = |
| 347 | // ... |
| 348 | // AX = |
| 349 | // |
| 350 | // Or whole register is defined, but only partly used. |
| 351 | // AX<dead> = AL<imp-def> |
| 352 | // = AL<kill> |
| 353 | // AX = |
Owen Anderson | bbf5583 | 2008-08-14 23:41:38 +0000 | [diff] [blame] | 354 | SmallSet<unsigned, 8> PartUses; |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 355 | for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); |
| 356 | unsigned SubReg = *SubRegs; ++SubRegs) { |
| 357 | if (MachineInstr *Use = PhysRegUse[SubReg]) { |
| 358 | PartUses.insert(SubReg); |
| 359 | for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS) |
| 360 | PartUses.insert(*SS); |
| 361 | unsigned Dist = DistanceMap[Use]; |
| 362 | if (Dist > LastRefOrPartRefDist) { |
| 363 | LastRefOrPartRefDist = Dist; |
| 364 | LastRefOrPartRef = Use; |
Evan Cheng | 4efe741 | 2007-06-26 21:03:35 +0000 | [diff] [blame] | 365 | } |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 366 | } |
| 367 | } |
| 368 | if (LastRefOrPartRef == PhysRegDef[Reg]) |
| 369 | // Not used at all. |
| 370 | LastRefOrPartRef->addRegisterDead(Reg, TRI, true); |
| 371 | |
| 372 | /* Partial uses. Mark register def dead and add implicit def of |
| 373 | sub-registers which are used. |
| 374 | FIXME: LiveIntervalAnalysis can't handle this yet! |
| 375 | EAX<dead> = op AL<imp-def> |
| 376 | That is, EAX def is dead but AL def extends pass it. |
| 377 | Enable this after live interval analysis is fixed to improve codegen! |
| 378 | else if (!PhysRegUse[Reg]) { |
| 379 | PhysRegDef[Reg]->addRegisterDead(Reg, TRI, true); |
| 380 | for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); |
| 381 | unsigned SubReg = *SubRegs; ++SubRegs) { |
| 382 | if (PartUses.count(SubReg)) { |
| 383 | PhysRegDef[Reg]->addOperand(MachineOperand::CreateReg(SubReg, |
| 384 | true, true)); |
| 385 | LastRefOrPartRef->addRegisterKilled(SubReg, TRI, true); |
| 386 | for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS) |
| 387 | PartUses.erase(*SS); |
| 388 | } |
| 389 | } |
| 390 | } */ |
| 391 | else |
| 392 | LastRefOrPartRef->addRegisterKilled(Reg, TRI, true); |
| 393 | return true; |
| 394 | } |
| 395 | |
| 396 | void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI) { |
| 397 | // What parts of the register are previously defined? |
Owen Anderson | bffdf66 | 2008-06-27 07:05:59 +0000 | [diff] [blame] | 398 | SmallSet<unsigned, 32> Live; |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 399 | if (PhysRegDef[Reg] || PhysRegUse[Reg]) { |
| 400 | Live.insert(Reg); |
| 401 | for (const unsigned *SS = TRI->getSubRegisters(Reg); *SS; ++SS) |
| 402 | Live.insert(*SS); |
| 403 | } else { |
| 404 | for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); |
| 405 | unsigned SubReg = *SubRegs; ++SubRegs) { |
| 406 | // If a register isn't itself defined, but all parts that make up of it |
| 407 | // are defined, then consider it also defined. |
| 408 | // e.g. |
| 409 | // AL = |
| 410 | // AH = |
| 411 | // = AX |
| 412 | if (PhysRegDef[SubReg] || PhysRegUse[SubReg]) { |
| 413 | Live.insert(SubReg); |
| 414 | for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS) |
| 415 | Live.insert(*SS); |
| 416 | } |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 417 | } |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 418 | } |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 419 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 420 | // Start from the largest piece, find the last time any part of the register |
| 421 | // is referenced. |
| 422 | if (!HandlePhysRegKill(Reg)) { |
| 423 | // Only some of the sub-registers are used. |
| 424 | for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); |
| 425 | unsigned SubReg = *SubRegs; ++SubRegs) { |
| 426 | if (!Live.count(SubReg)) |
| 427 | // Skip if this sub-register isn't defined. |
| 428 | continue; |
| 429 | if (HandlePhysRegKill(SubReg)) { |
| 430 | Live.erase(SubReg); |
| 431 | for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS) |
| 432 | Live.erase(*SS); |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 433 | } |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 434 | } |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 435 | assert(Live.empty() && "Not all defined registers are killed / dead?"); |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 436 | } |
| 437 | |
Evan Cheng | 4efe741 | 2007-06-26 21:03:35 +0000 | [diff] [blame] | 438 | if (MI) { |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 439 | // Does this extend the live range of a super-register? |
Owen Anderson | bbf5583 | 2008-08-14 23:41:38 +0000 | [diff] [blame] | 440 | SmallSet<unsigned, 8> Processed; |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 441 | for (const unsigned *SuperRegs = TRI->getSuperRegisters(Reg); |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 442 | unsigned SuperReg = *SuperRegs; ++SuperRegs) { |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 443 | if (Processed.count(SuperReg)) |
| 444 | continue; |
| 445 | MachineInstr *LastRef = PhysRegUse[SuperReg] |
| 446 | ? PhysRegUse[SuperReg] : PhysRegDef[SuperReg]; |
| 447 | if (LastRef && LastRef != MI) { |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 448 | // The larger register is previously defined. Now a smaller part is |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 449 | // being re-defined. Treat it as read/mod/write if there are uses |
| 450 | // below. |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 451 | // EAX = |
| 452 | // AX = EAX<imp-use,kill>, EAX<imp-def> |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 453 | // ... |
| 454 | /// = EAX |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 455 | if (hasRegisterUseBelow(SuperReg, MI, MI->getParent())) { |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 456 | MI->addOperand(MachineOperand::CreateReg(SuperReg, false/*IsDef*/, |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 457 | true/*IsImp*/,true/*IsKill*/)); |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 458 | MI->addOperand(MachineOperand::CreateReg(SuperReg, true/*IsDef*/, |
| 459 | true/*IsImp*/)); |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 460 | PhysRegDef[SuperReg] = MI; |
| 461 | PhysRegUse[SuperReg] = NULL; |
| 462 | Processed.insert(SuperReg); |
| 463 | for (const unsigned *SS = TRI->getSubRegisters(SuperReg); *SS; ++SS) { |
| 464 | PhysRegDef[*SS] = MI; |
| 465 | PhysRegUse[*SS] = NULL; |
| 466 | Processed.insert(*SS); |
| 467 | } |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 468 | } else { |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 469 | // Otherwise, the super register is killed. |
| 470 | if (HandlePhysRegKill(SuperReg)) { |
| 471 | PhysRegDef[SuperReg] = NULL; |
| 472 | PhysRegUse[SuperReg] = NULL; |
| 473 | for (const unsigned *SS = TRI->getSubRegisters(SuperReg); *SS; ++SS) { |
| 474 | PhysRegDef[*SS] = NULL; |
| 475 | PhysRegUse[*SS] = NULL; |
| 476 | Processed.insert(*SS); |
| 477 | } |
| 478 | } |
Evan Cheng | 9420201 | 2008-03-19 00:52:20 +0000 | [diff] [blame] | 479 | } |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 480 | } |
Evan Cheng | 4efe741 | 2007-06-26 21:03:35 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 483 | // Remember this def. |
| 484 | PhysRegDef[Reg] = MI; |
| 485 | PhysRegUse[Reg] = NULL; |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 486 | for (const unsigned *SubRegs = TRI->getSubRegisters(Reg); |
Evan Cheng | 4efe741 | 2007-06-26 21:03:35 +0000 | [diff] [blame] | 487 | unsigned SubReg = *SubRegs; ++SubRegs) { |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 488 | PhysRegDef[SubReg] = MI; |
| 489 | PhysRegUse[SubReg] = NULL; |
Evan Cheng | 4efe741 | 2007-06-26 21:03:35 +0000 | [diff] [blame] | 490 | } |
Alkis Evlogimenos | 19b6486 | 2004-01-13 06:24:30 +0000 | [diff] [blame] | 491 | } |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 492 | } |
| 493 | |
Evan Cheng | c6a2410 | 2007-03-17 09:29:54 +0000 | [diff] [blame] | 494 | bool LiveVariables::runOnMachineFunction(MachineFunction &mf) { |
| 495 | MF = &mf; |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 496 | MRI = &mf.getRegInfo(); |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 497 | TRI = MF->getTarget().getRegisterInfo(); |
Chris Lattner | 96aef89 | 2004-02-09 01:35:21 +0000 | [diff] [blame] | 498 | |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 499 | ReservedRegisters = TRI->getReservedRegs(mf); |
Chris Lattner | 5cdfbad | 2003-05-07 20:08:36 +0000 | [diff] [blame] | 500 | |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 501 | unsigned NumRegs = TRI->getNumRegs(); |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 502 | PhysRegDef = new MachineInstr*[NumRegs]; |
| 503 | PhysRegUse = new MachineInstr*[NumRegs]; |
Evan Cheng | e96f501 | 2007-04-25 19:34:00 +0000 | [diff] [blame] | 504 | PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()]; |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 505 | std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0); |
| 506 | std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 507 | |
Bill Wendling | 6d79474 | 2008-02-20 09:15:16 +0000 | [diff] [blame] | 508 | /// Get some space for a respectable number of registers. |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 509 | VirtRegInfo.resize(64); |
Chris Lattner | d493b34 | 2005-04-09 15:23:25 +0000 | [diff] [blame] | 510 | |
Evan Cheng | c6a2410 | 2007-03-17 09:29:54 +0000 | [diff] [blame] | 511 | analyzePHINodes(mf); |
Bill Wendling | f7da4e9 | 2006-10-03 07:20:20 +0000 | [diff] [blame] | 512 | |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 513 | // Calculate live variable information in depth first order on the CFG of the |
| 514 | // function. This guarantees that we will see the definition of a virtual |
| 515 | // register before its uses due to dominance properties of SSA (except for PHI |
| 516 | // nodes, which are treated as a special case). |
Evan Cheng | c6a2410 | 2007-03-17 09:29:54 +0000 | [diff] [blame] | 517 | MachineBasicBlock *Entry = MF->begin(); |
Evan Cheng | 0410407 | 2007-06-27 05:23:00 +0000 | [diff] [blame] | 518 | SmallPtrSet<MachineBasicBlock*,16> Visited; |
Bill Wendling | 6d79474 | 2008-02-20 09:15:16 +0000 | [diff] [blame] | 519 | |
Evan Cheng | 0410407 | 2007-06-27 05:23:00 +0000 | [diff] [blame] | 520 | for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> > |
| 521 | DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited); |
| 522 | DFI != E; ++DFI) { |
Chris Lattner | f25fb4b | 2004-05-01 21:24:24 +0000 | [diff] [blame] | 523 | MachineBasicBlock *MBB = *DFI; |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 524 | |
Evan Cheng | b371f45 | 2007-02-19 21:49:54 +0000 | [diff] [blame] | 525 | // Mark live-in registers as live-in. |
| 526 | for (MachineBasicBlock::const_livein_iterator II = MBB->livein_begin(), |
Evan Cheng | 0c9f92e | 2007-02-13 01:30:55 +0000 | [diff] [blame] | 527 | EE = MBB->livein_end(); II != EE; ++II) { |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 528 | assert(TargetRegisterInfo::isPhysicalRegister(*II) && |
Evan Cheng | 0c9f92e | 2007-02-13 01:30:55 +0000 | [diff] [blame] | 529 | "Cannot have a live-in virtual register!"); |
| 530 | HandlePhysRegDef(*II, 0); |
| 531 | } |
| 532 | |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 533 | // Loop over all of the instructions, processing them. |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 534 | DistanceMap.clear(); |
| 535 | unsigned Dist = 0; |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 536 | for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); |
Misha Brukman | 09ba906 | 2004-06-24 21:31:16 +0000 | [diff] [blame] | 537 | I != E; ++I) { |
Alkis Evlogimenos | c0b9dc5 | 2004-02-12 02:27:10 +0000 | [diff] [blame] | 538 | MachineInstr *MI = I; |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 539 | DistanceMap.insert(std::make_pair(MI, Dist++)); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 540 | |
| 541 | // Process all of the operands of the instruction... |
| 542 | unsigned NumOperandsToProcess = MI->getNumOperands(); |
| 543 | |
| 544 | // Unless it is a PHI node. In this case, ONLY process the DEF, not any |
| 545 | // of the uses. They will be handled in other basic blocks. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 546 | if (MI->getOpcode() == TargetInstrInfo::PHI) |
Misha Brukman | 09ba906 | 2004-06-24 21:31:16 +0000 | [diff] [blame] | 547 | NumOperandsToProcess = 1; |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 548 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 549 | SmallVector<unsigned, 4> UseRegs; |
| 550 | SmallVector<unsigned, 4> DefRegs; |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 551 | for (unsigned i = 0; i != NumOperandsToProcess; ++i) { |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 552 | const MachineOperand &MO = MI->getOperand(i); |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 553 | if (MO.isRegister() && MO.getReg()) { |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 554 | unsigned MOReg = MO.getReg(); |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 555 | if (!MOReg) |
| 556 | continue; |
| 557 | if (MO.isUse()) |
| 558 | UseRegs.push_back(MOReg); |
| 559 | if (MO.isDef()) |
| 560 | DefRegs.push_back(MOReg); |
Misha Brukman | 09ba906 | 2004-06-24 21:31:16 +0000 | [diff] [blame] | 561 | } |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 562 | } |
| 563 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 564 | // Process all uses. |
| 565 | for (unsigned i = 0, e = UseRegs.size(); i != e; ++i) { |
| 566 | unsigned MOReg = UseRegs[i]; |
| 567 | if (TargetRegisterInfo::isVirtualRegister(MOReg)) |
| 568 | HandleVirtRegUse(MOReg, MBB, MI); |
| 569 | else if (TargetRegisterInfo::isPhysicalRegister(MOReg) && |
| 570 | !ReservedRegisters[MOReg]) |
| 571 | HandlePhysRegUse(MOReg, MI); |
| 572 | } |
| 573 | |
Bill Wendling | 6d79474 | 2008-02-20 09:15:16 +0000 | [diff] [blame] | 574 | // Process all defs. |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 575 | for (unsigned i = 0, e = DefRegs.size(); i != e; ++i) { |
| 576 | unsigned MOReg = DefRegs[i]; |
| 577 | if (TargetRegisterInfo::isVirtualRegister(MOReg)) { |
| 578 | VarInfo &VRInfo = getVarInfo(MOReg); |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 579 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 580 | if (VRInfo.AliveBlocks.none()) |
| 581 | // If vr is not alive in any block, then defaults to dead. |
| 582 | VRInfo.Kills.push_back(MI); |
| 583 | } else if (TargetRegisterInfo::isPhysicalRegister(MOReg) && |
| 584 | !ReservedRegisters[MOReg]) { |
| 585 | HandlePhysRegDef(MOReg, MI); |
Misha Brukman | 09ba906 | 2004-06-24 21:31:16 +0000 | [diff] [blame] | 586 | } |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | |
| 590 | // Handle any virtual assignments from PHI nodes which might be at the |
| 591 | // bottom of this basic block. We check all of our successor blocks to see |
| 592 | // if they have PHI nodes, and if so, we simulate an assignment at the end |
| 593 | // of the current block. |
Evan Cheng | e96f501 | 2007-04-25 19:34:00 +0000 | [diff] [blame] | 594 | if (!PHIVarInfo[MBB->getNumber()].empty()) { |
| 595 | SmallVector<unsigned, 4>& VarInfoVec = PHIVarInfo[MBB->getNumber()]; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 596 | |
Evan Cheng | e96f501 | 2007-04-25 19:34:00 +0000 | [diff] [blame] | 597 | for (SmallVector<unsigned, 4>::iterator I = VarInfoVec.begin(), |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 598 | E = VarInfoVec.end(); I != E; ++I) |
| 599 | // Mark it alive only in the block we are representing. |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 600 | MarkVirtRegAliveInBlock(getVarInfo(*I),MRI->getVRegDef(*I)->getParent(), |
Owen Anderson | 40a627d | 2008-01-15 22:58:11 +0000 | [diff] [blame] | 601 | MBB); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 602 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 603 | |
Bill Wendling | 6d79474 | 2008-02-20 09:15:16 +0000 | [diff] [blame] | 604 | // Finally, if the last instruction in the block is a return, make sure to |
| 605 | // mark it as using all of the live-out values in the function. |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 606 | if (!MBB->empty() && MBB->back().getDesc().isReturn()) { |
Chris Lattner | d493b34 | 2005-04-09 15:23:25 +0000 | [diff] [blame] | 607 | MachineInstr *Ret = &MBB->back(); |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 608 | |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 609 | for (MachineRegisterInfo::liveout_iterator |
| 610 | I = MF->getRegInfo().liveout_begin(), |
| 611 | E = MF->getRegInfo().liveout_end(); I != E; ++I) { |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 612 | assert(TargetRegisterInfo::isPhysicalRegister(*I) && |
Dan Gohman | 48b0b88 | 2008-06-25 22:14:43 +0000 | [diff] [blame] | 613 | "Cannot have a live-out virtual register!"); |
Chris Lattner | d493b34 | 2005-04-09 15:23:25 +0000 | [diff] [blame] | 614 | HandlePhysRegUse(*I, Ret); |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 615 | |
Evan Cheng | a6c4c1e | 2006-11-15 20:51:59 +0000 | [diff] [blame] | 616 | // Add live-out registers as implicit uses. |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 617 | if (!Ret->readsRegister(*I)) |
Chris Lattner | 8019f41 | 2007-12-30 00:41:17 +0000 | [diff] [blame] | 618 | Ret->addOperand(MachineOperand::CreateReg(*I, false, true)); |
Chris Lattner | d493b34 | 2005-04-09 15:23:25 +0000 | [diff] [blame] | 619 | } |
| 620 | } |
| 621 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 622 | // Loop over PhysRegDef / PhysRegUse, killing any registers that are |
| 623 | // available at the end of the basic block. |
Evan Cheng | e96f501 | 2007-04-25 19:34:00 +0000 | [diff] [blame] | 624 | for (unsigned i = 0; i != NumRegs; ++i) |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 625 | if (PhysRegDef[i] || PhysRegUse[i]) |
Misha Brukman | 09ba906 | 2004-06-24 21:31:16 +0000 | [diff] [blame] | 626 | HandlePhysRegDef(i, 0); |
Evan Cheng | 24a3cc4 | 2007-04-25 07:30:23 +0000 | [diff] [blame] | 627 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 628 | std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0); |
| 629 | std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 630 | } |
| 631 | |
Evan Cheng | a6c4c1e | 2006-11-15 20:51:59 +0000 | [diff] [blame] | 632 | // Convert and transfer the dead / killed information we have gathered into |
| 633 | // VirtRegInfo onto MI's. |
Evan Cheng | f0e3bb1 | 2007-03-09 06:02:17 +0000 | [diff] [blame] | 634 | for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i) |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 635 | for (unsigned j = 0, e2 = VirtRegInfo[i].Kills.size(); j != e2; ++j) |
| 636 | if (VirtRegInfo[i].Kills[j] == |
Evan Cheng | ea1d9cd | 2008-04-02 18:04:08 +0000 | [diff] [blame] | 637 | MRI->getVRegDef(i + TargetRegisterInfo::FirstVirtualRegister)) |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 638 | VirtRegInfo[i] |
| 639 | .Kills[j]->addRegisterDead(i + |
| 640 | TargetRegisterInfo::FirstVirtualRegister, |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 641 | TRI); |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 642 | else |
Bill Wendling | 420cdeb | 2008-02-20 07:36:31 +0000 | [diff] [blame] | 643 | VirtRegInfo[i] |
| 644 | .Kills[j]->addRegisterKilled(i + |
| 645 | TargetRegisterInfo::FirstVirtualRegister, |
Evan Cheng | 6130f66 | 2008-03-05 00:59:57 +0000 | [diff] [blame] | 646 | TRI); |
Chris Lattner | a5287a6 | 2004-07-01 04:24:29 +0000 | [diff] [blame] | 647 | |
Chris Lattner | 9fb6cf1 | 2004-07-09 16:44:37 +0000 | [diff] [blame] | 648 | // Check to make sure there are no unreachable blocks in the MC CFG for the |
| 649 | // function. If so, it is due to a bug in the instruction selector or some |
| 650 | // other part of the code generator if this happens. |
| 651 | #ifndef NDEBUG |
Evan Cheng | c6a2410 | 2007-03-17 09:29:54 +0000 | [diff] [blame] | 652 | for(MachineFunction::iterator i = MF->begin(), e = MF->end(); i != e; ++i) |
Chris Lattner | 9fb6cf1 | 2004-07-09 16:44:37 +0000 | [diff] [blame] | 653 | assert(Visited.count(&*i) != 0 && "unreachable basic block found"); |
| 654 | #endif |
| 655 | |
Evan Cheng | 0d4bdde | 2008-04-16 09:46:40 +0000 | [diff] [blame] | 656 | delete[] PhysRegDef; |
| 657 | delete[] PhysRegUse; |
Evan Cheng | e96f501 | 2007-04-25 19:34:00 +0000 | [diff] [blame] | 658 | delete[] PHIVarInfo; |
| 659 | |
Chris Lattner | bc40e89 | 2003-01-13 20:01:16 +0000 | [diff] [blame] | 660 | return false; |
| 661 | } |
Chris Lattner | 5ed001b | 2004-02-19 18:28:02 +0000 | [diff] [blame] | 662 | |
Evan Cheng | be04dc1 | 2008-07-03 00:07:19 +0000 | [diff] [blame] | 663 | /// replaceKillInstruction - Update register kill info by replacing a kill |
| 664 | /// instruction with a new one. |
| 665 | void LiveVariables::replaceKillInstruction(unsigned Reg, MachineInstr *OldMI, |
| 666 | MachineInstr *NewMI) { |
| 667 | VarInfo &VI = getVarInfo(Reg); |
Evan Cheng | 5b9f60b | 2008-07-03 00:28:27 +0000 | [diff] [blame] | 668 | std::replace(VI.Kills.begin(), VI.Kills.end(), OldMI, NewMI); |
Evan Cheng | be04dc1 | 2008-07-03 00:07:19 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Chris Lattner | 7a3abdc | 2006-09-03 00:05:09 +0000 | [diff] [blame] | 671 | /// removeVirtualRegistersKilled - Remove all killed info for the specified |
| 672 | /// instruction. |
| 673 | void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) { |
Evan Cheng | a6c4c1e | 2006-11-15 20:51:59 +0000 | [diff] [blame] | 674 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 675 | MachineOperand &MO = MI->getOperand(i); |
Dan Gohman | 92dfe20 | 2007-09-14 20:33:02 +0000 | [diff] [blame] | 676 | if (MO.isRegister() && MO.isKill()) { |
Chris Lattner | f738230 | 2007-12-30 21:56:09 +0000 | [diff] [blame] | 677 | MO.setIsKill(false); |
Evan Cheng | a6c4c1e | 2006-11-15 20:51:59 +0000 | [diff] [blame] | 678 | unsigned Reg = MO.getReg(); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 679 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
Evan Cheng | a6c4c1e | 2006-11-15 20:51:59 +0000 | [diff] [blame] | 680 | bool removed = getVarInfo(Reg).removeKill(MI); |
| 681 | assert(removed && "kill not in register's VarInfo?"); |
| 682 | } |
Chris Lattner | 7a3abdc | 2006-09-03 00:05:09 +0000 | [diff] [blame] | 683 | } |
| 684 | } |
Chris Lattner | 7a3abdc | 2006-09-03 00:05:09 +0000 | [diff] [blame] | 685 | } |
| 686 | |
Bill Wendling | f7da4e9 | 2006-10-03 07:20:20 +0000 | [diff] [blame] | 687 | /// analyzePHINodes - Gather information about the PHI nodes in here. In |
Bill Wendling | 6d79474 | 2008-02-20 09:15:16 +0000 | [diff] [blame] | 688 | /// particular, we want to map the variable information of a virtual register |
| 689 | /// which is used in a PHI node. We map that to the BB the vreg is coming from. |
Bill Wendling | f7da4e9 | 2006-10-03 07:20:20 +0000 | [diff] [blame] | 690 | /// |
| 691 | void LiveVariables::analyzePHINodes(const MachineFunction& Fn) { |
| 692 | for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end(); |
| 693 | I != E; ++I) |
| 694 | for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end(); |
| 695 | BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI) |
| 696 | for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) |
Bill Wendling | 90a3868 | 2008-02-20 06:10:21 +0000 | [diff] [blame] | 697 | PHIVarInfo[BBI->getOperand(i + 1).getMBB()->getNumber()] |
| 698 | .push_back(BBI->getOperand(i).getReg()); |
Bill Wendling | f7da4e9 | 2006-10-03 07:20:20 +0000 | [diff] [blame] | 699 | } |