Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 1 | //===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the SplitAnalysis class as well as mutator functions for |
| 11 | // live range splitting. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Jakob Stoklund Olesen | 376dcbd | 2010-11-03 20:39:23 +0000 | [diff] [blame] | 15 | #define DEBUG_TYPE "regalloc" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 16 | #include "SplitKit.h" |
Jakob Stoklund Olesen | a17768f | 2010-10-14 23:49:52 +0000 | [diff] [blame] | 17 | #include "LiveRangeEdit.h" |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 18 | #include "VirtRegMap.h" |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/Statistic.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineDominators.h" |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 24 | #include "llvm/Support/Debug.h" |
| 25 | #include "llvm/Support/raw_ostream.h" |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetInstrInfo.h" |
| 27 | #include "llvm/Target/TargetMachine.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 28 | |
| 29 | using namespace llvm; |
| 30 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 31 | STATISTIC(NumFinished, "Number of splits finished"); |
| 32 | STATISTIC(NumSimple, "Number of splits that were simple"); |
| 33 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 34 | //===----------------------------------------------------------------------===// |
| 35 | // Split Analysis |
| 36 | //===----------------------------------------------------------------------===// |
| 37 | |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 38 | SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm, |
Jakob Stoklund Olesen | f2c6e36 | 2010-07-20 23:50:15 +0000 | [diff] [blame] | 39 | const LiveIntervals &lis, |
| 40 | const MachineLoopInfo &mli) |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 41 | : MF(vrm.getMachineFunction()), |
| 42 | VRM(vrm), |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 43 | LIS(lis), |
| 44 | Loops(mli), |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 45 | TII(*MF.getTarget().getInstrInfo()), |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 46 | CurLI(0), |
| 47 | LastSplitPoint(MF.getNumBlockIDs()) {} |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 48 | |
| 49 | void SplitAnalysis::clear() { |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 50 | UseSlots.clear(); |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 51 | UseBlocks.clear(); |
| 52 | ThroughBlocks.clear(); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 53 | CurLI = 0; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 56 | SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) { |
| 57 | const MachineBasicBlock *MBB = MF.getBlockNumbered(Num); |
| 58 | const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor(); |
| 59 | std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num]; |
| 60 | |
| 61 | // Compute split points on the first call. The pair is independent of the |
| 62 | // current live interval. |
| 63 | if (!LSP.first.isValid()) { |
| 64 | MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator(); |
| 65 | if (FirstTerm == MBB->end()) |
| 66 | LSP.first = LIS.getMBBEndIdx(MBB); |
| 67 | else |
| 68 | LSP.first = LIS.getInstructionIndex(FirstTerm); |
| 69 | |
| 70 | // If there is a landing pad successor, also find the call instruction. |
| 71 | if (!LPad) |
| 72 | return LSP.first; |
| 73 | // There may not be a call instruction (?) in which case we ignore LPad. |
| 74 | LSP.second = LSP.first; |
| 75 | for (MachineBasicBlock::const_iterator I = FirstTerm, E = MBB->begin(); |
| 76 | I != E; --I) |
| 77 | if (I->getDesc().isCall()) { |
| 78 | LSP.second = LIS.getInstructionIndex(I); |
| 79 | break; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | // If CurLI is live into a landing pad successor, move the last split point |
| 84 | // back to the call that may throw. |
Jakob Stoklund Olesen | 71d9e65 | 2011-04-05 23:43:16 +0000 | [diff] [blame] | 85 | if (LPad && LSP.second.isValid() && LIS.isLiveInToMBB(*CurLI, LPad)) |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 86 | return LSP.second; |
| 87 | else |
| 88 | return LSP.first; |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 91 | /// analyzeUses - Count instructions, basic blocks, and loops using CurLI. |
Jakob Stoklund Olesen | abff280 | 2010-07-20 16:12:37 +0000 | [diff] [blame] | 92 | void SplitAnalysis::analyzeUses() { |
Jakob Stoklund Olesen | a2948ef | 2011-04-05 15:18:18 +0000 | [diff] [blame] | 93 | assert(UseSlots.empty() && "Call clear first"); |
| 94 | |
| 95 | // First get all the defs from the interval values. This provides the correct |
| 96 | // slots for early clobbers. |
| 97 | for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(), |
| 98 | E = CurLI->vni_end(); I != E; ++I) |
| 99 | if (!(*I)->isPHIDef() && !(*I)->isUnused()) |
| 100 | UseSlots.push_back((*I)->def); |
| 101 | |
| 102 | // Get use slots form the use-def chain. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 103 | const MachineRegisterInfo &MRI = MF.getRegInfo(); |
Jakob Stoklund Olesen | a2948ef | 2011-04-05 15:18:18 +0000 | [diff] [blame] | 104 | for (MachineRegisterInfo::use_nodbg_iterator |
| 105 | I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E; |
| 106 | ++I) |
| 107 | if (!I.getOperand().isUndef()) |
| 108 | UseSlots.push_back(LIS.getInstructionIndex(&*I).getDefIndex()); |
| 109 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 110 | array_pod_sort(UseSlots.begin(), UseSlots.end()); |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 111 | |
Jakob Stoklund Olesen | a2948ef | 2011-04-05 15:18:18 +0000 | [diff] [blame] | 112 | // Remove duplicates, keeping the smaller slot for each instruction. |
| 113 | // That is what we want for early clobbers. |
| 114 | UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(), |
| 115 | SlotIndex::isSameInstr), |
| 116 | UseSlots.end()); |
| 117 | |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 118 | // Compute per-live block info. |
| 119 | if (!calcLiveBlockInfo()) { |
| 120 | // FIXME: calcLiveBlockInfo found inconsistencies in the live range. |
| 121 | // I am looking at you, SimpleRegisterCoalescing! |
| 122 | DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n"); |
| 123 | const_cast<LiveIntervals&>(LIS) |
| 124 | .shrinkToUses(const_cast<LiveInterval*>(CurLI)); |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 125 | UseBlocks.clear(); |
| 126 | ThroughBlocks.clear(); |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 127 | bool fixed = calcLiveBlockInfo(); |
| 128 | (void)fixed; |
| 129 | assert(fixed && "Couldn't fix broken live interval"); |
| 130 | } |
| 131 | |
Jakob Stoklund Olesen | ef1f5cc | 2011-03-27 22:49:23 +0000 | [diff] [blame] | 132 | DEBUG(dbgs() << "Analyze counted " |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 133 | << UseSlots.size() << " instrs in " |
| 134 | << UseBlocks.size() << " blocks, through " |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame^] | 135 | << NumThroughBlocks << " blocks.\n"); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 138 | /// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks |
| 139 | /// where CurLI is live. |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 140 | bool SplitAnalysis::calcLiveBlockInfo() { |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame^] | 141 | ThroughBlocks.resize(MF.getNumBlockIDs()); |
| 142 | NumThroughBlocks = 0; |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 143 | if (CurLI->empty()) |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 144 | return true; |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 145 | |
| 146 | LiveInterval::const_iterator LVI = CurLI->begin(); |
| 147 | LiveInterval::const_iterator LVE = CurLI->end(); |
| 148 | |
| 149 | SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE; |
| 150 | UseI = UseSlots.begin(); |
| 151 | UseE = UseSlots.end(); |
| 152 | |
| 153 | // Loop over basic blocks where CurLI is live. |
| 154 | MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start); |
| 155 | for (;;) { |
| 156 | BlockInfo BI; |
| 157 | BI.MBB = MFI; |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 158 | SlotIndex Start, Stop; |
| 159 | tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 160 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 161 | // LVI is the first live segment overlapping MBB. |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 162 | BI.LiveIn = LVI->start <= Start; |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 163 | if (!BI.LiveIn) |
| 164 | BI.Def = LVI->start; |
| 165 | |
| 166 | // Find the first and last uses in the block. |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 167 | bool Uses = UseI != UseE && *UseI < Stop; |
| 168 | if (Uses) { |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 169 | BI.FirstUse = *UseI; |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 170 | assert(BI.FirstUse >= Start); |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 171 | do ++UseI; |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 172 | while (UseI != UseE && *UseI < Stop); |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 173 | BI.LastUse = UseI[-1]; |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 174 | assert(BI.LastUse < Stop); |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | // Look for gaps in the live range. |
| 178 | bool hasGap = false; |
| 179 | BI.LiveOut = true; |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 180 | while (LVI->end < Stop) { |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 181 | SlotIndex LastStop = LVI->end; |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 182 | if (++LVI == LVE || LVI->start >= Stop) { |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 183 | BI.Kill = LastStop; |
| 184 | BI.LiveOut = false; |
| 185 | break; |
| 186 | } |
| 187 | if (LastStop < LVI->start) { |
| 188 | hasGap = true; |
| 189 | BI.Kill = LastStop; |
| 190 | BI.Def = LVI->start; |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | // Don't set LiveThrough when the block has a gap. |
| 195 | BI.LiveThrough = !hasGap && BI.LiveIn && BI.LiveOut; |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 196 | if (Uses) |
| 197 | UseBlocks.push_back(BI); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame^] | 198 | else { |
| 199 | ++NumThroughBlocks; |
| 200 | ThroughBlocks.set(BI.MBB->getNumber()); |
| 201 | } |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 202 | // FIXME: This should never happen. The live range stops or starts without a |
| 203 | // corresponding use. An earlier pass did something wrong. |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 204 | if (!BI.LiveThrough && !Uses) |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 205 | return false; |
| 206 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 207 | // LVI is now at LVE or LVI->end >= Stop. |
| 208 | if (LVI == LVE) |
| 209 | break; |
| 210 | |
| 211 | // Live segment ends exactly at Stop. Move to the next segment. |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 212 | if (LVI->end == Stop && ++LVI == LVE) |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 213 | break; |
| 214 | |
| 215 | // Pick the next basic block. |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 216 | if (LVI->start < Stop) |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 217 | ++MFI; |
| 218 | else |
| 219 | MFI = LIS.getMBBFromIndex(LVI->start); |
| 220 | } |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 221 | return true; |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Jakob Stoklund Olesen | 06c0f25 | 2011-02-21 23:09:46 +0000 | [diff] [blame] | 224 | bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const { |
| 225 | unsigned OrigReg = VRM.getOriginal(CurLI->reg); |
| 226 | const LiveInterval &Orig = LIS.getInterval(OrigReg); |
| 227 | assert(!Orig.empty() && "Splitting empty interval?"); |
| 228 | LiveInterval::const_iterator I = Orig.find(Idx); |
| 229 | |
| 230 | // Range containing Idx should begin at Idx. |
| 231 | if (I != Orig.end() && I->start <= Idx) |
| 232 | return I->start == Idx; |
| 233 | |
| 234 | // Range does not contain Idx, previous must end at Idx. |
| 235 | return I != Orig.begin() && (--I)->end == Idx; |
| 236 | } |
| 237 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 238 | void SplitAnalysis::analyze(const LiveInterval *li) { |
| 239 | clear(); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 240 | CurLI = li; |
Jakob Stoklund Olesen | abff280 | 2010-07-20 16:12:37 +0000 | [diff] [blame] | 241 | analyzeUses(); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Jakob Stoklund Olesen | 697483a | 2010-12-15 17:49:52 +0000 | [diff] [blame] | 244 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 245 | //===----------------------------------------------------------------------===// |
| 246 | // Split Editor |
| 247 | //===----------------------------------------------------------------------===// |
| 248 | |
| 249 | /// Create a new SplitEditor for editing the LiveInterval analyzed by SA. |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 250 | SplitEditor::SplitEditor(SplitAnalysis &sa, |
| 251 | LiveIntervals &lis, |
| 252 | VirtRegMap &vrm, |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 253 | MachineDominatorTree &mdt) |
Jakob Stoklund Olesen | 0eeca44 | 2011-02-19 00:42:33 +0000 | [diff] [blame] | 254 | : SA(sa), LIS(lis), VRM(vrm), |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 255 | MRI(vrm.getMachineFunction().getRegInfo()), |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 256 | MDT(mdt), |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 257 | TII(*vrm.getMachineFunction().getTarget().getInstrInfo()), |
| 258 | TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()), |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 259 | Edit(0), |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 260 | OpenIdx(0), |
| 261 | RegAssign(Allocator) |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 262 | {} |
| 263 | |
| 264 | void SplitEditor::reset(LiveRangeEdit &lre) { |
| 265 | Edit = &lre; |
| 266 | OpenIdx = 0; |
| 267 | RegAssign.clear(); |
| 268 | Values.clear(); |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 269 | |
| 270 | // We don't need to clear LiveOutCache, only LiveOutSeen entries are read. |
| 271 | LiveOutSeen.clear(); |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 272 | |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 273 | // We don't need an AliasAnalysis since we will only be performing |
| 274 | // cheap-as-a-copy remats anyway. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 275 | Edit->anyRematerializable(LIS, TII, 0); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 278 | void SplitEditor::dump() const { |
| 279 | if (RegAssign.empty()) { |
| 280 | dbgs() << " empty\n"; |
| 281 | return; |
| 282 | } |
| 283 | |
| 284 | for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I) |
| 285 | dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value(); |
| 286 | dbgs() << '\n'; |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 287 | } |
| 288 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 289 | VNInfo *SplitEditor::defValue(unsigned RegIdx, |
| 290 | const VNInfo *ParentVNI, |
| 291 | SlotIndex Idx) { |
| 292 | assert(ParentVNI && "Mapping NULL value"); |
| 293 | assert(Idx.isValid() && "Invalid SlotIndex"); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 294 | assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI"); |
| 295 | LiveInterval *LI = Edit->get(RegIdx); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 296 | |
| 297 | // Create a new value. |
| 298 | VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator()); |
| 299 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 300 | // Use insert for lookup, so we can add missing values with a second lookup. |
| 301 | std::pair<ValueMap::iterator, bool> InsP = |
| 302 | Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI)); |
| 303 | |
| 304 | // This was the first time (RegIdx, ParentVNI) was mapped. |
| 305 | // Keep it as a simple def without any liveness. |
| 306 | if (InsP.second) |
| 307 | return VNI; |
| 308 | |
| 309 | // If the previous value was a simple mapping, add liveness for it now. |
| 310 | if (VNInfo *OldVNI = InsP.first->second) { |
| 311 | SlotIndex Def = OldVNI->def; |
| 312 | LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI)); |
| 313 | // No longer a simple mapping. |
| 314 | InsP.first->second = 0; |
| 315 | } |
| 316 | |
| 317 | // This is a complex mapping, add liveness for VNI |
| 318 | SlotIndex Def = VNI->def; |
| 319 | LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI)); |
| 320 | |
| 321 | return VNI; |
| 322 | } |
| 323 | |
| 324 | void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) { |
| 325 | assert(ParentVNI && "Mapping NULL value"); |
| 326 | VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)]; |
| 327 | |
| 328 | // ParentVNI was either unmapped or already complex mapped. Either way. |
| 329 | if (!VNI) |
| 330 | return; |
| 331 | |
| 332 | // This was previously a single mapping. Make sure the old def is represented |
| 333 | // by a trivial live range. |
| 334 | SlotIndex Def = VNI->def; |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 335 | Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI)); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 336 | VNI = 0; |
| 337 | } |
| 338 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 339 | // extendRange - Extend the live range to reach Idx. |
| 340 | // Potentially create phi-def values. |
| 341 | void SplitEditor::extendRange(unsigned RegIdx, SlotIndex Idx) { |
| 342 | assert(Idx.isValid() && "Invalid SlotIndex"); |
| 343 | MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx); |
| 344 | assert(IdxMBB && "No MBB at Idx"); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 345 | LiveInterval *LI = Edit->get(RegIdx); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 346 | |
| 347 | // Is there a def in the same MBB we can extend? |
| 348 | if (LI->extendInBlock(LIS.getMBBStartIdx(IdxMBB), Idx)) |
| 349 | return; |
| 350 | |
| 351 | // Now for the fun part. We know that ParentVNI potentially has multiple defs, |
| 352 | // and we may need to create even more phi-defs to preserve VNInfo SSA form. |
| 353 | // Perform a search for all predecessor blocks where we know the dominating |
| 354 | // VNInfo. Insert phi-def VNInfos along the path back to IdxMBB. |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 355 | |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 356 | // Initialize the live-out cache the first time it is needed. |
| 357 | if (LiveOutSeen.empty()) { |
| 358 | unsigned N = VRM.getMachineFunction().getNumBlockIDs(); |
| 359 | LiveOutSeen.resize(N); |
| 360 | LiveOutCache.resize(N); |
| 361 | } |
| 362 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 363 | // Blocks where LI should be live-in. |
| 364 | SmallVector<MachineDomTreeNode*, 16> LiveIn; |
| 365 | LiveIn.push_back(MDT[IdxMBB]); |
| 366 | |
Jakob Stoklund Olesen | 8701768 | 2011-03-03 01:29:10 +0000 | [diff] [blame] | 367 | // Remember if we have seen more than one value. |
| 368 | bool UniqueVNI = true; |
| 369 | VNInfo *IdxVNI = 0; |
| 370 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 371 | // Using LiveOutCache as a visited set, perform a BFS for all reaching defs. |
| 372 | for (unsigned i = 0; i != LiveIn.size(); ++i) { |
| 373 | MachineBasicBlock *MBB = LiveIn[i]->getBlock(); |
Jakob Stoklund Olesen | 7cec179 | 2011-03-18 03:06:02 +0000 | [diff] [blame] | 374 | assert(!MBB->pred_empty() && "Value live-in to entry block?"); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 375 | for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(), |
| 376 | PE = MBB->pred_end(); PI != PE; ++PI) { |
| 377 | MachineBasicBlock *Pred = *PI; |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 378 | LiveOutPair &LOP = LiveOutCache[Pred]; |
| 379 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 380 | // Is this a known live-out block? |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 381 | if (LiveOutSeen.test(Pred->getNumber())) { |
| 382 | if (VNInfo *VNI = LOP.first) { |
Jakob Stoklund Olesen | 8701768 | 2011-03-03 01:29:10 +0000 | [diff] [blame] | 383 | if (IdxVNI && IdxVNI != VNI) |
| 384 | UniqueVNI = false; |
| 385 | IdxVNI = VNI; |
| 386 | } |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 387 | continue; |
Jakob Stoklund Olesen | 8701768 | 2011-03-03 01:29:10 +0000 | [diff] [blame] | 388 | } |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 389 | |
| 390 | // First time. LOP is garbage and must be cleared below. |
| 391 | LiveOutSeen.set(Pred->getNumber()); |
| 392 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 393 | // Does Pred provide a live-out value? |
| 394 | SlotIndex Start, Last; |
| 395 | tie(Start, Last) = LIS.getSlotIndexes()->getMBBRange(Pred); |
| 396 | Last = Last.getPrevSlot(); |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 397 | VNInfo *VNI = LI->extendInBlock(Start, Last); |
| 398 | LOP.first = VNI; |
| 399 | if (VNI) { |
| 400 | LOP.second = MDT[LIS.getMBBFromIndex(VNI->def)]; |
Jakob Stoklund Olesen | 8701768 | 2011-03-03 01:29:10 +0000 | [diff] [blame] | 401 | if (IdxVNI && IdxVNI != VNI) |
| 402 | UniqueVNI = false; |
| 403 | IdxVNI = VNI; |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 404 | continue; |
| 405 | } |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 406 | LOP.second = 0; |
| 407 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 408 | // No, we need a live-in value for Pred as well |
| 409 | if (Pred != IdxMBB) |
| 410 | LiveIn.push_back(MDT[Pred]); |
Jakob Stoklund Olesen | 8701768 | 2011-03-03 01:29:10 +0000 | [diff] [blame] | 411 | else |
| 412 | UniqueVNI = false; // Loopback to IdxMBB, ask updateSSA() for help. |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 413 | } |
| 414 | } |
| 415 | |
| 416 | // We may need to add phi-def values to preserve the SSA form. |
Jakob Stoklund Olesen | 8701768 | 2011-03-03 01:29:10 +0000 | [diff] [blame] | 417 | if (UniqueVNI) { |
| 418 | LiveOutPair LOP(IdxVNI, MDT[LIS.getMBBFromIndex(IdxVNI->def)]); |
| 419 | // Update LiveOutCache, but skip IdxMBB at LiveIn[0]. |
| 420 | for (unsigned i = 1, e = LiveIn.size(); i != e; ++i) |
| 421 | LiveOutCache[LiveIn[i]->getBlock()] = LOP; |
| 422 | } else |
| 423 | IdxVNI = updateSSA(RegIdx, LiveIn, Idx, IdxMBB); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 424 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 425 | // Since we went through the trouble of a full BFS visiting all reaching defs, |
| 426 | // the values in LiveIn are now accurate. No more phi-defs are needed |
| 427 | // for these blocks, so we can color the live ranges. |
| 428 | for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) { |
| 429 | MachineBasicBlock *MBB = LiveIn[i]->getBlock(); |
| 430 | SlotIndex Start = LIS.getMBBStartIdx(MBB); |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 431 | VNInfo *VNI = LiveOutCache[MBB].first; |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 432 | |
| 433 | // Anything in LiveIn other than IdxMBB is live-through. |
| 434 | // In IdxMBB, we should stop at Idx unless the same value is live-out. |
| 435 | if (MBB == IdxMBB && IdxVNI != VNI) |
| 436 | LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI)); |
| 437 | else |
| 438 | LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI)); |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | VNInfo *SplitEditor::updateSSA(unsigned RegIdx, |
| 443 | SmallVectorImpl<MachineDomTreeNode*> &LiveIn, |
| 444 | SlotIndex Idx, |
| 445 | const MachineBasicBlock *IdxMBB) { |
| 446 | // This is essentially the same iterative algorithm that SSAUpdater uses, |
| 447 | // except we already have a dominator tree, so we don't have to recompute it. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 448 | LiveInterval *LI = Edit->get(RegIdx); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 449 | VNInfo *IdxVNI = 0; |
| 450 | unsigned Changes; |
| 451 | do { |
| 452 | Changes = 0; |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 453 | // Propagate live-out values down the dominator tree, inserting phi-defs |
| 454 | // when necessary. Since LiveIn was created by a BFS, going backwards makes |
| 455 | // it more likely for us to visit immediate dominators before their |
| 456 | // children. |
| 457 | for (unsigned i = LiveIn.size(); i; --i) { |
| 458 | MachineDomTreeNode *Node = LiveIn[i-1]; |
| 459 | MachineBasicBlock *MBB = Node->getBlock(); |
| 460 | MachineDomTreeNode *IDom = Node->getIDom(); |
| 461 | LiveOutPair IDomValue; |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 462 | |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 463 | // We need a live-in value to a block with no immediate dominator? |
| 464 | // This is probably an unreachable block that has survived somehow. |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 465 | bool needPHI = !IDom || !LiveOutSeen.test(IDom->getBlock()->getNumber()); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 466 | |
| 467 | // IDom dominates all of our predecessors, but it may not be the immediate |
| 468 | // dominator. Check if any of them have live-out values that are properly |
| 469 | // dominated by IDom. If so, we need a phi-def here. |
| 470 | if (!needPHI) { |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 471 | IDomValue = LiveOutCache[IDom->getBlock()]; |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 472 | for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(), |
| 473 | PE = MBB->pred_end(); PI != PE; ++PI) { |
| 474 | LiveOutPair Value = LiveOutCache[*PI]; |
| 475 | if (!Value.first || Value.first == IDomValue.first) |
| 476 | continue; |
| 477 | // This predecessor is carrying something other than IDomValue. |
| 478 | // It could be because IDomValue hasn't propagated yet, or it could be |
| 479 | // because MBB is in the dominance frontier of that value. |
| 480 | if (MDT.dominates(IDom, Value.second)) { |
| 481 | needPHI = true; |
| 482 | break; |
| 483 | } |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | // Create a phi-def if required. |
| 488 | if (needPHI) { |
| 489 | ++Changes; |
| 490 | SlotIndex Start = LIS.getMBBStartIdx(MBB); |
| 491 | VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator()); |
| 492 | VNI->setIsPHIDef(true); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 493 | // We no longer need LI to be live-in. |
| 494 | LiveIn.erase(LiveIn.begin()+(i-1)); |
| 495 | // Blocks in LiveIn are either IdxMBB, or have a value live-through. |
| 496 | if (MBB == IdxMBB) |
| 497 | IdxVNI = VNI; |
| 498 | // Check if we need to update live-out info. |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 499 | LiveOutPair &LOP = LiveOutCache[MBB]; |
| 500 | if (LOP.second == Node || !LiveOutSeen.test(MBB->getNumber())) { |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 501 | // We already have a live-out defined in MBB, so this must be IdxMBB. |
| 502 | assert(MBB == IdxMBB && "Adding phi-def to known live-out"); |
| 503 | LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI)); |
| 504 | } else { |
| 505 | // This phi-def is also live-out, so color the whole block. |
| 506 | LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI)); |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 507 | LOP = LiveOutPair(VNI, Node); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 508 | } |
| 509 | } else if (IDomValue.first) { |
| 510 | // No phi-def here. Remember incoming value for IdxMBB. |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 511 | if (MBB == IdxMBB) { |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 512 | IdxVNI = IDomValue.first; |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 513 | // IdxMBB need not be live-out. |
| 514 | if (!LiveOutSeen.test(MBB->getNumber())) |
| 515 | continue; |
| 516 | } |
| 517 | assert(LiveOutSeen.test(MBB->getNumber()) && "Expected live-out block"); |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 518 | // Propagate IDomValue if needed: |
| 519 | // MBB is live-out and doesn't define its own value. |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 520 | LiveOutPair &LOP = LiveOutCache[MBB]; |
| 521 | if (LOP.second != Node && LOP.first != IDomValue.first) { |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 522 | ++Changes; |
Jakob Stoklund Olesen | 13ba2da | 2011-03-04 00:15:36 +0000 | [diff] [blame] | 523 | LOP = IDomValue; |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | } |
Jakob Stoklund Olesen | 1c38ba6 | 2011-03-02 01:59:34 +0000 | [diff] [blame] | 527 | } while (Changes); |
| 528 | |
| 529 | assert(IdxVNI && "Didn't find value for Idx"); |
| 530 | return IdxVNI; |
| 531 | } |
| 532 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 533 | VNInfo *SplitEditor::defFromParent(unsigned RegIdx, |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 534 | VNInfo *ParentVNI, |
| 535 | SlotIndex UseIdx, |
| 536 | MachineBasicBlock &MBB, |
| 537 | MachineBasicBlock::iterator I) { |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 538 | MachineInstr *CopyMI = 0; |
| 539 | SlotIndex Def; |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 540 | LiveInterval *LI = Edit->get(RegIdx); |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 541 | |
| 542 | // Attempt cheap-as-a-copy rematerialization. |
| 543 | LiveRangeEdit::Remat RM(ParentVNI); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 544 | if (Edit->canRematerializeAt(RM, UseIdx, true, LIS)) { |
| 545 | Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI); |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 546 | } else { |
| 547 | // Can't remat, just insert a copy from parent. |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 548 | CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg) |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 549 | .addReg(Edit->getReg()); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 550 | Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex(); |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 551 | } |
| 552 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 553 | // Define the value in Reg. |
| 554 | VNInfo *VNI = defValue(RegIdx, ParentVNI, Def); |
| 555 | VNI->setCopy(CopyMI); |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 556 | return VNI; |
| 557 | } |
| 558 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 559 | /// Create a new virtual register and live interval. |
| 560 | void SplitEditor::openIntv() { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 561 | assert(!OpenIdx && "Previous LI not closed before openIntv"); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 562 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 563 | // Create the complement as index 0. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 564 | if (Edit->empty()) |
Jakob Stoklund Olesen | 6a3dbd3 | 2011-03-17 20:37:07 +0000 | [diff] [blame] | 565 | Edit->create(LIS, VRM); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 566 | |
| 567 | // Create the open interval. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 568 | OpenIdx = Edit->size(); |
Jakob Stoklund Olesen | 6a3dbd3 | 2011-03-17 20:37:07 +0000 | [diff] [blame] | 569 | Edit->create(LIS, VRM); |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 570 | } |
| 571 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 572 | SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 573 | assert(OpenIdx && "openIntv not called before enterIntvBefore"); |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 574 | DEBUG(dbgs() << " enterIntvBefore " << Idx); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 575 | Idx = Idx.getBaseIndex(); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 576 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 577 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 578 | DEBUG(dbgs() << ": not live\n"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 579 | return Idx; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 580 | } |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 581 | DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n'); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 582 | MachineInstr *MI = LIS.getInstructionFromIndex(Idx); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 583 | assert(MI && "enterIntvBefore called with invalid index"); |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 584 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 585 | VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI); |
| 586 | return VNI->def; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 587 | } |
| 588 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 589 | SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 590 | assert(OpenIdx && "openIntv not called before enterIntvAtEnd"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 591 | SlotIndex End = LIS.getMBBEndIdx(&MBB); |
| 592 | SlotIndex Last = End.getPrevSlot(); |
| 593 | DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 594 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 595 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 596 | DEBUG(dbgs() << ": not live\n"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 597 | return End; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 598 | } |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 599 | DEBUG(dbgs() << ": valno " << ParentVNI->id); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 600 | VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB, |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 601 | LIS.getLastSplitPoint(Edit->getParent(), &MBB)); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 602 | RegAssign.insert(VNI->def, End, OpenIdx); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 603 | DEBUG(dump()); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 604 | return VNI->def; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 605 | } |
| 606 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 607 | /// useIntv - indicate that all instructions in MBB should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 608 | void SplitEditor::useIntv(const MachineBasicBlock &MBB) { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 609 | useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB)); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 610 | } |
| 611 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 612 | void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 613 | assert(OpenIdx && "openIntv not called before useIntv"); |
| 614 | DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):"); |
| 615 | RegAssign.insert(Start, End, OpenIdx); |
| 616 | DEBUG(dump()); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 617 | } |
| 618 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 619 | SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 620 | assert(OpenIdx && "openIntv not called before leaveIntvAfter"); |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 621 | DEBUG(dbgs() << " leaveIntvAfter " << Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 622 | |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 623 | // The interval must be live beyond the instruction at Idx. |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 624 | Idx = Idx.getBoundaryIndex(); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 625 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 626 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 627 | DEBUG(dbgs() << ": not live\n"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 628 | return Idx.getNextSlot(); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 629 | } |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 630 | DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n'); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 631 | |
Jakob Stoklund Olesen | 01cb34b | 2011-02-08 18:50:18 +0000 | [diff] [blame] | 632 | MachineInstr *MI = LIS.getInstructionFromIndex(Idx); |
| 633 | assert(MI && "No instruction at index"); |
| 634 | VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), |
| 635 | llvm::next(MachineBasicBlock::iterator(MI))); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 636 | return VNI->def; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 637 | } |
| 638 | |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 639 | SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) { |
| 640 | assert(OpenIdx && "openIntv not called before leaveIntvBefore"); |
| 641 | DEBUG(dbgs() << " leaveIntvBefore " << Idx); |
| 642 | |
| 643 | // The interval must be live into the instruction at Idx. |
| 644 | Idx = Idx.getBoundaryIndex(); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 645 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx); |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 646 | if (!ParentVNI) { |
| 647 | DEBUG(dbgs() << ": not live\n"); |
| 648 | return Idx.getNextSlot(); |
| 649 | } |
| 650 | DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n'); |
| 651 | |
| 652 | MachineInstr *MI = LIS.getInstructionFromIndex(Idx); |
| 653 | assert(MI && "No instruction at index"); |
| 654 | VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI); |
| 655 | return VNI->def; |
| 656 | } |
| 657 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 658 | SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 659 | assert(OpenIdx && "openIntv not called before leaveIntvAtTop"); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 660 | SlotIndex Start = LIS.getMBBStartIdx(&MBB); |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 661 | DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start); |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 662 | |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 663 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 664 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 665 | DEBUG(dbgs() << ": not live\n"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 666 | return Start; |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 667 | } |
| 668 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 669 | VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB, |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 670 | MBB.SkipPHIsAndLabels(MBB.begin())); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 671 | RegAssign.insert(Start, VNI->def, OpenIdx); |
| 672 | DEBUG(dump()); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 673 | return VNI->def; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 674 | } |
| 675 | |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 676 | void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) { |
| 677 | assert(OpenIdx && "openIntv not called before overlapIntv"); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 678 | const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start); |
| 679 | assert(ParentVNI == Edit->getParent().getVNInfoAt(End.getPrevSlot()) && |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 680 | "Parent changes value in extended range"); |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 681 | assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) && |
| 682 | "Range cannot span basic blocks"); |
| 683 | |
Jakob Stoklund Olesen | d3fdaeb | 2011-03-02 00:49:28 +0000 | [diff] [blame] | 684 | // The complement interval will be extended as needed by extendRange(). |
Jakob Stoklund Olesen | b3dd826 | 2011-04-05 23:43:14 +0000 | [diff] [blame] | 685 | if (ParentVNI) |
| 686 | markComplexMapped(0, ParentVNI); |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 687 | DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):"); |
| 688 | RegAssign.insert(Start, End, OpenIdx); |
| 689 | DEBUG(dump()); |
| 690 | } |
| 691 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 692 | /// closeIntv - Indicate that we are done editing the currently open |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 693 | /// LiveInterval, and ranges can be trimmed. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 694 | void SplitEditor::closeIntv() { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 695 | assert(OpenIdx && "openIntv not called before closeIntv"); |
| 696 | OpenIdx = 0; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 699 | /// transferSimpleValues - Transfer all simply defined values to the new live |
| 700 | /// ranges. |
| 701 | /// Values that were rematerialized or that have multiple defs are left alone. |
| 702 | bool SplitEditor::transferSimpleValues() { |
| 703 | bool Skipped = false; |
| 704 | RegAssignMap::const_iterator AssignI = RegAssign.begin(); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 705 | for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(), |
| 706 | ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) { |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 707 | DEBUG(dbgs() << " blit " << *ParentI << ':'); |
| 708 | VNInfo *ParentVNI = ParentI->valno; |
| 709 | // RegAssign has holes where RegIdx 0 should be used. |
| 710 | SlotIndex Start = ParentI->start; |
| 711 | AssignI.advanceTo(Start); |
| 712 | do { |
| 713 | unsigned RegIdx; |
| 714 | SlotIndex End = ParentI->end; |
| 715 | if (!AssignI.valid()) { |
| 716 | RegIdx = 0; |
| 717 | } else if (AssignI.start() <= Start) { |
| 718 | RegIdx = AssignI.value(); |
| 719 | if (AssignI.stop() < End) { |
| 720 | End = AssignI.stop(); |
| 721 | ++AssignI; |
| 722 | } |
| 723 | } else { |
| 724 | RegIdx = 0; |
| 725 | End = std::min(End, AssignI.start()); |
| 726 | } |
| 727 | DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx); |
| 728 | if (VNInfo *VNI = Values.lookup(std::make_pair(RegIdx, ParentVNI->id))) { |
| 729 | DEBUG(dbgs() << ':' << VNI->id); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 730 | Edit->get(RegIdx)->addRange(LiveRange(Start, End, VNI)); |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 731 | } else |
| 732 | Skipped = true; |
| 733 | Start = End; |
| 734 | } while (Start != ParentI->end); |
| 735 | DEBUG(dbgs() << '\n'); |
| 736 | } |
| 737 | return Skipped; |
| 738 | } |
| 739 | |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 740 | void SplitEditor::extendPHIKillRanges() { |
| 741 | // Extend live ranges to be live-out for successor PHI values. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 742 | for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(), |
| 743 | E = Edit->getParent().vni_end(); I != E; ++I) { |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 744 | const VNInfo *PHIVNI = *I; |
| 745 | if (PHIVNI->isUnused() || !PHIVNI->isPHIDef()) |
| 746 | continue; |
| 747 | unsigned RegIdx = RegAssign.lookup(PHIVNI->def); |
| 748 | MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def); |
| 749 | for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(), |
| 750 | PE = MBB->pred_end(); PI != PE; ++PI) { |
| 751 | SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot(); |
| 752 | // The predecessor may not have a live-out value. That is OK, like an |
| 753 | // undef PHI operand. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 754 | if (Edit->getParent().liveAt(End)) { |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 755 | assert(RegAssign.lookup(End) == RegIdx && |
| 756 | "Different register assignment in phi predecessor"); |
| 757 | extendRange(RegIdx, End); |
| 758 | } |
| 759 | } |
| 760 | } |
| 761 | } |
| 762 | |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 763 | /// rewriteAssigned - Rewrite all uses of Edit->getReg(). |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 764 | void SplitEditor::rewriteAssigned(bool ExtendRanges) { |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 765 | for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()), |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 766 | RE = MRI.reg_end(); RI != RE;) { |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 767 | MachineOperand &MO = RI.getOperand(); |
| 768 | MachineInstr *MI = MO.getParent(); |
| 769 | ++RI; |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 770 | // LiveDebugVariables should have handled all DBG_VALUE instructions. |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 771 | if (MI->isDebugValue()) { |
| 772 | DEBUG(dbgs() << "Zapping " << *MI); |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 773 | MO.setReg(0); |
| 774 | continue; |
| 775 | } |
Jakob Stoklund Olesen | a372d16 | 2011-02-09 21:52:09 +0000 | [diff] [blame] | 776 | |
| 777 | // <undef> operands don't really read the register, so just assign them to |
| 778 | // the complement. |
| 779 | if (MO.isUse() && MO.isUndef()) { |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 780 | MO.setReg(Edit->get(0)->reg); |
Jakob Stoklund Olesen | a372d16 | 2011-02-09 21:52:09 +0000 | [diff] [blame] | 781 | continue; |
| 782 | } |
| 783 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 784 | SlotIndex Idx = LIS.getInstructionIndex(MI); |
Jakob Stoklund Olesen | 7cec179 | 2011-03-18 03:06:02 +0000 | [diff] [blame] | 785 | if (MO.isDef()) |
| 786 | Idx = MO.isEarlyClobber() ? Idx.getUseIndex() : Idx.getDefIndex(); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 787 | |
| 788 | // Rewrite to the mapped register at Idx. |
| 789 | unsigned RegIdx = RegAssign.lookup(Idx); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 790 | MO.setReg(Edit->get(RegIdx)->reg); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 791 | DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t' |
| 792 | << Idx << ':' << RegIdx << '\t' << *MI); |
| 793 | |
Jakob Stoklund Olesen | 7cec179 | 2011-03-18 03:06:02 +0000 | [diff] [blame] | 794 | // Extend liveness to Idx if the instruction reads reg. |
| 795 | if (!ExtendRanges) |
| 796 | continue; |
| 797 | |
| 798 | // Skip instructions that don't read Reg. |
| 799 | if (MO.isDef()) { |
| 800 | if (!MO.getSubReg() && !MO.isEarlyClobber()) |
| 801 | continue; |
| 802 | // We may wan't to extend a live range for a partial redef, or for a use |
| 803 | // tied to an early clobber. |
| 804 | Idx = Idx.getPrevSlot(); |
| 805 | if (!Edit->getParent().liveAt(Idx)) |
| 806 | continue; |
| 807 | } else |
| 808 | Idx = Idx.getUseIndex(); |
| 809 | |
| 810 | extendRange(RegIdx, Idx); |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 811 | } |
| 812 | } |
| 813 | |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 814 | void SplitEditor::deleteRematVictims() { |
| 815 | SmallVector<MachineInstr*, 8> Dead; |
Jakob Stoklund Olesen | 2dc455a | 2011-03-20 19:46:23 +0000 | [diff] [blame] | 816 | for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){ |
| 817 | LiveInterval *LI = *I; |
| 818 | for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end(); |
| 819 | LII != LIE; ++LII) { |
| 820 | // Dead defs end at the store slot. |
| 821 | if (LII->end != LII->valno->def.getNextSlot()) |
| 822 | continue; |
| 823 | MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def); |
| 824 | assert(MI && "Missing instruction for dead def"); |
| 825 | MI->addRegisterDead(LI->reg, &TRI); |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 826 | |
Jakob Stoklund Olesen | 2dc455a | 2011-03-20 19:46:23 +0000 | [diff] [blame] | 827 | if (!MI->allDefsAreDead()) |
| 828 | continue; |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 829 | |
Jakob Stoklund Olesen | 2dc455a | 2011-03-20 19:46:23 +0000 | [diff] [blame] | 830 | DEBUG(dbgs() << "All defs dead: " << *MI); |
| 831 | Dead.push_back(MI); |
| 832 | } |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | if (Dead.empty()) |
| 836 | return; |
| 837 | |
Jakob Stoklund Olesen | 6a3dbd3 | 2011-03-17 20:37:07 +0000 | [diff] [blame] | 838 | Edit->eliminateDeadDefs(Dead, LIS, VRM, TII); |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 839 | } |
| 840 | |
Eric Christopher | 463a297 | 2011-02-03 05:40:54 +0000 | [diff] [blame] | 841 | void SplitEditor::finish() { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 842 | assert(OpenIdx == 0 && "Previous LI not closed before rewrite"); |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 843 | ++NumFinished; |
Eric Christopher | 463a297 | 2011-02-03 05:40:54 +0000 | [diff] [blame] | 844 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 845 | // At this point, the live intervals in Edit contain VNInfos corresponding to |
| 846 | // the inserted copies. |
| 847 | |
| 848 | // Add the original defs from the parent interval. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 849 | for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(), |
| 850 | E = Edit->getParent().vni_end(); I != E; ++I) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 851 | const VNInfo *ParentVNI = *I; |
Jakob Stoklund Olesen | 9ecd1e7 | 2011-02-04 00:59:23 +0000 | [diff] [blame] | 852 | if (ParentVNI->isUnused()) |
| 853 | continue; |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 854 | unsigned RegIdx = RegAssign.lookup(ParentVNI->def); |
Jakob Stoklund Olesen | 29ef875 | 2011-03-15 21:13:22 +0000 | [diff] [blame] | 855 | VNInfo *VNI = defValue(RegIdx, ParentVNI, ParentVNI->def); |
| 856 | VNI->setIsPHIDef(ParentVNI->isPHIDef()); |
| 857 | VNI->setCopy(ParentVNI->getCopy()); |
| 858 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 859 | // Mark rematted values as complex everywhere to force liveness computation. |
| 860 | // The new live ranges may be truncated. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 861 | if (Edit->didRematerialize(ParentVNI)) |
| 862 | for (unsigned i = 0, e = Edit->size(); i != e; ++i) |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 863 | markComplexMapped(i, ParentVNI); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | #ifndef NDEBUG |
| 867 | // Every new interval must have a def by now, otherwise the split is bogus. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 868 | for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I) |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 869 | assert((*I)->hasAtLeastOneValue() && "Split interval has no value"); |
| 870 | #endif |
| 871 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 872 | // Transfer the simply mapped values, check if any are complex. |
| 873 | bool Complex = transferSimpleValues(); |
| 874 | if (Complex) |
| 875 | extendPHIKillRanges(); |
| 876 | else |
| 877 | ++NumSimple; |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 878 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 879 | // Rewrite virtual registers, possibly extending ranges. |
| 880 | rewriteAssigned(Complex); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 881 | |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 882 | // Delete defs that were rematted everywhere. |
| 883 | if (Complex) |
| 884 | deleteRematVictims(); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 885 | |
Jakob Stoklund Olesen | 0253df9 | 2010-10-07 23:34:34 +0000 | [diff] [blame] | 886 | // Get rid of unused values and set phi-kill flags. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 887 | for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I) |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 888 | (*I)->RenumberValues(LIS); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 889 | |
Jakob Stoklund Olesen | 3a0e071 | 2010-10-26 22:36:09 +0000 | [diff] [blame] | 890 | // Now check if any registers were separated into multiple components. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 891 | ConnectedVNInfoEqClasses ConEQ(LIS); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 892 | for (unsigned i = 0, e = Edit->size(); i != e; ++i) { |
Jakob Stoklund Olesen | 3a0e071 | 2010-10-26 22:36:09 +0000 | [diff] [blame] | 893 | // Don't use iterators, they are invalidated by create() below. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 894 | LiveInterval *li = Edit->get(i); |
Jakob Stoklund Olesen | 3a0e071 | 2010-10-26 22:36:09 +0000 | [diff] [blame] | 895 | unsigned NumComp = ConEQ.Classify(li); |
| 896 | if (NumComp <= 1) |
| 897 | continue; |
| 898 | DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n'); |
| 899 | SmallVector<LiveInterval*, 8> dups; |
| 900 | dups.push_back(li); |
| 901 | for (unsigned i = 1; i != NumComp; ++i) |
Jakob Stoklund Olesen | 6a3dbd3 | 2011-03-17 20:37:07 +0000 | [diff] [blame] | 902 | dups.push_back(&Edit->create(LIS, VRM)); |
Jakob Stoklund Olesen | 2254227 | 2011-03-17 00:23:45 +0000 | [diff] [blame] | 903 | ConEQ.Distribute(&dups[0], MRI); |
Jakob Stoklund Olesen | 3a0e071 | 2010-10-26 22:36:09 +0000 | [diff] [blame] | 904 | } |
| 905 | |
Jakob Stoklund Olesen | 08e93b1 | 2010-08-10 17:07:22 +0000 | [diff] [blame] | 906 | // Calculate spill weight and allocation hints for new intervals. |
Jakob Stoklund Olesen | 6094bd8 | 2011-03-29 21:20:19 +0000 | [diff] [blame] | 907 | Edit->calculateRegClassAndHint(VRM.getMachineFunction(), LIS, SA.Loops); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 908 | } |
| 909 | |
| 910 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 911 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 912 | // Single Block Splitting |
| 913 | //===----------------------------------------------------------------------===// |
| 914 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 915 | /// getMultiUseBlocks - if CurLI has more than one use in a basic block, it |
| 916 | /// may be an advantage to split CurLI for the duration of the block. |
Jakob Stoklund Olesen | 2bfb324 | 2010-10-22 22:48:56 +0000 | [diff] [blame] | 917 | bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 918 | // If CurLI is local to one block, there is no point to splitting it. |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 919 | if (UseBlocks.size() <= 1) |
Jakob Stoklund Olesen | 2bfb324 | 2010-10-22 22:48:56 +0000 | [diff] [blame] | 920 | return false; |
| 921 | // Add blocks with multiple uses. |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 922 | for (unsigned i = 0, e = UseBlocks.size(); i != e; ++i) { |
| 923 | const BlockInfo &BI = UseBlocks[i]; |
| 924 | if (BI.FirstUse == BI.LastUse) |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 925 | continue; |
| 926 | Blocks.insert(BI.MBB); |
| 927 | } |
Jakob Stoklund Olesen | 2bfb324 | 2010-10-22 22:48:56 +0000 | [diff] [blame] | 928 | return !Blocks.empty(); |
| 929 | } |
| 930 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 931 | /// splitSingleBlocks - Split CurLI into a separate live interval inside each |
Jakob Stoklund Olesen | 57d0f2d | 2010-10-05 22:19:33 +0000 | [diff] [blame] | 932 | /// basic block in Blocks. |
| 933 | void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) { |
Jakob Stoklund Olesen | e1f543f | 2010-08-12 18:50:55 +0000 | [diff] [blame] | 934 | DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n"); |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 935 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA.getUseBlocks(); |
| 936 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 937 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| 938 | if (!Blocks.count(BI.MBB)) |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 939 | continue; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 940 | |
| 941 | openIntv(); |
Jakob Stoklund Olesen | 612f780 | 2011-04-05 04:20:29 +0000 | [diff] [blame] | 942 | SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber()); |
Jakob Stoklund Olesen | c8ec765 | 2011-03-29 03:12:04 +0000 | [diff] [blame] | 943 | SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstUse, |
Jakob Stoklund Olesen | 612f780 | 2011-04-05 04:20:29 +0000 | [diff] [blame] | 944 | LastSplitPoint)); |
| 945 | if (!BI.LiveOut || BI.LastUse < LastSplitPoint) { |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 946 | useIntv(SegStart, leaveIntvAfter(BI.LastUse)); |
| 947 | } else { |
Jakob Stoklund Olesen | c70f687 | 2011-02-23 18:26:31 +0000 | [diff] [blame] | 948 | // The last use is after the last valid split point. |
Jakob Stoklund Olesen | 612f780 | 2011-04-05 04:20:29 +0000 | [diff] [blame] | 949 | SlotIndex SegStop = leaveIntvBefore(LastSplitPoint); |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 950 | useIntv(SegStart, SegStop); |
| 951 | overlapIntv(SegStop, BI.LastUse); |
| 952 | } |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 953 | closeIntv(); |
| 954 | } |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 955 | finish(); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 956 | } |