1 //===----- AggressiveAntiDepBreaker.cpp - Anti-dep breaker ----------------===// 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 implements the AggressiveAntiDepBreaker class, which 11 // implements register anti-dependence breaking during post-RA 12 // scheduling. It attempts to break all anti-dependencies within a 13 // block. 14 // 15 //===----------------------------------------------------------------------===// 16 17 #include "AggressiveAntiDepBreaker.h" 18 #include "llvm/CodeGen/MachineBasicBlock.h" 19 #include "llvm/CodeGen/MachineFrameInfo.h" 20 #include "llvm/CodeGen/MachineInstr.h" 21 #include "llvm/CodeGen/RegisterClassInfo.h" 22 #include "llvm/Support/CommandLine.h" 23 #include "llvm/Support/Debug.h" 24 #include "llvm/Support/ErrorHandling.h" 25 #include "llvm/Support/raw_ostream.h" 26 #include "llvm/Target/TargetInstrInfo.h" 27 #include "llvm/Target/TargetRegisterInfo.h" 28 using namespace llvm; 29 30 #define DEBUG_TYPE "post-RA-sched" 31 32 // If DebugDiv > 0 then only break antidep with (ID % DebugDiv) == DebugMod 33 static cl::opt<int> 34 DebugDiv("agg-antidep-debugdiv", 35 cl::desc("Debug control for aggressive anti-dep breaker"), 36 cl::init(0), cl::Hidden); 37 static cl::opt<int> 38 DebugMod("agg-antidep-debugmod", 39 cl::desc("Debug control for aggressive anti-dep breaker"), 40 cl::init(0), cl::Hidden); 41 42 AggressiveAntiDepState::AggressiveAntiDepState(const unsigned TargetRegs, 43 MachineBasicBlock *BB) : 44 NumTargetRegs(TargetRegs), GroupNodes(TargetRegs, 0), 45 GroupNodeIndices(TargetRegs, 0), 46 KillIndices(TargetRegs, 0), 47 DefIndices(TargetRegs, 0) 48 { 49 const unsigned BBSize = BB->size(); 50 for (unsigned i = 0; i < NumTargetRegs; ++i) { 51 // Initialize all registers to be in their own group. Initially we 52 // assign the register to the same-indexed GroupNode. 53 GroupNodeIndices[i] = i; 54 // Initialize the indices to indicate that no registers are live. 55 KillIndices[i] = ~0u; 56 DefIndices[i] = BBSize; 57 } 58 } 59 60 unsigned AggressiveAntiDepState::GetGroup(unsigned Reg) { 61 unsigned Node = GroupNodeIndices[Reg]; 62 while (GroupNodes[Node] != Node) 63 Node = GroupNodes[Node]; 64 65 return Node; 66 } 67 68 void AggressiveAntiDepState::GetGroupRegs( 69 unsigned Group, 70 std::vector<unsigned> &Regs, 71 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference> *RegRefs) 72 { 73 for (unsigned Reg = 0; Reg != NumTargetRegs; ++Reg) { 74 if ((GetGroup(Reg) == Group) && (RegRefs->count(Reg) > 0)) 75 Regs.push_back(Reg); 76 } 77 } 78 79 unsigned AggressiveAntiDepState::UnionGroups(unsigned Reg1, unsigned Reg2) 80 { 81 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!"); 82 assert(GroupNodeIndices[0] == 0 && "Reg 0 not in Group 0!"); 83 84 // find group for each register 85 unsigned Group1 = GetGroup(Reg1); 86 unsigned Group2 = GetGroup(Reg2); 87 88 // if either group is 0, then that must become the parent 89 unsigned Parent = (Group1 == 0) ? Group1 : Group2; 90 unsigned Other = (Parent == Group1) ? Group2 : Group1; 91 GroupNodes.at(Other) = Parent; 92 return Parent; 93 } 94 95 unsigned AggressiveAntiDepState::LeaveGroup(unsigned Reg) 96 { 97 // Create a new GroupNode for Reg. Reg's existing GroupNode must 98 // stay as is because there could be other GroupNodes referring to 99 // it. 100 unsigned idx = GroupNodes.size(); 101 GroupNodes.push_back(idx); 102 GroupNodeIndices[Reg] = idx; 103 return idx; 104 } 105 106 bool AggressiveAntiDepState::IsLive(unsigned Reg) 107 { 108 // KillIndex must be defined and DefIndex not defined for a register 109 // to be live. 110 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u)); 111 } 112 113 AggressiveAntiDepBreaker::AggressiveAntiDepBreaker( 114 MachineFunction &MFi, const RegisterClassInfo &RCI, 115 TargetSubtargetInfo::RegClassVector &CriticalPathRCs) 116 : AntiDepBreaker(), MF(MFi), MRI(MF.getRegInfo()), 117 TII(MF.getSubtarget().getInstrInfo()), 118 TRI(MF.getSubtarget().getRegisterInfo()), RegClassInfo(RCI), 119 State(nullptr) { 120 /* Collect a bitset of all registers that are only broken if they 121 are on the critical path. */ 122 for (unsigned i = 0, e = CriticalPathRCs.size(); i < e; ++i) { 123 BitVector CPSet = TRI->getAllocatableSet(MF, CriticalPathRCs[i]); 124 if (CriticalPathSet.none()) 125 CriticalPathSet = CPSet; 126 else 127 CriticalPathSet |= CPSet; 128 } 129 130 DEBUG(dbgs() << "AntiDep Critical-Path Registers:"); 131 DEBUG(for (int r = CriticalPathSet.find_first(); r != -1; 132 r = CriticalPathSet.find_next(r)) 133 dbgs() << " " << TRI->getName(r)); 134 DEBUG(dbgs() << '\n'); 135 } 136 137 AggressiveAntiDepBreaker::~AggressiveAntiDepBreaker() { 138 delete State; 139 } 140 141 void AggressiveAntiDepBreaker::StartBlock(MachineBasicBlock *BB) { 142 assert(!State); 143 State = new AggressiveAntiDepState(TRI->getNumRegs(), BB); 144 145 bool IsReturnBlock = BB->isReturnBlock(); 146 std::vector<unsigned> &KillIndices = State->GetKillIndices(); 147 std::vector<unsigned> &DefIndices = State->GetDefIndices(); 148 149 // Examine the live-in regs of all successors. 150 for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(), 151 SE = BB->succ_end(); SI != SE; ++SI) 152 for (const auto &LI : (*SI)->liveins()) { 153 for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) { 154 unsigned Reg = *AI; 155 State->UnionGroups(Reg, 0); 156 KillIndices[Reg] = BB->size(); 157 DefIndices[Reg] = ~0u; 158 } 159 } 160 161 // Mark live-out callee-saved registers. In a return block this is 162 // all callee-saved registers. In non-return this is any 163 // callee-saved register that is not saved in the prolog. 164 const MachineFrameInfo *MFI = MF.getFrameInfo(); 165 BitVector Pristine = MFI->getPristineRegs(MF); 166 for (const MCPhysReg *I = TRI->getCalleeSavedRegs(&MF); *I; ++I) { 167 unsigned Reg = *I; 168 if (!IsReturnBlock && !Pristine.test(Reg)) continue; 169 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { 170 unsigned AliasReg = *AI; 171 State->UnionGroups(AliasReg, 0); 172 KillIndices[AliasReg] = BB->size(); 173 DefIndices[AliasReg] = ~0u; 174 } 175 } 176 } 177 178 void AggressiveAntiDepBreaker::FinishBlock() { 179 delete State; 180 State = nullptr; 181 } 182 183 void AggressiveAntiDepBreaker::Observe(MachineInstr *MI, unsigned Count, 184 unsigned InsertPosIndex) { 185 assert(Count < InsertPosIndex && "Instruction index out of expected range!"); 186 187 std::set<unsigned> PassthruRegs; 188 GetPassthruRegs(MI, PassthruRegs); 189 PrescanInstruction(MI, Count, PassthruRegs); 190 ScanInstruction(MI, Count); 191 192 DEBUG(dbgs() << "Observe: "); 193 DEBUG(MI->dump()); 194 DEBUG(dbgs() << "\tRegs:"); 195 196 std::vector<unsigned> &DefIndices = State->GetDefIndices(); 197 for (unsigned Reg = 0; Reg != TRI->getNumRegs(); ++Reg) { 198 // If Reg is current live, then mark that it can't be renamed as 199 // we don't know the extent of its live-range anymore (now that it 200 // has been scheduled). If it is not live but was defined in the 201 // previous schedule region, then set its def index to the most 202 // conservative location (i.e. the beginning of the previous 203 // schedule region). 204 if (State->IsLive(Reg)) { 205 DEBUG(if (State->GetGroup(Reg) != 0) 206 dbgs() << " " << TRI->getName(Reg) << "=g" << 207 State->GetGroup(Reg) << "->g0(region live-out)"); 208 State->UnionGroups(Reg, 0); 209 } else if ((DefIndices[Reg] < InsertPosIndex) 210 && (DefIndices[Reg] >= Count)) { 211 DefIndices[Reg] = Count; 212 } 213 } 214 DEBUG(dbgs() << '\n'); 215 } 216 217 bool AggressiveAntiDepBreaker::IsImplicitDefUse(MachineInstr *MI, 218 MachineOperand& MO) 219 { 220 if (!MO.isReg() || !MO.isImplicit()) 221 return false; 222 223 unsigned Reg = MO.getReg(); 224 if (Reg == 0) 225 return false; 226 227 MachineOperand *Op = nullptr; 228 if (MO.isDef()) 229 Op = MI->findRegisterUseOperand(Reg, true); 230 else 231 Op = MI->findRegisterDefOperand(Reg); 232 233 return(Op && Op->isImplicit()); 234 } 235 236 void AggressiveAntiDepBreaker::GetPassthruRegs(MachineInstr *MI, 237 std::set<unsigned>& PassthruRegs) { 238 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 239 MachineOperand &MO = MI->getOperand(i); 240 if (!MO.isReg()) continue; 241 if ((MO.isDef() && MI->isRegTiedToUseOperand(i)) || 242 IsImplicitDefUse(MI, MO)) { 243 const unsigned Reg = MO.getReg(); 244 for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true); 245 SubRegs.isValid(); ++SubRegs) 246 PassthruRegs.insert(*SubRegs); 247 } 248 } 249 } 250 251 /// AntiDepEdges - Return in Edges the anti- and output- dependencies 252 /// in SU that we want to consider for breaking. 253 static void AntiDepEdges(const SUnit *SU, std::vector<const SDep*>& Edges) { 254 SmallSet<unsigned, 4> RegSet; 255 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end(); 256 P != PE; ++P) { 257 if ((P->getKind() == SDep::Anti) || (P->getKind() == SDep::Output)) { 258 if (RegSet.insert(P->getReg()).second) 259 Edges.push_back(&*P); 260 } 261 } 262 } 263 264 /// CriticalPathStep - Return the next SUnit after SU on the bottom-up 265 /// critical path. 266 static const SUnit *CriticalPathStep(const SUnit *SU) { 267 const SDep *Next = nullptr; 268 unsigned NextDepth = 0; 269 // Find the predecessor edge with the greatest depth. 270 if (SU) { 271 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end(); 272 P != PE; ++P) { 273 const SUnit *PredSU = P->getSUnit(); 274 unsigned PredLatency = P->getLatency(); 275 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency; 276 // In the case of a latency tie, prefer an anti-dependency edge over 277 // other types of edges. 278 if (NextDepth < PredTotalLatency || 279 (NextDepth == PredTotalLatency && P->getKind() == SDep::Anti)) { 280 NextDepth = PredTotalLatency; 281 Next = &*P; 282 } 283 } 284 } 285 286 return (Next) ? Next->getSUnit() : nullptr; 287 } 288 289 void AggressiveAntiDepBreaker::HandleLastUse(unsigned Reg, unsigned KillIdx, 290 const char *tag, 291 const char *header, 292 const char *footer) { 293 std::vector<unsigned> &KillIndices = State->GetKillIndices(); 294 std::vector<unsigned> &DefIndices = State->GetDefIndices(); 295 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& 296 RegRefs = State->GetRegRefs(); 297 298 // FIXME: We must leave subregisters of live super registers as live, so that 299 // we don't clear out the register tracking information for subregisters of 300 // super registers we're still tracking (and with which we're unioning 301 // subregister definitions). 302 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) 303 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) { 304 DEBUG(if (!header && footer) dbgs() << footer); 305 return; 306 } 307 308 if (!State->IsLive(Reg)) { 309 KillIndices[Reg] = KillIdx; 310 DefIndices[Reg] = ~0u; 311 RegRefs.erase(Reg); 312 State->LeaveGroup(Reg); 313 DEBUG(if (header) { 314 dbgs() << header << TRI->getName(Reg); header = nullptr; }); 315 DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << tag); 316 } 317 // Repeat for subregisters. 318 for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) { 319 unsigned SubregReg = *SubRegs; 320 if (!State->IsLive(SubregReg)) { 321 KillIndices[SubregReg] = KillIdx; 322 DefIndices[SubregReg] = ~0u; 323 RegRefs.erase(SubregReg); 324 State->LeaveGroup(SubregReg); 325 DEBUG(if (header) { 326 dbgs() << header << TRI->getName(Reg); header = nullptr; }); 327 DEBUG(dbgs() << " " << TRI->getName(SubregReg) << "->g" << 328 State->GetGroup(SubregReg) << tag); 329 } 330 } 331 332 DEBUG(if (!header && footer) dbgs() << footer); 333 } 334 335 void AggressiveAntiDepBreaker::PrescanInstruction(MachineInstr *MI, 336 unsigned Count, 337 std::set<unsigned>& PassthruRegs) { 338 std::vector<unsigned> &DefIndices = State->GetDefIndices(); 339 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& 340 RegRefs = State->GetRegRefs(); 341 342 // Handle dead defs by simulating a last-use of the register just 343 // after the def. A dead def can occur because the def is truly 344 // dead, or because only a subregister is live at the def. If we 345 // don't do this the dead def will be incorrectly merged into the 346 // previous def. 347 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 348 MachineOperand &MO = MI->getOperand(i); 349 if (!MO.isReg() || !MO.isDef()) continue; 350 unsigned Reg = MO.getReg(); 351 if (Reg == 0) continue; 352 353 HandleLastUse(Reg, Count + 1, "", "\tDead Def: ", "\n"); 354 } 355 356 DEBUG(dbgs() << "\tDef Groups:"); 357 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 358 MachineOperand &MO = MI->getOperand(i); 359 if (!MO.isReg() || !MO.isDef()) continue; 360 unsigned Reg = MO.getReg(); 361 if (Reg == 0) continue; 362 363 DEBUG(dbgs() << " " << TRI->getName(Reg) << "=g" << State->GetGroup(Reg)); 364 365 // If MI's defs have a special allocation requirement, don't allow 366 // any def registers to be changed. Also assume all registers 367 // defined in a call must not be changed (ABI). Inline assembly may 368 // reference either system calls or the register directly. Skip it until we 369 // can tell user specified registers from compiler-specified. 370 if (MI->isCall() || MI->hasExtraDefRegAllocReq() || 371 TII->isPredicated(*MI) || MI->isInlineAsm()) { 372 DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)"); 373 State->UnionGroups(Reg, 0); 374 } 375 376 // Any aliased that are live at this point are completely or 377 // partially defined here, so group those aliases with Reg. 378 for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) { 379 unsigned AliasReg = *AI; 380 if (State->IsLive(AliasReg)) { 381 State->UnionGroups(Reg, AliasReg); 382 DEBUG(dbgs() << "->g" << State->GetGroup(Reg) << "(via " << 383 TRI->getName(AliasReg) << ")"); 384 } 385 } 386 387 // Note register reference... 388 const TargetRegisterClass *RC = nullptr; 389 if (i < MI->getDesc().getNumOperands()) 390 RC = TII->getRegClass(MI->getDesc(), i, TRI, MF); 391 AggressiveAntiDepState::RegisterReference RR = { &MO, RC }; 392 RegRefs.insert(std::make_pair(Reg, RR)); 393 } 394 395 DEBUG(dbgs() << '\n'); 396 397 // Scan the register defs for this instruction and update 398 // live-ranges. 399 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 400 MachineOperand &MO = MI->getOperand(i); 401 if (!MO.isReg() || !MO.isDef()) continue; 402 unsigned Reg = MO.getReg(); 403 if (Reg == 0) continue; 404 // Ignore KILLs and passthru registers for liveness... 405 if (MI->isKill() || (PassthruRegs.count(Reg) != 0)) 406 continue; 407 408 // Update def for Reg and aliases. 409 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { 410 // We need to be careful here not to define already-live super registers. 411 // If the super register is already live, then this definition is not 412 // a definition of the whole super register (just a partial insertion 413 // into it). Earlier subregister definitions (which we've not yet visited 414 // because we're iterating bottom-up) need to be linked to the same group 415 // as this definition. 416 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) 417 continue; 418 419 DefIndices[*AI] = Count; 420 } 421 } 422 } 423 424 void AggressiveAntiDepBreaker::ScanInstruction(MachineInstr *MI, 425 unsigned Count) { 426 DEBUG(dbgs() << "\tUse Groups:"); 427 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& 428 RegRefs = State->GetRegRefs(); 429 430 // If MI's uses have special allocation requirement, don't allow 431 // any use registers to be changed. Also assume all registers 432 // used in a call must not be changed (ABI). 433 // Inline Assembly register uses also cannot be safely changed. 434 // FIXME: The issue with predicated instruction is more complex. We are being 435 // conservatively here because the kill markers cannot be trusted after 436 // if-conversion: 437 // %R6<def> = LDR %SP, %reg0, 92, pred:14, pred:%reg0; mem:LD4[FixedStack14] 438 // ... 439 // STR %R0, %R6<kill>, %reg0, 0, pred:0, pred:%CPSR; mem:ST4[%395] 440 // %R6<def> = LDR %SP, %reg0, 100, pred:0, pred:%CPSR; mem:LD4[FixedStack12] 441 // STR %R0, %R6<kill>, %reg0, 0, pred:14, pred:%reg0; mem:ST4[%396](align=8) 442 // 443 // The first R6 kill is not really a kill since it's killed by a predicated 444 // instruction which may not be executed. The second R6 def may or may not 445 // re-define R6 so it's not safe to change it since the last R6 use cannot be 446 // changed. 447 bool Special = MI->isCall() || MI->hasExtraSrcRegAllocReq() || 448 TII->isPredicated(*MI) || MI->isInlineAsm(); 449 450 // Scan the register uses for this instruction and update 451 // live-ranges, groups and RegRefs. 452 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 453 MachineOperand &MO = MI->getOperand(i); 454 if (!MO.isReg() || !MO.isUse()) continue; 455 unsigned Reg = MO.getReg(); 456 if (Reg == 0) continue; 457 458 DEBUG(dbgs() << " " << TRI->getName(Reg) << "=g" << 459 State->GetGroup(Reg)); 460 461 // It wasn't previously live but now it is, this is a kill. Forget 462 // the previous live-range information and start a new live-range 463 // for the register. 464 HandleLastUse(Reg, Count, "(last-use)"); 465 466 if (Special) { 467 DEBUG(if (State->GetGroup(Reg) != 0) dbgs() << "->g0(alloc-req)"); 468 State->UnionGroups(Reg, 0); 469 } 470 471 // Note register reference... 472 const TargetRegisterClass *RC = nullptr; 473 if (i < MI->getDesc().getNumOperands()) 474 RC = TII->getRegClass(MI->getDesc(), i, TRI, MF); 475 AggressiveAntiDepState::RegisterReference RR = { &MO, RC }; 476 RegRefs.insert(std::make_pair(Reg, RR)); 477 } 478 479 DEBUG(dbgs() << '\n'); 480 481 // Form a group of all defs and uses of a KILL instruction to ensure 482 // that all registers are renamed as a group. 483 if (MI->isKill()) { 484 DEBUG(dbgs() << "\tKill Group:"); 485 486 unsigned FirstReg = 0; 487 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { 488 MachineOperand &MO = MI->getOperand(i); 489 if (!MO.isReg()) continue; 490 unsigned Reg = MO.getReg(); 491 if (Reg == 0) continue; 492 493 if (FirstReg != 0) { 494 DEBUG(dbgs() << "=" << TRI->getName(Reg)); 495 State->UnionGroups(FirstReg, Reg); 496 } else { 497 DEBUG(dbgs() << " " << TRI->getName(Reg)); 498 FirstReg = Reg; 499 } 500 } 501 502 DEBUG(dbgs() << "->g" << State->GetGroup(FirstReg) << '\n'); 503 } 504 } 505 506 BitVector AggressiveAntiDepBreaker::GetRenameRegisters(unsigned Reg) { 507 BitVector BV(TRI->getNumRegs(), false); 508 bool first = true; 509 510 // Check all references that need rewriting for Reg. For each, use 511 // the corresponding register class to narrow the set of registers 512 // that are appropriate for renaming. 513 for (const auto &Q : make_range(State->GetRegRefs().equal_range(Reg))) { 514 const TargetRegisterClass *RC = Q.second.RC; 515 if (!RC) continue; 516 517 BitVector RCBV = TRI->getAllocatableSet(MF, RC); 518 if (first) { 519 BV |= RCBV; 520 first = false; 521 } else { 522 BV &= RCBV; 523 } 524 525 DEBUG(dbgs() << " " << TRI->getRegClassName(RC)); 526 } 527 528 return BV; 529 } 530 531 bool AggressiveAntiDepBreaker::FindSuitableFreeRegisters( 532 unsigned AntiDepGroupIndex, 533 RenameOrderType& RenameOrder, 534 std::map<unsigned, unsigned> &RenameMap) { 535 std::vector<unsigned> &KillIndices = State->GetKillIndices(); 536 std::vector<unsigned> &DefIndices = State->GetDefIndices(); 537 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& 538 RegRefs = State->GetRegRefs(); 539 540 // Collect all referenced registers in the same group as 541 // AntiDepReg. These all need to be renamed together if we are to 542 // break the anti-dependence. 543 std::vector<unsigned> Regs; 544 State->GetGroupRegs(AntiDepGroupIndex, Regs, &RegRefs); 545 assert(Regs.size() > 0 && "Empty register group!"); 546 if (Regs.size() == 0) 547 return false; 548 549 // Find the "superest" register in the group. At the same time, 550 // collect the BitVector of registers that can be used to rename 551 // each register. 552 DEBUG(dbgs() << "\tRename Candidates for Group g" << AntiDepGroupIndex 553 << ":\n"); 554 std::map<unsigned, BitVector> RenameRegisterMap; 555 unsigned SuperReg = 0; 556 for (unsigned i = 0, e = Regs.size(); i != e; ++i) { 557 unsigned Reg = Regs[i]; 558 if ((SuperReg == 0) || TRI->isSuperRegister(SuperReg, Reg)) 559 SuperReg = Reg; 560 561 // If Reg has any references, then collect possible rename regs 562 if (RegRefs.count(Reg) > 0) { 563 DEBUG(dbgs() << "\t\t" << TRI->getName(Reg) << ":"); 564 565 BitVector &BV = RenameRegisterMap[Reg]; 566 assert(BV.empty()); 567 BV = GetRenameRegisters(Reg); 568 569 DEBUG({ 570 dbgs() << " ::"; 571 for (int r = BV.find_first(); r != -1; r = BV.find_next(r)) 572 dbgs() << " " << TRI->getName(r); 573 dbgs() << "\n"; 574 }); 575 } 576 } 577 578 // All group registers should be a subreg of SuperReg. 579 for (unsigned i = 0, e = Regs.size(); i != e; ++i) { 580 unsigned Reg = Regs[i]; 581 if (Reg == SuperReg) continue; 582 bool IsSub = TRI->isSubRegister(SuperReg, Reg); 583 // FIXME: remove this once PR18663 has been properly fixed. For now, 584 // return a conservative answer: 585 // assert(IsSub && "Expecting group subregister"); 586 if (!IsSub) 587 return false; 588 } 589 590 #ifndef NDEBUG 591 // If DebugDiv > 0 then only rename (renamecnt % DebugDiv) == DebugMod 592 if (DebugDiv > 0) { 593 static int renamecnt = 0; 594 if (renamecnt++ % DebugDiv != DebugMod) 595 return false; 596 597 dbgs() << "*** Performing rename " << TRI->getName(SuperReg) << 598 " for debug ***\n"; 599 } 600 #endif 601 602 // Check each possible rename register for SuperReg in round-robin 603 // order. If that register is available, and the corresponding 604 // registers are available for the other group subregisters, then we 605 // can use those registers to rename. 606 607 // FIXME: Using getMinimalPhysRegClass is very conservative. We should 608 // check every use of the register and find the largest register class 609 // that can be used in all of them. 610 const TargetRegisterClass *SuperRC = 611 TRI->getMinimalPhysRegClass(SuperReg, MVT::Other); 612 613 ArrayRef<MCPhysReg> Order = RegClassInfo.getOrder(SuperRC); 614 if (Order.empty()) { 615 DEBUG(dbgs() << "\tEmpty Super Regclass!!\n"); 616 return false; 617 } 618 619 DEBUG(dbgs() << "\tFind Registers:"); 620 621 RenameOrder.insert(RenameOrderType::value_type(SuperRC, Order.size())); 622 623 unsigned OrigR = RenameOrder[SuperRC]; 624 unsigned EndR = ((OrigR == Order.size()) ? 0 : OrigR); 625 unsigned R = OrigR; 626 do { 627 if (R == 0) R = Order.size(); 628 --R; 629 const unsigned NewSuperReg = Order[R]; 630 // Don't consider non-allocatable registers 631 if (!MRI.isAllocatable(NewSuperReg)) continue; 632 // Don't replace a register with itself. 633 if (NewSuperReg == SuperReg) continue; 634 635 DEBUG(dbgs() << " [" << TRI->getName(NewSuperReg) << ':'); 636 RenameMap.clear(); 637 638 // For each referenced group register (which must be a SuperReg or 639 // a subregister of SuperReg), find the corresponding subregister 640 // of NewSuperReg and make sure it is free to be renamed. 641 for (unsigned i = 0, e = Regs.size(); i != e; ++i) { 642 unsigned Reg = Regs[i]; 643 unsigned NewReg = 0; 644 if (Reg == SuperReg) { 645 NewReg = NewSuperReg; 646 } else { 647 unsigned NewSubRegIdx = TRI->getSubRegIndex(SuperReg, Reg); 648 if (NewSubRegIdx != 0) 649 NewReg = TRI->getSubReg(NewSuperReg, NewSubRegIdx); 650 } 651 652 DEBUG(dbgs() << " " << TRI->getName(NewReg)); 653 654 // Check if Reg can be renamed to NewReg. 655 if (!RenameRegisterMap[Reg].test(NewReg)) { 656 DEBUG(dbgs() << "(no rename)"); 657 goto next_super_reg; 658 } 659 660 // If NewReg is dead and NewReg's most recent def is not before 661 // Regs's kill, it's safe to replace Reg with NewReg. We 662 // must also check all aliases of NewReg, because we can't define a 663 // register when any sub or super is already live. 664 if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) { 665 DEBUG(dbgs() << "(live)"); 666 goto next_super_reg; 667 } else { 668 bool found = false; 669 for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) { 670 unsigned AliasReg = *AI; 671 if (State->IsLive(AliasReg) || 672 (KillIndices[Reg] > DefIndices[AliasReg])) { 673 DEBUG(dbgs() << "(alias " << TRI->getName(AliasReg) << " live)"); 674 found = true; 675 break; 676 } 677 } 678 if (found) 679 goto next_super_reg; 680 } 681 682 // We cannot rename 'Reg' to 'NewReg' if one of the uses of 'Reg' also 683 // defines 'NewReg' via an early-clobber operand. 684 for (const auto &Q : make_range(RegRefs.equal_range(Reg))) { 685 MachineInstr *UseMI = Q.second.Operand->getParent(); 686 int Idx = UseMI->findRegisterDefOperandIdx(NewReg, false, true, TRI); 687 if (Idx == -1) 688 continue; 689 690 if (UseMI->getOperand(Idx).isEarlyClobber()) { 691 DEBUG(dbgs() << "(ec)"); 692 goto next_super_reg; 693 } 694 } 695 696 // Also, we cannot rename 'Reg' to 'NewReg' if the instruction defining 697 // 'Reg' is an early-clobber define and that instruction also uses 698 // 'NewReg'. 699 for (const auto &Q : make_range(RegRefs.equal_range(Reg))) { 700 if (!Q.second.Operand->isDef() || !Q.second.Operand->isEarlyClobber()) 701 continue; 702 703 MachineInstr *DefMI = Q.second.Operand->getParent(); 704 if (DefMI->readsRegister(NewReg, TRI)) { 705 DEBUG(dbgs() << "(ec)"); 706 goto next_super_reg; 707 } 708 } 709 710 // Record that 'Reg' can be renamed to 'NewReg'. 711 RenameMap.insert(std::pair<unsigned, unsigned>(Reg, NewReg)); 712 } 713 714 // If we fall-out here, then every register in the group can be 715 // renamed, as recorded in RenameMap. 716 RenameOrder.erase(SuperRC); 717 RenameOrder.insert(RenameOrderType::value_type(SuperRC, R)); 718 DEBUG(dbgs() << "]\n"); 719 return true; 720 721 next_super_reg: 722 DEBUG(dbgs() << ']'); 723 } while (R != EndR); 724 725 DEBUG(dbgs() << '\n'); 726 727 // No registers are free and available! 728 return false; 729 } 730 731 /// BreakAntiDependencies - Identifiy anti-dependencies within the 732 /// ScheduleDAG and break them by renaming registers. 733 /// 734 unsigned AggressiveAntiDepBreaker::BreakAntiDependencies( 735 const std::vector<SUnit>& SUnits, 736 MachineBasicBlock::iterator Begin, 737 MachineBasicBlock::iterator End, 738 unsigned InsertPosIndex, 739 DbgValueVector &DbgValues) { 740 741 std::vector<unsigned> &KillIndices = State->GetKillIndices(); 742 std::vector<unsigned> &DefIndices = State->GetDefIndices(); 743 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& 744 RegRefs = State->GetRegRefs(); 745 746 // The code below assumes that there is at least one instruction, 747 // so just duck out immediately if the block is empty. 748 if (SUnits.empty()) return 0; 749 750 // For each regclass the next register to use for renaming. 751 RenameOrderType RenameOrder; 752 753 // ...need a map from MI to SUnit. 754 std::map<MachineInstr *, const SUnit *> MISUnitMap; 755 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) { 756 const SUnit *SU = &SUnits[i]; 757 MISUnitMap.insert(std::pair<MachineInstr *, const SUnit *>(SU->getInstr(), 758 SU)); 759 } 760 761 // Track progress along the critical path through the SUnit graph as 762 // we walk the instructions. This is needed for regclasses that only 763 // break critical-path anti-dependencies. 764 const SUnit *CriticalPathSU = nullptr; 765 MachineInstr *CriticalPathMI = nullptr; 766 if (CriticalPathSet.any()) { 767 for (unsigned i = 0, e = SUnits.size(); i != e; ++i) { 768 const SUnit *SU = &SUnits[i]; 769 if (!CriticalPathSU || 770 ((SU->getDepth() + SU->Latency) > 771 (CriticalPathSU->getDepth() + CriticalPathSU->Latency))) { 772 CriticalPathSU = SU; 773 } 774 } 775 776 CriticalPathMI = CriticalPathSU->getInstr(); 777 } 778 779 #ifndef NDEBUG 780 DEBUG(dbgs() << "\n===== Aggressive anti-dependency breaking\n"); 781 DEBUG(dbgs() << "Available regs:"); 782 for (unsigned Reg = 0; Reg < TRI->getNumRegs(); ++Reg) { 783 if (!State->IsLive(Reg)) 784 DEBUG(dbgs() << " " << TRI->getName(Reg)); 785 } 786 DEBUG(dbgs() << '\n'); 787 #endif 788 789 // Attempt to break anti-dependence edges. Walk the instructions 790 // from the bottom up, tracking information about liveness as we go 791 // to help determine which registers are available. 792 unsigned Broken = 0; 793 unsigned Count = InsertPosIndex - 1; 794 for (MachineBasicBlock::iterator I = End, E = Begin; 795 I != E; --Count) { 796 MachineInstr *MI = --I; 797 798 if (MI->isDebugValue()) 799 continue; 800 801 DEBUG(dbgs() << "Anti: "); 802 DEBUG(MI->dump()); 803 804 std::set<unsigned> PassthruRegs; 805 GetPassthruRegs(MI, PassthruRegs); 806 807 // Process the defs in MI... 808 PrescanInstruction(MI, Count, PassthruRegs); 809 810 // The dependence edges that represent anti- and output- 811 // dependencies that are candidates for breaking. 812 std::vector<const SDep *> Edges; 813 const SUnit *PathSU = MISUnitMap[MI]; 814 AntiDepEdges(PathSU, Edges); 815 816 // If MI is not on the critical path, then we don't rename 817 // registers in the CriticalPathSet. 818 BitVector *ExcludeRegs = nullptr; 819 if (MI == CriticalPathMI) { 820 CriticalPathSU = CriticalPathStep(CriticalPathSU); 821 CriticalPathMI = (CriticalPathSU) ? CriticalPathSU->getInstr() : nullptr; 822 } else if (CriticalPathSet.any()) { 823 ExcludeRegs = &CriticalPathSet; 824 } 825 826 // Ignore KILL instructions (they form a group in ScanInstruction 827 // but don't cause any anti-dependence breaking themselves) 828 if (!MI->isKill()) { 829 // Attempt to break each anti-dependency... 830 for (unsigned i = 0, e = Edges.size(); i != e; ++i) { 831 const SDep *Edge = Edges[i]; 832 SUnit *NextSU = Edge->getSUnit(); 833 834 if ((Edge->getKind() != SDep::Anti) && 835 (Edge->getKind() != SDep::Output)) continue; 836 837 unsigned AntiDepReg = Edge->getReg(); 838 DEBUG(dbgs() << "\tAntidep reg: " << TRI->getName(AntiDepReg)); 839 assert(AntiDepReg != 0 && "Anti-dependence on reg0?"); 840 841 if (!MRI.isAllocatable(AntiDepReg)) { 842 // Don't break anti-dependencies on non-allocatable registers. 843 DEBUG(dbgs() << " (non-allocatable)\n"); 844 continue; 845 } else if (ExcludeRegs && ExcludeRegs->test(AntiDepReg)) { 846 // Don't break anti-dependencies for critical path registers 847 // if not on the critical path 848 DEBUG(dbgs() << " (not critical-path)\n"); 849 continue; 850 } else if (PassthruRegs.count(AntiDepReg) != 0) { 851 // If the anti-dep register liveness "passes-thru", then 852 // don't try to change it. It will be changed along with 853 // the use if required to break an earlier antidep. 854 DEBUG(dbgs() << " (passthru)\n"); 855 continue; 856 } else { 857 // No anti-dep breaking for implicit deps 858 MachineOperand *AntiDepOp = MI->findRegisterDefOperand(AntiDepReg); 859 assert(AntiDepOp && "Can't find index for defined register operand"); 860 if (!AntiDepOp || AntiDepOp->isImplicit()) { 861 DEBUG(dbgs() << " (implicit)\n"); 862 continue; 863 } 864 865 // If the SUnit has other dependencies on the SUnit that 866 // it anti-depends on, don't bother breaking the 867 // anti-dependency since those edges would prevent such 868 // units from being scheduled past each other 869 // regardless. 870 // 871 // Also, if there are dependencies on other SUnits with the 872 // same register as the anti-dependency, don't attempt to 873 // break it. 874 for (SUnit::const_pred_iterator P = PathSU->Preds.begin(), 875 PE = PathSU->Preds.end(); P != PE; ++P) { 876 if (P->getSUnit() == NextSU ? 877 (P->getKind() != SDep::Anti || P->getReg() != AntiDepReg) : 878 (P->getKind() == SDep::Data && P->getReg() == AntiDepReg)) { 879 AntiDepReg = 0; 880 break; 881 } 882 } 883 for (SUnit::const_pred_iterator P = PathSU->Preds.begin(), 884 PE = PathSU->Preds.end(); P != PE; ++P) { 885 if ((P->getSUnit() == NextSU) && (P->getKind() != SDep::Anti) && 886 (P->getKind() != SDep::Output)) { 887 DEBUG(dbgs() << " (real dependency)\n"); 888 AntiDepReg = 0; 889 break; 890 } else if ((P->getSUnit() != NextSU) && 891 (P->getKind() == SDep::Data) && 892 (P->getReg() == AntiDepReg)) { 893 DEBUG(dbgs() << " (other dependency)\n"); 894 AntiDepReg = 0; 895 break; 896 } 897 } 898 899 if (AntiDepReg == 0) continue; 900 } 901 902 assert(AntiDepReg != 0); 903 if (AntiDepReg == 0) continue; 904 905 // Determine AntiDepReg's register group. 906 const unsigned GroupIndex = State->GetGroup(AntiDepReg); 907 if (GroupIndex == 0) { 908 DEBUG(dbgs() << " (zero group)\n"); 909 continue; 910 } 911 912 DEBUG(dbgs() << '\n'); 913 914 // Look for a suitable register to use to break the anti-dependence. 915 std::map<unsigned, unsigned> RenameMap; 916 if (FindSuitableFreeRegisters(GroupIndex, RenameOrder, RenameMap)) { 917 DEBUG(dbgs() << "\tBreaking anti-dependence edge on " 918 << TRI->getName(AntiDepReg) << ":"); 919 920 // Handle each group register... 921 for (std::map<unsigned, unsigned>::iterator 922 S = RenameMap.begin(), E = RenameMap.end(); S != E; ++S) { 923 unsigned CurrReg = S->first; 924 unsigned NewReg = S->second; 925 926 DEBUG(dbgs() << " " << TRI->getName(CurrReg) << "->" << 927 TRI->getName(NewReg) << "(" << 928 RegRefs.count(CurrReg) << " refs)"); 929 930 // Update the references to the old register CurrReg to 931 // refer to the new register NewReg. 932 for (const auto &Q : make_range(RegRefs.equal_range(CurrReg))) { 933 Q.second.Operand->setReg(NewReg); 934 // If the SU for the instruction being updated has debug 935 // information related to the anti-dependency register, make 936 // sure to update that as well. 937 const SUnit *SU = MISUnitMap[Q.second.Operand->getParent()]; 938 if (!SU) continue; 939 for (DbgValueVector::iterator DVI = DbgValues.begin(), 940 DVE = DbgValues.end(); DVI != DVE; ++DVI) 941 if (DVI->second == Q.second.Operand->getParent()) 942 UpdateDbgValue(DVI->first, AntiDepReg, NewReg); 943 } 944 945 // We just went back in time and modified history; the 946 // liveness information for CurrReg is now inconsistent. Set 947 // the state as if it were dead. 948 State->UnionGroups(NewReg, 0); 949 RegRefs.erase(NewReg); 950 DefIndices[NewReg] = DefIndices[CurrReg]; 951 KillIndices[NewReg] = KillIndices[CurrReg]; 952 953 State->UnionGroups(CurrReg, 0); 954 RegRefs.erase(CurrReg); 955 DefIndices[CurrReg] = KillIndices[CurrReg]; 956 KillIndices[CurrReg] = ~0u; 957 assert(((KillIndices[CurrReg] == ~0u) != 958 (DefIndices[CurrReg] == ~0u)) && 959 "Kill and Def maps aren't consistent for AntiDepReg!"); 960 } 961 962 ++Broken; 963 DEBUG(dbgs() << '\n'); 964 } 965 } 966 } 967 968 ScanInstruction(MI, Count); 969 } 970 971 return Broken; 972 } 973