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