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