1 //===- RegisterCoalescer.cpp - Generic Register Coalescing Interface -------==// 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 generic RegisterCoalescer interface which 11 // is used as the common interface used by all clients and 12 // implementations of register coalescing. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #include "RegisterCoalescer.h" 17 #include "llvm/ADT/STLExtras.h" 18 #include "llvm/ADT/SmallSet.h" 19 #include "llvm/ADT/Statistic.h" 20 #include "llvm/Analysis/AliasAnalysis.h" 21 #include "llvm/CodeGen/LiveIntervalAnalysis.h" 22 #include "llvm/CodeGen/LiveRangeEdit.h" 23 #include "llvm/CodeGen/MachineFrameInfo.h" 24 #include "llvm/CodeGen/MachineInstr.h" 25 #include "llvm/CodeGen/MachineInstrBuilder.h" 26 #include "llvm/CodeGen/MachineLoopInfo.h" 27 #include "llvm/CodeGen/MachineRegisterInfo.h" 28 #include "llvm/CodeGen/Passes.h" 29 #include "llvm/CodeGen/RegisterClassInfo.h" 30 #include "llvm/CodeGen/VirtRegMap.h" 31 #include "llvm/IR/Value.h" 32 #include "llvm/Pass.h" 33 #include "llvm/Support/CommandLine.h" 34 #include "llvm/Support/Debug.h" 35 #include "llvm/Support/ErrorHandling.h" 36 #include "llvm/Support/raw_ostream.h" 37 #include "llvm/Target/TargetInstrInfo.h" 38 #include "llvm/Target/TargetMachine.h" 39 #include "llvm/Target/TargetRegisterInfo.h" 40 #include "llvm/Target/TargetSubtargetInfo.h" 41 #include <algorithm> 42 #include <cmath> 43 using namespace llvm; 44 45 #define DEBUG_TYPE "regalloc" 46 47 STATISTIC(numJoins , "Number of interval joins performed"); 48 STATISTIC(numCrossRCs , "Number of cross class joins performed"); 49 STATISTIC(numCommutes , "Number of instruction commuting performed"); 50 STATISTIC(numExtends , "Number of copies extended"); 51 STATISTIC(NumReMats , "Number of instructions re-materialized"); 52 STATISTIC(NumInflated , "Number of register classes inflated"); 53 STATISTIC(NumLaneConflicts, "Number of dead lane conflicts tested"); 54 STATISTIC(NumLaneResolves, "Number of dead lane conflicts resolved"); 55 56 static cl::opt<bool> 57 EnableJoining("join-liveintervals", 58 cl::desc("Coalesce copies (default=true)"), 59 cl::init(true)); 60 61 static cl::opt<bool> UseTerminalRule("terminal-rule", 62 cl::desc("Apply the terminal rule"), 63 cl::init(false), cl::Hidden); 64 65 /// Temporary flag to test critical edge unsplitting. 66 static cl::opt<bool> 67 EnableJoinSplits("join-splitedges", 68 cl::desc("Coalesce copies on split edges (default=subtarget)"), cl::Hidden); 69 70 /// Temporary flag to test global copy optimization. 71 static cl::opt<cl::boolOrDefault> 72 EnableGlobalCopies("join-globalcopies", 73 cl::desc("Coalesce copies that span blocks (default=subtarget)"), 74 cl::init(cl::BOU_UNSET), cl::Hidden); 75 76 static cl::opt<bool> 77 VerifyCoalescing("verify-coalescing", 78 cl::desc("Verify machine instrs before and after register coalescing"), 79 cl::Hidden); 80 81 namespace { 82 class RegisterCoalescer : public MachineFunctionPass, 83 private LiveRangeEdit::Delegate { 84 MachineFunction* MF; 85 MachineRegisterInfo* MRI; 86 const TargetMachine* TM; 87 const TargetRegisterInfo* TRI; 88 const TargetInstrInfo* TII; 89 LiveIntervals *LIS; 90 const MachineLoopInfo* Loops; 91 AliasAnalysis *AA; 92 RegisterClassInfo RegClassInfo; 93 94 /// A LaneMask to remember on which subregister live ranges we need to call 95 /// shrinkToUses() later. 96 LaneBitmask ShrinkMask; 97 98 /// True if the main range of the currently coalesced intervals should be 99 /// checked for smaller live intervals. 100 bool ShrinkMainRange; 101 102 /// \brief True if the coalescer should aggressively coalesce global copies 103 /// in favor of keeping local copies. 104 bool JoinGlobalCopies; 105 106 /// \brief True if the coalescer should aggressively coalesce fall-thru 107 /// blocks exclusively containing copies. 108 bool JoinSplitEdges; 109 110 /// Copy instructions yet to be coalesced. 111 SmallVector<MachineInstr*, 8> WorkList; 112 SmallVector<MachineInstr*, 8> LocalWorkList; 113 114 /// Set of instruction pointers that have been erased, and 115 /// that may be present in WorkList. 116 SmallPtrSet<MachineInstr*, 8> ErasedInstrs; 117 118 /// Dead instructions that are about to be deleted. 119 SmallVector<MachineInstr*, 8> DeadDefs; 120 121 /// Virtual registers to be considered for register class inflation. 122 SmallVector<unsigned, 8> InflateRegs; 123 124 /// Recursively eliminate dead defs in DeadDefs. 125 void eliminateDeadDefs(); 126 127 /// LiveRangeEdit callback for eliminateDeadDefs(). 128 void LRE_WillEraseInstruction(MachineInstr *MI) override; 129 130 /// Coalesce the LocalWorkList. 131 void coalesceLocals(); 132 133 /// Join compatible live intervals 134 void joinAllIntervals(); 135 136 /// Coalesce copies in the specified MBB, putting 137 /// copies that cannot yet be coalesced into WorkList. 138 void copyCoalesceInMBB(MachineBasicBlock *MBB); 139 140 /// Tries to coalesce all copies in CurrList. Returns true if any progress 141 /// was made. 142 bool copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList); 143 144 /// Attempt to join intervals corresponding to SrcReg/DstReg, which are the 145 /// src/dst of the copy instruction CopyMI. This returns true if the copy 146 /// was successfully coalesced away. If it is not currently possible to 147 /// coalesce this interval, but it may be possible if other things get 148 /// coalesced, then it returns true by reference in 'Again'. 149 bool joinCopy(MachineInstr *TheCopy, bool &Again); 150 151 /// Attempt to join these two intervals. On failure, this 152 /// returns false. The output "SrcInt" will not have been modified, so we 153 /// can use this information below to update aliases. 154 bool joinIntervals(CoalescerPair &CP); 155 156 /// Attempt joining two virtual registers. Return true on success. 157 bool joinVirtRegs(CoalescerPair &CP); 158 159 /// Attempt joining with a reserved physreg. 160 bool joinReservedPhysReg(CoalescerPair &CP); 161 162 /// Add the LiveRange @p ToMerge as a subregister liverange of @p LI. 163 /// Subranges in @p LI which only partially interfere with the desired 164 /// LaneMask are split as necessary. @p LaneMask are the lanes that 165 /// @p ToMerge will occupy in the coalescer register. @p LI has its subrange 166 /// lanemasks already adjusted to the coalesced register. 167 void mergeSubRangeInto(LiveInterval &LI, const LiveRange &ToMerge, 168 LaneBitmask LaneMask, CoalescerPair &CP); 169 170 /// Join the liveranges of two subregisters. Joins @p RRange into 171 /// @p LRange, @p RRange may be invalid afterwards. 172 void joinSubRegRanges(LiveRange &LRange, LiveRange &RRange, 173 LaneBitmask LaneMask, const CoalescerPair &CP); 174 175 /// We found a non-trivially-coalescable copy. If the source value number is 176 /// defined by a copy from the destination reg see if we can merge these two 177 /// destination reg valno# into a single value number, eliminating a copy. 178 /// This returns true if an interval was modified. 179 bool adjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI); 180 181 /// Return true if there are definitions of IntB 182 /// other than BValNo val# that can reach uses of AValno val# of IntA. 183 bool hasOtherReachingDefs(LiveInterval &IntA, LiveInterval &IntB, 184 VNInfo *AValNo, VNInfo *BValNo); 185 186 /// We found a non-trivially-coalescable copy. 187 /// If the source value number is defined by a commutable instruction and 188 /// its other operand is coalesced to the copy dest register, see if we 189 /// can transform the copy into a noop by commuting the definition. 190 /// This returns true if an interval was modified. 191 bool removeCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI); 192 193 /// We found a copy which can be moved to its less frequent predecessor. 194 bool removePartialRedundancy(const CoalescerPair &CP, MachineInstr &CopyMI); 195 196 /// If the source of a copy is defined by a 197 /// trivial computation, replace the copy by rematerialize the definition. 198 bool reMaterializeTrivialDef(const CoalescerPair &CP, MachineInstr *CopyMI, 199 bool &IsDefCopy); 200 201 /// Return true if a copy involving a physreg should be joined. 202 bool canJoinPhys(const CoalescerPair &CP); 203 204 /// Replace all defs and uses of SrcReg to DstReg and update the subregister 205 /// number if it is not zero. If DstReg is a physical register and the 206 /// existing subregister number of the def / use being updated is not zero, 207 /// make sure to set it to the correct physical subregister. 208 void updateRegDefsUses(unsigned SrcReg, unsigned DstReg, unsigned SubIdx); 209 210 /// If the given machine operand reads only undefined lanes add an undef 211 /// flag. 212 /// This can happen when undef uses were previously concealed by a copy 213 /// which we coalesced. Example: 214 /// %vreg0:sub0<def,read-undef> = ... 215 /// %vreg1 = COPY %vreg0 <-- Coalescing COPY reveals undef 216 /// = use %vreg1:sub1 <-- hidden undef use 217 void addUndefFlag(const LiveInterval &Int, SlotIndex UseIdx, 218 MachineOperand &MO, unsigned SubRegIdx); 219 220 /// Handle copies of undef values. 221 /// Returns true if @p CopyMI was a copy of an undef value and eliminated. 222 bool eliminateUndefCopy(MachineInstr *CopyMI); 223 224 /// Check whether or not we should apply the terminal rule on the 225 /// destination (Dst) of \p Copy. 226 /// When the terminal rule applies, Copy is not profitable to 227 /// coalesce. 228 /// Dst is terminal if it has exactly one affinity (Dst, Src) and 229 /// at least one interference (Dst, Dst2). If Dst is terminal, the 230 /// terminal rule consists in checking that at least one of 231 /// interfering node, say Dst2, has an affinity of equal or greater 232 /// weight with Src. 233 /// In that case, Dst2 and Dst will not be able to be both coalesced 234 /// with Src. Since Dst2 exposes more coalescing opportunities than 235 /// Dst, we can drop \p Copy. 236 bool applyTerminalRule(const MachineInstr &Copy) const; 237 238 /// Wrapper method for \see LiveIntervals::shrinkToUses. 239 /// This method does the proper fixing of the live-ranges when the afore 240 /// mentioned method returns true. 241 void shrinkToUses(LiveInterval *LI, 242 SmallVectorImpl<MachineInstr * > *Dead = nullptr) { 243 if (LIS->shrinkToUses(LI, Dead)) { 244 /// Check whether or not \p LI is composed by multiple connected 245 /// components and if that is the case, fix that. 246 SmallVector<LiveInterval*, 8> SplitLIs; 247 LIS->splitSeparateComponents(*LI, SplitLIs); 248 } 249 } 250 251 public: 252 static char ID; ///< Class identification, replacement for typeinfo 253 RegisterCoalescer() : MachineFunctionPass(ID) { 254 initializeRegisterCoalescerPass(*PassRegistry::getPassRegistry()); 255 } 256 257 void getAnalysisUsage(AnalysisUsage &AU) const override; 258 259 void releaseMemory() override; 260 261 /// This is the pass entry point. 262 bool runOnMachineFunction(MachineFunction&) override; 263 264 /// Implement the dump method. 265 void print(raw_ostream &O, const Module* = nullptr) const override; 266 }; 267 } // end anonymous namespace 268 269 char &llvm::RegisterCoalescerID = RegisterCoalescer::ID; 270 271 INITIALIZE_PASS_BEGIN(RegisterCoalescer, "simple-register-coalescing", 272 "Simple Register Coalescing", false, false) 273 INITIALIZE_PASS_DEPENDENCY(LiveIntervals) 274 INITIALIZE_PASS_DEPENDENCY(SlotIndexes) 275 INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo) 276 INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) 277 INITIALIZE_PASS_END(RegisterCoalescer, "simple-register-coalescing", 278 "Simple Register Coalescing", false, false) 279 280 char RegisterCoalescer::ID = 0; 281 282 static bool isMoveInstr(const TargetRegisterInfo &tri, const MachineInstr *MI, 283 unsigned &Src, unsigned &Dst, 284 unsigned &SrcSub, unsigned &DstSub) { 285 if (MI->isCopy()) { 286 Dst = MI->getOperand(0).getReg(); 287 DstSub = MI->getOperand(0).getSubReg(); 288 Src = MI->getOperand(1).getReg(); 289 SrcSub = MI->getOperand(1).getSubReg(); 290 } else if (MI->isSubregToReg()) { 291 Dst = MI->getOperand(0).getReg(); 292 DstSub = tri.composeSubRegIndices(MI->getOperand(0).getSubReg(), 293 MI->getOperand(3).getImm()); 294 Src = MI->getOperand(2).getReg(); 295 SrcSub = MI->getOperand(2).getSubReg(); 296 } else 297 return false; 298 return true; 299 } 300 301 /// Return true if this block should be vacated by the coalescer to eliminate 302 /// branches. The important cases to handle in the coalescer are critical edges 303 /// split during phi elimination which contain only copies. Simple blocks that 304 /// contain non-branches should also be vacated, but this can be handled by an 305 /// earlier pass similar to early if-conversion. 306 static bool isSplitEdge(const MachineBasicBlock *MBB) { 307 if (MBB->pred_size() != 1 || MBB->succ_size() != 1) 308 return false; 309 310 for (const auto &MI : *MBB) { 311 if (!MI.isCopyLike() && !MI.isUnconditionalBranch()) 312 return false; 313 } 314 return true; 315 } 316 317 bool CoalescerPair::setRegisters(const MachineInstr *MI) { 318 SrcReg = DstReg = 0; 319 SrcIdx = DstIdx = 0; 320 NewRC = nullptr; 321 Flipped = CrossClass = false; 322 323 unsigned Src, Dst, SrcSub, DstSub; 324 if (!isMoveInstr(TRI, MI, Src, Dst, SrcSub, DstSub)) 325 return false; 326 Partial = SrcSub || DstSub; 327 328 // If one register is a physreg, it must be Dst. 329 if (TargetRegisterInfo::isPhysicalRegister(Src)) { 330 if (TargetRegisterInfo::isPhysicalRegister(Dst)) 331 return false; 332 std::swap(Src, Dst); 333 std::swap(SrcSub, DstSub); 334 Flipped = true; 335 } 336 337 const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo(); 338 339 if (TargetRegisterInfo::isPhysicalRegister(Dst)) { 340 // Eliminate DstSub on a physreg. 341 if (DstSub) { 342 Dst = TRI.getSubReg(Dst, DstSub); 343 if (!Dst) return false; 344 DstSub = 0; 345 } 346 347 // Eliminate SrcSub by picking a corresponding Dst superregister. 348 if (SrcSub) { 349 Dst = TRI.getMatchingSuperReg(Dst, SrcSub, MRI.getRegClass(Src)); 350 if (!Dst) return false; 351 } else if (!MRI.getRegClass(Src)->contains(Dst)) { 352 return false; 353 } 354 } else { 355 // Both registers are virtual. 356 const TargetRegisterClass *SrcRC = MRI.getRegClass(Src); 357 const TargetRegisterClass *DstRC = MRI.getRegClass(Dst); 358 359 // Both registers have subreg indices. 360 if (SrcSub && DstSub) { 361 // Copies between different sub-registers are never coalescable. 362 if (Src == Dst && SrcSub != DstSub) 363 return false; 364 365 NewRC = TRI.getCommonSuperRegClass(SrcRC, SrcSub, DstRC, DstSub, 366 SrcIdx, DstIdx); 367 if (!NewRC) 368 return false; 369 } else if (DstSub) { 370 // SrcReg will be merged with a sub-register of DstReg. 371 SrcIdx = DstSub; 372 NewRC = TRI.getMatchingSuperRegClass(DstRC, SrcRC, DstSub); 373 } else if (SrcSub) { 374 // DstReg will be merged with a sub-register of SrcReg. 375 DstIdx = SrcSub; 376 NewRC = TRI.getMatchingSuperRegClass(SrcRC, DstRC, SrcSub); 377 } else { 378 // This is a straight copy without sub-registers. 379 NewRC = TRI.getCommonSubClass(DstRC, SrcRC); 380 } 381 382 // The combined constraint may be impossible to satisfy. 383 if (!NewRC) 384 return false; 385 386 // Prefer SrcReg to be a sub-register of DstReg. 387 // FIXME: Coalescer should support subregs symmetrically. 388 if (DstIdx && !SrcIdx) { 389 std::swap(Src, Dst); 390 std::swap(SrcIdx, DstIdx); 391 Flipped = !Flipped; 392 } 393 394 CrossClass = NewRC != DstRC || NewRC != SrcRC; 395 } 396 // Check our invariants 397 assert(TargetRegisterInfo::isVirtualRegister(Src) && "Src must be virtual"); 398 assert(!(TargetRegisterInfo::isPhysicalRegister(Dst) && DstSub) && 399 "Cannot have a physical SubIdx"); 400 SrcReg = Src; 401 DstReg = Dst; 402 return true; 403 } 404 405 bool CoalescerPair::flip() { 406 if (TargetRegisterInfo::isPhysicalRegister(DstReg)) 407 return false; 408 std::swap(SrcReg, DstReg); 409 std::swap(SrcIdx, DstIdx); 410 Flipped = !Flipped; 411 return true; 412 } 413 414 bool CoalescerPair::isCoalescable(const MachineInstr *MI) const { 415 if (!MI) 416 return false; 417 unsigned Src, Dst, SrcSub, DstSub; 418 if (!isMoveInstr(TRI, MI, Src, Dst, SrcSub, DstSub)) 419 return false; 420 421 // Find the virtual register that is SrcReg. 422 if (Dst == SrcReg) { 423 std::swap(Src, Dst); 424 std::swap(SrcSub, DstSub); 425 } else if (Src != SrcReg) { 426 return false; 427 } 428 429 // Now check that Dst matches DstReg. 430 if (TargetRegisterInfo::isPhysicalRegister(DstReg)) { 431 if (!TargetRegisterInfo::isPhysicalRegister(Dst)) 432 return false; 433 assert(!DstIdx && !SrcIdx && "Inconsistent CoalescerPair state."); 434 // DstSub could be set for a physreg from INSERT_SUBREG. 435 if (DstSub) 436 Dst = TRI.getSubReg(Dst, DstSub); 437 // Full copy of Src. 438 if (!SrcSub) 439 return DstReg == Dst; 440 // This is a partial register copy. Check that the parts match. 441 return TRI.getSubReg(DstReg, SrcSub) == Dst; 442 } else { 443 // DstReg is virtual. 444 if (DstReg != Dst) 445 return false; 446 // Registers match, do the subregisters line up? 447 return TRI.composeSubRegIndices(SrcIdx, SrcSub) == 448 TRI.composeSubRegIndices(DstIdx, DstSub); 449 } 450 } 451 452 void RegisterCoalescer::getAnalysisUsage(AnalysisUsage &AU) const { 453 AU.setPreservesCFG(); 454 AU.addRequired<AAResultsWrapperPass>(); 455 AU.addRequired<LiveIntervals>(); 456 AU.addPreserved<LiveIntervals>(); 457 AU.addPreserved<SlotIndexes>(); 458 AU.addRequired<MachineLoopInfo>(); 459 AU.addPreserved<MachineLoopInfo>(); 460 AU.addPreservedID(MachineDominatorsID); 461 MachineFunctionPass::getAnalysisUsage(AU); 462 } 463 464 void RegisterCoalescer::eliminateDeadDefs() { 465 SmallVector<unsigned, 8> NewRegs; 466 LiveRangeEdit(nullptr, NewRegs, *MF, *LIS, 467 nullptr, this).eliminateDeadDefs(DeadDefs); 468 } 469 470 void RegisterCoalescer::LRE_WillEraseInstruction(MachineInstr *MI) { 471 // MI may be in WorkList. Make sure we don't visit it. 472 ErasedInstrs.insert(MI); 473 } 474 475 bool RegisterCoalescer::adjustCopiesBackFrom(const CoalescerPair &CP, 476 MachineInstr *CopyMI) { 477 assert(!CP.isPartial() && "This doesn't work for partial copies."); 478 assert(!CP.isPhys() && "This doesn't work for physreg copies."); 479 480 LiveInterval &IntA = 481 LIS->getInterval(CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg()); 482 LiveInterval &IntB = 483 LIS->getInterval(CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg()); 484 SlotIndex CopyIdx = LIS->getInstructionIndex(*CopyMI).getRegSlot(); 485 486 // We have a non-trivially-coalescable copy with IntA being the source and 487 // IntB being the dest, thus this defines a value number in IntB. If the 488 // source value number (in IntA) is defined by a copy from B, see if we can 489 // merge these two pieces of B into a single value number, eliminating a copy. 490 // For example: 491 // 492 // A3 = B0 493 // ... 494 // B1 = A3 <- this copy 495 // 496 // In this case, B0 can be extended to where the B1 copy lives, allowing the 497 // B1 value number to be replaced with B0 (which simplifies the B 498 // liveinterval). 499 500 // BValNo is a value number in B that is defined by a copy from A. 'B1' in 501 // the example above. 502 LiveInterval::iterator BS = IntB.FindSegmentContaining(CopyIdx); 503 if (BS == IntB.end()) return false; 504 VNInfo *BValNo = BS->valno; 505 506 // Get the location that B is defined at. Two options: either this value has 507 // an unknown definition point or it is defined at CopyIdx. If unknown, we 508 // can't process it. 509 if (BValNo->def != CopyIdx) return false; 510 511 // AValNo is the value number in A that defines the copy, A3 in the example. 512 SlotIndex CopyUseIdx = CopyIdx.getRegSlot(true); 513 LiveInterval::iterator AS = IntA.FindSegmentContaining(CopyUseIdx); 514 // The live segment might not exist after fun with physreg coalescing. 515 if (AS == IntA.end()) return false; 516 VNInfo *AValNo = AS->valno; 517 518 // If AValNo is defined as a copy from IntB, we can potentially process this. 519 // Get the instruction that defines this value number. 520 MachineInstr *ACopyMI = LIS->getInstructionFromIndex(AValNo->def); 521 // Don't allow any partial copies, even if isCoalescable() allows them. 522 if (!CP.isCoalescable(ACopyMI) || !ACopyMI->isFullCopy()) 523 return false; 524 525 // Get the Segment in IntB that this value number starts with. 526 LiveInterval::iterator ValS = 527 IntB.FindSegmentContaining(AValNo->def.getPrevSlot()); 528 if (ValS == IntB.end()) 529 return false; 530 531 // Make sure that the end of the live segment is inside the same block as 532 // CopyMI. 533 MachineInstr *ValSEndInst = 534 LIS->getInstructionFromIndex(ValS->end.getPrevSlot()); 535 if (!ValSEndInst || ValSEndInst->getParent() != CopyMI->getParent()) 536 return false; 537 538 // Okay, we now know that ValS ends in the same block that the CopyMI 539 // live-range starts. If there are no intervening live segments between them 540 // in IntB, we can merge them. 541 if (ValS+1 != BS) return false; 542 543 DEBUG(dbgs() << "Extending: " << PrintReg(IntB.reg, TRI)); 544 545 SlotIndex FillerStart = ValS->end, FillerEnd = BS->start; 546 // We are about to delete CopyMI, so need to remove it as the 'instruction 547 // that defines this value #'. Update the valnum with the new defining 548 // instruction #. 549 BValNo->def = FillerStart; 550 551 // Okay, we can merge them. We need to insert a new liverange: 552 // [ValS.end, BS.begin) of either value number, then we merge the 553 // two value numbers. 554 IntB.addSegment(LiveInterval::Segment(FillerStart, FillerEnd, BValNo)); 555 556 // Okay, merge "B1" into the same value number as "B0". 557 if (BValNo != ValS->valno) 558 IntB.MergeValueNumberInto(BValNo, ValS->valno); 559 560 // Do the same for the subregister segments. 561 for (LiveInterval::SubRange &S : IntB.subranges()) { 562 VNInfo *SubBValNo = S.getVNInfoAt(CopyIdx); 563 S.addSegment(LiveInterval::Segment(FillerStart, FillerEnd, SubBValNo)); 564 VNInfo *SubValSNo = S.getVNInfoAt(AValNo->def.getPrevSlot()); 565 if (SubBValNo != SubValSNo) 566 S.MergeValueNumberInto(SubBValNo, SubValSNo); 567 } 568 569 DEBUG(dbgs() << " result = " << IntB << '\n'); 570 571 // If the source instruction was killing the source register before the 572 // merge, unset the isKill marker given the live range has been extended. 573 int UIdx = ValSEndInst->findRegisterUseOperandIdx(IntB.reg, true); 574 if (UIdx != -1) { 575 ValSEndInst->getOperand(UIdx).setIsKill(false); 576 } 577 578 // Rewrite the copy. If the copy instruction was killing the destination 579 // register before the merge, find the last use and trim the live range. That 580 // will also add the isKill marker. 581 CopyMI->substituteRegister(IntA.reg, IntB.reg, 0, *TRI); 582 if (AS->end == CopyIdx) 583 shrinkToUses(&IntA); 584 585 ++numExtends; 586 return true; 587 } 588 589 bool RegisterCoalescer::hasOtherReachingDefs(LiveInterval &IntA, 590 LiveInterval &IntB, 591 VNInfo *AValNo, 592 VNInfo *BValNo) { 593 // If AValNo has PHI kills, conservatively assume that IntB defs can reach 594 // the PHI values. 595 if (LIS->hasPHIKill(IntA, AValNo)) 596 return true; 597 598 for (LiveRange::Segment &ASeg : IntA.segments) { 599 if (ASeg.valno != AValNo) continue; 600 LiveInterval::iterator BI = 601 std::upper_bound(IntB.begin(), IntB.end(), ASeg.start); 602 if (BI != IntB.begin()) 603 --BI; 604 for (; BI != IntB.end() && ASeg.end >= BI->start; ++BI) { 605 if (BI->valno == BValNo) 606 continue; 607 if (BI->start <= ASeg.start && BI->end > ASeg.start) 608 return true; 609 if (BI->start > ASeg.start && BI->start < ASeg.end) 610 return true; 611 } 612 } 613 return false; 614 } 615 616 /// Copy segements with value number @p SrcValNo from liverange @p Src to live 617 /// range @Dst and use value number @p DstValNo there. 618 static void addSegmentsWithValNo(LiveRange &Dst, VNInfo *DstValNo, 619 const LiveRange &Src, const VNInfo *SrcValNo) 620 { 621 for (const LiveRange::Segment &S : Src.segments) { 622 if (S.valno != SrcValNo) 623 continue; 624 Dst.addSegment(LiveRange::Segment(S.start, S.end, DstValNo)); 625 } 626 } 627 628 bool RegisterCoalescer::removeCopyByCommutingDef(const CoalescerPair &CP, 629 MachineInstr *CopyMI) { 630 assert(!CP.isPhys()); 631 632 LiveInterval &IntA = 633 LIS->getInterval(CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg()); 634 LiveInterval &IntB = 635 LIS->getInterval(CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg()); 636 637 // We found a non-trivially-coalescable copy with IntA being the source and 638 // IntB being the dest, thus this defines a value number in IntB. If the 639 // source value number (in IntA) is defined by a commutable instruction and 640 // its other operand is coalesced to the copy dest register, see if we can 641 // transform the copy into a noop by commuting the definition. For example, 642 // 643 // A3 = op A2 B0<kill> 644 // ... 645 // B1 = A3 <- this copy 646 // ... 647 // = op A3 <- more uses 648 // 649 // ==> 650 // 651 // B2 = op B0 A2<kill> 652 // ... 653 // B1 = B2 <- now an identity copy 654 // ... 655 // = op B2 <- more uses 656 657 // BValNo is a value number in B that is defined by a copy from A. 'B1' in 658 // the example above. 659 SlotIndex CopyIdx = LIS->getInstructionIndex(*CopyMI).getRegSlot(); 660 VNInfo *BValNo = IntB.getVNInfoAt(CopyIdx); 661 assert(BValNo != nullptr && BValNo->def == CopyIdx); 662 663 // AValNo is the value number in A that defines the copy, A3 in the example. 664 VNInfo *AValNo = IntA.getVNInfoAt(CopyIdx.getRegSlot(true)); 665 assert(AValNo && !AValNo->isUnused() && "COPY source not live"); 666 if (AValNo->isPHIDef()) 667 return false; 668 MachineInstr *DefMI = LIS->getInstructionFromIndex(AValNo->def); 669 if (!DefMI) 670 return false; 671 if (!DefMI->isCommutable()) 672 return false; 673 // If DefMI is a two-address instruction then commuting it will change the 674 // destination register. 675 int DefIdx = DefMI->findRegisterDefOperandIdx(IntA.reg); 676 assert(DefIdx != -1); 677 unsigned UseOpIdx; 678 if (!DefMI->isRegTiedToUseOperand(DefIdx, &UseOpIdx)) 679 return false; 680 681 // FIXME: The code below tries to commute 'UseOpIdx' operand with some other 682 // commutable operand which is expressed by 'CommuteAnyOperandIndex'value 683 // passed to the method. That _other_ operand is chosen by 684 // the findCommutedOpIndices() method. 685 // 686 // That is obviously an area for improvement in case of instructions having 687 // more than 2 operands. For example, if some instruction has 3 commutable 688 // operands then all possible variants (i.e. op#1<->op#2, op#1<->op#3, 689 // op#2<->op#3) of commute transformation should be considered/tried here. 690 unsigned NewDstIdx = TargetInstrInfo::CommuteAnyOperandIndex; 691 if (!TII->findCommutedOpIndices(*DefMI, UseOpIdx, NewDstIdx)) 692 return false; 693 694 MachineOperand &NewDstMO = DefMI->getOperand(NewDstIdx); 695 unsigned NewReg = NewDstMO.getReg(); 696 if (NewReg != IntB.reg || !IntB.Query(AValNo->def).isKill()) 697 return false; 698 699 // Make sure there are no other definitions of IntB that would reach the 700 // uses which the new definition can reach. 701 if (hasOtherReachingDefs(IntA, IntB, AValNo, BValNo)) 702 return false; 703 704 // If some of the uses of IntA.reg is already coalesced away, return false. 705 // It's not possible to determine whether it's safe to perform the coalescing. 706 for (MachineOperand &MO : MRI->use_nodbg_operands(IntA.reg)) { 707 MachineInstr *UseMI = MO.getParent(); 708 unsigned OpNo = &MO - &UseMI->getOperand(0); 709 SlotIndex UseIdx = LIS->getInstructionIndex(*UseMI); 710 LiveInterval::iterator US = IntA.FindSegmentContaining(UseIdx); 711 if (US == IntA.end() || US->valno != AValNo) 712 continue; 713 // If this use is tied to a def, we can't rewrite the register. 714 if (UseMI->isRegTiedToDefOperand(OpNo)) 715 return false; 716 } 717 718 DEBUG(dbgs() << "\tremoveCopyByCommutingDef: " << AValNo->def << '\t' 719 << *DefMI); 720 721 // At this point we have decided that it is legal to do this 722 // transformation. Start by commuting the instruction. 723 MachineBasicBlock *MBB = DefMI->getParent(); 724 MachineInstr *NewMI = 725 TII->commuteInstruction(*DefMI, false, UseOpIdx, NewDstIdx); 726 if (!NewMI) 727 return false; 728 if (TargetRegisterInfo::isVirtualRegister(IntA.reg) && 729 TargetRegisterInfo::isVirtualRegister(IntB.reg) && 730 !MRI->constrainRegClass(IntB.reg, MRI->getRegClass(IntA.reg))) 731 return false; 732 if (NewMI != DefMI) { 733 LIS->ReplaceMachineInstrInMaps(*DefMI, *NewMI); 734 MachineBasicBlock::iterator Pos = DefMI; 735 MBB->insert(Pos, NewMI); 736 MBB->erase(DefMI); 737 } 738 739 // If ALR and BLR overlaps and end of BLR extends beyond end of ALR, e.g. 740 // A = or A, B 741 // ... 742 // B = A 743 // ... 744 // C = A<kill> 745 // ... 746 // = B 747 748 // Update uses of IntA of the specific Val# with IntB. 749 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(IntA.reg), 750 UE = MRI->use_end(); 751 UI != UE; /* ++UI is below because of possible MI removal */) { 752 MachineOperand &UseMO = *UI; 753 ++UI; 754 if (UseMO.isUndef()) 755 continue; 756 MachineInstr *UseMI = UseMO.getParent(); 757 if (UseMI->isDebugValue()) { 758 // FIXME These don't have an instruction index. Not clear we have enough 759 // info to decide whether to do this replacement or not. For now do it. 760 UseMO.setReg(NewReg); 761 continue; 762 } 763 SlotIndex UseIdx = LIS->getInstructionIndex(*UseMI).getRegSlot(true); 764 LiveInterval::iterator US = IntA.FindSegmentContaining(UseIdx); 765 assert(US != IntA.end() && "Use must be live"); 766 if (US->valno != AValNo) 767 continue; 768 // Kill flags are no longer accurate. They are recomputed after RA. 769 UseMO.setIsKill(false); 770 if (TargetRegisterInfo::isPhysicalRegister(NewReg)) 771 UseMO.substPhysReg(NewReg, *TRI); 772 else 773 UseMO.setReg(NewReg); 774 if (UseMI == CopyMI) 775 continue; 776 if (!UseMI->isCopy()) 777 continue; 778 if (UseMI->getOperand(0).getReg() != IntB.reg || 779 UseMI->getOperand(0).getSubReg()) 780 continue; 781 782 // This copy will become a noop. If it's defining a new val#, merge it into 783 // BValNo. 784 SlotIndex DefIdx = UseIdx.getRegSlot(); 785 VNInfo *DVNI = IntB.getVNInfoAt(DefIdx); 786 if (!DVNI) 787 continue; 788 DEBUG(dbgs() << "\t\tnoop: " << DefIdx << '\t' << *UseMI); 789 assert(DVNI->def == DefIdx); 790 BValNo = IntB.MergeValueNumberInto(DVNI, BValNo); 791 for (LiveInterval::SubRange &S : IntB.subranges()) { 792 VNInfo *SubDVNI = S.getVNInfoAt(DefIdx); 793 if (!SubDVNI) 794 continue; 795 VNInfo *SubBValNo = S.getVNInfoAt(CopyIdx); 796 assert(SubBValNo->def == CopyIdx); 797 S.MergeValueNumberInto(SubDVNI, SubBValNo); 798 } 799 800 ErasedInstrs.insert(UseMI); 801 LIS->RemoveMachineInstrFromMaps(*UseMI); 802 UseMI->eraseFromParent(); 803 } 804 805 // Extend BValNo by merging in IntA live segments of AValNo. Val# definition 806 // is updated. 807 BumpPtrAllocator &Allocator = LIS->getVNInfoAllocator(); 808 if (IntB.hasSubRanges()) { 809 if (!IntA.hasSubRanges()) { 810 LaneBitmask Mask = MRI->getMaxLaneMaskForVReg(IntA.reg); 811 IntA.createSubRangeFrom(Allocator, Mask, IntA); 812 } 813 SlotIndex AIdx = CopyIdx.getRegSlot(true); 814 for (LiveInterval::SubRange &SA : IntA.subranges()) { 815 VNInfo *ASubValNo = SA.getVNInfoAt(AIdx); 816 assert(ASubValNo != nullptr); 817 818 IntB.refineSubRanges(Allocator, SA.LaneMask, 819 [&Allocator,&SA,CopyIdx,ASubValNo](LiveInterval::SubRange &SR) { 820 VNInfo *BSubValNo = SR.empty() 821 ? SR.getNextValue(CopyIdx, Allocator) 822 : SR.getVNInfoAt(CopyIdx); 823 assert(BSubValNo != nullptr); 824 addSegmentsWithValNo(SR, BSubValNo, SA, ASubValNo); 825 }); 826 } 827 } 828 829 BValNo->def = AValNo->def; 830 addSegmentsWithValNo(IntB, BValNo, IntA, AValNo); 831 DEBUG(dbgs() << "\t\textended: " << IntB << '\n'); 832 833 LIS->removeVRegDefAt(IntA, AValNo->def); 834 835 DEBUG(dbgs() << "\t\ttrimmed: " << IntA << '\n'); 836 ++numCommutes; 837 return true; 838 } 839 840 /// For copy B = A in BB2, if A is defined by A = B in BB0 which is a 841 /// predecessor of BB2, and if B is not redefined on the way from A = B 842 /// in BB2 to B = A in BB2, B = A in BB2 is partially redundant if the 843 /// execution goes through the path from BB0 to BB2. We may move B = A 844 /// to the predecessor without such reversed copy. 845 /// So we will transform the program from: 846 /// BB0: 847 /// A = B; BB1: 848 /// ... ... 849 /// / \ / 850 /// BB2: 851 /// ... 852 /// B = A; 853 /// 854 /// to: 855 /// 856 /// BB0: BB1: 857 /// A = B; ... 858 /// ... B = A; 859 /// / \ / 860 /// BB2: 861 /// ... 862 /// 863 /// A special case is when BB0 and BB2 are the same BB which is the only 864 /// BB in a loop: 865 /// BB1: 866 /// ... 867 /// BB0/BB2: ---- 868 /// B = A; | 869 /// ... | 870 /// A = B; | 871 /// |------- 872 /// | 873 /// We may hoist B = A from BB0/BB2 to BB1. 874 /// 875 /// The major preconditions for correctness to remove such partial 876 /// redundancy include: 877 /// 1. A in B = A in BB2 is defined by a PHI in BB2, and one operand of 878 /// the PHI is defined by the reversed copy A = B in BB0. 879 /// 2. No B is referenced from the start of BB2 to B = A. 880 /// 3. No B is defined from A = B to the end of BB0. 881 /// 4. BB1 has only one successor. 882 /// 883 /// 2 and 4 implicitly ensure B is not live at the end of BB1. 884 /// 4 guarantees BB2 is hotter than BB1, so we can only move a copy to a 885 /// colder place, which not only prevent endless loop, but also make sure 886 /// the movement of copy is beneficial. 887 bool RegisterCoalescer::removePartialRedundancy(const CoalescerPair &CP, 888 MachineInstr &CopyMI) { 889 assert(!CP.isPhys()); 890 if (!CopyMI.isFullCopy()) 891 return false; 892 893 MachineBasicBlock &MBB = *CopyMI.getParent(); 894 if (MBB.isEHPad()) 895 return false; 896 897 if (MBB.pred_size() != 2) 898 return false; 899 900 LiveInterval &IntA = 901 LIS->getInterval(CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg()); 902 LiveInterval &IntB = 903 LIS->getInterval(CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg()); 904 905 // A is defined by PHI at the entry of MBB. 906 SlotIndex CopyIdx = LIS->getInstructionIndex(CopyMI).getRegSlot(true); 907 VNInfo *AValNo = IntA.getVNInfoAt(CopyIdx); 908 assert(AValNo && !AValNo->isUnused() && "COPY source not live"); 909 if (!AValNo->isPHIDef()) 910 return false; 911 912 // No B is referenced before CopyMI in MBB. 913 if (IntB.overlaps(LIS->getMBBStartIdx(&MBB), CopyIdx)) 914 return false; 915 916 // MBB has two predecessors: one contains A = B so no copy will be inserted 917 // for it. The other one will have a copy moved from MBB. 918 bool FoundReverseCopy = false; 919 MachineBasicBlock *CopyLeftBB = nullptr; 920 for (MachineBasicBlock *Pred : MBB.predecessors()) { 921 VNInfo *PVal = IntA.getVNInfoBefore(LIS->getMBBEndIdx(Pred)); 922 MachineInstr *DefMI = LIS->getInstructionFromIndex(PVal->def); 923 if (!DefMI || !DefMI->isFullCopy()) { 924 CopyLeftBB = Pred; 925 continue; 926 } 927 // Check DefMI is a reverse copy and it is in BB Pred. 928 if (DefMI->getOperand(0).getReg() != IntA.reg || 929 DefMI->getOperand(1).getReg() != IntB.reg || 930 DefMI->getParent() != Pred) { 931 CopyLeftBB = Pred; 932 continue; 933 } 934 // If there is any other def of B after DefMI and before the end of Pred, 935 // we need to keep the copy of B = A at the end of Pred if we remove 936 // B = A from MBB. 937 bool ValB_Changed = false; 938 for (auto VNI : IntB.valnos) { 939 if (VNI->isUnused()) 940 continue; 941 if (PVal->def < VNI->def && VNI->def < LIS->getMBBEndIdx(Pred)) { 942 ValB_Changed = true; 943 break; 944 } 945 } 946 if (ValB_Changed) { 947 CopyLeftBB = Pred; 948 continue; 949 } 950 FoundReverseCopy = true; 951 } 952 953 // If no reverse copy is found in predecessors, nothing to do. 954 if (!FoundReverseCopy) 955 return false; 956 957 // If CopyLeftBB is nullptr, it means every predecessor of MBB contains 958 // reverse copy, CopyMI can be removed trivially if only IntA/IntB is updated. 959 // If CopyLeftBB is not nullptr, move CopyMI from MBB to CopyLeftBB and 960 // update IntA/IntB. 961 // 962 // If CopyLeftBB is not nullptr, ensure CopyLeftBB has a single succ so 963 // MBB is hotter than CopyLeftBB. 964 if (CopyLeftBB && CopyLeftBB->succ_size() > 1) 965 return false; 966 967 // Now ok to move copy. 968 if (CopyLeftBB) { 969 DEBUG(dbgs() << "\tremovePartialRedundancy: Move the copy to BB#" 970 << CopyLeftBB->getNumber() << '\t' << CopyMI); 971 972 // Insert new copy to CopyLeftBB. 973 auto InsPos = CopyLeftBB->getFirstTerminator(); 974 MachineInstr *NewCopyMI = BuildMI(*CopyLeftBB, InsPos, CopyMI.getDebugLoc(), 975 TII->get(TargetOpcode::COPY), IntB.reg) 976 .addReg(IntA.reg); 977 SlotIndex NewCopyIdx = 978 LIS->InsertMachineInstrInMaps(*NewCopyMI).getRegSlot(); 979 IntB.createDeadDef(NewCopyIdx, LIS->getVNInfoAllocator()); 980 for (LiveInterval::SubRange &SR : IntB.subranges()) 981 SR.createDeadDef(NewCopyIdx, LIS->getVNInfoAllocator()); 982 983 // If the newly created Instruction has an address of an instruction that was 984 // deleted before (object recycled by the allocator) it needs to be removed from 985 // the deleted list. 986 ErasedInstrs.erase(NewCopyMI); 987 } else { 988 DEBUG(dbgs() << "\tremovePartialRedundancy: Remove the copy from BB#" 989 << MBB.getNumber() << '\t' << CopyMI); 990 } 991 992 // Remove CopyMI. 993 // Note: This is fine to remove the copy before updating the live-ranges. 994 // While updating the live-ranges, we only look at slot indices and 995 // never go back to the instruction. 996 LIS->RemoveMachineInstrFromMaps(CopyMI); 997 // Mark instructions as deleted. 998 ErasedInstrs.insert(&CopyMI); 999 CopyMI.eraseFromParent(); 1000 1001 // Update the liveness. 1002 SmallVector<SlotIndex, 8> EndPoints; 1003 VNInfo *BValNo = IntB.Query(CopyIdx).valueOutOrDead(); 1004 LIS->pruneValue(*static_cast<LiveRange *>(&IntB), CopyIdx.getRegSlot(), 1005 &EndPoints); 1006 BValNo->markUnused(); 1007 // Extend IntB to the EndPoints of its original live interval. 1008 LIS->extendToIndices(IntB, EndPoints); 1009 1010 // Now, do the same for its subranges. 1011 for (LiveInterval::SubRange &SR : IntB.subranges()) { 1012 EndPoints.clear(); 1013 VNInfo *BValNo = SR.Query(CopyIdx).valueOutOrDead(); 1014 assert(BValNo && "All sublanes should be live"); 1015 LIS->pruneValue(SR, CopyIdx.getRegSlot(), &EndPoints); 1016 BValNo->markUnused(); 1017 LIS->extendToIndices(SR, EndPoints); 1018 } 1019 1020 // Finally, update the live-range of IntA. 1021 shrinkToUses(&IntA); 1022 return true; 1023 } 1024 1025 /// Returns true if @p MI defines the full vreg @p Reg, as opposed to just 1026 /// defining a subregister. 1027 static bool definesFullReg(const MachineInstr &MI, unsigned Reg) { 1028 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && 1029 "This code cannot handle physreg aliasing"); 1030 for (const MachineOperand &Op : MI.operands()) { 1031 if (!Op.isReg() || !Op.isDef() || Op.getReg() != Reg) 1032 continue; 1033 // Return true if we define the full register or don't care about the value 1034 // inside other subregisters. 1035 if (Op.getSubReg() == 0 || Op.isUndef()) 1036 return true; 1037 } 1038 return false; 1039 } 1040 1041 bool RegisterCoalescer::reMaterializeTrivialDef(const CoalescerPair &CP, 1042 MachineInstr *CopyMI, 1043 bool &IsDefCopy) { 1044 IsDefCopy = false; 1045 unsigned SrcReg = CP.isFlipped() ? CP.getDstReg() : CP.getSrcReg(); 1046 unsigned SrcIdx = CP.isFlipped() ? CP.getDstIdx() : CP.getSrcIdx(); 1047 unsigned DstReg = CP.isFlipped() ? CP.getSrcReg() : CP.getDstReg(); 1048 unsigned DstIdx = CP.isFlipped() ? CP.getSrcIdx() : CP.getDstIdx(); 1049 if (TargetRegisterInfo::isPhysicalRegister(SrcReg)) 1050 return false; 1051 1052 LiveInterval &SrcInt = LIS->getInterval(SrcReg); 1053 SlotIndex CopyIdx = LIS->getInstructionIndex(*CopyMI); 1054 VNInfo *ValNo = SrcInt.Query(CopyIdx).valueIn(); 1055 assert(ValNo && "CopyMI input register not live"); 1056 if (ValNo->isPHIDef() || ValNo->isUnused()) 1057 return false; 1058 MachineInstr *DefMI = LIS->getInstructionFromIndex(ValNo->def); 1059 if (!DefMI) 1060 return false; 1061 if (DefMI->isCopyLike()) { 1062 IsDefCopy = true; 1063 return false; 1064 } 1065 if (!TII->isAsCheapAsAMove(*DefMI)) 1066 return false; 1067 if (!TII->isTriviallyReMaterializable(*DefMI, AA)) 1068 return false; 1069 if (!definesFullReg(*DefMI, SrcReg)) 1070 return false; 1071 bool SawStore = false; 1072 if (!DefMI->isSafeToMove(AA, SawStore)) 1073 return false; 1074 const MCInstrDesc &MCID = DefMI->getDesc(); 1075 if (MCID.getNumDefs() != 1) 1076 return false; 1077 // Only support subregister destinations when the def is read-undef. 1078 MachineOperand &DstOperand = CopyMI->getOperand(0); 1079 unsigned CopyDstReg = DstOperand.getReg(); 1080 if (DstOperand.getSubReg() && !DstOperand.isUndef()) 1081 return false; 1082 1083 // If both SrcIdx and DstIdx are set, correct rematerialization would widen 1084 // the register substantially (beyond both source and dest size). This is bad 1085 // for performance since it can cascade through a function, introducing many 1086 // extra spills and fills (e.g. ARM can easily end up copying QQQQPR registers 1087 // around after a few subreg copies). 1088 if (SrcIdx && DstIdx) 1089 return false; 1090 1091 const TargetRegisterClass *DefRC = TII->getRegClass(MCID, 0, TRI, *MF); 1092 if (!DefMI->isImplicitDef()) { 1093 if (TargetRegisterInfo::isPhysicalRegister(DstReg)) { 1094 unsigned NewDstReg = DstReg; 1095 1096 unsigned NewDstIdx = TRI->composeSubRegIndices(CP.getSrcIdx(), 1097 DefMI->getOperand(0).getSubReg()); 1098 if (NewDstIdx) 1099 NewDstReg = TRI->getSubReg(DstReg, NewDstIdx); 1100 1101 // Finally, make sure that the physical subregister that will be 1102 // constructed later is permitted for the instruction. 1103 if (!DefRC->contains(NewDstReg)) 1104 return false; 1105 } else { 1106 // Theoretically, some stack frame reference could exist. Just make sure 1107 // it hasn't actually happened. 1108 assert(TargetRegisterInfo::isVirtualRegister(DstReg) && 1109 "Only expect to deal with virtual or physical registers"); 1110 } 1111 } 1112 1113 DebugLoc DL = CopyMI->getDebugLoc(); 1114 MachineBasicBlock *MBB = CopyMI->getParent(); 1115 MachineBasicBlock::iterator MII = 1116 std::next(MachineBasicBlock::iterator(CopyMI)); 1117 TII->reMaterialize(*MBB, MII, DstReg, SrcIdx, *DefMI, *TRI); 1118 MachineInstr &NewMI = *std::prev(MII); 1119 NewMI.setDebugLoc(DL); 1120 1121 // In a situation like the following: 1122 // %vreg0:subreg = instr ; DefMI, subreg = DstIdx 1123 // %vreg1 = copy %vreg0:subreg ; CopyMI, SrcIdx = 0 1124 // instead of widening %vreg1 to the register class of %vreg0 simply do: 1125 // %vreg1 = instr 1126 const TargetRegisterClass *NewRC = CP.getNewRC(); 1127 if (DstIdx != 0) { 1128 MachineOperand &DefMO = NewMI.getOperand(0); 1129 if (DefMO.getSubReg() == DstIdx) { 1130 assert(SrcIdx == 0 && CP.isFlipped() 1131 && "Shouldn't have SrcIdx+DstIdx at this point"); 1132 const TargetRegisterClass *DstRC = MRI->getRegClass(DstReg); 1133 const TargetRegisterClass *CommonRC = 1134 TRI->getCommonSubClass(DefRC, DstRC); 1135 if (CommonRC != nullptr) { 1136 NewRC = CommonRC; 1137 DstIdx = 0; 1138 DefMO.setSubReg(0); 1139 DefMO.setIsUndef(false); // Only subregs can have def+undef. 1140 } 1141 } 1142 } 1143 1144 // CopyMI may have implicit operands, save them so that we can transfer them 1145 // over to the newly materialized instruction after CopyMI is removed. 1146 SmallVector<MachineOperand, 4> ImplicitOps; 1147 ImplicitOps.reserve(CopyMI->getNumOperands() - 1148 CopyMI->getDesc().getNumOperands()); 1149 for (unsigned I = CopyMI->getDesc().getNumOperands(), 1150 E = CopyMI->getNumOperands(); 1151 I != E; ++I) { 1152 MachineOperand &MO = CopyMI->getOperand(I); 1153 if (MO.isReg()) { 1154 assert(MO.isImplicit() && "No explicit operands after implict operands."); 1155 // Discard VReg implicit defs. 1156 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg())) 1157 ImplicitOps.push_back(MO); 1158 } 1159 } 1160 1161 LIS->ReplaceMachineInstrInMaps(*CopyMI, NewMI); 1162 CopyMI->eraseFromParent(); 1163 ErasedInstrs.insert(CopyMI); 1164 1165 // NewMI may have dead implicit defs (E.g. EFLAGS for MOV<bits>r0 on X86). 1166 // We need to remember these so we can add intervals once we insert 1167 // NewMI into SlotIndexes. 1168 SmallVector<unsigned, 4> NewMIImplDefs; 1169 for (unsigned i = NewMI.getDesc().getNumOperands(), 1170 e = NewMI.getNumOperands(); 1171 i != e; ++i) { 1172 MachineOperand &MO = NewMI.getOperand(i); 1173 if (MO.isReg() && MO.isDef()) { 1174 assert(MO.isImplicit() && MO.isDead() && 1175 TargetRegisterInfo::isPhysicalRegister(MO.getReg())); 1176 NewMIImplDefs.push_back(MO.getReg()); 1177 } 1178 } 1179 1180 if (TargetRegisterInfo::isVirtualRegister(DstReg)) { 1181 unsigned NewIdx = NewMI.getOperand(0).getSubReg(); 1182 1183 if (DefRC != nullptr) { 1184 if (NewIdx) 1185 NewRC = TRI->getMatchingSuperRegClass(NewRC, DefRC, NewIdx); 1186 else 1187 NewRC = TRI->getCommonSubClass(NewRC, DefRC); 1188 assert(NewRC && "subreg chosen for remat incompatible with instruction"); 1189 } 1190 // Remap subranges to new lanemask and change register class. 1191 LiveInterval &DstInt = LIS->getInterval(DstReg); 1192 for (LiveInterval::SubRange &SR : DstInt.subranges()) { 1193 SR.LaneMask = TRI->composeSubRegIndexLaneMask(DstIdx, SR.LaneMask); 1194 } 1195 MRI->setRegClass(DstReg, NewRC); 1196 1197 // Update machine operands and add flags. 1198 updateRegDefsUses(DstReg, DstReg, DstIdx); 1199 NewMI.getOperand(0).setSubReg(NewIdx); 1200 // Add dead subregister definitions if we are defining the whole register 1201 // but only part of it is live. 1202 // This could happen if the rematerialization instruction is rematerializing 1203 // more than actually is used in the register. 1204 // An example would be: 1205 // vreg1 = LOAD CONSTANTS 5, 8 ; Loading both 5 and 8 in different subregs 1206 // ; Copying only part of the register here, but the rest is undef. 1207 // vreg2:sub_16bit<def, read-undef> = COPY vreg1:sub_16bit 1208 // ==> 1209 // ; Materialize all the constants but only using one 1210 // vreg2 = LOAD_CONSTANTS 5, 8 1211 // 1212 // at this point for the part that wasn't defined before we could have 1213 // subranges missing the definition. 1214 if (NewIdx == 0 && DstInt.hasSubRanges()) { 1215 SlotIndex CurrIdx = LIS->getInstructionIndex(NewMI); 1216 SlotIndex DefIndex = 1217 CurrIdx.getRegSlot(NewMI.getOperand(0).isEarlyClobber()); 1218 LaneBitmask MaxMask = MRI->getMaxLaneMaskForVReg(DstReg); 1219 VNInfo::Allocator& Alloc = LIS->getVNInfoAllocator(); 1220 for (LiveInterval::SubRange &SR : DstInt.subranges()) { 1221 if (!SR.liveAt(DefIndex)) 1222 SR.createDeadDef(DefIndex, Alloc); 1223 MaxMask &= ~SR.LaneMask; 1224 } 1225 if (MaxMask.any()) { 1226 LiveInterval::SubRange *SR = DstInt.createSubRange(Alloc, MaxMask); 1227 SR->createDeadDef(DefIndex, Alloc); 1228 } 1229 } 1230 } else if (NewMI.getOperand(0).getReg() != CopyDstReg) { 1231 // The New instruction may be defining a sub-register of what's actually 1232 // been asked for. If so it must implicitly define the whole thing. 1233 assert(TargetRegisterInfo::isPhysicalRegister(DstReg) && 1234 "Only expect virtual or physical registers in remat"); 1235 NewMI.getOperand(0).setIsDead(true); 1236 NewMI.addOperand(MachineOperand::CreateReg( 1237 CopyDstReg, true /*IsDef*/, true /*IsImp*/, false /*IsKill*/)); 1238 // Record small dead def live-ranges for all the subregisters 1239 // of the destination register. 1240 // Otherwise, variables that live through may miss some 1241 // interferences, thus creating invalid allocation. 1242 // E.g., i386 code: 1243 // vreg1 = somedef ; vreg1 GR8 1244 // vreg2 = remat ; vreg2 GR32 1245 // CL = COPY vreg2.sub_8bit 1246 // = somedef vreg1 ; vreg1 GR8 1247 // => 1248 // vreg1 = somedef ; vreg1 GR8 1249 // ECX<def, dead> = remat ; CL<imp-def> 1250 // = somedef vreg1 ; vreg1 GR8 1251 // vreg1 will see the inteferences with CL but not with CH since 1252 // no live-ranges would have been created for ECX. 1253 // Fix that! 1254 SlotIndex NewMIIdx = LIS->getInstructionIndex(NewMI); 1255 for (MCRegUnitIterator Units(NewMI.getOperand(0).getReg(), TRI); 1256 Units.isValid(); ++Units) 1257 if (LiveRange *LR = LIS->getCachedRegUnit(*Units)) 1258 LR->createDeadDef(NewMIIdx.getRegSlot(), LIS->getVNInfoAllocator()); 1259 } 1260 1261 if (NewMI.getOperand(0).getSubReg()) 1262 NewMI.getOperand(0).setIsUndef(); 1263 1264 // Transfer over implicit operands to the rematerialized instruction. 1265 for (MachineOperand &MO : ImplicitOps) 1266 NewMI.addOperand(MO); 1267 1268 SlotIndex NewMIIdx = LIS->getInstructionIndex(NewMI); 1269 for (unsigned i = 0, e = NewMIImplDefs.size(); i != e; ++i) { 1270 unsigned Reg = NewMIImplDefs[i]; 1271 for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) 1272 if (LiveRange *LR = LIS->getCachedRegUnit(*Units)) 1273 LR->createDeadDef(NewMIIdx.getRegSlot(), LIS->getVNInfoAllocator()); 1274 } 1275 1276 DEBUG(dbgs() << "Remat: " << NewMI); 1277 ++NumReMats; 1278 1279 // The source interval can become smaller because we removed a use. 1280 shrinkToUses(&SrcInt, &DeadDefs); 1281 if (!DeadDefs.empty()) { 1282 // If the virtual SrcReg is completely eliminated, update all DBG_VALUEs 1283 // to describe DstReg instead. 1284 for (MachineOperand &UseMO : MRI->use_operands(SrcReg)) { 1285 MachineInstr *UseMI = UseMO.getParent(); 1286 if (UseMI->isDebugValue()) { 1287 UseMO.setReg(DstReg); 1288 DEBUG(dbgs() << "\t\tupdated: " << *UseMI); 1289 } 1290 } 1291 eliminateDeadDefs(); 1292 } 1293 1294 return true; 1295 } 1296 1297 bool RegisterCoalescer::eliminateUndefCopy(MachineInstr *CopyMI) { 1298 // ProcessImpicitDefs may leave some copies of <undef> values, it only removes 1299 // local variables. When we have a copy like: 1300 // 1301 // %vreg1 = COPY %vreg2<undef> 1302 // 1303 // We delete the copy and remove the corresponding value number from %vreg1. 1304 // Any uses of that value number are marked as <undef>. 1305 1306 // Note that we do not query CoalescerPair here but redo isMoveInstr as the 1307 // CoalescerPair may have a new register class with adjusted subreg indices 1308 // at this point. 1309 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx; 1310 isMoveInstr(*TRI, CopyMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx); 1311 1312 SlotIndex Idx = LIS->getInstructionIndex(*CopyMI); 1313 const LiveInterval &SrcLI = LIS->getInterval(SrcReg); 1314 // CopyMI is undef iff SrcReg is not live before the instruction. 1315 if (SrcSubIdx != 0 && SrcLI.hasSubRanges()) { 1316 LaneBitmask SrcMask = TRI->getSubRegIndexLaneMask(SrcSubIdx); 1317 for (const LiveInterval::SubRange &SR : SrcLI.subranges()) { 1318 if ((SR.LaneMask & SrcMask).none()) 1319 continue; 1320 if (SR.liveAt(Idx)) 1321 return false; 1322 } 1323 } else if (SrcLI.liveAt(Idx)) 1324 return false; 1325 1326 DEBUG(dbgs() << "\tEliminating copy of <undef> value\n"); 1327 1328 // Remove any DstReg segments starting at the instruction. 1329 LiveInterval &DstLI = LIS->getInterval(DstReg); 1330 SlotIndex RegIndex = Idx.getRegSlot(); 1331 // Remove value or merge with previous one in case of a subregister def. 1332 if (VNInfo *PrevVNI = DstLI.getVNInfoAt(Idx)) { 1333 VNInfo *VNI = DstLI.getVNInfoAt(RegIndex); 1334 DstLI.MergeValueNumberInto(VNI, PrevVNI); 1335 1336 // The affected subregister segments can be removed. 1337 LaneBitmask DstMask = TRI->getSubRegIndexLaneMask(DstSubIdx); 1338 for (LiveInterval::SubRange &SR : DstLI.subranges()) { 1339 if ((SR.LaneMask & DstMask).none()) 1340 continue; 1341 1342 VNInfo *SVNI = SR.getVNInfoAt(RegIndex); 1343 assert(SVNI != nullptr && SlotIndex::isSameInstr(SVNI->def, RegIndex)); 1344 SR.removeValNo(SVNI); 1345 } 1346 DstLI.removeEmptySubRanges(); 1347 } else 1348 LIS->removeVRegDefAt(DstLI, RegIndex); 1349 1350 // Mark uses as undef. 1351 for (MachineOperand &MO : MRI->reg_nodbg_operands(DstReg)) { 1352 if (MO.isDef() /*|| MO.isUndef()*/) 1353 continue; 1354 const MachineInstr &MI = *MO.getParent(); 1355 SlotIndex UseIdx = LIS->getInstructionIndex(MI); 1356 LaneBitmask UseMask = TRI->getSubRegIndexLaneMask(MO.getSubReg()); 1357 bool isLive; 1358 if (!UseMask.all() && DstLI.hasSubRanges()) { 1359 isLive = false; 1360 for (const LiveInterval::SubRange &SR : DstLI.subranges()) { 1361 if ((SR.LaneMask & UseMask).none()) 1362 continue; 1363 if (SR.liveAt(UseIdx)) { 1364 isLive = true; 1365 break; 1366 } 1367 } 1368 } else 1369 isLive = DstLI.liveAt(UseIdx); 1370 if (isLive) 1371 continue; 1372 MO.setIsUndef(true); 1373 DEBUG(dbgs() << "\tnew undef: " << UseIdx << '\t' << MI); 1374 } 1375 1376 // A def of a subregister may be a use of the other subregisters, so 1377 // deleting a def of a subregister may also remove uses. Since CopyMI 1378 // is still part of the function (but about to be erased), mark all 1379 // defs of DstReg in it as <undef>, so that shrinkToUses would 1380 // ignore them. 1381 for (MachineOperand &MO : CopyMI->operands()) 1382 if (MO.isReg() && MO.isDef() && MO.getReg() == DstReg) 1383 MO.setIsUndef(true); 1384 LIS->shrinkToUses(&DstLI); 1385 1386 return true; 1387 } 1388 1389 void RegisterCoalescer::addUndefFlag(const LiveInterval &Int, SlotIndex UseIdx, 1390 MachineOperand &MO, unsigned SubRegIdx) { 1391 LaneBitmask Mask = TRI->getSubRegIndexLaneMask(SubRegIdx); 1392 if (MO.isDef()) 1393 Mask = ~Mask; 1394 bool IsUndef = true; 1395 for (const LiveInterval::SubRange &S : Int.subranges()) { 1396 if ((S.LaneMask & Mask).none()) 1397 continue; 1398 if (S.liveAt(UseIdx)) { 1399 IsUndef = false; 1400 break; 1401 } 1402 } 1403 if (IsUndef) { 1404 MO.setIsUndef(true); 1405 // We found out some subregister use is actually reading an undefined 1406 // value. In some cases the whole vreg has become undefined at this 1407 // point so we have to potentially shrink the main range if the 1408 // use was ending a live segment there. 1409 LiveQueryResult Q = Int.Query(UseIdx); 1410 if (Q.valueOut() == nullptr) 1411 ShrinkMainRange = true; 1412 } 1413 } 1414 1415 void RegisterCoalescer::updateRegDefsUses(unsigned SrcReg, 1416 unsigned DstReg, 1417 unsigned SubIdx) { 1418 bool DstIsPhys = TargetRegisterInfo::isPhysicalRegister(DstReg); 1419 LiveInterval *DstInt = DstIsPhys ? nullptr : &LIS->getInterval(DstReg); 1420 1421 if (DstInt && DstInt->hasSubRanges() && DstReg != SrcReg) { 1422 for (MachineOperand &MO : MRI->reg_operands(DstReg)) { 1423 unsigned SubReg = MO.getSubReg(); 1424 if (SubReg == 0 || MO.isUndef()) 1425 continue; 1426 MachineInstr &MI = *MO.getParent(); 1427 if (MI.isDebugValue()) 1428 continue; 1429 SlotIndex UseIdx = LIS->getInstructionIndex(MI).getRegSlot(true); 1430 addUndefFlag(*DstInt, UseIdx, MO, SubReg); 1431 } 1432 } 1433 1434 SmallPtrSet<MachineInstr*, 8> Visited; 1435 for (MachineRegisterInfo::reg_instr_iterator 1436 I = MRI->reg_instr_begin(SrcReg), E = MRI->reg_instr_end(); 1437 I != E; ) { 1438 MachineInstr *UseMI = &*(I++); 1439 1440 // Each instruction can only be rewritten once because sub-register 1441 // composition is not always idempotent. When SrcReg != DstReg, rewriting 1442 // the UseMI operands removes them from the SrcReg use-def chain, but when 1443 // SrcReg is DstReg we could encounter UseMI twice if it has multiple 1444 // operands mentioning the virtual register. 1445 if (SrcReg == DstReg && !Visited.insert(UseMI).second) 1446 continue; 1447 1448 SmallVector<unsigned,8> Ops; 1449 bool Reads, Writes; 1450 std::tie(Reads, Writes) = UseMI->readsWritesVirtualRegister(SrcReg, &Ops); 1451 1452 // If SrcReg wasn't read, it may still be the case that DstReg is live-in 1453 // because SrcReg is a sub-register. 1454 if (DstInt && !Reads && SubIdx && !UseMI->isDebugValue()) 1455 Reads = DstInt->liveAt(LIS->getInstructionIndex(*UseMI)); 1456 1457 // Replace SrcReg with DstReg in all UseMI operands. 1458 for (unsigned i = 0, e = Ops.size(); i != e; ++i) { 1459 MachineOperand &MO = UseMI->getOperand(Ops[i]); 1460 1461 // Adjust <undef> flags in case of sub-register joins. We don't want to 1462 // turn a full def into a read-modify-write sub-register def and vice 1463 // versa. 1464 if (SubIdx && MO.isDef()) 1465 MO.setIsUndef(!Reads); 1466 1467 // A subreg use of a partially undef (super) register may be a complete 1468 // undef use now and then has to be marked that way. 1469 if (SubIdx != 0 && MO.isUse() && MRI->shouldTrackSubRegLiveness(DstReg)) { 1470 if (!DstInt->hasSubRanges()) { 1471 BumpPtrAllocator &Allocator = LIS->getVNInfoAllocator(); 1472 LaneBitmask Mask = MRI->getMaxLaneMaskForVReg(DstInt->reg); 1473 DstInt->createSubRangeFrom(Allocator, Mask, *DstInt); 1474 } 1475 SlotIndex MIIdx = UseMI->isDebugValue() 1476 ? LIS->getSlotIndexes()->getIndexBefore(*UseMI) 1477 : LIS->getInstructionIndex(*UseMI); 1478 SlotIndex UseIdx = MIIdx.getRegSlot(true); 1479 addUndefFlag(*DstInt, UseIdx, MO, SubIdx); 1480 } 1481 1482 if (DstIsPhys) 1483 MO.substPhysReg(DstReg, *TRI); 1484 else 1485 MO.substVirtReg(DstReg, SubIdx, *TRI); 1486 } 1487 1488 DEBUG({ 1489 dbgs() << "\t\tupdated: "; 1490 if (!UseMI->isDebugValue()) 1491 dbgs() << LIS->getInstructionIndex(*UseMI) << "\t"; 1492 dbgs() << *UseMI; 1493 }); 1494 } 1495 } 1496 1497 bool RegisterCoalescer::canJoinPhys(const CoalescerPair &CP) { 1498 // Always join simple intervals that are defined by a single copy from a 1499 // reserved register. This doesn't increase register pressure, so it is 1500 // always beneficial. 1501 if (!MRI->isReserved(CP.getDstReg())) { 1502 DEBUG(dbgs() << "\tCan only merge into reserved registers.\n"); 1503 return false; 1504 } 1505 1506 LiveInterval &JoinVInt = LIS->getInterval(CP.getSrcReg()); 1507 if (JoinVInt.containsOneValue()) 1508 return true; 1509 1510 DEBUG(dbgs() << "\tCannot join complex intervals into reserved register.\n"); 1511 return false; 1512 } 1513 1514 bool RegisterCoalescer::joinCopy(MachineInstr *CopyMI, bool &Again) { 1515 1516 Again = false; 1517 DEBUG(dbgs() << LIS->getInstructionIndex(*CopyMI) << '\t' << *CopyMI); 1518 1519 CoalescerPair CP(*TRI); 1520 if (!CP.setRegisters(CopyMI)) { 1521 DEBUG(dbgs() << "\tNot coalescable.\n"); 1522 return false; 1523 } 1524 1525 if (CP.getNewRC()) { 1526 auto SrcRC = MRI->getRegClass(CP.getSrcReg()); 1527 auto DstRC = MRI->getRegClass(CP.getDstReg()); 1528 unsigned SrcIdx = CP.getSrcIdx(); 1529 unsigned DstIdx = CP.getDstIdx(); 1530 if (CP.isFlipped()) { 1531 std::swap(SrcIdx, DstIdx); 1532 std::swap(SrcRC, DstRC); 1533 } 1534 if (!TRI->shouldCoalesce(CopyMI, SrcRC, SrcIdx, DstRC, DstIdx, 1535 CP.getNewRC())) { 1536 DEBUG(dbgs() << "\tSubtarget bailed on coalescing.\n"); 1537 return false; 1538 } 1539 } 1540 1541 // Dead code elimination. This really should be handled by MachineDCE, but 1542 // sometimes dead copies slip through, and we can't generate invalid live 1543 // ranges. 1544 if (!CP.isPhys() && CopyMI->allDefsAreDead()) { 1545 DEBUG(dbgs() << "\tCopy is dead.\n"); 1546 DeadDefs.push_back(CopyMI); 1547 eliminateDeadDefs(); 1548 return true; 1549 } 1550 1551 // Eliminate undefs. 1552 if (!CP.isPhys() && eliminateUndefCopy(CopyMI)) { 1553 LIS->RemoveMachineInstrFromMaps(*CopyMI); 1554 CopyMI->eraseFromParent(); 1555 return false; // Not coalescable. 1556 } 1557 1558 // Coalesced copies are normally removed immediately, but transformations 1559 // like removeCopyByCommutingDef() can inadvertently create identity copies. 1560 // When that happens, just join the values and remove the copy. 1561 if (CP.getSrcReg() == CP.getDstReg()) { 1562 LiveInterval &LI = LIS->getInterval(CP.getSrcReg()); 1563 DEBUG(dbgs() << "\tCopy already coalesced: " << LI << '\n'); 1564 const SlotIndex CopyIdx = LIS->getInstructionIndex(*CopyMI); 1565 LiveQueryResult LRQ = LI.Query(CopyIdx); 1566 if (VNInfo *DefVNI = LRQ.valueDefined()) { 1567 VNInfo *ReadVNI = LRQ.valueIn(); 1568 assert(ReadVNI && "No value before copy and no <undef> flag."); 1569 assert(ReadVNI != DefVNI && "Cannot read and define the same value."); 1570 LI.MergeValueNumberInto(DefVNI, ReadVNI); 1571 1572 // Process subregister liveranges. 1573 for (LiveInterval::SubRange &S : LI.subranges()) { 1574 LiveQueryResult SLRQ = S.Query(CopyIdx); 1575 if (VNInfo *SDefVNI = SLRQ.valueDefined()) { 1576 VNInfo *SReadVNI = SLRQ.valueIn(); 1577 S.MergeValueNumberInto(SDefVNI, SReadVNI); 1578 } 1579 } 1580 DEBUG(dbgs() << "\tMerged values: " << LI << '\n'); 1581 } 1582 LIS->RemoveMachineInstrFromMaps(*CopyMI); 1583 CopyMI->eraseFromParent(); 1584 return true; 1585 } 1586 1587 // Enforce policies. 1588 if (CP.isPhys()) { 1589 DEBUG(dbgs() << "\tConsidering merging " << PrintReg(CP.getSrcReg(), TRI) 1590 << " with " << PrintReg(CP.getDstReg(), TRI, CP.getSrcIdx()) 1591 << '\n'); 1592 if (!canJoinPhys(CP)) { 1593 // Before giving up coalescing, if definition of source is defined by 1594 // trivial computation, try rematerializing it. 1595 bool IsDefCopy; 1596 if (reMaterializeTrivialDef(CP, CopyMI, IsDefCopy)) 1597 return true; 1598 if (IsDefCopy) 1599 Again = true; // May be possible to coalesce later. 1600 return false; 1601 } 1602 } else { 1603 // When possible, let DstReg be the larger interval. 1604 if (!CP.isPartial() && LIS->getInterval(CP.getSrcReg()).size() > 1605 LIS->getInterval(CP.getDstReg()).size()) 1606 CP.flip(); 1607 1608 DEBUG({ 1609 dbgs() << "\tConsidering merging to " 1610 << TRI->getRegClassName(CP.getNewRC()) << " with "; 1611 if (CP.getDstIdx() && CP.getSrcIdx()) 1612 dbgs() << PrintReg(CP.getDstReg()) << " in " 1613 << TRI->getSubRegIndexName(CP.getDstIdx()) << " and " 1614 << PrintReg(CP.getSrcReg()) << " in " 1615 << TRI->getSubRegIndexName(CP.getSrcIdx()) << '\n'; 1616 else 1617 dbgs() << PrintReg(CP.getSrcReg(), TRI) << " in " 1618 << PrintReg(CP.getDstReg(), TRI, CP.getSrcIdx()) << '\n'; 1619 }); 1620 } 1621 1622 ShrinkMask = LaneBitmask::getNone(); 1623 ShrinkMainRange = false; 1624 1625 // Okay, attempt to join these two intervals. On failure, this returns false. 1626 // Otherwise, if one of the intervals being joined is a physreg, this method 1627 // always canonicalizes DstInt to be it. The output "SrcInt" will not have 1628 // been modified, so we can use this information below to update aliases. 1629 if (!joinIntervals(CP)) { 1630 // Coalescing failed. 1631 1632 // If definition of source is defined by trivial computation, try 1633 // rematerializing it. 1634 bool IsDefCopy; 1635 if (reMaterializeTrivialDef(CP, CopyMI, IsDefCopy)) 1636 return true; 1637 1638 // If we can eliminate the copy without merging the live segments, do so 1639 // now. 1640 if (!CP.isPartial() && !CP.isPhys()) { 1641 if (adjustCopiesBackFrom(CP, CopyMI) || 1642 removeCopyByCommutingDef(CP, CopyMI)) { 1643 LIS->RemoveMachineInstrFromMaps(*CopyMI); 1644 CopyMI->eraseFromParent(); 1645 DEBUG(dbgs() << "\tTrivial!\n"); 1646 return true; 1647 } 1648 } 1649 1650 // Try and see if we can partially eliminate the copy by moving the copy to 1651 // its predecessor. 1652 if (!CP.isPartial() && !CP.isPhys()) 1653 if (removePartialRedundancy(CP, *CopyMI)) 1654 return true; 1655 1656 // Otherwise, we are unable to join the intervals. 1657 DEBUG(dbgs() << "\tInterference!\n"); 1658 Again = true; // May be possible to coalesce later. 1659 return false; 1660 } 1661 1662 // Coalescing to a virtual register that is of a sub-register class of the 1663 // other. Make sure the resulting register is set to the right register class. 1664 if (CP.isCrossClass()) { 1665 ++numCrossRCs; 1666 MRI->setRegClass(CP.getDstReg(), CP.getNewRC()); 1667 } 1668 1669 // Removing sub-register copies can ease the register class constraints. 1670 // Make sure we attempt to inflate the register class of DstReg. 1671 if (!CP.isPhys() && RegClassInfo.isProperSubClass(CP.getNewRC())) 1672 InflateRegs.push_back(CP.getDstReg()); 1673 1674 // CopyMI has been erased by joinIntervals at this point. Remove it from 1675 // ErasedInstrs since copyCoalesceWorkList() won't add a successful join back 1676 // to the work list. This keeps ErasedInstrs from growing needlessly. 1677 ErasedInstrs.erase(CopyMI); 1678 1679 // Rewrite all SrcReg operands to DstReg. 1680 // Also update DstReg operands to include DstIdx if it is set. 1681 if (CP.getDstIdx()) 1682 updateRegDefsUses(CP.getDstReg(), CP.getDstReg(), CP.getDstIdx()); 1683 updateRegDefsUses(CP.getSrcReg(), CP.getDstReg(), CP.getSrcIdx()); 1684 1685 // Shrink subregister ranges if necessary. 1686 if (ShrinkMask.any()) { 1687 LiveInterval &LI = LIS->getInterval(CP.getDstReg()); 1688 for (LiveInterval::SubRange &S : LI.subranges()) { 1689 if ((S.LaneMask & ShrinkMask).none()) 1690 continue; 1691 DEBUG(dbgs() << "Shrink LaneUses (Lane " << PrintLaneMask(S.LaneMask) 1692 << ")\n"); 1693 LIS->shrinkToUses(S, LI.reg); 1694 } 1695 LI.removeEmptySubRanges(); 1696 } 1697 if (ShrinkMainRange) { 1698 LiveInterval &LI = LIS->getInterval(CP.getDstReg()); 1699 shrinkToUses(&LI); 1700 } 1701 1702 // SrcReg is guaranteed to be the register whose live interval that is 1703 // being merged. 1704 LIS->removeInterval(CP.getSrcReg()); 1705 1706 // Update regalloc hint. 1707 TRI->updateRegAllocHint(CP.getSrcReg(), CP.getDstReg(), *MF); 1708 1709 DEBUG({ 1710 dbgs() << "\tSuccess: " << PrintReg(CP.getSrcReg(), TRI, CP.getSrcIdx()) 1711 << " -> " << PrintReg(CP.getDstReg(), TRI, CP.getDstIdx()) << '\n'; 1712 dbgs() << "\tResult = "; 1713 if (CP.isPhys()) 1714 dbgs() << PrintReg(CP.getDstReg(), TRI); 1715 else 1716 dbgs() << LIS->getInterval(CP.getDstReg()); 1717 dbgs() << '\n'; 1718 }); 1719 1720 ++numJoins; 1721 return true; 1722 } 1723 1724 bool RegisterCoalescer::joinReservedPhysReg(CoalescerPair &CP) { 1725 unsigned DstReg = CP.getDstReg(); 1726 unsigned SrcReg = CP.getSrcReg(); 1727 assert(CP.isPhys() && "Must be a physreg copy"); 1728 assert(MRI->isReserved(DstReg) && "Not a reserved register"); 1729 LiveInterval &RHS = LIS->getInterval(SrcReg); 1730 DEBUG(dbgs() << "\t\tRHS = " << RHS << '\n'); 1731 1732 assert(RHS.containsOneValue() && "Invalid join with reserved register"); 1733 1734 // Optimization for reserved registers like ESP. We can only merge with a 1735 // reserved physreg if RHS has a single value that is a copy of DstReg. 1736 // The live range of the reserved register will look like a set of dead defs 1737 // - we don't properly track the live range of reserved registers. 1738 1739 // Deny any overlapping intervals. This depends on all the reserved 1740 // register live ranges to look like dead defs. 1741 if (!MRI->isConstantPhysReg(DstReg)) { 1742 for (MCRegUnitIterator UI(DstReg, TRI); UI.isValid(); ++UI) { 1743 // Abort if not all the regunits are reserved. 1744 for (MCRegUnitRootIterator RI(*UI, TRI); RI.isValid(); ++RI) { 1745 if (!MRI->isReserved(*RI)) 1746 return false; 1747 } 1748 if (RHS.overlaps(LIS->getRegUnit(*UI))) { 1749 DEBUG(dbgs() << "\t\tInterference: " << PrintRegUnit(*UI, TRI) << '\n'); 1750 return false; 1751 } 1752 } 1753 1754 // We must also check for overlaps with regmask clobbers. 1755 BitVector RegMaskUsable; 1756 if (LIS->checkRegMaskInterference(RHS, RegMaskUsable) && 1757 !RegMaskUsable.test(DstReg)) { 1758 DEBUG(dbgs() << "\t\tRegMask interference\n"); 1759 return false; 1760 } 1761 } 1762 1763 // Skip any value computations, we are not adding new values to the 1764 // reserved register. Also skip merging the live ranges, the reserved 1765 // register live range doesn't need to be accurate as long as all the 1766 // defs are there. 1767 1768 // Delete the identity copy. 1769 MachineInstr *CopyMI; 1770 if (CP.isFlipped()) { 1771 // Physreg is copied into vreg 1772 // %vregY = COPY %X 1773 // ... //< no other def of %X here 1774 // use %vregY 1775 // => 1776 // ... 1777 // use %X 1778 CopyMI = MRI->getVRegDef(SrcReg); 1779 } else { 1780 // VReg is copied into physreg: 1781 // %vregX = def 1782 // ... //< no other def or use of %Y here 1783 // %Y = COPY %vregX 1784 // => 1785 // %Y = def 1786 // ... 1787 if (!MRI->hasOneNonDBGUse(SrcReg)) { 1788 DEBUG(dbgs() << "\t\tMultiple vreg uses!\n"); 1789 return false; 1790 } 1791 1792 if (!LIS->intervalIsInOneMBB(RHS)) { 1793 DEBUG(dbgs() << "\t\tComplex control flow!\n"); 1794 return false; 1795 } 1796 1797 MachineInstr &DestMI = *MRI->getVRegDef(SrcReg); 1798 CopyMI = &*MRI->use_instr_nodbg_begin(SrcReg); 1799 SlotIndex CopyRegIdx = LIS->getInstructionIndex(*CopyMI).getRegSlot(); 1800 SlotIndex DestRegIdx = LIS->getInstructionIndex(DestMI).getRegSlot(); 1801 1802 if (!MRI->isConstantPhysReg(DstReg)) { 1803 // We checked above that there are no interfering defs of the physical 1804 // register. However, for this case, where we intent to move up the def of 1805 // the physical register, we also need to check for interfering uses. 1806 SlotIndexes *Indexes = LIS->getSlotIndexes(); 1807 for (SlotIndex SI = Indexes->getNextNonNullIndex(DestRegIdx); 1808 SI != CopyRegIdx; SI = Indexes->getNextNonNullIndex(SI)) { 1809 MachineInstr *MI = LIS->getInstructionFromIndex(SI); 1810 if (MI->readsRegister(DstReg, TRI)) { 1811 DEBUG(dbgs() << "\t\tInterference (read): " << *MI); 1812 return false; 1813 } 1814 } 1815 } 1816 1817 // We're going to remove the copy which defines a physical reserved 1818 // register, so remove its valno, etc. 1819 DEBUG(dbgs() << "\t\tRemoving phys reg def of " << PrintReg(DstReg, TRI) 1820 << " at " << CopyRegIdx << "\n"); 1821 1822 LIS->removePhysRegDefAt(DstReg, CopyRegIdx); 1823 // Create a new dead def at the new def location. 1824 for (MCRegUnitIterator UI(DstReg, TRI); UI.isValid(); ++UI) { 1825 LiveRange &LR = LIS->getRegUnit(*UI); 1826 LR.createDeadDef(DestRegIdx, LIS->getVNInfoAllocator()); 1827 } 1828 } 1829 1830 LIS->RemoveMachineInstrFromMaps(*CopyMI); 1831 CopyMI->eraseFromParent(); 1832 1833 // We don't track kills for reserved registers. 1834 MRI->clearKillFlags(CP.getSrcReg()); 1835 1836 return true; 1837 } 1838 1839 //===----------------------------------------------------------------------===// 1840 // Interference checking and interval joining 1841 //===----------------------------------------------------------------------===// 1842 // 1843 // In the easiest case, the two live ranges being joined are disjoint, and 1844 // there is no interference to consider. It is quite common, though, to have 1845 // overlapping live ranges, and we need to check if the interference can be 1846 // resolved. 1847 // 1848 // The live range of a single SSA value forms a sub-tree of the dominator tree. 1849 // This means that two SSA values overlap if and only if the def of one value 1850 // is contained in the live range of the other value. As a special case, the 1851 // overlapping values can be defined at the same index. 1852 // 1853 // The interference from an overlapping def can be resolved in these cases: 1854 // 1855 // 1. Coalescable copies. The value is defined by a copy that would become an 1856 // identity copy after joining SrcReg and DstReg. The copy instruction will 1857 // be removed, and the value will be merged with the source value. 1858 // 1859 // There can be several copies back and forth, causing many values to be 1860 // merged into one. We compute a list of ultimate values in the joined live 1861 // range as well as a mappings from the old value numbers. 1862 // 1863 // 2. IMPLICIT_DEF. This instruction is only inserted to ensure all PHI 1864 // predecessors have a live out value. It doesn't cause real interference, 1865 // and can be merged into the value it overlaps. Like a coalescable copy, it 1866 // can be erased after joining. 1867 // 1868 // 3. Copy of external value. The overlapping def may be a copy of a value that 1869 // is already in the other register. This is like a coalescable copy, but 1870 // the live range of the source register must be trimmed after erasing the 1871 // copy instruction: 1872 // 1873 // %src = COPY %ext 1874 // %dst = COPY %ext <-- Remove this COPY, trim the live range of %ext. 1875 // 1876 // 4. Clobbering undefined lanes. Vector registers are sometimes built by 1877 // defining one lane at a time: 1878 // 1879 // %dst:ssub0<def,read-undef> = FOO 1880 // %src = BAR 1881 // %dst:ssub1<def> = COPY %src 1882 // 1883 // The live range of %src overlaps the %dst value defined by FOO, but 1884 // merging %src into %dst:ssub1 is only going to clobber the ssub1 lane 1885 // which was undef anyway. 1886 // 1887 // The value mapping is more complicated in this case. The final live range 1888 // will have different value numbers for both FOO and BAR, but there is no 1889 // simple mapping from old to new values. It may even be necessary to add 1890 // new PHI values. 1891 // 1892 // 5. Clobbering dead lanes. A def may clobber a lane of a vector register that 1893 // is live, but never read. This can happen because we don't compute 1894 // individual live ranges per lane. 1895 // 1896 // %dst<def> = FOO 1897 // %src = BAR 1898 // %dst:ssub1<def> = COPY %src 1899 // 1900 // This kind of interference is only resolved locally. If the clobbered 1901 // lane value escapes the block, the join is aborted. 1902 1903 namespace { 1904 /// Track information about values in a single virtual register about to be 1905 /// joined. Objects of this class are always created in pairs - one for each 1906 /// side of the CoalescerPair (or one for each lane of a side of the coalescer 1907 /// pair) 1908 class JoinVals { 1909 /// Live range we work on. 1910 LiveRange &LR; 1911 /// (Main) register we work on. 1912 const unsigned Reg; 1913 1914 /// Reg (and therefore the values in this liverange) will end up as 1915 /// subregister SubIdx in the coalesced register. Either CP.DstIdx or 1916 /// CP.SrcIdx. 1917 const unsigned SubIdx; 1918 /// The LaneMask that this liverange will occupy the coalesced register. May 1919 /// be smaller than the lanemask produced by SubIdx when merging subranges. 1920 const LaneBitmask LaneMask; 1921 1922 /// This is true when joining sub register ranges, false when joining main 1923 /// ranges. 1924 const bool SubRangeJoin; 1925 /// Whether the current LiveInterval tracks subregister liveness. 1926 const bool TrackSubRegLiveness; 1927 1928 /// Values that will be present in the final live range. 1929 SmallVectorImpl<VNInfo*> &NewVNInfo; 1930 1931 const CoalescerPair &CP; 1932 LiveIntervals *LIS; 1933 SlotIndexes *Indexes; 1934 const TargetRegisterInfo *TRI; 1935 1936 /// Value number assignments. Maps value numbers in LI to entries in 1937 /// NewVNInfo. This is suitable for passing to LiveInterval::join(). 1938 SmallVector<int, 8> Assignments; 1939 1940 /// Conflict resolution for overlapping values. 1941 enum ConflictResolution { 1942 /// No overlap, simply keep this value. 1943 CR_Keep, 1944 1945 /// Merge this value into OtherVNI and erase the defining instruction. 1946 /// Used for IMPLICIT_DEF, coalescable copies, and copies from external 1947 /// values. 1948 CR_Erase, 1949 1950 /// Merge this value into OtherVNI but keep the defining instruction. 1951 /// This is for the special case where OtherVNI is defined by the same 1952 /// instruction. 1953 CR_Merge, 1954 1955 /// Keep this value, and have it replace OtherVNI where possible. This 1956 /// complicates value mapping since OtherVNI maps to two different values 1957 /// before and after this def. 1958 /// Used when clobbering undefined or dead lanes. 1959 CR_Replace, 1960 1961 /// Unresolved conflict. Visit later when all values have been mapped. 1962 CR_Unresolved, 1963 1964 /// Unresolvable conflict. Abort the join. 1965 CR_Impossible 1966 }; 1967 1968 /// Per-value info for LI. The lane bit masks are all relative to the final 1969 /// joined register, so they can be compared directly between SrcReg and 1970 /// DstReg. 1971 struct Val { 1972 ConflictResolution Resolution; 1973 1974 /// Lanes written by this def, 0 for unanalyzed values. 1975 LaneBitmask WriteLanes; 1976 1977 /// Lanes with defined values in this register. Other lanes are undef and 1978 /// safe to clobber. 1979 LaneBitmask ValidLanes; 1980 1981 /// Value in LI being redefined by this def. 1982 VNInfo *RedefVNI; 1983 1984 /// Value in the other live range that overlaps this def, if any. 1985 VNInfo *OtherVNI; 1986 1987 /// Is this value an IMPLICIT_DEF that can be erased? 1988 /// 1989 /// IMPLICIT_DEF values should only exist at the end of a basic block that 1990 /// is a predecessor to a phi-value. These IMPLICIT_DEF instructions can be 1991 /// safely erased if they are overlapping a live value in the other live 1992 /// interval. 1993 /// 1994 /// Weird control flow graphs and incomplete PHI handling in 1995 /// ProcessImplicitDefs can very rarely create IMPLICIT_DEF values with 1996 /// longer live ranges. Such IMPLICIT_DEF values should be treated like 1997 /// normal values. 1998 bool ErasableImplicitDef; 1999 2000 /// True when the live range of this value will be pruned because of an 2001 /// overlapping CR_Replace value in the other live range. 2002 bool Pruned; 2003 2004 /// True once Pruned above has been computed. 2005 bool PrunedComputed; 2006 2007 Val() : Resolution(CR_Keep), WriteLanes(), ValidLanes(), 2008 RedefVNI(nullptr), OtherVNI(nullptr), ErasableImplicitDef(false), 2009 Pruned(false), PrunedComputed(false) {} 2010 2011 bool isAnalyzed() const { return WriteLanes.any(); } 2012 }; 2013 2014 /// One entry per value number in LI. 2015 SmallVector<Val, 8> Vals; 2016 2017 /// Compute the bitmask of lanes actually written by DefMI. 2018 /// Set Redef if there are any partial register definitions that depend on the 2019 /// previous value of the register. 2020 LaneBitmask computeWriteLanes(const MachineInstr *DefMI, bool &Redef) const; 2021 2022 /// Find the ultimate value that VNI was copied from. 2023 std::pair<const VNInfo*,unsigned> followCopyChain(const VNInfo *VNI) const; 2024 2025 bool valuesIdentical(VNInfo *Val0, VNInfo *Val1, const JoinVals &Other) const; 2026 2027 /// Analyze ValNo in this live range, and set all fields of Vals[ValNo]. 2028 /// Return a conflict resolution when possible, but leave the hard cases as 2029 /// CR_Unresolved. 2030 /// Recursively calls computeAssignment() on this and Other, guaranteeing that 2031 /// both OtherVNI and RedefVNI have been analyzed and mapped before returning. 2032 /// The recursion always goes upwards in the dominator tree, making loops 2033 /// impossible. 2034 ConflictResolution analyzeValue(unsigned ValNo, JoinVals &Other); 2035 2036 /// Compute the value assignment for ValNo in RI. 2037 /// This may be called recursively by analyzeValue(), but never for a ValNo on 2038 /// the stack. 2039 void computeAssignment(unsigned ValNo, JoinVals &Other); 2040 2041 /// Assuming ValNo is going to clobber some valid lanes in Other.LR, compute 2042 /// the extent of the tainted lanes in the block. 2043 /// 2044 /// Multiple values in Other.LR can be affected since partial redefinitions 2045 /// can preserve previously tainted lanes. 2046 /// 2047 /// 1 %dst = VLOAD <-- Define all lanes in %dst 2048 /// 2 %src = FOO <-- ValNo to be joined with %dst:ssub0 2049 /// 3 %dst:ssub1 = BAR <-- Partial redef doesn't clear taint in ssub0 2050 /// 4 %dst:ssub0 = COPY %src <-- Conflict resolved, ssub0 wasn't read 2051 /// 2052 /// For each ValNo in Other that is affected, add an (EndIndex, TaintedLanes) 2053 /// entry to TaintedVals. 2054 /// 2055 /// Returns false if the tainted lanes extend beyond the basic block. 2056 bool taintExtent(unsigned, LaneBitmask, JoinVals&, 2057 SmallVectorImpl<std::pair<SlotIndex, LaneBitmask> >&); 2058 2059 /// Return true if MI uses any of the given Lanes from Reg. 2060 /// This does not include partial redefinitions of Reg. 2061 bool usesLanes(const MachineInstr &MI, unsigned, unsigned, LaneBitmask) const; 2062 2063 /// Determine if ValNo is a copy of a value number in LR or Other.LR that will 2064 /// be pruned: 2065 /// 2066 /// %dst = COPY %src 2067 /// %src = COPY %dst <-- This value to be pruned. 2068 /// %dst = COPY %src <-- This value is a copy of a pruned value. 2069 bool isPrunedValue(unsigned ValNo, JoinVals &Other); 2070 2071 public: 2072 JoinVals(LiveRange &LR, unsigned Reg, unsigned SubIdx, LaneBitmask LaneMask, 2073 SmallVectorImpl<VNInfo*> &newVNInfo, const CoalescerPair &cp, 2074 LiveIntervals *lis, const TargetRegisterInfo *TRI, bool SubRangeJoin, 2075 bool TrackSubRegLiveness) 2076 : LR(LR), Reg(Reg), SubIdx(SubIdx), LaneMask(LaneMask), 2077 SubRangeJoin(SubRangeJoin), TrackSubRegLiveness(TrackSubRegLiveness), 2078 NewVNInfo(newVNInfo), CP(cp), LIS(lis), Indexes(LIS->getSlotIndexes()), 2079 TRI(TRI), Assignments(LR.getNumValNums(), -1), Vals(LR.getNumValNums()) 2080 {} 2081 2082 /// Analyze defs in LR and compute a value mapping in NewVNInfo. 2083 /// Returns false if any conflicts were impossible to resolve. 2084 bool mapValues(JoinVals &Other); 2085 2086 /// Try to resolve conflicts that require all values to be mapped. 2087 /// Returns false if any conflicts were impossible to resolve. 2088 bool resolveConflicts(JoinVals &Other); 2089 2090 /// Prune the live range of values in Other.LR where they would conflict with 2091 /// CR_Replace values in LR. Collect end points for restoring the live range 2092 /// after joining. 2093 void pruneValues(JoinVals &Other, SmallVectorImpl<SlotIndex> &EndPoints, 2094 bool changeInstrs); 2095 2096 /// Removes subranges starting at copies that get removed. This sometimes 2097 /// happens when undefined subranges are copied around. These ranges contain 2098 /// no useful information and can be removed. 2099 void pruneSubRegValues(LiveInterval &LI, LaneBitmask &ShrinkMask); 2100 2101 /// Pruning values in subranges can lead to removing segments in these 2102 /// subranges started by IMPLICIT_DEFs. The corresponding segments in 2103 /// the main range also need to be removed. This function will mark 2104 /// the corresponding values in the main range as pruned, so that 2105 /// eraseInstrs can do the final cleanup. 2106 /// The parameter @p LI must be the interval whose main range is the 2107 /// live range LR. 2108 void pruneMainSegments(LiveInterval &LI, bool &ShrinkMainRange); 2109 2110 /// Erase any machine instructions that have been coalesced away. 2111 /// Add erased instructions to ErasedInstrs. 2112 /// Add foreign virtual registers to ShrinkRegs if their live range ended at 2113 /// the erased instrs. 2114 void eraseInstrs(SmallPtrSetImpl<MachineInstr*> &ErasedInstrs, 2115 SmallVectorImpl<unsigned> &ShrinkRegs, 2116 LiveInterval *LI = nullptr); 2117 2118 /// Remove liverange defs at places where implicit defs will be removed. 2119 void removeImplicitDefs(); 2120 2121 /// Get the value assignments suitable for passing to LiveInterval::join. 2122 const int *getAssignments() const { return Assignments.data(); } 2123 }; 2124 } // end anonymous namespace 2125 2126 LaneBitmask JoinVals::computeWriteLanes(const MachineInstr *DefMI, bool &Redef) 2127 const { 2128 LaneBitmask L; 2129 for (const MachineOperand &MO : DefMI->operands()) { 2130 if (!MO.isReg() || MO.getReg() != Reg || !MO.isDef()) 2131 continue; 2132 L |= TRI->getSubRegIndexLaneMask( 2133 TRI->composeSubRegIndices(SubIdx, MO.getSubReg())); 2134 if (MO.readsReg()) 2135 Redef = true; 2136 } 2137 return L; 2138 } 2139 2140 std::pair<const VNInfo*, unsigned> JoinVals::followCopyChain( 2141 const VNInfo *VNI) const { 2142 unsigned Reg = this->Reg; 2143 2144 while (!VNI->isPHIDef()) { 2145 SlotIndex Def = VNI->def; 2146 MachineInstr *MI = Indexes->getInstructionFromIndex(Def); 2147 assert(MI && "No defining instruction"); 2148 if (!MI->isFullCopy()) 2149 return std::make_pair(VNI, Reg); 2150 unsigned SrcReg = MI->getOperand(1).getReg(); 2151 if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) 2152 return std::make_pair(VNI, Reg); 2153 2154 const LiveInterval &LI = LIS->getInterval(SrcReg); 2155 const VNInfo *ValueIn; 2156 // No subrange involved. 2157 if (!SubRangeJoin || !LI.hasSubRanges()) { 2158 LiveQueryResult LRQ = LI.Query(Def); 2159 ValueIn = LRQ.valueIn(); 2160 } else { 2161 // Query subranges. Pick the first matching one. 2162 ValueIn = nullptr; 2163 for (const LiveInterval::SubRange &S : LI.subranges()) { 2164 // Transform lanemask to a mask in the joined live interval. 2165 LaneBitmask SMask = TRI->composeSubRegIndexLaneMask(SubIdx, S.LaneMask); 2166 if ((SMask & LaneMask).none()) 2167 continue; 2168 LiveQueryResult LRQ = S.Query(Def); 2169 ValueIn = LRQ.valueIn(); 2170 break; 2171 } 2172 } 2173 if (ValueIn == nullptr) 2174 break; 2175 VNI = ValueIn; 2176 Reg = SrcReg; 2177 } 2178 return std::make_pair(VNI, Reg); 2179 } 2180 2181 bool JoinVals::valuesIdentical(VNInfo *Value0, VNInfo *Value1, 2182 const JoinVals &Other) const { 2183 const VNInfo *Orig0; 2184 unsigned Reg0; 2185 std::tie(Orig0, Reg0) = followCopyChain(Value0); 2186 if (Orig0 == Value1) 2187 return true; 2188 2189 const VNInfo *Orig1; 2190 unsigned Reg1; 2191 std::tie(Orig1, Reg1) = Other.followCopyChain(Value1); 2192 2193 // The values are equal if they are defined at the same place and use the 2194 // same register. Note that we cannot compare VNInfos directly as some of 2195 // them might be from a copy created in mergeSubRangeInto() while the other 2196 // is from the original LiveInterval. 2197 return Orig0->def == Orig1->def && Reg0 == Reg1; 2198 } 2199 2200 JoinVals::ConflictResolution 2201 JoinVals::analyzeValue(unsigned ValNo, JoinVals &Other) { 2202 Val &V = Vals[ValNo]; 2203 assert(!V.isAnalyzed() && "Value has already been analyzed!"); 2204 VNInfo *VNI = LR.getValNumInfo(ValNo); 2205 if (VNI->isUnused()) { 2206 V.WriteLanes = LaneBitmask::getAll(); 2207 return CR_Keep; 2208 } 2209 2210 // Get the instruction defining this value, compute the lanes written. 2211 const MachineInstr *DefMI = nullptr; 2212 if (VNI->isPHIDef()) { 2213 // Conservatively assume that all lanes in a PHI are valid. 2214 LaneBitmask Lanes = SubRangeJoin ? LaneBitmask(1) 2215 : TRI->getSubRegIndexLaneMask(SubIdx); 2216 V.ValidLanes = V.WriteLanes = Lanes; 2217 } else { 2218 DefMI = Indexes->getInstructionFromIndex(VNI->def); 2219 assert(DefMI != nullptr); 2220 if (SubRangeJoin) { 2221 // We don't care about the lanes when joining subregister ranges. 2222 V.WriteLanes = V.ValidLanes = LaneBitmask(1); 2223 if (DefMI->isImplicitDef()) { 2224 V.ValidLanes = LaneBitmask::getNone(); 2225 V.ErasableImplicitDef = true; 2226 } 2227 } else { 2228 bool Redef = false; 2229 V.ValidLanes = V.WriteLanes = computeWriteLanes(DefMI, Redef); 2230 2231 // If this is a read-modify-write instruction, there may be more valid 2232 // lanes than the ones written by this instruction. 2233 // This only covers partial redef operands. DefMI may have normal use 2234 // operands reading the register. They don't contribute valid lanes. 2235 // 2236 // This adds ssub1 to the set of valid lanes in %src: 2237 // 2238 // %src:ssub1<def> = FOO 2239 // 2240 // This leaves only ssub1 valid, making any other lanes undef: 2241 // 2242 // %src:ssub1<def,read-undef> = FOO %src:ssub2 2243 // 2244 // The <read-undef> flag on the def operand means that old lane values are 2245 // not important. 2246 if (Redef) { 2247 V.RedefVNI = LR.Query(VNI->def).valueIn(); 2248 assert((TrackSubRegLiveness || V.RedefVNI) && 2249 "Instruction is reading nonexistent value"); 2250 if (V.RedefVNI != nullptr) { 2251 computeAssignment(V.RedefVNI->id, Other); 2252 V.ValidLanes |= Vals[V.RedefVNI->id].ValidLanes; 2253 } 2254 } 2255 2256 // An IMPLICIT_DEF writes undef values. 2257 if (DefMI->isImplicitDef()) { 2258 // We normally expect IMPLICIT_DEF values to be live only until the end 2259 // of their block. If the value is really live longer and gets pruned in 2260 // another block, this flag is cleared again. 2261 V.ErasableImplicitDef = true; 2262 V.ValidLanes &= ~V.WriteLanes; 2263 } 2264 } 2265 } 2266 2267 // Find the value in Other that overlaps VNI->def, if any. 2268 LiveQueryResult OtherLRQ = Other.LR.Query(VNI->def); 2269 2270 // It is possible that both values are defined by the same instruction, or 2271 // the values are PHIs defined in the same block. When that happens, the two 2272 // values should be merged into one, but not into any preceding value. 2273 // The first value defined or visited gets CR_Keep, the other gets CR_Merge. 2274 if (VNInfo *OtherVNI = OtherLRQ.valueDefined()) { 2275 assert(SlotIndex::isSameInstr(VNI->def, OtherVNI->def) && "Broken LRQ"); 2276 2277 // One value stays, the other is merged. Keep the earlier one, or the first 2278 // one we see. 2279 if (OtherVNI->def < VNI->def) 2280 Other.computeAssignment(OtherVNI->id, *this); 2281 else if (VNI->def < OtherVNI->def && OtherLRQ.valueIn()) { 2282 // This is an early-clobber def overlapping a live-in value in the other 2283 // register. Not mergeable. 2284 V.OtherVNI = OtherLRQ.valueIn(); 2285 return CR_Impossible; 2286 } 2287 V.OtherVNI = OtherVNI; 2288 Val &OtherV = Other.Vals[OtherVNI->id]; 2289 // Keep this value, check for conflicts when analyzing OtherVNI. 2290 if (!OtherV.isAnalyzed()) 2291 return CR_Keep; 2292 // Both sides have been analyzed now. 2293 // Allow overlapping PHI values. Any real interference would show up in a 2294 // predecessor, the PHI itself can't introduce any conflicts. 2295 if (VNI->isPHIDef()) 2296 return CR_Merge; 2297 if ((V.ValidLanes & OtherV.ValidLanes).any()) 2298 // Overlapping lanes can't be resolved. 2299 return CR_Impossible; 2300 else 2301 return CR_Merge; 2302 } 2303 2304 // No simultaneous def. Is Other live at the def? 2305 V.OtherVNI = OtherLRQ.valueIn(); 2306 if (!V.OtherVNI) 2307 // No overlap, no conflict. 2308 return CR_Keep; 2309 2310 assert(!SlotIndex::isSameInstr(VNI->def, V.OtherVNI->def) && "Broken LRQ"); 2311 2312 // We have overlapping values, or possibly a kill of Other. 2313 // Recursively compute assignments up the dominator tree. 2314 Other.computeAssignment(V.OtherVNI->id, *this); 2315 Val &OtherV = Other.Vals[V.OtherVNI->id]; 2316 2317 // Check if OtherV is an IMPLICIT_DEF that extends beyond its basic block. 2318 // This shouldn't normally happen, but ProcessImplicitDefs can leave such 2319 // IMPLICIT_DEF instructions behind, and there is nothing wrong with it 2320 // technically. 2321 // 2322 // When it happens, treat that IMPLICIT_DEF as a normal value, and don't try 2323 // to erase the IMPLICIT_DEF instruction. 2324 if (OtherV.ErasableImplicitDef && DefMI && 2325 DefMI->getParent() != Indexes->getMBBFromIndex(V.OtherVNI->def)) { 2326 DEBUG(dbgs() << "IMPLICIT_DEF defined at " << V.OtherVNI->def 2327 << " extends into BB#" << DefMI->getParent()->getNumber() 2328 << ", keeping it.\n"); 2329 OtherV.ErasableImplicitDef = false; 2330 } 2331 2332 // Allow overlapping PHI values. Any real interference would show up in a 2333 // predecessor, the PHI itself can't introduce any conflicts. 2334 if (VNI->isPHIDef()) 2335 return CR_Replace; 2336 2337 // Check for simple erasable conflicts. 2338 if (DefMI->isImplicitDef()) { 2339 // We need the def for the subregister if there is nothing else live at the 2340 // subrange at this point. 2341 if (TrackSubRegLiveness 2342 && (V.WriteLanes & (OtherV.ValidLanes | OtherV.WriteLanes)).none()) 2343 return CR_Replace; 2344 return CR_Erase; 2345 } 2346 2347 // Include the non-conflict where DefMI is a coalescable copy that kills 2348 // OtherVNI. We still want the copy erased and value numbers merged. 2349 if (CP.isCoalescable(DefMI)) { 2350 // Some of the lanes copied from OtherVNI may be undef, making them undef 2351 // here too. 2352 V.ValidLanes &= ~V.WriteLanes | OtherV.ValidLanes; 2353 return CR_Erase; 2354 } 2355 2356 // This may not be a real conflict if DefMI simply kills Other and defines 2357 // VNI. 2358 if (OtherLRQ.isKill() && OtherLRQ.endPoint() <= VNI->def) 2359 return CR_Keep; 2360 2361 // Handle the case where VNI and OtherVNI can be proven to be identical: 2362 // 2363 // %other = COPY %ext 2364 // %this = COPY %ext <-- Erase this copy 2365 // 2366 if (DefMI->isFullCopy() && !CP.isPartial() 2367 && valuesIdentical(VNI, V.OtherVNI, Other)) 2368 return CR_Erase; 2369 2370 // If the lanes written by this instruction were all undef in OtherVNI, it is 2371 // still safe to join the live ranges. This can't be done with a simple value 2372 // mapping, though - OtherVNI will map to multiple values: 2373 // 2374 // 1 %dst:ssub0 = FOO <-- OtherVNI 2375 // 2 %src = BAR <-- VNI 2376 // 3 %dst:ssub1 = COPY %src<kill> <-- Eliminate this copy. 2377 // 4 BAZ %dst<kill> 2378 // 5 QUUX %src<kill> 2379 // 2380 // Here OtherVNI will map to itself in [1;2), but to VNI in [2;5). CR_Replace 2381 // handles this complex value mapping. 2382 if ((V.WriteLanes & OtherV.ValidLanes).none()) 2383 return CR_Replace; 2384 2385 // If the other live range is killed by DefMI and the live ranges are still 2386 // overlapping, it must be because we're looking at an early clobber def: 2387 // 2388 // %dst<def,early-clobber> = ASM %src<kill> 2389 // 2390 // In this case, it is illegal to merge the two live ranges since the early 2391 // clobber def would clobber %src before it was read. 2392 if (OtherLRQ.isKill()) { 2393 // This case where the def doesn't overlap the kill is handled above. 2394 assert(VNI->def.isEarlyClobber() && 2395 "Only early clobber defs can overlap a kill"); 2396 return CR_Impossible; 2397 } 2398 2399 // VNI is clobbering live lanes in OtherVNI, but there is still the 2400 // possibility that no instructions actually read the clobbered lanes. 2401 // If we're clobbering all the lanes in OtherVNI, at least one must be read. 2402 // Otherwise Other.RI wouldn't be live here. 2403 if ((TRI->getSubRegIndexLaneMask(Other.SubIdx) & ~V.WriteLanes).none()) 2404 return CR_Impossible; 2405 2406 // We need to verify that no instructions are reading the clobbered lanes. To 2407 // save compile time, we'll only check that locally. Don't allow the tainted 2408 // value to escape the basic block. 2409 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def); 2410 if (OtherLRQ.endPoint() >= Indexes->getMBBEndIdx(MBB)) 2411 return CR_Impossible; 2412 2413 // There are still some things that could go wrong besides clobbered lanes 2414 // being read, for example OtherVNI may be only partially redefined in MBB, 2415 // and some clobbered lanes could escape the block. Save this analysis for 2416 // resolveConflicts() when all values have been mapped. We need to know 2417 // RedefVNI and WriteLanes for any later defs in MBB, and we can't compute 2418 // that now - the recursive analyzeValue() calls must go upwards in the 2419 // dominator tree. 2420 return CR_Unresolved; 2421 } 2422 2423 void JoinVals::computeAssignment(unsigned ValNo, JoinVals &Other) { 2424 Val &V = Vals[ValNo]; 2425 if (V.isAnalyzed()) { 2426 // Recursion should always move up the dominator tree, so ValNo is not 2427 // supposed to reappear before it has been assigned. 2428 assert(Assignments[ValNo] != -1 && "Bad recursion?"); 2429 return; 2430 } 2431 switch ((V.Resolution = analyzeValue(ValNo, Other))) { 2432 case CR_Erase: 2433 case CR_Merge: 2434 // Merge this ValNo into OtherVNI. 2435 assert(V.OtherVNI && "OtherVNI not assigned, can't merge."); 2436 assert(Other.Vals[V.OtherVNI->id].isAnalyzed() && "Missing recursion"); 2437 Assignments[ValNo] = Other.Assignments[V.OtherVNI->id]; 2438 DEBUG(dbgs() << "\t\tmerge " << PrintReg(Reg) << ':' << ValNo << '@' 2439 << LR.getValNumInfo(ValNo)->def << " into " 2440 << PrintReg(Other.Reg) << ':' << V.OtherVNI->id << '@' 2441 << V.OtherVNI->def << " --> @" 2442 << NewVNInfo[Assignments[ValNo]]->def << '\n'); 2443 break; 2444 case CR_Replace: 2445 case CR_Unresolved: { 2446 // The other value is going to be pruned if this join is successful. 2447 assert(V.OtherVNI && "OtherVNI not assigned, can't prune"); 2448 Val &OtherV = Other.Vals[V.OtherVNI->id]; 2449 // We cannot erase an IMPLICIT_DEF if we don't have valid values for all 2450 // its lanes. 2451 if ((OtherV.WriteLanes & ~V.ValidLanes).any() && TrackSubRegLiveness) 2452 OtherV.ErasableImplicitDef = false; 2453 OtherV.Pruned = true; 2454 LLVM_FALLTHROUGH; 2455 } 2456 default: 2457 // This value number needs to go in the final joined live range. 2458 Assignments[ValNo] = NewVNInfo.size(); 2459 NewVNInfo.push_back(LR.getValNumInfo(ValNo)); 2460 break; 2461 } 2462 } 2463 2464 bool JoinVals::mapValues(JoinVals &Other) { 2465 for (unsigned i = 0, e = LR.getNumValNums(); i != e; ++i) { 2466 computeAssignment(i, Other); 2467 if (Vals[i].Resolution == CR_Impossible) { 2468 DEBUG(dbgs() << "\t\tinterference at " << PrintReg(Reg) << ':' << i 2469 << '@' << LR.getValNumInfo(i)->def << '\n'); 2470 return false; 2471 } 2472 } 2473 return true; 2474 } 2475 2476 bool JoinVals:: 2477 taintExtent(unsigned ValNo, LaneBitmask TaintedLanes, JoinVals &Other, 2478 SmallVectorImpl<std::pair<SlotIndex, LaneBitmask> > &TaintExtent) { 2479 VNInfo *VNI = LR.getValNumInfo(ValNo); 2480 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def); 2481 SlotIndex MBBEnd = Indexes->getMBBEndIdx(MBB); 2482 2483 // Scan Other.LR from VNI.def to MBBEnd. 2484 LiveInterval::iterator OtherI = Other.LR.find(VNI->def); 2485 assert(OtherI != Other.LR.end() && "No conflict?"); 2486 do { 2487 // OtherI is pointing to a tainted value. Abort the join if the tainted 2488 // lanes escape the block. 2489 SlotIndex End = OtherI->end; 2490 if (End >= MBBEnd) { 2491 DEBUG(dbgs() << "\t\ttaints global " << PrintReg(Other.Reg) << ':' 2492 << OtherI->valno->id << '@' << OtherI->start << '\n'); 2493 return false; 2494 } 2495 DEBUG(dbgs() << "\t\ttaints local " << PrintReg(Other.Reg) << ':' 2496 << OtherI->valno->id << '@' << OtherI->start 2497 << " to " << End << '\n'); 2498 // A dead def is not a problem. 2499 if (End.isDead()) 2500 break; 2501 TaintExtent.push_back(std::make_pair(End, TaintedLanes)); 2502 2503 // Check for another def in the MBB. 2504 if (++OtherI == Other.LR.end() || OtherI->start >= MBBEnd) 2505 break; 2506 2507 // Lanes written by the new def are no longer tainted. 2508 const Val &OV = Other.Vals[OtherI->valno->id]; 2509 TaintedLanes &= ~OV.WriteLanes; 2510 if (!OV.RedefVNI) 2511 break; 2512 } while (TaintedLanes.any()); 2513 return true; 2514 } 2515 2516 bool JoinVals::usesLanes(const MachineInstr &MI, unsigned Reg, unsigned SubIdx, 2517 LaneBitmask Lanes) const { 2518 if (MI.isDebugValue()) 2519 return false; 2520 for (const MachineOperand &MO : MI.operands()) { 2521 if (!MO.isReg() || MO.isDef() || MO.getReg() != Reg) 2522 continue; 2523 if (!MO.readsReg()) 2524 continue; 2525 unsigned S = TRI->composeSubRegIndices(SubIdx, MO.getSubReg()); 2526 if ((Lanes & TRI->getSubRegIndexLaneMask(S)).any()) 2527 return true; 2528 } 2529 return false; 2530 } 2531 2532 bool JoinVals::resolveConflicts(JoinVals &Other) { 2533 for (unsigned i = 0, e = LR.getNumValNums(); i != e; ++i) { 2534 Val &V = Vals[i]; 2535 assert (V.Resolution != CR_Impossible && "Unresolvable conflict"); 2536 if (V.Resolution != CR_Unresolved) 2537 continue; 2538 DEBUG(dbgs() << "\t\tconflict at " << PrintReg(Reg) << ':' << i 2539 << '@' << LR.getValNumInfo(i)->def << '\n'); 2540 if (SubRangeJoin) 2541 return false; 2542 2543 ++NumLaneConflicts; 2544 assert(V.OtherVNI && "Inconsistent conflict resolution."); 2545 VNInfo *VNI = LR.getValNumInfo(i); 2546 const Val &OtherV = Other.Vals[V.OtherVNI->id]; 2547 2548 // VNI is known to clobber some lanes in OtherVNI. If we go ahead with the 2549 // join, those lanes will be tainted with a wrong value. Get the extent of 2550 // the tainted lanes. 2551 LaneBitmask TaintedLanes = V.WriteLanes & OtherV.ValidLanes; 2552 SmallVector<std::pair<SlotIndex, LaneBitmask>, 8> TaintExtent; 2553 if (!taintExtent(i, TaintedLanes, Other, TaintExtent)) 2554 // Tainted lanes would extend beyond the basic block. 2555 return false; 2556 2557 assert(!TaintExtent.empty() && "There should be at least one conflict."); 2558 2559 // Now look at the instructions from VNI->def to TaintExtent (inclusive). 2560 MachineBasicBlock *MBB = Indexes->getMBBFromIndex(VNI->def); 2561 MachineBasicBlock::iterator MI = MBB->begin(); 2562 if (!VNI->isPHIDef()) { 2563 MI = Indexes->getInstructionFromIndex(VNI->def); 2564 // No need to check the instruction defining VNI for reads. 2565 ++MI; 2566 } 2567 assert(!SlotIndex::isSameInstr(VNI->def, TaintExtent.front().first) && 2568 "Interference ends on VNI->def. Should have been handled earlier"); 2569 MachineInstr *LastMI = 2570 Indexes->getInstructionFromIndex(TaintExtent.front().first); 2571 assert(LastMI && "Range must end at a proper instruction"); 2572 unsigned TaintNum = 0; 2573 for (;;) { 2574 assert(MI != MBB->end() && "Bad LastMI"); 2575 if (usesLanes(*MI, Other.Reg, Other.SubIdx, TaintedLanes)) { 2576 DEBUG(dbgs() << "\t\ttainted lanes used by: " << *MI); 2577 return false; 2578 } 2579 // LastMI is the last instruction to use the current value. 2580 if (&*MI == LastMI) { 2581 if (++TaintNum == TaintExtent.size()) 2582 break; 2583 LastMI = Indexes->getInstructionFromIndex(TaintExtent[TaintNum].first); 2584 assert(LastMI && "Range must end at a proper instruction"); 2585 TaintedLanes = TaintExtent[TaintNum].second; 2586 } 2587 ++MI; 2588 } 2589 2590 // The tainted lanes are unused. 2591 V.Resolution = CR_Replace; 2592 ++NumLaneResolves; 2593 } 2594 return true; 2595 } 2596 2597 bool JoinVals::isPrunedValue(unsigned ValNo, JoinVals &Other) { 2598 Val &V = Vals[ValNo]; 2599 if (V.Pruned || V.PrunedComputed) 2600 return V.Pruned; 2601 2602 if (V.Resolution != CR_Erase && V.Resolution != CR_Merge) 2603 return V.Pruned; 2604 2605 // Follow copies up the dominator tree and check if any intermediate value 2606 // has been pruned. 2607 V.PrunedComputed = true; 2608 V.Pruned = Other.isPrunedValue(V.OtherVNI->id, *this); 2609 return V.Pruned; 2610 } 2611 2612 void JoinVals::pruneValues(JoinVals &Other, 2613 SmallVectorImpl<SlotIndex> &EndPoints, 2614 bool changeInstrs) { 2615 for (unsigned i = 0, e = LR.getNumValNums(); i != e; ++i) { 2616 SlotIndex Def = LR.getValNumInfo(i)->def; 2617 switch (Vals[i].Resolution) { 2618 case CR_Keep: 2619 break; 2620 case CR_Replace: { 2621 // This value takes precedence over the value in Other.LR. 2622 LIS->pruneValue(Other.LR, Def, &EndPoints); 2623 // Check if we're replacing an IMPLICIT_DEF value. The IMPLICIT_DEF 2624 // instructions are only inserted to provide a live-out value for PHI 2625 // predecessors, so the instruction should simply go away once its value 2626 // has been replaced. 2627 Val &OtherV = Other.Vals[Vals[i].OtherVNI->id]; 2628 bool EraseImpDef = OtherV.ErasableImplicitDef && 2629 OtherV.Resolution == CR_Keep; 2630 if (!Def.isBlock()) { 2631 if (changeInstrs) { 2632 // Remove <def,read-undef> flags. This def is now a partial redef. 2633 // Also remove <def,dead> flags since the joined live range will 2634 // continue past this instruction. 2635 for (MachineOperand &MO : 2636 Indexes->getInstructionFromIndex(Def)->operands()) { 2637 if (MO.isReg() && MO.isDef() && MO.getReg() == Reg) { 2638 if (MO.getSubReg() != 0) 2639 MO.setIsUndef(EraseImpDef); 2640 MO.setIsDead(false); 2641 } 2642 } 2643 } 2644 // This value will reach instructions below, but we need to make sure 2645 // the live range also reaches the instruction at Def. 2646 if (!EraseImpDef) 2647 EndPoints.push_back(Def); 2648 } 2649 DEBUG(dbgs() << "\t\tpruned " << PrintReg(Other.Reg) << " at " << Def 2650 << ": " << Other.LR << '\n'); 2651 break; 2652 } 2653 case CR_Erase: 2654 case CR_Merge: 2655 if (isPrunedValue(i, Other)) { 2656 // This value is ultimately a copy of a pruned value in LR or Other.LR. 2657 // We can no longer trust the value mapping computed by 2658 // computeAssignment(), the value that was originally copied could have 2659 // been replaced. 2660 LIS->pruneValue(LR, Def, &EndPoints); 2661 DEBUG(dbgs() << "\t\tpruned all of " << PrintReg(Reg) << " at " 2662 << Def << ": " << LR << '\n'); 2663 } 2664 break; 2665 case CR_Unresolved: 2666 case CR_Impossible: 2667 llvm_unreachable("Unresolved conflicts"); 2668 } 2669 } 2670 } 2671 2672 void JoinVals::pruneSubRegValues(LiveInterval &LI, LaneBitmask &ShrinkMask) { 2673 // Look for values being erased. 2674 bool DidPrune = false; 2675 for (unsigned i = 0, e = LR.getNumValNums(); i != e; ++i) { 2676 // We should trigger in all cases in which eraseInstrs() does something. 2677 // match what eraseInstrs() is doing, print a message so 2678 if (Vals[i].Resolution != CR_Erase && 2679 (Vals[i].Resolution != CR_Keep || !Vals[i].ErasableImplicitDef || 2680 !Vals[i].Pruned)) 2681 continue; 2682 2683 // Check subranges at the point where the copy will be removed. 2684 SlotIndex Def = LR.getValNumInfo(i)->def; 2685 // Print message so mismatches with eraseInstrs() can be diagnosed. 2686 DEBUG(dbgs() << "\t\tExpecting instruction removal at " << Def << '\n'); 2687 for (LiveInterval::SubRange &S : LI.subranges()) { 2688 LiveQueryResult Q = S.Query(Def); 2689 2690 // If a subrange starts at the copy then an undefined value has been 2691 // copied and we must remove that subrange value as well. 2692 VNInfo *ValueOut = Q.valueOutOrDead(); 2693 if (ValueOut != nullptr && Q.valueIn() == nullptr) { 2694 DEBUG(dbgs() << "\t\tPrune sublane " << PrintLaneMask(S.LaneMask) 2695 << " at " << Def << "\n"); 2696 LIS->pruneValue(S, Def, nullptr); 2697 DidPrune = true; 2698 // Mark value number as unused. 2699 ValueOut->markUnused(); 2700 continue; 2701 } 2702 // If a subrange ends at the copy, then a value was copied but only 2703 // partially used later. Shrink the subregister range appropriately. 2704 if (Q.valueIn() != nullptr && Q.valueOut() == nullptr) { 2705 DEBUG(dbgs() << "\t\tDead uses at sublane " << PrintLaneMask(S.LaneMask) 2706 << " at " << Def << "\n"); 2707 ShrinkMask |= S.LaneMask; 2708 } 2709 } 2710 } 2711 if (DidPrune) 2712 LI.removeEmptySubRanges(); 2713 } 2714 2715 /// Check if any of the subranges of @p LI contain a definition at @p Def. 2716 static bool isDefInSubRange(LiveInterval &LI, SlotIndex Def) { 2717 for (LiveInterval::SubRange &SR : LI.subranges()) { 2718 if (VNInfo *VNI = SR.Query(Def).valueOutOrDead()) 2719 if (VNI->def == Def) 2720 return true; 2721 } 2722 return false; 2723 } 2724 2725 void JoinVals::pruneMainSegments(LiveInterval &LI, bool &ShrinkMainRange) { 2726 assert(&static_cast<LiveRange&>(LI) == &LR); 2727 2728 for (unsigned i = 0, e = LR.getNumValNums(); i != e; ++i) { 2729 if (Vals[i].Resolution != CR_Keep) 2730 continue; 2731 VNInfo *VNI = LR.getValNumInfo(i); 2732 if (VNI->isUnused() || VNI->isPHIDef() || isDefInSubRange(LI, VNI->def)) 2733 continue; 2734 Vals[i].Pruned = true; 2735 ShrinkMainRange = true; 2736 } 2737 } 2738 2739 void JoinVals::removeImplicitDefs() { 2740 for (unsigned i = 0, e = LR.getNumValNums(); i != e; ++i) { 2741 Val &V = Vals[i]; 2742 if (V.Resolution != CR_Keep || !V.ErasableImplicitDef || !V.Pruned) 2743 continue; 2744 2745 VNInfo *VNI = LR.getValNumInfo(i); 2746 VNI->markUnused(); 2747 LR.removeValNo(VNI); 2748 } 2749 } 2750 2751 void JoinVals::eraseInstrs(SmallPtrSetImpl<MachineInstr*> &ErasedInstrs, 2752 SmallVectorImpl<unsigned> &ShrinkRegs, 2753 LiveInterval *LI) { 2754 for (unsigned i = 0, e = LR.getNumValNums(); i != e; ++i) { 2755 // Get the def location before markUnused() below invalidates it. 2756 SlotIndex Def = LR.getValNumInfo(i)->def; 2757 switch (Vals[i].Resolution) { 2758 case CR_Keep: { 2759 // If an IMPLICIT_DEF value is pruned, it doesn't serve a purpose any 2760 // longer. The IMPLICIT_DEF instructions are only inserted by 2761 // PHIElimination to guarantee that all PHI predecessors have a value. 2762 if (!Vals[i].ErasableImplicitDef || !Vals[i].Pruned) 2763 break; 2764 // Remove value number i from LR. 2765 // For intervals with subranges, removing a segment from the main range 2766 // may require extending the previous segment: for each definition of 2767 // a subregister, there will be a corresponding def in the main range. 2768 // That def may fall in the middle of a segment from another subrange. 2769 // In such cases, removing this def from the main range must be 2770 // complemented by extending the main range to account for the liveness 2771 // of the other subrange. 2772 VNInfo *VNI = LR.getValNumInfo(i); 2773 SlotIndex Def = VNI->def; 2774 // The new end point of the main range segment to be extended. 2775 SlotIndex NewEnd; 2776 if (LI != nullptr) { 2777 LiveRange::iterator I = LR.FindSegmentContaining(Def); 2778 assert(I != LR.end()); 2779 // Do not extend beyond the end of the segment being removed. 2780 // The segment may have been pruned in preparation for joining 2781 // live ranges. 2782 NewEnd = I->end; 2783 } 2784 2785 LR.removeValNo(VNI); 2786 // Note that this VNInfo is reused and still referenced in NewVNInfo, 2787 // make it appear like an unused value number. 2788 VNI->markUnused(); 2789 2790 if (LI != nullptr && LI->hasSubRanges()) { 2791 assert(static_cast<LiveRange*>(LI) == &LR); 2792 // Determine the end point based on the subrange information: 2793 // minimum of (earliest def of next segment, 2794 // latest end point of containing segment) 2795 SlotIndex ED, LE; 2796 for (LiveInterval::SubRange &SR : LI->subranges()) { 2797 LiveRange::iterator I = SR.find(Def); 2798 if (I == SR.end()) 2799 continue; 2800 if (I->start > Def) 2801 ED = ED.isValid() ? std::min(ED, I->start) : I->start; 2802 else 2803 LE = LE.isValid() ? std::max(LE, I->end) : I->end; 2804 } 2805 if (LE.isValid()) 2806 NewEnd = std::min(NewEnd, LE); 2807 if (ED.isValid()) 2808 NewEnd = std::min(NewEnd, ED); 2809 2810 // We only want to do the extension if there was a subrange that 2811 // was live across Def. 2812 if (LE.isValid()) { 2813 LiveRange::iterator S = LR.find(Def); 2814 if (S != LR.begin()) 2815 std::prev(S)->end = NewEnd; 2816 } 2817 } 2818 DEBUG({ 2819 dbgs() << "\t\tremoved " << i << '@' << Def << ": " << LR << '\n'; 2820 if (LI != nullptr) 2821 dbgs() << "\t\t LHS = " << *LI << '\n'; 2822 }); 2823 LLVM_FALLTHROUGH; 2824 } 2825 2826 case CR_Erase: { 2827 MachineInstr *MI = Indexes->getInstructionFromIndex(Def); 2828 assert(MI && "No instruction to erase"); 2829 if (MI->isCopy()) { 2830 unsigned Reg = MI->getOperand(1).getReg(); 2831 if (TargetRegisterInfo::isVirtualRegister(Reg) && 2832 Reg != CP.getSrcReg() && Reg != CP.getDstReg()) 2833 ShrinkRegs.push_back(Reg); 2834 } 2835 ErasedInstrs.insert(MI); 2836 DEBUG(dbgs() << "\t\terased:\t" << Def << '\t' << *MI); 2837 LIS->RemoveMachineInstrFromMaps(*MI); 2838 MI->eraseFromParent(); 2839 break; 2840 } 2841 default: 2842 break; 2843 } 2844 } 2845 } 2846 2847 void RegisterCoalescer::joinSubRegRanges(LiveRange &LRange, LiveRange &RRange, 2848 LaneBitmask LaneMask, 2849 const CoalescerPair &CP) { 2850 SmallVector<VNInfo*, 16> NewVNInfo; 2851 JoinVals RHSVals(RRange, CP.getSrcReg(), CP.getSrcIdx(), LaneMask, 2852 NewVNInfo, CP, LIS, TRI, true, true); 2853 JoinVals LHSVals(LRange, CP.getDstReg(), CP.getDstIdx(), LaneMask, 2854 NewVNInfo, CP, LIS, TRI, true, true); 2855 2856 // Compute NewVNInfo and resolve conflicts (see also joinVirtRegs()) 2857 // We should be able to resolve all conflicts here as we could successfully do 2858 // it on the mainrange already. There is however a problem when multiple 2859 // ranges get mapped to the "overflow" lane mask bit which creates unexpected 2860 // interferences. 2861 if (!LHSVals.mapValues(RHSVals) || !RHSVals.mapValues(LHSVals)) { 2862 // We already determined that it is legal to merge the intervals, so this 2863 // should never fail. 2864 llvm_unreachable("*** Couldn't join subrange!\n"); 2865 } 2866 if (!LHSVals.resolveConflicts(RHSVals) || 2867 !RHSVals.resolveConflicts(LHSVals)) { 2868 // We already determined that it is legal to merge the intervals, so this 2869 // should never fail. 2870 llvm_unreachable("*** Couldn't join subrange!\n"); 2871 } 2872 2873 // The merging algorithm in LiveInterval::join() can't handle conflicting 2874 // value mappings, so we need to remove any live ranges that overlap a 2875 // CR_Replace resolution. Collect a set of end points that can be used to 2876 // restore the live range after joining. 2877 SmallVector<SlotIndex, 8> EndPoints; 2878 LHSVals.pruneValues(RHSVals, EndPoints, false); 2879 RHSVals.pruneValues(LHSVals, EndPoints, false); 2880 2881 LHSVals.removeImplicitDefs(); 2882 RHSVals.removeImplicitDefs(); 2883 2884 LRange.verify(); 2885 RRange.verify(); 2886 2887 // Join RRange into LHS. 2888 LRange.join(RRange, LHSVals.getAssignments(), RHSVals.getAssignments(), 2889 NewVNInfo); 2890 2891 DEBUG(dbgs() << "\t\tjoined lanes: " << LRange << "\n"); 2892 if (EndPoints.empty()) 2893 return; 2894 2895 // Recompute the parts of the live range we had to remove because of 2896 // CR_Replace conflicts. 2897 DEBUG({ 2898 dbgs() << "\t\trestoring liveness to " << EndPoints.size() << " points: "; 2899 for (unsigned i = 0, n = EndPoints.size(); i != n; ++i) { 2900 dbgs() << EndPoints[i]; 2901 if (i != n-1) 2902 dbgs() << ','; 2903 } 2904 dbgs() << ": " << LRange << '\n'; 2905 }); 2906 LIS->extendToIndices(LRange, EndPoints); 2907 } 2908 2909 void RegisterCoalescer::mergeSubRangeInto(LiveInterval &LI, 2910 const LiveRange &ToMerge, 2911 LaneBitmask LaneMask, 2912 CoalescerPair &CP) { 2913 BumpPtrAllocator &Allocator = LIS->getVNInfoAllocator(); 2914 LI.refineSubRanges(Allocator, LaneMask, 2915 [this,&Allocator,&ToMerge,&CP](LiveInterval::SubRange &SR) { 2916 if (SR.empty()) { 2917 SR.assign(ToMerge, Allocator); 2918 } else { 2919 // joinSubRegRange() destroys the merged range, so we need a copy. 2920 LiveRange RangeCopy(ToMerge, Allocator); 2921 joinSubRegRanges(SR, RangeCopy, SR.LaneMask, CP); 2922 } 2923 }); 2924 } 2925 2926 bool RegisterCoalescer::joinVirtRegs(CoalescerPair &CP) { 2927 SmallVector<VNInfo*, 16> NewVNInfo; 2928 LiveInterval &RHS = LIS->getInterval(CP.getSrcReg()); 2929 LiveInterval &LHS = LIS->getInterval(CP.getDstReg()); 2930 bool TrackSubRegLiveness = MRI->shouldTrackSubRegLiveness(*CP.getNewRC()); 2931 JoinVals RHSVals(RHS, CP.getSrcReg(), CP.getSrcIdx(), LaneBitmask::getNone(), 2932 NewVNInfo, CP, LIS, TRI, false, TrackSubRegLiveness); 2933 JoinVals LHSVals(LHS, CP.getDstReg(), CP.getDstIdx(), LaneBitmask::getNone(), 2934 NewVNInfo, CP, LIS, TRI, false, TrackSubRegLiveness); 2935 2936 DEBUG(dbgs() << "\t\tRHS = " << RHS 2937 << "\n\t\tLHS = " << LHS 2938 << '\n'); 2939 2940 // First compute NewVNInfo and the simple value mappings. 2941 // Detect impossible conflicts early. 2942 if (!LHSVals.mapValues(RHSVals) || !RHSVals.mapValues(LHSVals)) 2943 return false; 2944 2945 // Some conflicts can only be resolved after all values have been mapped. 2946 if (!LHSVals.resolveConflicts(RHSVals) || !RHSVals.resolveConflicts(LHSVals)) 2947 return false; 2948 2949 // All clear, the live ranges can be merged. 2950 if (RHS.hasSubRanges() || LHS.hasSubRanges()) { 2951 BumpPtrAllocator &Allocator = LIS->getVNInfoAllocator(); 2952 2953 // Transform lanemasks from the LHS to masks in the coalesced register and 2954 // create initial subranges if necessary. 2955 unsigned DstIdx = CP.getDstIdx(); 2956 if (!LHS.hasSubRanges()) { 2957 LaneBitmask Mask = DstIdx == 0 ? CP.getNewRC()->getLaneMask() 2958 : TRI->getSubRegIndexLaneMask(DstIdx); 2959 // LHS must support subregs or we wouldn't be in this codepath. 2960 assert(Mask.any()); 2961 LHS.createSubRangeFrom(Allocator, Mask, LHS); 2962 } else if (DstIdx != 0) { 2963 // Transform LHS lanemasks to new register class if necessary. 2964 for (LiveInterval::SubRange &R : LHS.subranges()) { 2965 LaneBitmask Mask = TRI->composeSubRegIndexLaneMask(DstIdx, R.LaneMask); 2966 R.LaneMask = Mask; 2967 } 2968 } 2969 DEBUG(dbgs() << "\t\tLHST = " << PrintReg(CP.getDstReg()) 2970 << ' ' << LHS << '\n'); 2971 2972 // Determine lanemasks of RHS in the coalesced register and merge subranges. 2973 unsigned SrcIdx = CP.getSrcIdx(); 2974 if (!RHS.hasSubRanges()) { 2975 LaneBitmask Mask = SrcIdx == 0 ? CP.getNewRC()->getLaneMask() 2976 : TRI->getSubRegIndexLaneMask(SrcIdx); 2977 mergeSubRangeInto(LHS, RHS, Mask, CP); 2978 } else { 2979 // Pair up subranges and merge. 2980 for (LiveInterval::SubRange &R : RHS.subranges()) { 2981 LaneBitmask Mask = TRI->composeSubRegIndexLaneMask(SrcIdx, R.LaneMask); 2982 mergeSubRangeInto(LHS, R, Mask, CP); 2983 } 2984 } 2985 DEBUG(dbgs() << "\tJoined SubRanges " << LHS << "\n"); 2986 2987 // Pruning implicit defs from subranges may result in the main range 2988 // having stale segments. 2989 LHSVals.pruneMainSegments(LHS, ShrinkMainRange); 2990 2991 LHSVals.pruneSubRegValues(LHS, ShrinkMask); 2992 RHSVals.pruneSubRegValues(LHS, ShrinkMask); 2993 } 2994 2995 // The merging algorithm in LiveInterval::join() can't handle conflicting 2996 // value mappings, so we need to remove any live ranges that overlap a 2997 // CR_Replace resolution. Collect a set of end points that can be used to 2998 // restore the live range after joining. 2999 SmallVector<SlotIndex, 8> EndPoints; 3000 LHSVals.pruneValues(RHSVals, EndPoints, true); 3001 RHSVals.pruneValues(LHSVals, EndPoints, true); 3002 3003 // Erase COPY and IMPLICIT_DEF instructions. This may cause some external 3004 // registers to require trimming. 3005 SmallVector<unsigned, 8> ShrinkRegs; 3006 LHSVals.eraseInstrs(ErasedInstrs, ShrinkRegs, &LHS); 3007 RHSVals.eraseInstrs(ErasedInstrs, ShrinkRegs); 3008 while (!ShrinkRegs.empty()) 3009 shrinkToUses(&LIS->getInterval(ShrinkRegs.pop_back_val())); 3010 3011 // Join RHS into LHS. 3012 LHS.join(RHS, LHSVals.getAssignments(), RHSVals.getAssignments(), NewVNInfo); 3013 3014 // Kill flags are going to be wrong if the live ranges were overlapping. 3015 // Eventually, we should simply clear all kill flags when computing live 3016 // ranges. They are reinserted after register allocation. 3017 MRI->clearKillFlags(LHS.reg); 3018 MRI->clearKillFlags(RHS.reg); 3019 3020 if (!EndPoints.empty()) { 3021 // Recompute the parts of the live range we had to remove because of 3022 // CR_Replace conflicts. 3023 DEBUG({ 3024 dbgs() << "\t\trestoring liveness to " << EndPoints.size() << " points: "; 3025 for (unsigned i = 0, n = EndPoints.size(); i != n; ++i) { 3026 dbgs() << EndPoints[i]; 3027 if (i != n-1) 3028 dbgs() << ','; 3029 } 3030 dbgs() << ": " << LHS << '\n'; 3031 }); 3032 LIS->extendToIndices((LiveRange&)LHS, EndPoints); 3033 } 3034 3035 return true; 3036 } 3037 3038 bool RegisterCoalescer::joinIntervals(CoalescerPair &CP) { 3039 return CP.isPhys() ? joinReservedPhysReg(CP) : joinVirtRegs(CP); 3040 } 3041 3042 namespace { 3043 /// Information concerning MBB coalescing priority. 3044 struct MBBPriorityInfo { 3045 MachineBasicBlock *MBB; 3046 unsigned Depth; 3047 bool IsSplit; 3048 3049 MBBPriorityInfo(MachineBasicBlock *mbb, unsigned depth, bool issplit) 3050 : MBB(mbb), Depth(depth), IsSplit(issplit) {} 3051 }; 3052 } 3053 3054 /// C-style comparator that sorts first based on the loop depth of the basic 3055 /// block (the unsigned), and then on the MBB number. 3056 /// 3057 /// EnableGlobalCopies assumes that the primary sort key is loop depth. 3058 static int compareMBBPriority(const MBBPriorityInfo *LHS, 3059 const MBBPriorityInfo *RHS) { 3060 // Deeper loops first 3061 if (LHS->Depth != RHS->Depth) 3062 return LHS->Depth > RHS->Depth ? -1 : 1; 3063 3064 // Try to unsplit critical edges next. 3065 if (LHS->IsSplit != RHS->IsSplit) 3066 return LHS->IsSplit ? -1 : 1; 3067 3068 // Prefer blocks that are more connected in the CFG. This takes care of 3069 // the most difficult copies first while intervals are short. 3070 unsigned cl = LHS->MBB->pred_size() + LHS->MBB->succ_size(); 3071 unsigned cr = RHS->MBB->pred_size() + RHS->MBB->succ_size(); 3072 if (cl != cr) 3073 return cl > cr ? -1 : 1; 3074 3075 // As a last resort, sort by block number. 3076 return LHS->MBB->getNumber() < RHS->MBB->getNumber() ? -1 : 1; 3077 } 3078 3079 /// \returns true if the given copy uses or defines a local live range. 3080 static bool isLocalCopy(MachineInstr *Copy, const LiveIntervals *LIS) { 3081 if (!Copy->isCopy()) 3082 return false; 3083 3084 if (Copy->getOperand(1).isUndef()) 3085 return false; 3086 3087 unsigned SrcReg = Copy->getOperand(1).getReg(); 3088 unsigned DstReg = Copy->getOperand(0).getReg(); 3089 if (TargetRegisterInfo::isPhysicalRegister(SrcReg) 3090 || TargetRegisterInfo::isPhysicalRegister(DstReg)) 3091 return false; 3092 3093 return LIS->intervalIsInOneMBB(LIS->getInterval(SrcReg)) 3094 || LIS->intervalIsInOneMBB(LIS->getInterval(DstReg)); 3095 } 3096 3097 bool RegisterCoalescer:: 3098 copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList) { 3099 bool Progress = false; 3100 for (unsigned i = 0, e = CurrList.size(); i != e; ++i) { 3101 if (!CurrList[i]) 3102 continue; 3103 // Skip instruction pointers that have already been erased, for example by 3104 // dead code elimination. 3105 if (ErasedInstrs.count(CurrList[i])) { 3106 CurrList[i] = nullptr; 3107 continue; 3108 } 3109 bool Again = false; 3110 bool Success = joinCopy(CurrList[i], Again); 3111 Progress |= Success; 3112 if (Success || !Again) 3113 CurrList[i] = nullptr; 3114 } 3115 return Progress; 3116 } 3117 3118 /// Check if DstReg is a terminal node. 3119 /// I.e., it does not have any affinity other than \p Copy. 3120 static bool isTerminalReg(unsigned DstReg, const MachineInstr &Copy, 3121 const MachineRegisterInfo *MRI) { 3122 assert(Copy.isCopyLike()); 3123 // Check if the destination of this copy as any other affinity. 3124 for (const MachineInstr &MI : MRI->reg_nodbg_instructions(DstReg)) 3125 if (&MI != &Copy && MI.isCopyLike()) 3126 return false; 3127 return true; 3128 } 3129 3130 bool RegisterCoalescer::applyTerminalRule(const MachineInstr &Copy) const { 3131 assert(Copy.isCopyLike()); 3132 if (!UseTerminalRule) 3133 return false; 3134 unsigned DstReg, DstSubReg, SrcReg, SrcSubReg; 3135 isMoveInstr(*TRI, &Copy, SrcReg, DstReg, SrcSubReg, DstSubReg); 3136 // Check if the destination of this copy has any other affinity. 3137 if (TargetRegisterInfo::isPhysicalRegister(DstReg) || 3138 // If SrcReg is a physical register, the copy won't be coalesced. 3139 // Ignoring it may have other side effect (like missing 3140 // rematerialization). So keep it. 3141 TargetRegisterInfo::isPhysicalRegister(SrcReg) || 3142 !isTerminalReg(DstReg, Copy, MRI)) 3143 return false; 3144 3145 // DstReg is a terminal node. Check if it interferes with any other 3146 // copy involving SrcReg. 3147 const MachineBasicBlock *OrigBB = Copy.getParent(); 3148 const LiveInterval &DstLI = LIS->getInterval(DstReg); 3149 for (const MachineInstr &MI : MRI->reg_nodbg_instructions(SrcReg)) { 3150 // Technically we should check if the weight of the new copy is 3151 // interesting compared to the other one and update the weight 3152 // of the copies accordingly. However, this would only work if 3153 // we would gather all the copies first then coalesce, whereas 3154 // right now we interleave both actions. 3155 // For now, just consider the copies that are in the same block. 3156 if (&MI == &Copy || !MI.isCopyLike() || MI.getParent() != OrigBB) 3157 continue; 3158 unsigned OtherReg, OtherSubReg, OtherSrcReg, OtherSrcSubReg; 3159 isMoveInstr(*TRI, &Copy, OtherSrcReg, OtherReg, OtherSrcSubReg, 3160 OtherSubReg); 3161 if (OtherReg == SrcReg) 3162 OtherReg = OtherSrcReg; 3163 // Check if OtherReg is a non-terminal. 3164 if (TargetRegisterInfo::isPhysicalRegister(OtherReg) || 3165 isTerminalReg(OtherReg, MI, MRI)) 3166 continue; 3167 // Check that OtherReg interfere with DstReg. 3168 if (LIS->getInterval(OtherReg).overlaps(DstLI)) { 3169 DEBUG(dbgs() << "Apply terminal rule for: " << PrintReg(DstReg) << '\n'); 3170 return true; 3171 } 3172 } 3173 return false; 3174 } 3175 3176 void 3177 RegisterCoalescer::copyCoalesceInMBB(MachineBasicBlock *MBB) { 3178 DEBUG(dbgs() << MBB->getName() << ":\n"); 3179 3180 // Collect all copy-like instructions in MBB. Don't start coalescing anything 3181 // yet, it might invalidate the iterator. 3182 const unsigned PrevSize = WorkList.size(); 3183 if (JoinGlobalCopies) { 3184 SmallVector<MachineInstr*, 2> LocalTerminals; 3185 SmallVector<MachineInstr*, 2> GlobalTerminals; 3186 // Coalesce copies bottom-up to coalesce local defs before local uses. They 3187 // are not inherently easier to resolve, but slightly preferable until we 3188 // have local live range splitting. In particular this is required by 3189 // cmp+jmp macro fusion. 3190 for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end(); 3191 MII != E; ++MII) { 3192 if (!MII->isCopyLike()) 3193 continue; 3194 bool ApplyTerminalRule = applyTerminalRule(*MII); 3195 if (isLocalCopy(&(*MII), LIS)) { 3196 if (ApplyTerminalRule) 3197 LocalTerminals.push_back(&(*MII)); 3198 else 3199 LocalWorkList.push_back(&(*MII)); 3200 } else { 3201 if (ApplyTerminalRule) 3202 GlobalTerminals.push_back(&(*MII)); 3203 else 3204 WorkList.push_back(&(*MII)); 3205 } 3206 } 3207 // Append the copies evicted by the terminal rule at the end of the list. 3208 LocalWorkList.append(LocalTerminals.begin(), LocalTerminals.end()); 3209 WorkList.append(GlobalTerminals.begin(), GlobalTerminals.end()); 3210 } 3211 else { 3212 SmallVector<MachineInstr*, 2> Terminals; 3213 for (MachineInstr &MII : *MBB) 3214 if (MII.isCopyLike()) { 3215 if (applyTerminalRule(MII)) 3216 Terminals.push_back(&MII); 3217 else 3218 WorkList.push_back(&MII); 3219 } 3220 // Append the copies evicted by the terminal rule at the end of the list. 3221 WorkList.append(Terminals.begin(), Terminals.end()); 3222 } 3223 // Try coalescing the collected copies immediately, and remove the nulls. 3224 // This prevents the WorkList from getting too large since most copies are 3225 // joinable on the first attempt. 3226 MutableArrayRef<MachineInstr*> 3227 CurrList(WorkList.begin() + PrevSize, WorkList.end()); 3228 if (copyCoalesceWorkList(CurrList)) 3229 WorkList.erase(std::remove(WorkList.begin() + PrevSize, WorkList.end(), 3230 nullptr), WorkList.end()); 3231 } 3232 3233 void RegisterCoalescer::coalesceLocals() { 3234 copyCoalesceWorkList(LocalWorkList); 3235 for (unsigned j = 0, je = LocalWorkList.size(); j != je; ++j) { 3236 if (LocalWorkList[j]) 3237 WorkList.push_back(LocalWorkList[j]); 3238 } 3239 LocalWorkList.clear(); 3240 } 3241 3242 void RegisterCoalescer::joinAllIntervals() { 3243 DEBUG(dbgs() << "********** JOINING INTERVALS ***********\n"); 3244 assert(WorkList.empty() && LocalWorkList.empty() && "Old data still around."); 3245 3246 std::vector<MBBPriorityInfo> MBBs; 3247 MBBs.reserve(MF->size()); 3248 for (MachineFunction::iterator I = MF->begin(), E = MF->end(); I != E; ++I) { 3249 MachineBasicBlock *MBB = &*I; 3250 MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB), 3251 JoinSplitEdges && isSplitEdge(MBB))); 3252 } 3253 array_pod_sort(MBBs.begin(), MBBs.end(), compareMBBPriority); 3254 3255 // Coalesce intervals in MBB priority order. 3256 unsigned CurrDepth = UINT_MAX; 3257 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) { 3258 // Try coalescing the collected local copies for deeper loops. 3259 if (JoinGlobalCopies && MBBs[i].Depth < CurrDepth) { 3260 coalesceLocals(); 3261 CurrDepth = MBBs[i].Depth; 3262 } 3263 copyCoalesceInMBB(MBBs[i].MBB); 3264 } 3265 coalesceLocals(); 3266 3267 // Joining intervals can allow other intervals to be joined. Iteratively join 3268 // until we make no progress. 3269 while (copyCoalesceWorkList(WorkList)) 3270 /* empty */ ; 3271 } 3272 3273 void RegisterCoalescer::releaseMemory() { 3274 ErasedInstrs.clear(); 3275 WorkList.clear(); 3276 DeadDefs.clear(); 3277 InflateRegs.clear(); 3278 } 3279 3280 bool RegisterCoalescer::runOnMachineFunction(MachineFunction &fn) { 3281 MF = &fn; 3282 MRI = &fn.getRegInfo(); 3283 TM = &fn.getTarget(); 3284 const TargetSubtargetInfo &STI = fn.getSubtarget(); 3285 TRI = STI.getRegisterInfo(); 3286 TII = STI.getInstrInfo(); 3287 LIS = &getAnalysis<LiveIntervals>(); 3288 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); 3289 Loops = &getAnalysis<MachineLoopInfo>(); 3290 if (EnableGlobalCopies == cl::BOU_UNSET) 3291 JoinGlobalCopies = STI.enableJoinGlobalCopies(); 3292 else 3293 JoinGlobalCopies = (EnableGlobalCopies == cl::BOU_TRUE); 3294 3295 // The MachineScheduler does not currently require JoinSplitEdges. This will 3296 // either be enabled unconditionally or replaced by a more general live range 3297 // splitting optimization. 3298 JoinSplitEdges = EnableJoinSplits; 3299 3300 DEBUG(dbgs() << "********** SIMPLE REGISTER COALESCING **********\n" 3301 << "********** Function: " << MF->getName() << '\n'); 3302 3303 if (VerifyCoalescing) 3304 MF->verify(this, "Before register coalescing"); 3305 3306 RegClassInfo.runOnMachineFunction(fn); 3307 3308 // Join (coalesce) intervals if requested. 3309 if (EnableJoining) 3310 joinAllIntervals(); 3311 3312 // After deleting a lot of copies, register classes may be less constrained. 3313 // Removing sub-register operands may allow GR32_ABCD -> GR32 and DPR_VFP2 -> 3314 // DPR inflation. 3315 array_pod_sort(InflateRegs.begin(), InflateRegs.end()); 3316 InflateRegs.erase(std::unique(InflateRegs.begin(), InflateRegs.end()), 3317 InflateRegs.end()); 3318 DEBUG(dbgs() << "Trying to inflate " << InflateRegs.size() << " regs.\n"); 3319 for (unsigned i = 0, e = InflateRegs.size(); i != e; ++i) { 3320 unsigned Reg = InflateRegs[i]; 3321 if (MRI->reg_nodbg_empty(Reg)) 3322 continue; 3323 if (MRI->recomputeRegClass(Reg)) { 3324 DEBUG(dbgs() << PrintReg(Reg) << " inflated to " 3325 << TRI->getRegClassName(MRI->getRegClass(Reg)) << '\n'); 3326 ++NumInflated; 3327 3328 LiveInterval &LI = LIS->getInterval(Reg); 3329 if (LI.hasSubRanges()) { 3330 // If the inflated register class does not support subregisters anymore 3331 // remove the subranges. 3332 if (!MRI->shouldTrackSubRegLiveness(Reg)) { 3333 LI.clearSubRanges(); 3334 } else { 3335 #ifndef NDEBUG 3336 LaneBitmask MaxMask = MRI->getMaxLaneMaskForVReg(Reg); 3337 // If subranges are still supported, then the same subregs 3338 // should still be supported. 3339 for (LiveInterval::SubRange &S : LI.subranges()) { 3340 assert((S.LaneMask & ~MaxMask).none()); 3341 } 3342 #endif 3343 } 3344 } 3345 } 3346 } 3347 3348 DEBUG(dump()); 3349 if (VerifyCoalescing) 3350 MF->verify(this, "After register coalescing"); 3351 return true; 3352 } 3353 3354 void RegisterCoalescer::print(raw_ostream &O, const Module* m) const { 3355 LIS->print(O, m); 3356 } 3357