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