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 | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 17 | #include "VirtRegMap.h" |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/Statistic.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/LiveIntervalAnalysis.h" |
Pete Cooper | 789d5d8 | 2012-04-02 22:44:18 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/LiveRangeEdit.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 | c4c6338 | 2011-09-14 16:45:39 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 25 | #include "llvm/Support/Debug.h" |
| 26 | #include "llvm/Support/raw_ostream.h" |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetInstrInfo.h" |
| 28 | #include "llvm/Target/TargetMachine.h" |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 29 | |
| 30 | using namespace llvm; |
| 31 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 32 | STATISTIC(NumFinished, "Number of splits finished"); |
| 33 | STATISTIC(NumSimple, "Number of splits that were simple"); |
Jakob Stoklund Olesen | e9bd4ea | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 34 | STATISTIC(NumCopies, "Number of copies inserted for splitting"); |
| 35 | STATISTIC(NumRemats, "Number of rematerialized defs for splitting"); |
Jakob Stoklund Olesen | bdda37d | 2011-05-10 17:37:41 +0000 | [diff] [blame] | 36 | STATISTIC(NumRepairs, "Number of invalid live ranges repaired"); |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 37 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 38 | //===----------------------------------------------------------------------===// |
| 39 | // Split Analysis |
| 40 | //===----------------------------------------------------------------------===// |
| 41 | |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 42 | SplitAnalysis::SplitAnalysis(const VirtRegMap &vrm, |
Jakob Stoklund Olesen | f2c6e36 | 2010-07-20 23:50:15 +0000 | [diff] [blame] | 43 | const LiveIntervals &lis, |
| 44 | const MachineLoopInfo &mli) |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 45 | : MF(vrm.getMachineFunction()), |
| 46 | VRM(vrm), |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 47 | LIS(lis), |
| 48 | Loops(mli), |
Jakob Stoklund Olesen | 1b847de | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 49 | TII(*MF.getTarget().getInstrInfo()), |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 50 | CurLI(0), |
| 51 | LastSplitPoint(MF.getNumBlockIDs()) {} |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 52 | |
| 53 | void SplitAnalysis::clear() { |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 54 | UseSlots.clear(); |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 55 | UseBlocks.clear(); |
| 56 | ThroughBlocks.clear(); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 57 | CurLI = 0; |
Jakob Stoklund Olesen | 7d6b6a0 | 2011-05-03 20:42:13 +0000 | [diff] [blame] | 58 | DidRepairRange = false; |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 61 | SlotIndex SplitAnalysis::computeLastSplitPoint(unsigned Num) { |
| 62 | const MachineBasicBlock *MBB = MF.getBlockNumbered(Num); |
| 63 | const MachineBasicBlock *LPad = MBB->getLandingPadSuccessor(); |
| 64 | std::pair<SlotIndex, SlotIndex> &LSP = LastSplitPoint[Num]; |
Jakob Stoklund Olesen | 2aad2f6 | 2012-01-11 02:07:05 +0000 | [diff] [blame] | 65 | SlotIndex MBBEnd = LIS.getMBBEndIdx(MBB); |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 66 | |
| 67 | // Compute split points on the first call. The pair is independent of the |
| 68 | // current live interval. |
| 69 | if (!LSP.first.isValid()) { |
| 70 | MachineBasicBlock::const_iterator FirstTerm = MBB->getFirstTerminator(); |
| 71 | if (FirstTerm == MBB->end()) |
Jakob Stoklund Olesen | 2aad2f6 | 2012-01-11 02:07:05 +0000 | [diff] [blame] | 72 | LSP.first = MBBEnd; |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 73 | else |
| 74 | LSP.first = LIS.getInstructionIndex(FirstTerm); |
| 75 | |
| 76 | // If there is a landing pad successor, also find the call instruction. |
| 77 | if (!LPad) |
| 78 | return LSP.first; |
| 79 | // There may not be a call instruction (?) in which case we ignore LPad. |
| 80 | LSP.second = LSP.first; |
Jakob Stoklund Olesen | 1e0bd63 | 2011-06-28 01:18:58 +0000 | [diff] [blame] | 81 | for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin(); |
| 82 | I != E;) { |
| 83 | --I; |
Evan Cheng | 5a96b3d | 2011-12-07 07:15:52 +0000 | [diff] [blame] | 84 | if (I->isCall()) { |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 85 | LSP.second = LIS.getInstructionIndex(I); |
| 86 | break; |
| 87 | } |
Jakob Stoklund Olesen | 1e0bd63 | 2011-06-28 01:18:58 +0000 | [diff] [blame] | 88 | } |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | // If CurLI is live into a landing pad successor, move the last split point |
| 92 | // back to the call that may throw. |
Jakob Stoklund Olesen | 2aad2f6 | 2012-01-11 02:07:05 +0000 | [diff] [blame] | 93 | if (!LPad || !LSP.second || !LIS.isLiveInToMBB(*CurLI, LPad)) |
Jakob Stoklund Olesen | 1a77445 | 2011-04-05 04:20:27 +0000 | [diff] [blame] | 94 | return LSP.first; |
Jakob Stoklund Olesen | 2aad2f6 | 2012-01-11 02:07:05 +0000 | [diff] [blame] | 95 | |
| 96 | // Find the value leaving MBB. |
| 97 | const VNInfo *VNI = CurLI->getVNInfoBefore(MBBEnd); |
| 98 | if (!VNI) |
| 99 | return LSP.first; |
| 100 | |
| 101 | // If the value leaving MBB was defined after the call in MBB, it can't |
| 102 | // really be live-in to the landing pad. This can happen if the landing pad |
| 103 | // has a PHI, and this register is undef on the exceptional edge. |
| 104 | // <rdar://problem/10664933> |
| 105 | if (!SlotIndex::isEarlierInstr(VNI->def, LSP.second) && VNI->def < MBBEnd) |
| 106 | return LSP.first; |
| 107 | |
| 108 | // Value is properly live-in to the landing pad. |
| 109 | // Only allow splits before the call. |
| 110 | return LSP.second; |
Jakob Stoklund Olesen | 6a0dc07 | 2010-07-20 21:46:58 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Jakob Stoklund Olesen | 74c4f97 | 2012-01-11 02:07:00 +0000 | [diff] [blame] | 113 | MachineBasicBlock::iterator |
| 114 | SplitAnalysis::getLastSplitPointIter(MachineBasicBlock *MBB) { |
| 115 | SlotIndex LSP = getLastSplitPoint(MBB->getNumber()); |
| 116 | if (LSP == LIS.getMBBEndIdx(MBB)) |
| 117 | return MBB->end(); |
| 118 | return LIS.getInstructionFromIndex(LSP); |
| 119 | } |
| 120 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 121 | /// analyzeUses - Count instructions, basic blocks, and loops using CurLI. |
Jakob Stoklund Olesen | abff280 | 2010-07-20 16:12:37 +0000 | [diff] [blame] | 122 | void SplitAnalysis::analyzeUses() { |
Jakob Stoklund Olesen | a2948ef | 2011-04-05 15:18:18 +0000 | [diff] [blame] | 123 | assert(UseSlots.empty() && "Call clear first"); |
| 124 | |
| 125 | // First get all the defs from the interval values. This provides the correct |
| 126 | // slots for early clobbers. |
| 127 | for (LiveInterval::const_vni_iterator I = CurLI->vni_begin(), |
| 128 | E = CurLI->vni_end(); I != E; ++I) |
| 129 | if (!(*I)->isPHIDef() && !(*I)->isUnused()) |
| 130 | UseSlots.push_back((*I)->def); |
| 131 | |
| 132 | // Get use slots form the use-def chain. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 133 | const MachineRegisterInfo &MRI = MF.getRegInfo(); |
Jakob Stoklund Olesen | a2948ef | 2011-04-05 15:18:18 +0000 | [diff] [blame] | 134 | for (MachineRegisterInfo::use_nodbg_iterator |
| 135 | I = MRI.use_nodbg_begin(CurLI->reg), E = MRI.use_nodbg_end(); I != E; |
| 136 | ++I) |
| 137 | if (!I.getOperand().isUndef()) |
Jakob Stoklund Olesen | 2debd48 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 138 | UseSlots.push_back(LIS.getInstructionIndex(&*I).getRegSlot()); |
Jakob Stoklund Olesen | a2948ef | 2011-04-05 15:18:18 +0000 | [diff] [blame] | 139 | |
Jakob Stoklund Olesen | b5fa933 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 140 | array_pod_sort(UseSlots.begin(), UseSlots.end()); |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 141 | |
Jakob Stoklund Olesen | a2948ef | 2011-04-05 15:18:18 +0000 | [diff] [blame] | 142 | // Remove duplicates, keeping the smaller slot for each instruction. |
| 143 | // That is what we want for early clobbers. |
| 144 | UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(), |
| 145 | SlotIndex::isSameInstr), |
| 146 | UseSlots.end()); |
| 147 | |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 148 | // Compute per-live block info. |
| 149 | if (!calcLiveBlockInfo()) { |
| 150 | // FIXME: calcLiveBlockInfo found inconsistencies in the live range. |
Rafael Espindola | 5b22021 | 2011-06-26 22:34:10 +0000 | [diff] [blame] | 151 | // I am looking at you, RegisterCoalescer! |
Jakob Stoklund Olesen | 7d6b6a0 | 2011-05-03 20:42:13 +0000 | [diff] [blame] | 152 | DidRepairRange = true; |
Jakob Stoklund Olesen | bdda37d | 2011-05-10 17:37:41 +0000 | [diff] [blame] | 153 | ++NumRepairs; |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 154 | DEBUG(dbgs() << "*** Fixing inconsistent live interval! ***\n"); |
| 155 | const_cast<LiveIntervals&>(LIS) |
| 156 | .shrinkToUses(const_cast<LiveInterval*>(CurLI)); |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 157 | UseBlocks.clear(); |
| 158 | ThroughBlocks.clear(); |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 159 | bool fixed = calcLiveBlockInfo(); |
| 160 | (void)fixed; |
| 161 | assert(fixed && "Couldn't fix broken live interval"); |
| 162 | } |
| 163 | |
Jakob Stoklund Olesen | ef1f5cc | 2011-03-27 22:49:23 +0000 | [diff] [blame] | 164 | DEBUG(dbgs() << "Analyze counted " |
Jakob Stoklund Olesen | db529a8 | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 165 | << UseSlots.size() << " instrs in " |
| 166 | << UseBlocks.size() << " blocks, through " |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 167 | << NumThroughBlocks << " blocks.\n"); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 168 | } |
| 169 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 170 | /// calcLiveBlockInfo - Fill the LiveBlocks array with information about blocks |
| 171 | /// where CurLI is live. |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 172 | bool SplitAnalysis::calcLiveBlockInfo() { |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 173 | ThroughBlocks.resize(MF.getNumBlockIDs()); |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 174 | NumThroughBlocks = NumGapBlocks = 0; |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 175 | if (CurLI->empty()) |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 176 | return true; |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 177 | |
| 178 | LiveInterval::const_iterator LVI = CurLI->begin(); |
| 179 | LiveInterval::const_iterator LVE = CurLI->end(); |
| 180 | |
| 181 | SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE; |
| 182 | UseI = UseSlots.begin(); |
| 183 | UseE = UseSlots.end(); |
| 184 | |
| 185 | // Loop over basic blocks where CurLI is live. |
| 186 | MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start); |
| 187 | for (;;) { |
| 188 | BlockInfo BI; |
| 189 | BI.MBB = MFI; |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 190 | SlotIndex Start, Stop; |
| 191 | tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 192 | |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 193 | // 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] | 194 | // point, RegisterCoalescer could create dangling ranges that ended |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 195 | // mid-block. |
| 196 | if (UseI == UseE || *UseI >= Stop) { |
| 197 | ++NumThroughBlocks; |
| 198 | ThroughBlocks.set(BI.MBB->getNumber()); |
| 199 | // The range shouldn't end mid-block if there are no uses. This shouldn't |
| 200 | // happen. |
| 201 | if (LVI->end < Stop) |
| 202 | return false; |
| 203 | } else { |
| 204 | // This block has uses. Find the first and last uses in the block. |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 205 | BI.FirstInstr = *UseI; |
| 206 | assert(BI.FirstInstr >= Start); |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 207 | do ++UseI; |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 208 | while (UseI != UseE && *UseI < Stop); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 209 | BI.LastInstr = UseI[-1]; |
| 210 | assert(BI.LastInstr < Stop); |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 211 | |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 212 | // LVI is the first live segment overlapping MBB. |
| 213 | BI.LiveIn = LVI->start <= Start; |
Jakob Stoklund Olesen | 626d6fb | 2011-05-29 21:24:39 +0000 | [diff] [blame] | 214 | |
Jakob Stoklund Olesen | 77ee114 | 2011-08-02 22:37:22 +0000 | [diff] [blame] | 215 | // When not live in, the first use should be a def. |
| 216 | if (!BI.LiveIn) { |
| 217 | assert(LVI->start == LVI->valno->def && "Dangling LiveRange start"); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 218 | assert(LVI->start == BI.FirstInstr && "First instr should be a def"); |
| 219 | BI.FirstDef = BI.FirstInstr; |
Jakob Stoklund Olesen | 77ee114 | 2011-08-02 22:37:22 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 222 | // Look for gaps in the live range. |
| 223 | BI.LiveOut = true; |
| 224 | while (LVI->end < Stop) { |
| 225 | SlotIndex LastStop = LVI->end; |
| 226 | if (++LVI == LVE || LVI->start >= Stop) { |
| 227 | BI.LiveOut = false; |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 228 | BI.LastInstr = LastStop; |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 229 | break; |
| 230 | } |
Jakob Stoklund Olesen | 77ee114 | 2011-08-02 22:37:22 +0000 | [diff] [blame] | 231 | |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 232 | if (LastStop < LVI->start) { |
| 233 | // There is a gap in the live range. Create duplicate entries for the |
| 234 | // live-in snippet and the live-out snippet. |
| 235 | ++NumGapBlocks; |
| 236 | |
| 237 | // Push the Live-in part. |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 238 | BI.LiveOut = false; |
| 239 | UseBlocks.push_back(BI); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 240 | UseBlocks.back().LastInstr = LastStop; |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 241 | |
| 242 | // Set up BI for the live-out part. |
| 243 | BI.LiveIn = false; |
| 244 | BI.LiveOut = true; |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 245 | BI.FirstInstr = BI.FirstDef = LVI->start; |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 246 | } |
Jakob Stoklund Olesen | 77ee114 | 2011-08-02 22:37:22 +0000 | [diff] [blame] | 247 | |
| 248 | // A LiveRange that starts in the middle of the block must be a def. |
| 249 | assert(LVI->start == LVI->valno->def && "Dangling LiveRange start"); |
| 250 | if (!BI.FirstDef) |
| 251 | BI.FirstDef = LVI->start; |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Jakob Stoklund Olesen | 626d6fb | 2011-05-29 21:24:39 +0000 | [diff] [blame] | 254 | UseBlocks.push_back(BI); |
Jakob Stoklund Olesen | 626d6fb | 2011-05-29 21:24:39 +0000 | [diff] [blame] | 255 | |
Jakob Stoklund Olesen | a2e79ef | 2011-05-30 01:33:26 +0000 | [diff] [blame] | 256 | // LVI is now at LVE or LVI->end >= Stop. |
| 257 | if (LVI == LVE) |
| 258 | break; |
| 259 | } |
Jakob Stoklund Olesen | 626d6fb | 2011-05-29 21:24:39 +0000 | [diff] [blame] | 260 | |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 261 | // Live segment ends exactly at Stop. Move to the next segment. |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 262 | if (LVI->end == Stop && ++LVI == LVE) |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 263 | break; |
| 264 | |
| 265 | // Pick the next basic block. |
Jakob Stoklund Olesen | 6c8afd7 | 2011-04-04 15:32:15 +0000 | [diff] [blame] | 266 | if (LVI->start < Stop) |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 267 | ++MFI; |
| 268 | else |
| 269 | MFI = LIS.getMBBFromIndex(LVI->start); |
| 270 | } |
Jakob Stoklund Olesen | b2abfa0 | 2011-05-28 02:32:57 +0000 | [diff] [blame] | 271 | |
| 272 | assert(getNumLiveBlocks() == countLiveBlocks(CurLI) && "Bad block count"); |
Jakob Stoklund Olesen | 2b0f9e7 | 2011-03-05 18:33:49 +0000 | [diff] [blame] | 273 | return true; |
Jakob Stoklund Olesen | f0ac26c | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Jakob Stoklund Olesen | 9f4b893 | 2011-04-26 22:33:12 +0000 | [diff] [blame] | 276 | unsigned SplitAnalysis::countLiveBlocks(const LiveInterval *cli) const { |
| 277 | if (cli->empty()) |
| 278 | return 0; |
| 279 | LiveInterval *li = const_cast<LiveInterval*>(cli); |
| 280 | LiveInterval::iterator LVI = li->begin(); |
| 281 | LiveInterval::iterator LVE = li->end(); |
| 282 | unsigned Count = 0; |
| 283 | |
| 284 | // Loop over basic blocks where li is live. |
| 285 | MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start); |
| 286 | SlotIndex Stop = LIS.getMBBEndIdx(MFI); |
| 287 | for (;;) { |
| 288 | ++Count; |
| 289 | LVI = li->advanceTo(LVI, Stop); |
| 290 | if (LVI == LVE) |
| 291 | return Count; |
| 292 | do { |
| 293 | ++MFI; |
| 294 | Stop = LIS.getMBBEndIdx(MFI); |
| 295 | } while (Stop <= LVI->start); |
| 296 | } |
| 297 | } |
| 298 | |
Jakob Stoklund Olesen | 06c0f25 | 2011-02-21 23:09:46 +0000 | [diff] [blame] | 299 | bool SplitAnalysis::isOriginalEndpoint(SlotIndex Idx) const { |
| 300 | unsigned OrigReg = VRM.getOriginal(CurLI->reg); |
| 301 | const LiveInterval &Orig = LIS.getInterval(OrigReg); |
| 302 | assert(!Orig.empty() && "Splitting empty interval?"); |
| 303 | LiveInterval::const_iterator I = Orig.find(Idx); |
| 304 | |
| 305 | // Range containing Idx should begin at Idx. |
| 306 | if (I != Orig.end() && I->start <= Idx) |
| 307 | return I->start == Idx; |
| 308 | |
| 309 | // Range does not contain Idx, previous must end at Idx. |
| 310 | return I != Orig.begin() && (--I)->end == Idx; |
| 311 | } |
| 312 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 313 | void SplitAnalysis::analyze(const LiveInterval *li) { |
| 314 | clear(); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 315 | CurLI = li; |
Jakob Stoklund Olesen | abff280 | 2010-07-20 16:12:37 +0000 | [diff] [blame] | 316 | analyzeUses(); |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Jakob Stoklund Olesen | 697483a | 2010-12-15 17:49:52 +0000 | [diff] [blame] | 319 | |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 320 | //===----------------------------------------------------------------------===// |
| 321 | // Split Editor |
| 322 | //===----------------------------------------------------------------------===// |
| 323 | |
| 324 | /// Create a new SplitEditor for editing the LiveInterval analyzed by SA. |
Jakob Stoklund Olesen | d68f458 | 2010-10-28 20:34:50 +0000 | [diff] [blame] | 325 | SplitEditor::SplitEditor(SplitAnalysis &sa, |
| 326 | LiveIntervals &lis, |
| 327 | VirtRegMap &vrm, |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 328 | MachineDominatorTree &mdt) |
Jakob Stoklund Olesen | 0eeca44 | 2011-02-19 00:42:33 +0000 | [diff] [blame] | 329 | : SA(sa), LIS(lis), VRM(vrm), |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 330 | MRI(vrm.getMachineFunction().getRegInfo()), |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 331 | MDT(mdt), |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 332 | TII(*vrm.getMachineFunction().getTarget().getInstrInfo()), |
| 333 | TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()), |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 334 | Edit(0), |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 335 | OpenIdx(0), |
Jakob Stoklund Olesen | 708d06f | 2011-09-12 16:49:21 +0000 | [diff] [blame] | 336 | SpillMode(SM_Partition), |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 337 | RegAssign(Allocator) |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 338 | {} |
| 339 | |
Jakob Stoklund Olesen | 708d06f | 2011-09-12 16:49:21 +0000 | [diff] [blame] | 340 | void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) { |
| 341 | Edit = &LRE; |
| 342 | SpillMode = SM; |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 343 | OpenIdx = 0; |
| 344 | RegAssign.clear(); |
| 345 | Values.clear(); |
Jakob Stoklund Olesen | c1c622e | 2011-09-13 16:47:53 +0000 | [diff] [blame] | 346 | |
| 347 | // Reset the LiveRangeCalc instances needed for this spill mode. |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 348 | LRCalc[0].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT, |
| 349 | &LIS.getVNInfoAllocator()); |
Jakob Stoklund Olesen | c1c622e | 2011-09-13 16:47:53 +0000 | [diff] [blame] | 350 | if (SpillMode) |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 351 | LRCalc[1].reset(&VRM.getMachineFunction(), LIS.getSlotIndexes(), &MDT, |
| 352 | &LIS.getVNInfoAllocator()); |
Jakob Stoklund Olesen | bece06f | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 353 | |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 354 | // We don't need an AliasAnalysis since we will only be performing |
| 355 | // cheap-as-a-copy remats anyway. |
Pete Cooper | 8a06af9 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 356 | Edit->anyRematerializable(0); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 357 | } |
| 358 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 359 | void SplitEditor::dump() const { |
| 360 | if (RegAssign.empty()) { |
| 361 | dbgs() << " empty\n"; |
| 362 | return; |
| 363 | } |
| 364 | |
| 365 | for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I) |
| 366 | dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value(); |
| 367 | dbgs() << '\n'; |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 370 | VNInfo *SplitEditor::defValue(unsigned RegIdx, |
| 371 | const VNInfo *ParentVNI, |
| 372 | SlotIndex Idx) { |
| 373 | assert(ParentVNI && "Mapping NULL value"); |
| 374 | assert(Idx.isValid() && "Invalid SlotIndex"); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 375 | assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI"); |
| 376 | LiveInterval *LI = Edit->get(RegIdx); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 377 | |
| 378 | // Create a new value. |
Jakob Stoklund Olesen | 3b1088a | 2012-02-04 05:20:49 +0000 | [diff] [blame] | 379 | VNInfo *VNI = LI->getNextValue(Idx, LIS.getVNInfoAllocator()); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 380 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 381 | // Use insert for lookup, so we can add missing values with a second lookup. |
| 382 | std::pair<ValueMap::iterator, bool> InsP = |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 383 | Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), |
| 384 | ValueForcePair(VNI, false))); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 385 | |
| 386 | // This was the first time (RegIdx, ParentVNI) was mapped. |
| 387 | // Keep it as a simple def without any liveness. |
| 388 | if (InsP.second) |
| 389 | return VNI; |
| 390 | |
| 391 | // If the previous value was a simple mapping, add liveness for it now. |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 392 | if (VNInfo *OldVNI = InsP.first->second.getPointer()) { |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 393 | SlotIndex Def = OldVNI->def; |
Jakob Stoklund Olesen | 1f81e31 | 2011-11-13 22:42:13 +0000 | [diff] [blame] | 394 | LI->addRange(LiveRange(Def, Def.getDeadSlot(), OldVNI)); |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 395 | // No longer a simple mapping. Switch to a complex, non-forced mapping. |
| 396 | InsP.first->second = ValueForcePair(); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | // This is a complex mapping, add liveness for VNI |
| 400 | SlotIndex Def = VNI->def; |
Jakob Stoklund Olesen | 1f81e31 | 2011-11-13 22:42:13 +0000 | [diff] [blame] | 401 | LI->addRange(LiveRange(Def, Def.getDeadSlot(), VNI)); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 402 | |
| 403 | return VNI; |
| 404 | } |
| 405 | |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 406 | void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI) { |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 407 | assert(ParentVNI && "Mapping NULL value"); |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 408 | ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)]; |
| 409 | VNInfo *VNI = VFP.getPointer(); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 410 | |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 411 | // ParentVNI was either unmapped or already complex mapped. Either way, just |
| 412 | // set the force bit. |
| 413 | if (!VNI) { |
| 414 | VFP.setInt(true); |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 415 | return; |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 416 | } |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 417 | |
| 418 | // This was previously a single mapping. Make sure the old def is represented |
| 419 | // by a trivial live range. |
| 420 | SlotIndex Def = VNI->def; |
Jakob Stoklund Olesen | 1f81e31 | 2011-11-13 22:42:13 +0000 | [diff] [blame] | 421 | Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getDeadSlot(), VNI)); |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 422 | // Mark as complex mapped, forced. |
| 423 | VFP = ValueForcePair(0, true); |
Jakob Stoklund Olesen | e5a2e36 | 2011-09-13 18:05:29 +0000 | [diff] [blame] | 424 | } |
| 425 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 426 | VNInfo *SplitEditor::defFromParent(unsigned RegIdx, |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 427 | VNInfo *ParentVNI, |
| 428 | SlotIndex UseIdx, |
| 429 | MachineBasicBlock &MBB, |
| 430 | MachineBasicBlock::iterator I) { |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 431 | MachineInstr *CopyMI = 0; |
| 432 | SlotIndex Def; |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 433 | LiveInterval *LI = Edit->get(RegIdx); |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 434 | |
Jakob Stoklund Olesen | bb30dd4 | 2011-05-02 05:29:58 +0000 | [diff] [blame] | 435 | // We may be trying to avoid interference that ends at a deleted instruction, |
| 436 | // so always begin RegIdx 0 early and all others late. |
| 437 | bool Late = RegIdx != 0; |
| 438 | |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 439 | // Attempt cheap-as-a-copy rematerialization. |
| 440 | LiveRangeEdit::Remat RM(ParentVNI); |
Pete Cooper | 8a06af9 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 441 | if (Edit->canRematerializeAt(RM, UseIdx, true)) { |
| 442 | Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, TRI, Late); |
Jakob Stoklund Olesen | e9bd4ea | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 443 | ++NumRemats; |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 444 | } else { |
| 445 | // Can't remat, just insert a copy from parent. |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 446 | CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg) |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 447 | .addReg(Edit->getReg()); |
Jakob Stoklund Olesen | bb30dd4 | 2011-05-02 05:29:58 +0000 | [diff] [blame] | 448 | Def = LIS.getSlotIndexes()->insertMachineInstrInMaps(CopyMI, Late) |
Jakob Stoklund Olesen | 2debd48 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 449 | .getRegSlot(); |
Jakob Stoklund Olesen | e9bd4ea | 2011-05-05 17:22:53 +0000 | [diff] [blame] | 450 | ++NumCopies; |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 451 | } |
| 452 | |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 453 | // Define the value in Reg. |
Jakob Stoklund Olesen | 3b1088a | 2012-02-04 05:20:49 +0000 | [diff] [blame] | 454 | return defValue(RegIdx, ParentVNI, Def); |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 455 | } |
| 456 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 457 | /// Create a new virtual register and live interval. |
Jakob Stoklund Olesen | e1b43c3 | 2011-04-12 18:11:31 +0000 | [diff] [blame] | 458 | unsigned SplitEditor::openIntv() { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 459 | // Create the complement as index 0. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 460 | if (Edit->empty()) |
Pete Cooper | 8a06af9 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 461 | Edit->create(); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 462 | |
| 463 | // Create the open interval. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 464 | OpenIdx = Edit->size(); |
Pete Cooper | 8a06af9 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 465 | Edit->create(); |
Jakob Stoklund Olesen | e1b43c3 | 2011-04-12 18:11:31 +0000 | [diff] [blame] | 466 | return OpenIdx; |
| 467 | } |
| 468 | |
| 469 | void SplitEditor::selectIntv(unsigned Idx) { |
| 470 | assert(Idx != 0 && "Cannot select the complement interval"); |
| 471 | assert(Idx < Edit->size() && "Can only select previously opened interval"); |
Jakob Stoklund Olesen | 87360f7 | 2011-06-30 01:30:39 +0000 | [diff] [blame] | 472 | DEBUG(dbgs() << " selectIntv " << OpenIdx << " -> " << Idx << '\n'); |
Jakob Stoklund Olesen | e1b43c3 | 2011-04-12 18:11:31 +0000 | [diff] [blame] | 473 | OpenIdx = Idx; |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 476 | SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 477 | assert(OpenIdx && "openIntv not called before enterIntvBefore"); |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 478 | DEBUG(dbgs() << " enterIntvBefore " << Idx); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 479 | Idx = Idx.getBaseIndex(); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 480 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 481 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 482 | DEBUG(dbgs() << ": not live\n"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 483 | return Idx; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 484 | } |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 485 | DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n'); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 486 | MachineInstr *MI = LIS.getInstructionFromIndex(Idx); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 487 | assert(MI && "enterIntvBefore called with invalid index"); |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 488 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 489 | VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI); |
| 490 | return VNI->def; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 491 | } |
| 492 | |
Jakob Stoklund Olesen | 87360f7 | 2011-06-30 01:30:39 +0000 | [diff] [blame] | 493 | SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) { |
| 494 | assert(OpenIdx && "openIntv not called before enterIntvAfter"); |
| 495 | DEBUG(dbgs() << " enterIntvAfter " << Idx); |
| 496 | Idx = Idx.getBoundaryIndex(); |
| 497 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx); |
| 498 | if (!ParentVNI) { |
| 499 | DEBUG(dbgs() << ": not live\n"); |
| 500 | return Idx; |
| 501 | } |
| 502 | DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n'); |
| 503 | MachineInstr *MI = LIS.getInstructionFromIndex(Idx); |
| 504 | assert(MI && "enterIntvAfter called with invalid index"); |
| 505 | |
| 506 | VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), |
| 507 | llvm::next(MachineBasicBlock::iterator(MI))); |
| 508 | return VNI->def; |
| 509 | } |
| 510 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 511 | SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 512 | assert(OpenIdx && "openIntv not called before enterIntvAtEnd"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 513 | SlotIndex End = LIS.getMBBEndIdx(&MBB); |
| 514 | SlotIndex Last = End.getPrevSlot(); |
| 515 | DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 516 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Last); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 517 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 518 | DEBUG(dbgs() << ": not live\n"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 519 | return End; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 520 | } |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 521 | DEBUG(dbgs() << ": valno " << ParentVNI->id); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 522 | VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB, |
Jakob Stoklund Olesen | 74c4f97 | 2012-01-11 02:07:00 +0000 | [diff] [blame] | 523 | SA.getLastSplitPointIter(&MBB)); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 524 | RegAssign.insert(VNI->def, End, OpenIdx); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 525 | DEBUG(dump()); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 526 | return VNI->def; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 527 | } |
| 528 | |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 529 | /// useIntv - indicate that all instructions in MBB should use OpenLI. |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 530 | void SplitEditor::useIntv(const MachineBasicBlock &MBB) { |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 531 | useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB)); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 532 | } |
| 533 | |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 534 | void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 535 | assert(OpenIdx && "openIntv not called before useIntv"); |
| 536 | DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):"); |
| 537 | RegAssign.insert(Start, End, OpenIdx); |
| 538 | DEBUG(dump()); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 539 | } |
| 540 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 541 | SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 542 | assert(OpenIdx && "openIntv not called before leaveIntvAfter"); |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 543 | DEBUG(dbgs() << " leaveIntvAfter " << Idx); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 544 | |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 545 | // The interval must be live beyond the instruction at Idx. |
Jakob Stoklund Olesen | ebac0c1 | 2011-09-16 00:03:35 +0000 | [diff] [blame] | 546 | SlotIndex Boundary = Idx.getBoundaryIndex(); |
| 547 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 548 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 549 | DEBUG(dbgs() << ": not live\n"); |
Jakob Stoklund Olesen | ebac0c1 | 2011-09-16 00:03:35 +0000 | [diff] [blame] | 550 | return Boundary.getNextSlot(); |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 551 | } |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 552 | DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n'); |
Jakob Stoklund Olesen | ebac0c1 | 2011-09-16 00:03:35 +0000 | [diff] [blame] | 553 | MachineInstr *MI = LIS.getInstructionFromIndex(Boundary); |
Jakob Stoklund Olesen | 01cb34b | 2011-02-08 18:50:18 +0000 | [diff] [blame] | 554 | assert(MI && "No instruction at index"); |
Jakob Stoklund Olesen | ebac0c1 | 2011-09-16 00:03:35 +0000 | [diff] [blame] | 555 | |
| 556 | // In spill mode, make live ranges as short as possible by inserting the copy |
| 557 | // before MI. This is only possible if that instruction doesn't redefine the |
| 558 | // value. The inserted COPY is not a kill, and we don't need to recompute |
| 559 | // the source live range. The spiller also won't try to hoist this copy. |
| 560 | if (SpillMode && !SlotIndex::isSameInstr(ParentVNI->def, Idx) && |
| 561 | MI->readsVirtualRegister(Edit->getReg())) { |
| 562 | forceRecompute(0, ParentVNI); |
| 563 | defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI); |
| 564 | return Idx; |
| 565 | } |
| 566 | |
| 567 | VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(), |
Jakob Stoklund Olesen | 01cb34b | 2011-02-08 18:50:18 +0000 | [diff] [blame] | 568 | llvm::next(MachineBasicBlock::iterator(MI))); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 569 | return VNI->def; |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 570 | } |
| 571 | |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 572 | SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) { |
| 573 | assert(OpenIdx && "openIntv not called before leaveIntvBefore"); |
| 574 | DEBUG(dbgs() << " leaveIntvBefore " << Idx); |
| 575 | |
| 576 | // The interval must be live into the instruction at Idx. |
Jakob Stoklund Olesen | fc47933 | 2011-07-18 18:47:13 +0000 | [diff] [blame] | 577 | Idx = Idx.getBaseIndex(); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 578 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Idx); |
Jakob Stoklund Olesen | 9b05777 | 2011-02-09 23:30:25 +0000 | [diff] [blame] | 579 | if (!ParentVNI) { |
| 580 | DEBUG(dbgs() << ": not live\n"); |
| 581 | return Idx.getNextSlot(); |
| 582 | } |
| 583 | DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n'); |
| 584 | |
| 585 | MachineInstr *MI = LIS.getInstructionFromIndex(Idx); |
| 586 | assert(MI && "No instruction at index"); |
| 587 | VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(), MI); |
| 588 | return VNI->def; |
| 589 | } |
| 590 | |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 591 | SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 592 | assert(OpenIdx && "openIntv not called before leaveIntvAtTop"); |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 593 | SlotIndex Start = LIS.getMBBStartIdx(&MBB); |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 594 | DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start); |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 595 | |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 596 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start); |
Jakob Stoklund Olesen | f6a129a | 2010-09-16 00:01:36 +0000 | [diff] [blame] | 597 | if (!ParentVNI) { |
Jakob Stoklund Olesen | 9b24afe | 2010-10-07 17:56:35 +0000 | [diff] [blame] | 598 | DEBUG(dbgs() << ": not live\n"); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 599 | return Start; |
Jakob Stoklund Olesen | 7536f72 | 2010-08-04 22:08:39 +0000 | [diff] [blame] | 600 | } |
| 601 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 602 | VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB, |
Jakob Stoklund Olesen | cfa7134 | 2010-11-10 19:31:50 +0000 | [diff] [blame] | 603 | MBB.SkipPHIsAndLabels(MBB.begin())); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 604 | RegAssign.insert(Start, VNI->def, OpenIdx); |
| 605 | DEBUG(dump()); |
Jakob Stoklund Olesen | 207c868 | 2011-02-03 17:04:16 +0000 | [diff] [blame] | 606 | return VNI->def; |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 607 | } |
| 608 | |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 609 | void SplitEditor::overlapIntv(SlotIndex Start, SlotIndex End) { |
| 610 | assert(OpenIdx && "openIntv not called before overlapIntv"); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 611 | const VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start); |
Jakob Stoklund Olesen | 194eb71 | 2011-11-14 01:39:36 +0000 | [diff] [blame] | 612 | assert(ParentVNI == Edit->getParent().getVNInfoBefore(End) && |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 613 | "Parent changes value in extended range"); |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 614 | assert(LIS.getMBBFromIndex(Start) == LIS.getMBBFromIndex(End) && |
| 615 | "Range cannot span basic blocks"); |
| 616 | |
Jakob Stoklund Olesen | abcc73e | 2011-09-13 17:38:57 +0000 | [diff] [blame] | 617 | // The complement interval will be extended as needed by LRCalc.extend(). |
Jakob Stoklund Olesen | b3dd826 | 2011-04-05 23:43:14 +0000 | [diff] [blame] | 618 | if (ParentVNI) |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 619 | forceRecompute(0, ParentVNI); |
Jakob Stoklund Olesen | 5c716bd | 2011-02-08 18:50:21 +0000 | [diff] [blame] | 620 | DEBUG(dbgs() << " overlapIntv [" << Start << ';' << End << "):"); |
| 621 | RegAssign.insert(Start, End, OpenIdx); |
| 622 | DEBUG(dump()); |
| 623 | } |
| 624 | |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 625 | //===----------------------------------------------------------------------===// |
| 626 | // Spill modes |
| 627 | //===----------------------------------------------------------------------===// |
| 628 | |
| 629 | void SplitEditor::removeBackCopies(SmallVectorImpl<VNInfo*> &Copies) { |
| 630 | LiveInterval *LI = Edit->get(0); |
| 631 | DEBUG(dbgs() << "Removing " << Copies.size() << " back-copies.\n"); |
| 632 | RegAssignMap::iterator AssignI; |
| 633 | AssignI.setMap(RegAssign); |
| 634 | |
| 635 | for (unsigned i = 0, e = Copies.size(); i != e; ++i) { |
| 636 | VNInfo *VNI = Copies[i]; |
| 637 | SlotIndex Def = VNI->def; |
| 638 | MachineInstr *MI = LIS.getInstructionFromIndex(Def); |
| 639 | assert(MI && "No instruction for back-copy"); |
| 640 | |
| 641 | MachineBasicBlock *MBB = MI->getParent(); |
| 642 | MachineBasicBlock::iterator MBBI(MI); |
| 643 | bool AtBegin; |
| 644 | do AtBegin = MBBI == MBB->begin(); |
| 645 | while (!AtBegin && (--MBBI)->isDebugValue()); |
| 646 | |
| 647 | DEBUG(dbgs() << "Removing " << Def << '\t' << *MI); |
| 648 | LI->removeValNo(VNI); |
| 649 | LIS.RemoveMachineInstrFromMaps(MI); |
| 650 | MI->eraseFromParent(); |
| 651 | |
| 652 | // Adjust RegAssign if a register assignment is killed at VNI->def. We |
| 653 | // want to avoid calculating the live range of the source register if |
| 654 | // possible. |
| 655 | AssignI.find(VNI->def.getPrevSlot()); |
| 656 | if (!AssignI.valid() || AssignI.start() >= Def) |
| 657 | continue; |
| 658 | // If MI doesn't kill the assigned register, just leave it. |
| 659 | if (AssignI.stop() != Def) |
| 660 | continue; |
| 661 | unsigned RegIdx = AssignI.value(); |
| 662 | if (AtBegin || !MBBI->readsVirtualRegister(Edit->getReg())) { |
| 663 | DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n'); |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 664 | forceRecompute(RegIdx, Edit->getParent().getVNInfoAt(Def)); |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 665 | } else { |
Jakob Stoklund Olesen | 2debd48 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 666 | SlotIndex Kill = LIS.getInstructionIndex(MBBI).getRegSlot(); |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 667 | DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI); |
| 668 | AssignI.setStop(Kill); |
| 669 | } |
| 670 | } |
| 671 | } |
| 672 | |
Jakob Stoklund Olesen | c4c6338 | 2011-09-14 16:45:39 +0000 | [diff] [blame] | 673 | MachineBasicBlock* |
| 674 | SplitEditor::findShallowDominator(MachineBasicBlock *MBB, |
| 675 | MachineBasicBlock *DefMBB) { |
| 676 | if (MBB == DefMBB) |
| 677 | return MBB; |
| 678 | assert(MDT.dominates(DefMBB, MBB) && "MBB must be dominated by the def."); |
| 679 | |
| 680 | const MachineLoopInfo &Loops = SA.Loops; |
| 681 | const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB); |
| 682 | MachineDomTreeNode *DefDomNode = MDT[DefMBB]; |
| 683 | |
| 684 | // Best candidate so far. |
| 685 | MachineBasicBlock *BestMBB = MBB; |
| 686 | unsigned BestDepth = UINT_MAX; |
| 687 | |
| 688 | for (;;) { |
| 689 | const MachineLoop *Loop = Loops.getLoopFor(MBB); |
| 690 | |
| 691 | // MBB isn't in a loop, it doesn't get any better. All dominators have a |
| 692 | // higher frequency by definition. |
| 693 | if (!Loop) { |
| 694 | DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#" |
| 695 | << MBB->getNumber() << " at depth 0\n"); |
| 696 | return MBB; |
| 697 | } |
| 698 | |
| 699 | // We'll never be able to exit the DefLoop. |
| 700 | if (Loop == DefLoop) { |
| 701 | DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#" |
| 702 | << MBB->getNumber() << " in the same loop\n"); |
| 703 | return MBB; |
| 704 | } |
| 705 | |
| 706 | // Least busy dominator seen so far. |
| 707 | unsigned Depth = Loop->getLoopDepth(); |
| 708 | if (Depth < BestDepth) { |
| 709 | BestMBB = MBB; |
| 710 | BestDepth = Depth; |
| 711 | DEBUG(dbgs() << "Def in BB#" << DefMBB->getNumber() << " dominates BB#" |
| 712 | << MBB->getNumber() << " at depth " << Depth << '\n'); |
| 713 | } |
| 714 | |
| 715 | // Leave loop by going to the immediate dominator of the loop header. |
| 716 | // This is a bigger stride than simply walking up the dominator tree. |
| 717 | MachineDomTreeNode *IDom = MDT[Loop->getHeader()]->getIDom(); |
| 718 | |
| 719 | // Too far up the dominator tree? |
| 720 | if (!IDom || !MDT.dominates(DefDomNode, IDom)) |
| 721 | return BestMBB; |
| 722 | |
| 723 | MBB = IDom->getBlock(); |
| 724 | } |
| 725 | } |
| 726 | |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 727 | void SplitEditor::hoistCopiesForSize() { |
| 728 | // Get the complement interval, always RegIdx 0. |
| 729 | LiveInterval *LI = Edit->get(0); |
| 730 | LiveInterval *Parent = &Edit->getParent(); |
| 731 | |
| 732 | // Track the nearest common dominator for all back-copies for each ParentVNI, |
| 733 | // indexed by ParentVNI->id. |
| 734 | typedef std::pair<MachineBasicBlock*, SlotIndex> DomPair; |
| 735 | SmallVector<DomPair, 8> NearestDom(Parent->getNumValNums()); |
| 736 | |
| 737 | // Find the nearest common dominator for parent values with multiple |
| 738 | // back-copies. If a single back-copy dominates, put it in DomPair.second. |
| 739 | for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end(); |
| 740 | VI != VE; ++VI) { |
| 741 | VNInfo *VNI = *VI; |
| 742 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def); |
| 743 | assert(ParentVNI && "Parent not live at complement def"); |
| 744 | |
| 745 | // Don't hoist remats. The complement is probably going to disappear |
| 746 | // completely anyway. |
| 747 | if (Edit->didRematerialize(ParentVNI)) |
| 748 | continue; |
| 749 | |
| 750 | MachineBasicBlock *ValMBB = LIS.getMBBFromIndex(VNI->def); |
| 751 | DomPair &Dom = NearestDom[ParentVNI->id]; |
| 752 | |
| 753 | // Keep directly defined parent values. This is either a PHI or an |
| 754 | // instruction in the complement range. All other copies of ParentVNI |
| 755 | // should be eliminated. |
| 756 | if (VNI->def == ParentVNI->def) { |
| 757 | DEBUG(dbgs() << "Direct complement def at " << VNI->def << '\n'); |
| 758 | Dom = DomPair(ValMBB, VNI->def); |
| 759 | continue; |
| 760 | } |
| 761 | // Skip the singly mapped values. There is nothing to gain from hoisting a |
| 762 | // single back-copy. |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 763 | if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) { |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 764 | DEBUG(dbgs() << "Single complement def at " << VNI->def << '\n'); |
| 765 | continue; |
| 766 | } |
| 767 | |
| 768 | if (!Dom.first) { |
| 769 | // First time we see ParentVNI. VNI dominates itself. |
| 770 | Dom = DomPair(ValMBB, VNI->def); |
| 771 | } else if (Dom.first == ValMBB) { |
| 772 | // Two defs in the same block. Pick the earlier def. |
| 773 | if (!Dom.second.isValid() || VNI->def < Dom.second) |
| 774 | Dom.second = VNI->def; |
| 775 | } else { |
| 776 | // Different basic blocks. Check if one dominates. |
| 777 | MachineBasicBlock *Near = |
| 778 | MDT.findNearestCommonDominator(Dom.first, ValMBB); |
| 779 | if (Near == ValMBB) |
| 780 | // Def ValMBB dominates. |
| 781 | Dom = DomPair(ValMBB, VNI->def); |
| 782 | else if (Near != Dom.first) |
| 783 | // None dominate. Hoist to common dominator, need new def. |
| 784 | Dom = DomPair(Near, SlotIndex()); |
| 785 | } |
| 786 | |
| 787 | DEBUG(dbgs() << "Multi-mapped complement " << VNI->id << '@' << VNI->def |
| 788 | << " for parent " << ParentVNI->id << '@' << ParentVNI->def |
| 789 | << " hoist to BB#" << Dom.first->getNumber() << ' ' |
| 790 | << Dom.second << '\n'); |
| 791 | } |
| 792 | |
| 793 | // Insert the hoisted copies. |
| 794 | for (unsigned i = 0, e = Parent->getNumValNums(); i != e; ++i) { |
| 795 | DomPair &Dom = NearestDom[i]; |
| 796 | if (!Dom.first || Dom.second.isValid()) |
| 797 | continue; |
Jakob Stoklund Olesen | c4c6338 | 2011-09-14 16:45:39 +0000 | [diff] [blame] | 798 | // This value needs a hoisted copy inserted at the end of Dom.first. |
| 799 | VNInfo *ParentVNI = Parent->getValNumInfo(i); |
| 800 | MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(ParentVNI->def); |
| 801 | // Get a less loopy dominator than Dom.first. |
| 802 | Dom.first = findShallowDominator(Dom.first, DefMBB); |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 803 | SlotIndex Last = LIS.getMBBEndIdx(Dom.first).getPrevSlot(); |
| 804 | Dom.second = |
Jakob Stoklund Olesen | c4c6338 | 2011-09-14 16:45:39 +0000 | [diff] [blame] | 805 | defFromParent(0, ParentVNI, Last, *Dom.first, |
Jakob Stoklund Olesen | 74c4f97 | 2012-01-11 02:07:00 +0000 | [diff] [blame] | 806 | SA.getLastSplitPointIter(Dom.first))->def; |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | // Remove redundant back-copies that are now known to be dominated by another |
| 810 | // def with the same value. |
| 811 | SmallVector<VNInfo*, 8> BackCopies; |
| 812 | for (LiveInterval::vni_iterator VI = LI->vni_begin(), VE = LI->vni_end(); |
| 813 | VI != VE; ++VI) { |
| 814 | VNInfo *VNI = *VI; |
| 815 | VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(VNI->def); |
| 816 | const DomPair &Dom = NearestDom[ParentVNI->id]; |
| 817 | if (!Dom.first || Dom.second == VNI->def) |
| 818 | continue; |
| 819 | BackCopies.push_back(VNI); |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 820 | forceRecompute(0, ParentVNI); |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 821 | } |
| 822 | removeBackCopies(BackCopies); |
| 823 | } |
| 824 | |
| 825 | |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 826 | /// transferValues - Transfer all possible values to the new live ranges. |
Jakob Stoklund Olesen | abcc73e | 2011-09-13 17:38:57 +0000 | [diff] [blame] | 827 | /// Values that were rematerialized are left alone, they need LRCalc.extend(). |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 828 | bool SplitEditor::transferValues() { |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 829 | bool Skipped = false; |
| 830 | RegAssignMap::const_iterator AssignI = RegAssign.begin(); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 831 | for (LiveInterval::const_iterator ParentI = Edit->getParent().begin(), |
| 832 | ParentE = Edit->getParent().end(); ParentI != ParentE; ++ParentI) { |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 833 | DEBUG(dbgs() << " blit " << *ParentI << ':'); |
| 834 | VNInfo *ParentVNI = ParentI->valno; |
| 835 | // RegAssign has holes where RegIdx 0 should be used. |
| 836 | SlotIndex Start = ParentI->start; |
| 837 | AssignI.advanceTo(Start); |
| 838 | do { |
| 839 | unsigned RegIdx; |
| 840 | SlotIndex End = ParentI->end; |
| 841 | if (!AssignI.valid()) { |
| 842 | RegIdx = 0; |
| 843 | } else if (AssignI.start() <= Start) { |
| 844 | RegIdx = AssignI.value(); |
| 845 | if (AssignI.stop() < End) { |
| 846 | End = AssignI.stop(); |
| 847 | ++AssignI; |
| 848 | } |
| 849 | } else { |
| 850 | RegIdx = 0; |
| 851 | End = std::min(End, AssignI.start()); |
| 852 | } |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 853 | |
| 854 | // The interval [Start;End) is continuously mapped to RegIdx, ParentVNI. |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 855 | DEBUG(dbgs() << " [" << Start << ';' << End << ")=" << RegIdx); |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 856 | LiveInterval *LI = Edit->get(RegIdx); |
| 857 | |
| 858 | // Check for a simply defined value that can be blitted directly. |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 859 | ValueForcePair VFP = Values.lookup(std::make_pair(RegIdx, ParentVNI->id)); |
| 860 | if (VNInfo *VNI = VFP.getPointer()) { |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 861 | DEBUG(dbgs() << ':' << VNI->id); |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 862 | LI->addRange(LiveRange(Start, End, VNI)); |
| 863 | Start = End; |
| 864 | continue; |
| 865 | } |
| 866 | |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 867 | // Skip values with forced recomputation. |
| 868 | if (VFP.getInt()) { |
| 869 | DEBUG(dbgs() << "(recalc)"); |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 870 | Skipped = true; |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 871 | Start = End; |
| 872 | continue; |
| 873 | } |
| 874 | |
Jakob Stoklund Olesen | c1c622e | 2011-09-13 16:47:53 +0000 | [diff] [blame] | 875 | LiveRangeCalc &LRC = getLRCalc(RegIdx); |
| 876 | |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 877 | // This value has multiple defs in RegIdx, but it wasn't rematerialized, |
| 878 | // so the live range is accurate. Add live-in blocks in [Start;End) to the |
| 879 | // LiveInBlocks. |
| 880 | MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start); |
| 881 | SlotIndex BlockStart, BlockEnd; |
| 882 | tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB); |
| 883 | |
| 884 | // The first block may be live-in, or it may have its own def. |
| 885 | if (Start != BlockStart) { |
Jakob Stoklund Olesen | ee5655d | 2011-09-13 16:47:56 +0000 | [diff] [blame] | 886 | VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End)); |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 887 | assert(VNI && "Missing def for complex mapped value"); |
| 888 | DEBUG(dbgs() << ':' << VNI->id << "*BB#" << MBB->getNumber()); |
| 889 | // MBB has its own def. Is it also live-out? |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 890 | if (BlockEnd <= End) |
Jakob Stoklund Olesen | c1c622e | 2011-09-13 16:47:53 +0000 | [diff] [blame] | 891 | LRC.setLiveOutValue(MBB, VNI); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 892 | |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 893 | // Skip to the next block for live-in. |
| 894 | ++MBB; |
| 895 | BlockStart = BlockEnd; |
| 896 | } |
| 897 | |
| 898 | // Handle the live-in blocks covered by [Start;End). |
| 899 | assert(Start <= BlockStart && "Expected live-in block"); |
| 900 | while (BlockStart < End) { |
| 901 | DEBUG(dbgs() << ">BB#" << MBB->getNumber()); |
| 902 | BlockEnd = LIS.getMBBEndIdx(MBB); |
| 903 | if (BlockStart == ParentVNI->def) { |
| 904 | // This block has the def of a parent PHI, so it isn't live-in. |
| 905 | assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?"); |
Jakob Stoklund Olesen | ee5655d | 2011-09-13 16:47:56 +0000 | [diff] [blame] | 906 | VNInfo *VNI = LI->extendInBlock(BlockStart, std::min(BlockEnd, End)); |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 907 | assert(VNI && "Missing def for complex mapped parent PHI"); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 908 | if (End >= BlockEnd) |
Jakob Stoklund Olesen | c1c622e | 2011-09-13 16:47:53 +0000 | [diff] [blame] | 909 | LRC.setLiveOutValue(MBB, VNI); // Live-out as well. |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 910 | } else { |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 911 | // This block needs a live-in value. The last block covered may not |
| 912 | // be live-out. |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 913 | if (End < BlockEnd) |
Jakob Stoklund Olesen | c1c622e | 2011-09-13 16:47:53 +0000 | [diff] [blame] | 914 | LRC.addLiveInBlock(LI, MDT[MBB], End); |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 915 | else { |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 916 | // Live-through, and we don't know the value. |
Jakob Stoklund Olesen | c1c622e | 2011-09-13 16:47:53 +0000 | [diff] [blame] | 917 | LRC.addLiveInBlock(LI, MDT[MBB]); |
| 918 | LRC.setLiveOutValue(MBB, 0); |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 919 | } |
| 920 | } |
| 921 | BlockStart = BlockEnd; |
| 922 | ++MBB; |
| 923 | } |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 924 | Start = End; |
| 925 | } while (Start != ParentI->end); |
| 926 | DEBUG(dbgs() << '\n'); |
| 927 | } |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 928 | |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 929 | LRCalc[0].calculateValues(); |
Jakob Stoklund Olesen | c1c622e | 2011-09-13 16:47:53 +0000 | [diff] [blame] | 930 | if (SpillMode) |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 931 | LRCalc[1].calculateValues(); |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 932 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 933 | return Skipped; |
| 934 | } |
| 935 | |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 936 | void SplitEditor::extendPHIKillRanges() { |
| 937 | // Extend live ranges to be live-out for successor PHI values. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 938 | for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(), |
| 939 | E = Edit->getParent().vni_end(); I != E; ++I) { |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 940 | const VNInfo *PHIVNI = *I; |
| 941 | if (PHIVNI->isUnused() || !PHIVNI->isPHIDef()) |
| 942 | continue; |
| 943 | unsigned RegIdx = RegAssign.lookup(PHIVNI->def); |
Jakob Stoklund Olesen | abcc73e | 2011-09-13 17:38:57 +0000 | [diff] [blame] | 944 | LiveInterval *LI = Edit->get(RegIdx); |
| 945 | LiveRangeCalc &LRC = getLRCalc(RegIdx); |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 946 | MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def); |
| 947 | for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(), |
| 948 | PE = MBB->pred_end(); PI != PE; ++PI) { |
Jakob Stoklund Olesen | abcc73e | 2011-09-13 17:38:57 +0000 | [diff] [blame] | 949 | SlotIndex End = LIS.getMBBEndIdx(*PI); |
| 950 | SlotIndex LastUse = End.getPrevSlot(); |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 951 | // The predecessor may not have a live-out value. That is OK, like an |
| 952 | // undef PHI operand. |
Jakob Stoklund Olesen | abcc73e | 2011-09-13 17:38:57 +0000 | [diff] [blame] | 953 | if (Edit->getParent().liveAt(LastUse)) { |
| 954 | assert(RegAssign.lookup(LastUse) == RegIdx && |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 955 | "Different register assignment in phi predecessor"); |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 956 | LRC.extend(LI, End); |
Jakob Stoklund Olesen | e2dc0c9 | 2011-03-02 23:05:16 +0000 | [diff] [blame] | 957 | } |
| 958 | } |
| 959 | } |
| 960 | } |
| 961 | |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 962 | /// rewriteAssigned - Rewrite all uses of Edit->getReg(). |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 963 | void SplitEditor::rewriteAssigned(bool ExtendRanges) { |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 964 | for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit->getReg()), |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 965 | RE = MRI.reg_end(); RI != RE;) { |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 966 | MachineOperand &MO = RI.getOperand(); |
| 967 | MachineInstr *MI = MO.getParent(); |
| 968 | ++RI; |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 969 | // LiveDebugVariables should have handled all DBG_VALUE instructions. |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 970 | if (MI->isDebugValue()) { |
| 971 | DEBUG(dbgs() << "Zapping " << *MI); |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 972 | MO.setReg(0); |
| 973 | continue; |
| 974 | } |
Jakob Stoklund Olesen | a372d16 | 2011-02-09 21:52:09 +0000 | [diff] [blame] | 975 | |
Jakob Stoklund Olesen | b09701d | 2011-07-24 20:23:50 +0000 | [diff] [blame] | 976 | // <undef> operands don't really read the register, so it doesn't matter |
| 977 | // which register we choose. When the use operand is tied to a def, we must |
| 978 | // use the same register as the def, so just do that always. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 979 | SlotIndex Idx = LIS.getInstructionIndex(MI); |
Jakob Stoklund Olesen | b09701d | 2011-07-24 20:23:50 +0000 | [diff] [blame] | 980 | if (MO.isDef() || MO.isUndef()) |
Jakob Stoklund Olesen | 2debd48 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 981 | Idx = Idx.getRegSlot(MO.isEarlyClobber()); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 982 | |
| 983 | // Rewrite to the mapped register at Idx. |
| 984 | unsigned RegIdx = RegAssign.lookup(Idx); |
Jakob Stoklund Olesen | abcc73e | 2011-09-13 17:38:57 +0000 | [diff] [blame] | 985 | LiveInterval *LI = Edit->get(RegIdx); |
| 986 | MO.setReg(LI->reg); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 987 | DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t' |
| 988 | << Idx << ':' << RegIdx << '\t' << *MI); |
| 989 | |
Jakob Stoklund Olesen | 7cec179 | 2011-03-18 03:06:02 +0000 | [diff] [blame] | 990 | // Extend liveness to Idx if the instruction reads reg. |
Jakob Stoklund Olesen | 81d686e | 2011-07-24 20:33:23 +0000 | [diff] [blame] | 991 | if (!ExtendRanges || MO.isUndef()) |
Jakob Stoklund Olesen | 7cec179 | 2011-03-18 03:06:02 +0000 | [diff] [blame] | 992 | continue; |
| 993 | |
| 994 | // Skip instructions that don't read Reg. |
| 995 | if (MO.isDef()) { |
| 996 | if (!MO.getSubReg() && !MO.isEarlyClobber()) |
| 997 | continue; |
| 998 | // We may wan't to extend a live range for a partial redef, or for a use |
| 999 | // tied to an early clobber. |
| 1000 | Idx = Idx.getPrevSlot(); |
| 1001 | if (!Edit->getParent().liveAt(Idx)) |
| 1002 | continue; |
| 1003 | } else |
Jakob Stoklund Olesen | 2debd48 | 2011-11-13 20:45:27 +0000 | [diff] [blame] | 1004 | Idx = Idx.getRegSlot(true); |
Jakob Stoklund Olesen | 7cec179 | 2011-03-18 03:06:02 +0000 | [diff] [blame] | 1005 | |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 1006 | getLRCalc(RegIdx).extend(LI, Idx.getNextSlot()); |
Jakob Stoklund Olesen | 7466927 | 2010-10-08 23:42:21 +0000 | [diff] [blame] | 1007 | } |
| 1008 | } |
| 1009 | |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 1010 | void SplitEditor::deleteRematVictims() { |
| 1011 | SmallVector<MachineInstr*, 8> Dead; |
Jakob Stoklund Olesen | 2dc455a | 2011-03-20 19:46:23 +0000 | [diff] [blame] | 1012 | for (LiveRangeEdit::iterator I = Edit->begin(), E = Edit->end(); I != E; ++I){ |
| 1013 | LiveInterval *LI = *I; |
| 1014 | for (LiveInterval::const_iterator LII = LI->begin(), LIE = LI->end(); |
| 1015 | LII != LIE; ++LII) { |
Jakob Stoklund Olesen | 1f81e31 | 2011-11-13 22:42:13 +0000 | [diff] [blame] | 1016 | // Dead defs end at the dead slot. |
| 1017 | if (LII->end != LII->valno->def.getDeadSlot()) |
Jakob Stoklund Olesen | 2dc455a | 2011-03-20 19:46:23 +0000 | [diff] [blame] | 1018 | continue; |
| 1019 | MachineInstr *MI = LIS.getInstructionFromIndex(LII->valno->def); |
| 1020 | assert(MI && "Missing instruction for dead def"); |
| 1021 | MI->addRegisterDead(LI->reg, &TRI); |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 1022 | |
Jakob Stoklund Olesen | 2dc455a | 2011-03-20 19:46:23 +0000 | [diff] [blame] | 1023 | if (!MI->allDefsAreDead()) |
| 1024 | continue; |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 1025 | |
Jakob Stoklund Olesen | 2dc455a | 2011-03-20 19:46:23 +0000 | [diff] [blame] | 1026 | DEBUG(dbgs() << "All defs dead: " << *MI); |
| 1027 | Dead.push_back(MI); |
| 1028 | } |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 1029 | } |
| 1030 | |
| 1031 | if (Dead.empty()) |
| 1032 | return; |
| 1033 | |
Pete Cooper | 8a06af9 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 1034 | Edit->eliminateDeadDefs(Dead); |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 1035 | } |
| 1036 | |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1037 | void SplitEditor::finish(SmallVectorImpl<unsigned> *LRMap) { |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 1038 | ++NumFinished; |
Eric Christopher | 463a297 | 2011-02-03 05:40:54 +0000 | [diff] [blame] | 1039 | |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 1040 | // At this point, the live intervals in Edit contain VNInfos corresponding to |
| 1041 | // the inserted copies. |
| 1042 | |
| 1043 | // Add the original defs from the parent interval. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 1044 | for (LiveInterval::const_vni_iterator I = Edit->getParent().vni_begin(), |
| 1045 | E = Edit->getParent().vni_end(); I != E; ++I) { |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 1046 | const VNInfo *ParentVNI = *I; |
Jakob Stoklund Olesen | 9ecd1e7 | 2011-02-04 00:59:23 +0000 | [diff] [blame] | 1047 | if (ParentVNI->isUnused()) |
| 1048 | continue; |
Jakob Stoklund Olesen | 670ccd1 | 2011-03-01 23:14:53 +0000 | [diff] [blame] | 1049 | unsigned RegIdx = RegAssign.lookup(ParentVNI->def); |
Jakob Stoklund Olesen | b18d779 | 2012-07-27 21:11:14 +0000 | [diff] [blame] | 1050 | defValue(RegIdx, ParentVNI, ParentVNI->def); |
Jakob Stoklund Olesen | 29ef875 | 2011-03-15 21:13:22 +0000 | [diff] [blame] | 1051 | |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 1052 | // Force rematted values to be recomputed everywhere. |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 1053 | // The new live ranges may be truncated. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 1054 | if (Edit->didRematerialize(ParentVNI)) |
| 1055 | for (unsigned i = 0, e = Edit->size(); i != e; ++i) |
Jakob Stoklund Olesen | 393bfcb | 2011-09-13 23:09:04 +0000 | [diff] [blame] | 1056 | forceRecompute(i, ParentVNI); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 1057 | } |
| 1058 | |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 1059 | // Hoist back-copies to the complement interval when in spill mode. |
| 1060 | switch (SpillMode) { |
| 1061 | case SM_Partition: |
| 1062 | // Leave all back-copies as is. |
| 1063 | break; |
| 1064 | case SM_Size: |
| 1065 | hoistCopiesForSize(); |
| 1066 | break; |
| 1067 | case SM_Speed: |
| 1068 | llvm_unreachable("Spill mode 'speed' not implemented yet"); |
Jakob Stoklund Olesen | b21abfe | 2011-09-13 22:22:39 +0000 | [diff] [blame] | 1069 | } |
| 1070 | |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 1071 | // Transfer the simply mapped values, check if any are skipped. |
| 1072 | bool Skipped = transferValues(); |
| 1073 | if (Skipped) |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 1074 | extendPHIKillRanges(); |
| 1075 | else |
| 1076 | ++NumSimple; |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 1077 | |
Jakob Stoklund Olesen | 4670353 | 2011-03-02 23:05:19 +0000 | [diff] [blame] | 1078 | // Rewrite virtual registers, possibly extending ranges. |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 1079 | rewriteAssigned(Skipped); |
Eric Christopher | 0f43811 | 2011-02-03 06:18:29 +0000 | [diff] [blame] | 1080 | |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 1081 | // Delete defs that were rematted everywhere. |
Jakob Stoklund Olesen | 44b7ae2 | 2011-04-15 17:24:49 +0000 | [diff] [blame] | 1082 | if (Skipped) |
Jakob Stoklund Olesen | 5881799 | 2011-03-08 22:46:11 +0000 | [diff] [blame] | 1083 | deleteRematVictims(); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 1084 | |
Jakob Stoklund Olesen | 0253df9 | 2010-10-07 23:34:34 +0000 | [diff] [blame] | 1085 | // Get rid of unused values and set phi-kill flags. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 1086 | 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] | 1087 | (*I)->RenumberValues(LIS); |
Jakob Stoklund Olesen | 5fa42a4 | 2010-09-21 22:32:21 +0000 | [diff] [blame] | 1088 | |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1089 | // Provide a reverse mapping from original indices to Edit ranges. |
| 1090 | if (LRMap) { |
| 1091 | LRMap->clear(); |
| 1092 | for (unsigned i = 0, e = Edit->size(); i != e; ++i) |
| 1093 | LRMap->push_back(i); |
| 1094 | } |
| 1095 | |
Jakob Stoklund Olesen | 3a0e071 | 2010-10-26 22:36:09 +0000 | [diff] [blame] | 1096 | // Now check if any registers were separated into multiple components. |
Jakob Stoklund Olesen | 0786284 | 2011-01-26 00:50:53 +0000 | [diff] [blame] | 1097 | ConnectedVNInfoEqClasses ConEQ(LIS); |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 1098 | for (unsigned i = 0, e = Edit->size(); i != e; ++i) { |
Jakob Stoklund Olesen | 3a0e071 | 2010-10-26 22:36:09 +0000 | [diff] [blame] | 1099 | // Don't use iterators, they are invalidated by create() below. |
Jakob Stoklund Olesen | a2cae58 | 2011-03-02 23:31:50 +0000 | [diff] [blame] | 1100 | LiveInterval *li = Edit->get(i); |
Jakob Stoklund Olesen | 3a0e071 | 2010-10-26 22:36:09 +0000 | [diff] [blame] | 1101 | unsigned NumComp = ConEQ.Classify(li); |
| 1102 | if (NumComp <= 1) |
| 1103 | continue; |
| 1104 | DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n'); |
| 1105 | SmallVector<LiveInterval*, 8> dups; |
| 1106 | dups.push_back(li); |
Matt Beaumont-Gay | ae5fbee | 2011-04-21 19:46:23 +0000 | [diff] [blame] | 1107 | for (unsigned j = 1; j != NumComp; ++j) |
Pete Cooper | 8a06af9 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 1108 | dups.push_back(&Edit->create()); |
Jakob Stoklund Olesen | 2254227 | 2011-03-17 00:23:45 +0000 | [diff] [blame] | 1109 | ConEQ.Distribute(&dups[0], MRI); |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1110 | // The new intervals all map back to i. |
| 1111 | if (LRMap) |
| 1112 | LRMap->resize(Edit->size(), i); |
Jakob Stoklund Olesen | 3a0e071 | 2010-10-26 22:36:09 +0000 | [diff] [blame] | 1113 | } |
| 1114 | |
Jakob Stoklund Olesen | 08e93b1 | 2010-08-10 17:07:22 +0000 | [diff] [blame] | 1115 | // Calculate spill weight and allocation hints for new intervals. |
Pete Cooper | 8a06af9 | 2012-04-02 22:22:53 +0000 | [diff] [blame] | 1116 | Edit->calculateRegClassAndHint(VRM.getMachineFunction(), SA.Loops); |
Jakob Stoklund Olesen | 5928046 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1117 | |
| 1118 | assert(!LRMap || LRMap->size() == Edit->size()); |
Jakob Stoklund Olesen | f017900 | 2010-07-26 23:44:11 +0000 | [diff] [blame] | 1119 | } |
| 1120 | |
| 1121 | |
Jakob Stoklund Olesen | 8ae0263 | 2010-07-20 15:41:07 +0000 | [diff] [blame] | 1122 | //===----------------------------------------------------------------------===// |
Jakob Stoklund Olesen | f1b05f2 | 2010-08-12 17:07:14 +0000 | [diff] [blame] | 1123 | // Single Block Splitting |
| 1124 | //===----------------------------------------------------------------------===// |
| 1125 | |
Jakob Stoklund Olesen | 2d6d86b | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 1126 | bool SplitAnalysis::shouldSplitSingleBlock(const BlockInfo &BI, |
| 1127 | bool SingleInstrs) const { |
| 1128 | // Always split for multiple instructions. |
| 1129 | if (!BI.isOneInstr()) |
| 1130 | return true; |
| 1131 | // Don't split for single instructions unless explicitly requested. |
| 1132 | if (!SingleInstrs) |
| 1133 | return false; |
| 1134 | // Splitting a live-through range always makes progress. |
| 1135 | if (BI.LiveIn && BI.LiveOut) |
| 1136 | return true; |
| 1137 | // No point in isolating a copy. It has no register class constraints. |
| 1138 | if (LIS.getInstructionFromIndex(BI.FirstInstr)->isCopyLike()) |
| 1139 | return false; |
| 1140 | // Finally, don't isolate an end point that was created by earlier splits. |
| 1141 | return isOriginalEndpoint(BI.FirstInstr); |
| 1142 | } |
| 1143 | |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1144 | void SplitEditor::splitSingleBlock(const SplitAnalysis::BlockInfo &BI) { |
| 1145 | openIntv(); |
| 1146 | SlotIndex LastSplitPoint = SA.getLastSplitPoint(BI.MBB->getNumber()); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1147 | SlotIndex SegStart = enterIntvBefore(std::min(BI.FirstInstr, |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1148 | LastSplitPoint)); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1149 | if (!BI.LiveOut || BI.LastInstr < LastSplitPoint) { |
| 1150 | useIntv(SegStart, leaveIntvAfter(BI.LastInstr)); |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1151 | } else { |
| 1152 | // The last use is after the last valid split point. |
| 1153 | SlotIndex SegStop = leaveIntvBefore(LastSplitPoint); |
| 1154 | useIntv(SegStart, SegStop); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1155 | overlapIntv(SegStop, BI.LastInstr); |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1156 | } |
Jakob Stoklund Olesen | fd5c513 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1157 | } |
| 1158 | |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1159 | |
| 1160 | //===----------------------------------------------------------------------===// |
| 1161 | // Global Live Range Splitting Support |
| 1162 | //===----------------------------------------------------------------------===// |
| 1163 | |
| 1164 | // These methods support a method of global live range splitting that uses a |
| 1165 | // global algorithm to decide intervals for CFG edges. They will insert split |
| 1166 | // points and color intervals in basic blocks while avoiding interference. |
| 1167 | // |
| 1168 | // Note that splitSingleBlock is also useful for blocks where both CFG edges |
| 1169 | // are on the stack. |
| 1170 | |
| 1171 | void SplitEditor::splitLiveThroughBlock(unsigned MBBNum, |
| 1172 | unsigned IntvIn, SlotIndex LeaveBefore, |
| 1173 | unsigned IntvOut, SlotIndex EnterAfter){ |
| 1174 | SlotIndex Start, Stop; |
| 1175 | tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(MBBNum); |
| 1176 | |
| 1177 | DEBUG(dbgs() << "BB#" << MBBNum << " [" << Start << ';' << Stop |
| 1178 | << ") intf " << LeaveBefore << '-' << EnterAfter |
| 1179 | << ", live-through " << IntvIn << " -> " << IntvOut); |
| 1180 | |
| 1181 | assert((IntvIn || IntvOut) && "Use splitSingleBlock for isolated blocks"); |
| 1182 | |
Jakob Stoklund Olesen | fe9b2d1 | 2011-07-23 03:32:26 +0000 | [diff] [blame] | 1183 | assert((!LeaveBefore || LeaveBefore < Stop) && "Interference after block"); |
| 1184 | assert((!IntvIn || !LeaveBefore || LeaveBefore > Start) && "Impossible intf"); |
| 1185 | assert((!EnterAfter || EnterAfter >= Start) && "Interference before block"); |
| 1186 | |
| 1187 | MachineBasicBlock *MBB = VRM.getMachineFunction().getBlockNumbered(MBBNum); |
| 1188 | |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1189 | if (!IntvOut) { |
| 1190 | DEBUG(dbgs() << ", spill on entry.\n"); |
| 1191 | // |
| 1192 | // <<<<<<<<< Possible LeaveBefore interference. |
| 1193 | // |-----------| Live through. |
| 1194 | // -____________ Spill on entry. |
| 1195 | // |
| 1196 | selectIntv(IntvIn); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1197 | SlotIndex Idx = leaveIntvAtTop(*MBB); |
| 1198 | assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference"); |
| 1199 | (void)Idx; |
| 1200 | return; |
| 1201 | } |
| 1202 | |
| 1203 | if (!IntvIn) { |
| 1204 | DEBUG(dbgs() << ", reload on exit.\n"); |
| 1205 | // |
| 1206 | // >>>>>>> Possible EnterAfter interference. |
| 1207 | // |-----------| Live through. |
| 1208 | // ___________-- Reload on exit. |
| 1209 | // |
| 1210 | selectIntv(IntvOut); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1211 | SlotIndex Idx = enterIntvAtEnd(*MBB); |
| 1212 | assert((!EnterAfter || Idx >= EnterAfter) && "Interference"); |
| 1213 | (void)Idx; |
| 1214 | return; |
| 1215 | } |
| 1216 | |
| 1217 | if (IntvIn == IntvOut && !LeaveBefore && !EnterAfter) { |
| 1218 | DEBUG(dbgs() << ", straight through.\n"); |
| 1219 | // |
| 1220 | // |-----------| Live through. |
| 1221 | // ------------- Straight through, same intv, no interference. |
| 1222 | // |
| 1223 | selectIntv(IntvOut); |
| 1224 | useIntv(Start, Stop); |
| 1225 | return; |
| 1226 | } |
| 1227 | |
| 1228 | // We cannot legally insert splits after LSP. |
| 1229 | SlotIndex LSP = SA.getLastSplitPoint(MBBNum); |
Jakob Stoklund Olesen | fe9b2d1 | 2011-07-23 03:32:26 +0000 | [diff] [blame] | 1230 | assert((!IntvOut || !EnterAfter || EnterAfter < LSP) && "Impossible intf"); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1231 | |
| 1232 | if (IntvIn != IntvOut && (!LeaveBefore || !EnterAfter || |
| 1233 | LeaveBefore.getBaseIndex() > EnterAfter.getBoundaryIndex())) { |
| 1234 | DEBUG(dbgs() << ", switch avoiding interference.\n"); |
| 1235 | // |
| 1236 | // >>>> <<<< Non-overlapping EnterAfter/LeaveBefore interference. |
| 1237 | // |-----------| Live through. |
| 1238 | // ------======= Switch intervals between interference. |
| 1239 | // |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1240 | selectIntv(IntvOut); |
Jakob Stoklund Olesen | fe9b2d1 | 2011-07-23 03:32:26 +0000 | [diff] [blame] | 1241 | SlotIndex Idx; |
| 1242 | if (LeaveBefore && LeaveBefore < LSP) { |
| 1243 | Idx = enterIntvBefore(LeaveBefore); |
| 1244 | useIntv(Idx, Stop); |
| 1245 | } else { |
| 1246 | Idx = enterIntvAtEnd(*MBB); |
| 1247 | } |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1248 | selectIntv(IntvIn); |
| 1249 | useIntv(Start, Idx); |
| 1250 | assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference"); |
| 1251 | assert((!EnterAfter || Idx >= EnterAfter) && "Interference"); |
| 1252 | return; |
| 1253 | } |
| 1254 | |
| 1255 | DEBUG(dbgs() << ", create local intv for interference.\n"); |
| 1256 | // |
| 1257 | // >>><><><><<<< Overlapping EnterAfter/LeaveBefore interference. |
| 1258 | // |-----------| Live through. |
| 1259 | // ==---------== Switch intervals before/after interference. |
| 1260 | // |
| 1261 | assert(LeaveBefore <= EnterAfter && "Missed case"); |
| 1262 | |
| 1263 | selectIntv(IntvOut); |
| 1264 | SlotIndex Idx = enterIntvAfter(EnterAfter); |
| 1265 | useIntv(Idx, Stop); |
| 1266 | assert((!EnterAfter || Idx >= EnterAfter) && "Interference"); |
| 1267 | |
| 1268 | selectIntv(IntvIn); |
| 1269 | Idx = leaveIntvBefore(LeaveBefore); |
| 1270 | useIntv(Start, Idx); |
| 1271 | assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference"); |
| 1272 | } |
| 1273 | |
| 1274 | |
| 1275 | void SplitEditor::splitRegInBlock(const SplitAnalysis::BlockInfo &BI, |
| 1276 | unsigned IntvIn, SlotIndex LeaveBefore) { |
| 1277 | SlotIndex Start, Stop; |
| 1278 | tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); |
| 1279 | |
| 1280 | DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1281 | << "), uses " << BI.FirstInstr << '-' << BI.LastInstr |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1282 | << ", reg-in " << IntvIn << ", leave before " << LeaveBefore |
| 1283 | << (BI.LiveOut ? ", stack-out" : ", killed in block")); |
| 1284 | |
| 1285 | assert(IntvIn && "Must have register in"); |
| 1286 | assert(BI.LiveIn && "Must be live-in"); |
| 1287 | assert((!LeaveBefore || LeaveBefore > Start) && "Bad interference"); |
| 1288 | |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1289 | if (!BI.LiveOut && (!LeaveBefore || LeaveBefore >= BI.LastInstr)) { |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1290 | DEBUG(dbgs() << " before interference.\n"); |
| 1291 | // |
| 1292 | // <<< Interference after kill. |
| 1293 | // |---o---x | Killed in block. |
| 1294 | // ========= Use IntvIn everywhere. |
| 1295 | // |
| 1296 | selectIntv(IntvIn); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1297 | useIntv(Start, BI.LastInstr); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1298 | return; |
| 1299 | } |
| 1300 | |
| 1301 | SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber()); |
| 1302 | |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1303 | if (!LeaveBefore || LeaveBefore > BI.LastInstr.getBoundaryIndex()) { |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1304 | // |
| 1305 | // <<< Possible interference after last use. |
| 1306 | // |---o---o---| Live-out on stack. |
| 1307 | // =========____ Leave IntvIn after last use. |
| 1308 | // |
| 1309 | // < Interference after last use. |
| 1310 | // |---o---o--o| Live-out on stack, late last use. |
| 1311 | // ============ Copy to stack after LSP, overlap IntvIn. |
| 1312 | // \_____ Stack interval is live-out. |
| 1313 | // |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1314 | if (BI.LastInstr < LSP) { |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1315 | DEBUG(dbgs() << ", spill after last use before interference.\n"); |
| 1316 | selectIntv(IntvIn); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1317 | SlotIndex Idx = leaveIntvAfter(BI.LastInstr); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1318 | useIntv(Start, Idx); |
| 1319 | assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference"); |
| 1320 | } else { |
| 1321 | DEBUG(dbgs() << ", spill before last split point.\n"); |
| 1322 | selectIntv(IntvIn); |
Jakob Stoklund Olesen | af4e40c | 2011-07-16 00:13:30 +0000 | [diff] [blame] | 1323 | SlotIndex Idx = leaveIntvBefore(LSP); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1324 | overlapIntv(Idx, BI.LastInstr); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1325 | useIntv(Start, Idx); |
| 1326 | assert((!LeaveBefore || Idx <= LeaveBefore) && "Interference"); |
| 1327 | } |
| 1328 | return; |
| 1329 | } |
| 1330 | |
| 1331 | // The interference is overlapping somewhere we wanted to use IntvIn. That |
| 1332 | // means we need to create a local interval that can be allocated a |
| 1333 | // different register. |
| 1334 | unsigned LocalIntv = openIntv(); |
Matt Beaumont-Gay | f9d7fb6 | 2011-07-16 04:18:47 +0000 | [diff] [blame] | 1335 | (void)LocalIntv; |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1336 | DEBUG(dbgs() << ", creating local interval " << LocalIntv << ".\n"); |
| 1337 | |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1338 | if (!BI.LiveOut || BI.LastInstr < LSP) { |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1339 | // |
| 1340 | // <<<<<<< Interference overlapping uses. |
| 1341 | // |---o---o---| Live-out on stack. |
| 1342 | // =====----____ Leave IntvIn before interference, then spill. |
| 1343 | // |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1344 | SlotIndex To = leaveIntvAfter(BI.LastInstr); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1345 | SlotIndex From = enterIntvBefore(LeaveBefore); |
| 1346 | useIntv(From, To); |
| 1347 | selectIntv(IntvIn); |
| 1348 | useIntv(Start, From); |
| 1349 | assert((!LeaveBefore || From <= LeaveBefore) && "Interference"); |
| 1350 | return; |
| 1351 | } |
| 1352 | |
| 1353 | // <<<<<<< Interference overlapping uses. |
| 1354 | // |---o---o--o| Live-out on stack, late last use. |
| 1355 | // =====------- Copy to stack before LSP, overlap LocalIntv. |
| 1356 | // \_____ Stack interval is live-out. |
| 1357 | // |
| 1358 | SlotIndex To = leaveIntvBefore(LSP); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1359 | overlapIntv(To, BI.LastInstr); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1360 | SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore)); |
| 1361 | useIntv(From, To); |
| 1362 | selectIntv(IntvIn); |
| 1363 | useIntv(Start, From); |
| 1364 | assert((!LeaveBefore || From <= LeaveBefore) && "Interference"); |
| 1365 | } |
| 1366 | |
| 1367 | void SplitEditor::splitRegOutBlock(const SplitAnalysis::BlockInfo &BI, |
| 1368 | unsigned IntvOut, SlotIndex EnterAfter) { |
| 1369 | SlotIndex Start, Stop; |
| 1370 | tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); |
| 1371 | |
| 1372 | DEBUG(dbgs() << "BB#" << BI.MBB->getNumber() << " [" << Start << ';' << Stop |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1373 | << "), uses " << BI.FirstInstr << '-' << BI.LastInstr |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1374 | << ", reg-out " << IntvOut << ", enter after " << EnterAfter |
| 1375 | << (BI.LiveIn ? ", stack-in" : ", defined in block")); |
| 1376 | |
| 1377 | SlotIndex LSP = SA.getLastSplitPoint(BI.MBB->getNumber()); |
| 1378 | |
| 1379 | assert(IntvOut && "Must have register out"); |
| 1380 | assert(BI.LiveOut && "Must be live-out"); |
| 1381 | assert((!EnterAfter || EnterAfter < LSP) && "Bad interference"); |
| 1382 | |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1383 | if (!BI.LiveIn && (!EnterAfter || EnterAfter <= BI.FirstInstr)) { |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1384 | DEBUG(dbgs() << " after interference.\n"); |
| 1385 | // |
| 1386 | // >>>> Interference before def. |
| 1387 | // | o---o---| Defined in block. |
| 1388 | // ========= Use IntvOut everywhere. |
| 1389 | // |
| 1390 | selectIntv(IntvOut); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1391 | useIntv(BI.FirstInstr, Stop); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1392 | return; |
| 1393 | } |
| 1394 | |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1395 | if (!EnterAfter || EnterAfter < BI.FirstInstr.getBaseIndex()) { |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1396 | DEBUG(dbgs() << ", reload after interference.\n"); |
| 1397 | // |
| 1398 | // >>>> Interference before def. |
| 1399 | // |---o---o---| Live-through, stack-in. |
| 1400 | // ____========= Enter IntvOut before first use. |
| 1401 | // |
| 1402 | selectIntv(IntvOut); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1403 | SlotIndex Idx = enterIntvBefore(std::min(LSP, BI.FirstInstr)); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1404 | useIntv(Idx, Stop); |
| 1405 | assert((!EnterAfter || Idx >= EnterAfter) && "Interference"); |
| 1406 | return; |
| 1407 | } |
| 1408 | |
| 1409 | // The interference is overlapping somewhere we wanted to use IntvOut. That |
| 1410 | // means we need to create a local interval that can be allocated a |
| 1411 | // different register. |
| 1412 | DEBUG(dbgs() << ", interference overlaps uses.\n"); |
| 1413 | // |
| 1414 | // >>>>>>> Interference overlapping uses. |
| 1415 | // |---o---o---| Live-through, stack-in. |
| 1416 | // ____---====== Create local interval for interference range. |
| 1417 | // |
| 1418 | selectIntv(IntvOut); |
| 1419 | SlotIndex Idx = enterIntvAfter(EnterAfter); |
| 1420 | useIntv(Idx, Stop); |
| 1421 | assert((!EnterAfter || Idx >= EnterAfter) && "Interference"); |
| 1422 | |
| 1423 | openIntv(); |
Jakob Stoklund Olesen | fe62d92 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 1424 | SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr)); |
Jakob Stoklund Olesen | b4ddedc | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1425 | useIntv(From, Idx); |
| 1426 | } |