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