Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 1 | //===---- LiveRangeCalc.cpp - Calculate 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 | // Implementation of the LiveRangeCalc class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "regalloc" |
| 15 | #include "LiveRangeCalc.h" |
| 16 | #include "llvm/CodeGen/MachineDominators.h" |
Jakob Stoklund Olesen | 4e53a40 | 2012-06-05 21:54:09 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 18 | |
| 19 | using namespace llvm; |
| 20 | |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 21 | void LiveRangeCalc::reset(const MachineFunction *MF, |
| 22 | SlotIndexes *SI, |
| 23 | MachineDominatorTree *MDT, |
| 24 | VNInfo::Allocator *VNIA) { |
| 25 | MRI = &MF->getRegInfo(); |
| 26 | Indexes = SI; |
| 27 | DomTree = MDT; |
| 28 | Alloc = VNIA; |
| 29 | |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 30 | unsigned N = MF->getNumBlockIDs(); |
| 31 | Seen.clear(); |
| 32 | Seen.resize(N); |
| 33 | LiveOut.resize(N); |
| 34 | LiveIn.clear(); |
| 35 | } |
| 36 | |
| 37 | |
Jakob Stoklund Olesen | 4e53a40 | 2012-06-05 21:54:09 +0000 | [diff] [blame] | 38 | void LiveRangeCalc::createDeadDefs(LiveInterval *LI, unsigned Reg) { |
| 39 | assert(MRI && Indexes && "call reset() first"); |
| 40 | |
| 41 | // Visit all def operands. If the same instruction has multiple defs of Reg, |
| 42 | // LI->createDeadDef() will deduplicate. |
| 43 | for (MachineRegisterInfo::def_iterator |
| 44 | I = MRI->def_begin(Reg), E = MRI->def_end(); I != E; ++I) { |
| 45 | const MachineInstr *MI = &*I; |
| 46 | // Find the corresponding slot index. |
| 47 | SlotIndex Idx; |
| 48 | if (MI->isPHI()) |
| 49 | // PHI defs begin at the basic block start index. |
| 50 | Idx = Indexes->getMBBStartIdx(MI->getParent()); |
| 51 | else |
| 52 | // Instructions are either normal 'r', or early clobber 'e'. |
| 53 | Idx = Indexes->getInstructionIndex(MI) |
| 54 | .getRegSlot(I.getOperand().isEarlyClobber()); |
| 55 | |
| 56 | // Create the def in LI. This may find an existing def. |
| 57 | VNInfo *VNI = LI->createDeadDef(Idx, *Alloc); |
| 58 | VNI->setIsPHIDef(MI->isPHI()); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | |
| 63 | void LiveRangeCalc::extendToUses(LiveInterval *LI, unsigned Reg) { |
| 64 | assert(MRI && Indexes && "call reset() first"); |
| 65 | |
| 66 | // Visit all operands that read Reg. This may include partial defs. |
| 67 | for (MachineRegisterInfo::reg_nodbg_iterator I = MRI->reg_nodbg_begin(Reg), |
| 68 | E = MRI->reg_nodbg_end(); I != E; ++I) { |
| 69 | const MachineOperand &MO = I.getOperand(); |
| 70 | if (!MO.readsReg()) |
| 71 | continue; |
| 72 | // MI is reading Reg. We may have visited MI before if it happens to be |
| 73 | // reading Reg multiple times. That is OK, extend() is idempotent. |
| 74 | const MachineInstr *MI = &*I; |
| 75 | |
| 76 | // Find the SlotIndex being read. |
| 77 | SlotIndex Idx; |
| 78 | if (MI->isPHI()) { |
| 79 | assert(!MO.isDef() && "Cannot handle PHI def of partial register."); |
| 80 | // PHI operands are paired: (Reg, PredMBB). |
| 81 | // Extend the live range to be live-out from PredMBB. |
| 82 | Idx = Indexes->getMBBEndIdx(MI->getOperand(I.getOperandNo()+1).getMBB()); |
| 83 | } else { |
| 84 | // This is a normal instruction. |
| 85 | Idx = Indexes->getInstructionIndex(MI).getRegSlot(); |
| 86 | // Check for early-clobber redefs. |
| 87 | unsigned DefIdx; |
| 88 | if (MO.isDef()) { |
| 89 | if (MO.isEarlyClobber()) |
| 90 | Idx = Idx.getRegSlot(true); |
| 91 | } else if (MI->isRegTiedToDefOperand(I.getOperandNo(), &DefIdx)) { |
| 92 | // FIXME: This would be a lot easier if tied early-clobber uses also |
| 93 | // had an early-clobber flag. |
| 94 | if (MI->getOperand(DefIdx).isEarlyClobber()) |
| 95 | Idx = Idx.getRegSlot(true); |
| 96 | } |
| 97 | } |
| 98 | extend(LI, Idx); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 103 | // Transfer information from the LiveIn vector to the live ranges. |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 104 | void LiveRangeCalc::updateLiveIns(VNInfo *OverrideVNI) { |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 105 | for (SmallVectorImpl<LiveInBlock>::iterator I = LiveIn.begin(), |
| 106 | E = LiveIn.end(); I != E; ++I) { |
| 107 | if (!I->DomNode) |
| 108 | continue; |
| 109 | MachineBasicBlock *MBB = I->DomNode->getBlock(); |
| 110 | |
| 111 | VNInfo *VNI = OverrideVNI ? OverrideVNI : I->Value; |
| 112 | assert(VNI && "No live-in value found"); |
| 113 | |
| 114 | SlotIndex Start, End; |
| 115 | tie(Start, End) = Indexes->getMBBRange(MBB); |
| 116 | |
| 117 | if (I->Kill.isValid()) |
| 118 | I->LI->addRange(LiveRange(Start, I->Kill, VNI)); |
| 119 | else { |
| 120 | I->LI->addRange(LiveRange(Start, End, VNI)); |
| 121 | // The value is live-through, update LiveOut as well. Defer the Domtree |
| 122 | // lookup until it is needed. |
| 123 | assert(Seen.test(MBB->getNumber())); |
NAKAMURA Takumi | edd4f8b | 2011-09-13 03:58:34 +0000 | [diff] [blame] | 124 | LiveOut[MBB] = LiveOutPair(VNI, (MachineDomTreeNode *)0); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 125 | } |
| 126 | } |
| 127 | LiveIn.clear(); |
| 128 | } |
| 129 | |
| 130 | |
| 131 | void LiveRangeCalc::extend(LiveInterval *LI, |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 132 | SlotIndex Kill) { |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 133 | assert(LI && "Missing live range"); |
| 134 | assert(Kill.isValid() && "Invalid SlotIndex"); |
| 135 | assert(Indexes && "Missing SlotIndexes"); |
| 136 | assert(DomTree && "Missing dominator tree"); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 137 | |
Jakob Stoklund Olesen | ee5655d | 2011-09-13 16:47:56 +0000 | [diff] [blame] | 138 | MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill.getPrevSlot()); |
Lang Hames | aa13482 | 2011-12-20 20:23:40 +0000 | [diff] [blame] | 139 | assert(KillMBB && "No MBB at Kill"); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 140 | |
| 141 | // Is there a def in the same MBB we can extend? |
Jakob Stoklund Olesen | ee5655d | 2011-09-13 16:47:56 +0000 | [diff] [blame] | 142 | if (LI->extendInBlock(Indexes->getMBBStartIdx(KillMBB), Kill)) |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 143 | return; |
| 144 | |
| 145 | // Find the single reaching def, or determine if Kill is jointly dominated by |
| 146 | // multiple values, and we may need to create even more phi-defs to preserve |
| 147 | // VNInfo SSA form. Perform a search for all predecessor blocks where we |
| 148 | // know the dominating VNInfo. |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 149 | VNInfo *VNI = findReachingDefs(LI, KillMBB, Kill); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 150 | |
| 151 | // When there were multiple different values, we may need new PHIs. |
| 152 | if (!VNI) |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 153 | updateSSA(); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 154 | |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 155 | updateLiveIns(VNI); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | |
| 159 | // This function is called by a client after using the low-level API to add |
| 160 | // live-out and live-in blocks. The unique value optimization is not |
| 161 | // available, SplitEditor::transferValues handles that case directly anyway. |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 162 | void LiveRangeCalc::calculateValues() { |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 163 | assert(Indexes && "Missing SlotIndexes"); |
| 164 | assert(DomTree && "Missing dominator tree"); |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 165 | updateSSA(); |
| 166 | updateLiveIns(0); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | |
| 170 | VNInfo *LiveRangeCalc::findReachingDefs(LiveInterval *LI, |
| 171 | MachineBasicBlock *KillMBB, |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 172 | SlotIndex Kill) { |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 173 | // Blocks where LI should be live-in. |
| 174 | SmallVector<MachineBasicBlock*, 16> WorkList(1, KillMBB); |
| 175 | |
| 176 | // Remember if we have seen more than one value. |
| 177 | bool UniqueVNI = true; |
| 178 | VNInfo *TheVNI = 0; |
| 179 | |
| 180 | // Using Seen as a visited set, perform a BFS for all reaching defs. |
| 181 | for (unsigned i = 0; i != WorkList.size(); ++i) { |
| 182 | MachineBasicBlock *MBB = WorkList[i]; |
| 183 | assert(!MBB->pred_empty() && "Value live-in to entry block?"); |
| 184 | for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(), |
| 185 | PE = MBB->pred_end(); PI != PE; ++PI) { |
| 186 | MachineBasicBlock *Pred = *PI; |
| 187 | |
| 188 | // Is this a known live-out block? |
| 189 | if (Seen.test(Pred->getNumber())) { |
| 190 | if (VNInfo *VNI = LiveOut[Pred].first) { |
| 191 | if (TheVNI && TheVNI != VNI) |
| 192 | UniqueVNI = false; |
| 193 | TheVNI = VNI; |
| 194 | } |
| 195 | continue; |
| 196 | } |
| 197 | |
| 198 | SlotIndex Start, End; |
| 199 | tie(Start, End) = Indexes->getMBBRange(Pred); |
| 200 | |
| 201 | // First time we see Pred. Try to determine the live-out value, but set |
| 202 | // it as null if Pred is live-through with an unknown value. |
Jakob Stoklund Olesen | ee5655d | 2011-09-13 16:47:56 +0000 | [diff] [blame] | 203 | VNInfo *VNI = LI->extendInBlock(Start, End); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 204 | setLiveOutValue(Pred, VNI); |
| 205 | if (VNI) { |
| 206 | if (TheVNI && TheVNI != VNI) |
| 207 | UniqueVNI = false; |
| 208 | TheVNI = VNI; |
| 209 | continue; |
| 210 | } |
| 211 | |
| 212 | // No, we need a live-in value for Pred as well |
| 213 | if (Pred != KillMBB) |
| 214 | WorkList.push_back(Pred); |
| 215 | else |
| 216 | // Loopback to KillMBB, so value is really live through. |
| 217 | Kill = SlotIndex(); |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | // Transfer WorkList to LiveInBlocks in reverse order. |
| 222 | // This ordering works best with updateSSA(). |
| 223 | LiveIn.clear(); |
| 224 | LiveIn.reserve(WorkList.size()); |
| 225 | while(!WorkList.empty()) |
| 226 | addLiveInBlock(LI, DomTree->getNode(WorkList.pop_back_val())); |
| 227 | |
| 228 | // The kill block may not be live-through. |
| 229 | assert(LiveIn.back().DomNode->getBlock() == KillMBB); |
| 230 | LiveIn.back().Kill = Kill; |
| 231 | |
| 232 | return UniqueVNI ? TheVNI : 0; |
| 233 | } |
| 234 | |
| 235 | |
| 236 | // This is essentially the same iterative algorithm that SSAUpdater uses, |
| 237 | // except we already have a dominator tree, so we don't have to recompute it. |
Jakob Stoklund Olesen | 631390e | 2012-06-04 18:21:16 +0000 | [diff] [blame] | 238 | void LiveRangeCalc::updateSSA() { |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 239 | assert(Indexes && "Missing SlotIndexes"); |
| 240 | assert(DomTree && "Missing dominator tree"); |
| 241 | |
| 242 | // Interate until convergence. |
| 243 | unsigned Changes; |
| 244 | do { |
| 245 | Changes = 0; |
| 246 | // Propagate live-out values down the dominator tree, inserting phi-defs |
| 247 | // when necessary. |
| 248 | for (SmallVectorImpl<LiveInBlock>::iterator I = LiveIn.begin(), |
| 249 | E = LiveIn.end(); I != E; ++I) { |
| 250 | MachineDomTreeNode *Node = I->DomNode; |
| 251 | // Skip block if the live-in value has already been determined. |
| 252 | if (!Node) |
| 253 | continue; |
| 254 | MachineBasicBlock *MBB = Node->getBlock(); |
| 255 | MachineDomTreeNode *IDom = Node->getIDom(); |
| 256 | LiveOutPair IDomValue; |
| 257 | |
| 258 | // We need a live-in value to a block with no immediate dominator? |
| 259 | // This is probably an unreachable block that has survived somehow. |
| 260 | bool needPHI = !IDom || !Seen.test(IDom->getBlock()->getNumber()); |
| 261 | |
| 262 | // IDom dominates all of our predecessors, but it may not be their |
| 263 | // immediate dominator. Check if any of them have live-out values that are |
| 264 | // properly dominated by IDom. If so, we need a phi-def here. |
| 265 | if (!needPHI) { |
| 266 | IDomValue = LiveOut[IDom->getBlock()]; |
| 267 | |
| 268 | // Cache the DomTree node that defined the value. |
| 269 | if (IDomValue.first && !IDomValue.second) |
| 270 | LiveOut[IDom->getBlock()].second = IDomValue.second = |
| 271 | DomTree->getNode(Indexes->getMBBFromIndex(IDomValue.first->def)); |
| 272 | |
| 273 | for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(), |
| 274 | PE = MBB->pred_end(); PI != PE; ++PI) { |
| 275 | LiveOutPair &Value = LiveOut[*PI]; |
| 276 | if (!Value.first || Value.first == IDomValue.first) |
| 277 | continue; |
| 278 | |
| 279 | // Cache the DomTree node that defined the value. |
| 280 | if (!Value.second) |
| 281 | Value.second = |
| 282 | DomTree->getNode(Indexes->getMBBFromIndex(Value.first->def)); |
| 283 | |
| 284 | // This predecessor is carrying something other than IDomValue. |
| 285 | // It could be because IDomValue hasn't propagated yet, or it could be |
| 286 | // because MBB is in the dominance frontier of that value. |
| 287 | if (DomTree->dominates(IDom, Value.second)) { |
| 288 | needPHI = true; |
| 289 | break; |
| 290 | } |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | // The value may be live-through even if Kill is set, as can happen when |
| 295 | // we are called from extendRange. In that case LiveOutSeen is true, and |
| 296 | // LiveOut indicates a foreign or missing value. |
| 297 | LiveOutPair &LOP = LiveOut[MBB]; |
| 298 | |
| 299 | // Create a phi-def if required. |
| 300 | if (needPHI) { |
| 301 | ++Changes; |
| 302 | assert(Alloc && "Need VNInfo allocator to create PHI-defs"); |
| 303 | SlotIndex Start, End; |
| 304 | tie(Start, End) = Indexes->getMBBRange(MBB); |
Jakob Stoklund Olesen | 3b1088a | 2012-02-04 05:20:49 +0000 | [diff] [blame] | 305 | VNInfo *VNI = I->LI->getNextValue(Start, *Alloc); |
Jakob Stoklund Olesen | b5a457c | 2011-09-13 01:34:21 +0000 | [diff] [blame] | 306 | VNI->setIsPHIDef(true); |
| 307 | I->Value = VNI; |
| 308 | // This block is done, we know the final value. |
| 309 | I->DomNode = 0; |
| 310 | |
| 311 | // Add liveness since updateLiveIns now skips this node. |
| 312 | if (I->Kill.isValid()) |
| 313 | I->LI->addRange(LiveRange(Start, I->Kill, VNI)); |
| 314 | else { |
| 315 | I->LI->addRange(LiveRange(Start, End, VNI)); |
| 316 | LOP = LiveOutPair(VNI, Node); |
| 317 | } |
| 318 | } else if (IDomValue.first) { |
| 319 | // No phi-def here. Remember incoming value. |
| 320 | I->Value = IDomValue.first; |
| 321 | |
| 322 | // If the IDomValue is killed in the block, don't propagate through. |
| 323 | if (I->Kill.isValid()) |
| 324 | continue; |
| 325 | |
| 326 | // Propagate IDomValue if it isn't killed: |
| 327 | // MBB is live-out and doesn't define its own value. |
| 328 | if (LOP.first == IDomValue.first) |
| 329 | continue; |
| 330 | ++Changes; |
| 331 | LOP = IDomValue; |
| 332 | } |
| 333 | } |
| 334 | } while (Changes); |
| 335 | } |