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