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