1 //===-- ARMLowOverheadLoops.cpp - CodeGen Low-overhead Loops ---*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// \file 9 /// Finalize v8.1-m low-overhead loops by converting the associated pseudo 10 /// instructions into machine operations. 11 /// The expectation is that the loop contains three pseudo instructions: 12 /// - t2*LoopStart - placed in the preheader or pre-preheader. The do-loop 13 /// form should be in the preheader, whereas the while form should be in the 14 /// preheaders only predecessor. 15 /// - t2LoopDec - placed within in the loop body. 16 /// - t2LoopEnd - the loop latch terminator. 17 /// 18 /// In addition to this, we also look for the presence of the VCTP instruction, 19 /// which determines whether we can generated the tail-predicated low-overhead 20 /// loop form. 21 /// 22 /// Assumptions and Dependencies: 23 /// Low-overhead loops are constructed and executed using a setup instruction: 24 /// DLS, WLS, DLSTP or WLSTP and an instruction that loops back: LE or LETP. 25 /// WLS(TP) and LE(TP) are branching instructions with a (large) limited range 26 /// but fixed polarity: WLS can only branch forwards and LE can only branch 27 /// backwards. These restrictions mean that this pass is dependent upon block 28 /// layout and block sizes, which is why it's the last pass to run. The same is 29 /// true for ConstantIslands, but this pass does not increase the size of the 30 /// basic blocks, nor does it change the CFG. Instructions are mainly removed 31 /// during the transform and pseudo instructions are replaced by real ones. In 32 /// some cases, when we have to revert to a 'normal' loop, we have to introduce 33 /// multiple instructions for a single pseudo (see RevertWhile and 34 /// RevertLoopEnd). To handle this situation, t2WhileLoopStart and t2LoopEnd 35 /// are defined to be as large as this maximum sequence of replacement 36 /// instructions. 37 /// 38 /// A note on VPR.P0 (the lane mask): 39 /// VPT, VCMP, VPNOT and VCTP won't overwrite VPR.P0 when they update it in a 40 /// "VPT Active" context (which includes low-overhead loops and vpt blocks). 41 /// They will simply "and" the result of their calculation with the current 42 /// value of VPR.P0. You can think of it like this: 43 /// \verbatim 44 /// if VPT active: ; Between a DLSTP/LETP, or for predicated instrs 45 /// VPR.P0 &= Value 46 /// else 47 /// VPR.P0 = Value 48 /// \endverbatim 49 /// When we're inside the low-overhead loop (between DLSTP and LETP), we always 50 /// fall in the "VPT active" case, so we can consider that all VPR writes by 51 /// one of those instruction is actually a "and". 52 //===----------------------------------------------------------------------===// 53 54 #include "ARM.h" 55 #include "ARMBaseInstrInfo.h" 56 #include "ARMBaseRegisterInfo.h" 57 #include "ARMBasicBlockInfo.h" 58 #include "ARMSubtarget.h" 59 #include "MVETailPredUtils.h" 60 #include "Thumb2InstrInfo.h" 61 #include "llvm/ADT/SetOperations.h" 62 #include "llvm/ADT/SmallSet.h" 63 #include "llvm/CodeGen/LivePhysRegs.h" 64 #include "llvm/CodeGen/MachineFunctionPass.h" 65 #include "llvm/CodeGen/MachineLoopInfo.h" 66 #include "llvm/CodeGen/MachineLoopUtils.h" 67 #include "llvm/CodeGen/MachineRegisterInfo.h" 68 #include "llvm/CodeGen/Passes.h" 69 #include "llvm/CodeGen/ReachingDefAnalysis.h" 70 #include "llvm/MC/MCInstrDesc.h" 71 72 using namespace llvm; 73 74 #define DEBUG_TYPE "arm-low-overhead-loops" 75 #define ARM_LOW_OVERHEAD_LOOPS_NAME "ARM Low Overhead Loops pass" 76 77 static cl::opt<bool> 78 DisableTailPredication("arm-loloops-disable-tailpred", cl::Hidden, 79 cl::desc("Disable tail-predication in the ARM LowOverheadLoop pass"), 80 cl::init(false)); 81 82 static bool isVectorPredicated(MachineInstr *MI) { 83 int PIdx = llvm::findFirstVPTPredOperandIdx(*MI); 84 return PIdx != -1 && MI->getOperand(PIdx + 1).getReg() == ARM::VPR; 85 } 86 87 static bool isVectorPredicate(MachineInstr *MI) { 88 return MI->findRegisterDefOperandIdx(ARM::VPR) != -1; 89 } 90 91 static bool hasVPRUse(MachineInstr &MI) { 92 return MI.findRegisterUseOperandIdx(ARM::VPR) != -1; 93 } 94 95 static bool isDomainMVE(MachineInstr *MI) { 96 uint64_t Domain = MI->getDesc().TSFlags & ARMII::DomainMask; 97 return Domain == ARMII::DomainMVE; 98 } 99 100 static bool shouldInspect(MachineInstr &MI) { 101 return isDomainMVE(&MI) || isVectorPredicate(&MI) || hasVPRUse(MI); 102 } 103 104 static bool isDo(MachineInstr *MI) { 105 return MI->getOpcode() != ARM::t2WhileLoopStart; 106 } 107 108 namespace { 109 110 using InstSet = SmallPtrSetImpl<MachineInstr *>; 111 112 class PostOrderLoopTraversal { 113 MachineLoop &ML; 114 MachineLoopInfo &MLI; 115 SmallPtrSet<MachineBasicBlock*, 4> Visited; 116 SmallVector<MachineBasicBlock*, 4> Order; 117 118 public: 119 PostOrderLoopTraversal(MachineLoop &ML, MachineLoopInfo &MLI) 120 : ML(ML), MLI(MLI) { } 121 122 const SmallVectorImpl<MachineBasicBlock*> &getOrder() const { 123 return Order; 124 } 125 126 // Visit all the blocks within the loop, as well as exit blocks and any 127 // blocks properly dominating the header. 128 void ProcessLoop() { 129 std::function<void(MachineBasicBlock*)> Search = [this, &Search] 130 (MachineBasicBlock *MBB) -> void { 131 if (Visited.count(MBB)) 132 return; 133 134 Visited.insert(MBB); 135 for (auto *Succ : MBB->successors()) { 136 if (!ML.contains(Succ)) 137 continue; 138 Search(Succ); 139 } 140 Order.push_back(MBB); 141 }; 142 143 // Insert exit blocks. 144 SmallVector<MachineBasicBlock*, 2> ExitBlocks; 145 ML.getExitBlocks(ExitBlocks); 146 append_range(Order, ExitBlocks); 147 148 // Then add the loop body. 149 Search(ML.getHeader()); 150 151 // Then try the preheader and its predecessors. 152 std::function<void(MachineBasicBlock*)> GetPredecessor = 153 [this, &GetPredecessor] (MachineBasicBlock *MBB) -> void { 154 Order.push_back(MBB); 155 if (MBB->pred_size() == 1) 156 GetPredecessor(*MBB->pred_begin()); 157 }; 158 159 if (auto *Preheader = ML.getLoopPreheader()) 160 GetPredecessor(Preheader); 161 else if (auto *Preheader = MLI.findLoopPreheader(&ML, true)) 162 GetPredecessor(Preheader); 163 } 164 }; 165 166 struct PredicatedMI { 167 MachineInstr *MI = nullptr; 168 SetVector<MachineInstr*> Predicates; 169 170 public: 171 PredicatedMI(MachineInstr *I, SetVector<MachineInstr *> &Preds) : MI(I) { 172 assert(I && "Instruction must not be null!"); 173 Predicates.insert(Preds.begin(), Preds.end()); 174 } 175 }; 176 177 // Represent the current state of the VPR and hold all instances which 178 // represent a VPT block, which is a list of instructions that begins with a 179 // VPT/VPST and has a maximum of four proceeding instructions. All 180 // instructions within the block are predicated upon the vpr and we allow 181 // instructions to define the vpr within in the block too. 182 class VPTState { 183 friend struct LowOverheadLoop; 184 185 SmallVector<MachineInstr *, 4> Insts; 186 187 static SmallVector<VPTState, 4> Blocks; 188 static SetVector<MachineInstr *> CurrentPredicates; 189 static std::map<MachineInstr *, 190 std::unique_ptr<PredicatedMI>> PredicatedInsts; 191 192 static void CreateVPTBlock(MachineInstr *MI) { 193 assert((CurrentPredicates.size() || MI->getParent()->isLiveIn(ARM::VPR)) 194 && "Can't begin VPT without predicate"); 195 Blocks.emplace_back(MI); 196 // The execution of MI is predicated upon the current set of instructions 197 // that are AND'ed together to form the VPR predicate value. In the case 198 // that MI is a VPT, CurrentPredicates will also just be MI. 199 PredicatedInsts.emplace( 200 MI, std::make_unique<PredicatedMI>(MI, CurrentPredicates)); 201 } 202 203 static void reset() { 204 Blocks.clear(); 205 PredicatedInsts.clear(); 206 CurrentPredicates.clear(); 207 } 208 209 static void addInst(MachineInstr *MI) { 210 Blocks.back().insert(MI); 211 PredicatedInsts.emplace( 212 MI, std::make_unique<PredicatedMI>(MI, CurrentPredicates)); 213 } 214 215 static void addPredicate(MachineInstr *MI) { 216 LLVM_DEBUG(dbgs() << "ARM Loops: Adding VPT Predicate: " << *MI); 217 CurrentPredicates.insert(MI); 218 } 219 220 static void resetPredicate(MachineInstr *MI) { 221 LLVM_DEBUG(dbgs() << "ARM Loops: Resetting VPT Predicate: " << *MI); 222 CurrentPredicates.clear(); 223 CurrentPredicates.insert(MI); 224 } 225 226 public: 227 // Have we found an instruction within the block which defines the vpr? If 228 // so, not all the instructions in the block will have the same predicate. 229 static bool hasUniformPredicate(VPTState &Block) { 230 return getDivergent(Block) == nullptr; 231 } 232 233 // If it exists, return the first internal instruction which modifies the 234 // VPR. 235 static MachineInstr *getDivergent(VPTState &Block) { 236 SmallVectorImpl<MachineInstr *> &Insts = Block.getInsts(); 237 for (unsigned i = 1; i < Insts.size(); ++i) { 238 MachineInstr *Next = Insts[i]; 239 if (isVectorPredicate(Next)) 240 return Next; // Found an instruction altering the vpr. 241 } 242 return nullptr; 243 } 244 245 // Return whether the given instruction is predicated upon a VCTP. 246 static bool isPredicatedOnVCTP(MachineInstr *MI, bool Exclusive = false) { 247 SetVector<MachineInstr *> &Predicates = PredicatedInsts[MI]->Predicates; 248 if (Exclusive && Predicates.size() != 1) 249 return false; 250 for (auto *PredMI : Predicates) 251 if (isVCTP(PredMI)) 252 return true; 253 return false; 254 } 255 256 // Is the VPST, controlling the block entry, predicated upon a VCTP. 257 static bool isEntryPredicatedOnVCTP(VPTState &Block, 258 bool Exclusive = false) { 259 SmallVectorImpl<MachineInstr *> &Insts = Block.getInsts(); 260 return isPredicatedOnVCTP(Insts.front(), Exclusive); 261 } 262 263 // If this block begins with a VPT, we can check whether it's using 264 // at least one predicated input(s), as well as possible loop invariant 265 // which would result in it being implicitly predicated. 266 static bool hasImplicitlyValidVPT(VPTState &Block, 267 ReachingDefAnalysis &RDA) { 268 SmallVectorImpl<MachineInstr *> &Insts = Block.getInsts(); 269 MachineInstr *VPT = Insts.front(); 270 assert(isVPTOpcode(VPT->getOpcode()) && 271 "Expected VPT block to begin with VPT/VPST"); 272 273 if (VPT->getOpcode() == ARM::MVE_VPST) 274 return false; 275 276 auto IsOperandPredicated = [&](MachineInstr *MI, unsigned Idx) { 277 MachineInstr *Op = RDA.getMIOperand(MI, MI->getOperand(Idx)); 278 return Op && PredicatedInsts.count(Op) && isPredicatedOnVCTP(Op); 279 }; 280 281 auto IsOperandInvariant = [&](MachineInstr *MI, unsigned Idx) { 282 MachineOperand &MO = MI->getOperand(Idx); 283 if (!MO.isReg() || !MO.getReg()) 284 return true; 285 286 SmallPtrSet<MachineInstr *, 2> Defs; 287 RDA.getGlobalReachingDefs(MI, MO.getReg(), Defs); 288 if (Defs.empty()) 289 return true; 290 291 for (auto *Def : Defs) 292 if (Def->getParent() == VPT->getParent()) 293 return false; 294 return true; 295 }; 296 297 // Check that at least one of the operands is directly predicated on a 298 // vctp and allow an invariant value too. 299 return (IsOperandPredicated(VPT, 1) || IsOperandPredicated(VPT, 2)) && 300 (IsOperandPredicated(VPT, 1) || IsOperandInvariant(VPT, 1)) && 301 (IsOperandPredicated(VPT, 2) || IsOperandInvariant(VPT, 2)); 302 } 303 304 static bool isValid(ReachingDefAnalysis &RDA) { 305 // All predication within the loop should be based on vctp. If the block 306 // isn't predicated on entry, check whether the vctp is within the block 307 // and that all other instructions are then predicated on it. 308 for (auto &Block : Blocks) { 309 if (isEntryPredicatedOnVCTP(Block, false) || 310 hasImplicitlyValidVPT(Block, RDA)) 311 continue; 312 313 SmallVectorImpl<MachineInstr *> &Insts = Block.getInsts(); 314 // We don't know how to convert a block with just a VPT;VCTP into 315 // anything valid once we remove the VCTP. For now just bail out. 316 assert(isVPTOpcode(Insts.front()->getOpcode()) && 317 "Expected VPT block to start with a VPST or VPT!"); 318 if (Insts.size() == 2 && Insts.front()->getOpcode() != ARM::MVE_VPST && 319 isVCTP(Insts.back())) 320 return false; 321 322 for (auto *MI : Insts) { 323 // Check that any internal VCTPs are 'Then' predicated. 324 if (isVCTP(MI) && getVPTInstrPredicate(*MI) != ARMVCC::Then) 325 return false; 326 // Skip other instructions that build up the predicate. 327 if (MI->getOpcode() == ARM::MVE_VPST || isVectorPredicate(MI)) 328 continue; 329 // Check that any other instructions are predicated upon a vctp. 330 // TODO: We could infer when VPTs are implicitly predicated on the 331 // vctp (when the operands are predicated). 332 if (!isPredicatedOnVCTP(MI)) { 333 LLVM_DEBUG(dbgs() << "ARM Loops: Can't convert: " << *MI); 334 return false; 335 } 336 } 337 } 338 return true; 339 } 340 341 VPTState(MachineInstr *MI) { Insts.push_back(MI); } 342 343 void insert(MachineInstr *MI) { 344 Insts.push_back(MI); 345 // VPT/VPST + 4 predicated instructions. 346 assert(Insts.size() <= 5 && "Too many instructions in VPT block!"); 347 } 348 349 bool containsVCTP() const { 350 for (auto *MI : Insts) 351 if (isVCTP(MI)) 352 return true; 353 return false; 354 } 355 356 unsigned size() const { return Insts.size(); } 357 SmallVectorImpl<MachineInstr *> &getInsts() { return Insts; } 358 }; 359 360 struct LowOverheadLoop { 361 362 MachineLoop &ML; 363 MachineBasicBlock *Preheader = nullptr; 364 MachineLoopInfo &MLI; 365 ReachingDefAnalysis &RDA; 366 const TargetRegisterInfo &TRI; 367 const ARMBaseInstrInfo &TII; 368 MachineFunction *MF = nullptr; 369 MachineBasicBlock::iterator StartInsertPt; 370 MachineBasicBlock *StartInsertBB = nullptr; 371 MachineInstr *Start = nullptr; 372 MachineInstr *Dec = nullptr; 373 MachineInstr *End = nullptr; 374 MachineOperand TPNumElements; 375 SmallVector<MachineInstr*, 4> VCTPs; 376 SmallPtrSet<MachineInstr*, 4> ToRemove; 377 SmallPtrSet<MachineInstr*, 4> BlockMasksToRecompute; 378 bool Revert = false; 379 bool CannotTailPredicate = false; 380 381 LowOverheadLoop(MachineLoop &ML, MachineLoopInfo &MLI, 382 ReachingDefAnalysis &RDA, const TargetRegisterInfo &TRI, 383 const ARMBaseInstrInfo &TII) 384 : ML(ML), MLI(MLI), RDA(RDA), TRI(TRI), TII(TII), 385 TPNumElements(MachineOperand::CreateImm(0)) { 386 MF = ML.getHeader()->getParent(); 387 if (auto *MBB = ML.getLoopPreheader()) 388 Preheader = MBB; 389 else if (auto *MBB = MLI.findLoopPreheader(&ML, true)) 390 Preheader = MBB; 391 VPTState::reset(); 392 } 393 394 // If this is an MVE instruction, check that we know how to use tail 395 // predication with it. Record VPT blocks and return whether the 396 // instruction is valid for tail predication. 397 bool ValidateMVEInst(MachineInstr *MI); 398 399 void AnalyseMVEInst(MachineInstr *MI) { 400 CannotTailPredicate = !ValidateMVEInst(MI); 401 } 402 403 bool IsTailPredicationLegal() const { 404 // For now, let's keep things really simple and only support a single 405 // block for tail predication. 406 return !Revert && FoundAllComponents() && !VCTPs.empty() && 407 !CannotTailPredicate && ML.getNumBlocks() == 1; 408 } 409 410 // Given that MI is a VCTP, check that is equivalent to any other VCTPs 411 // found. 412 bool AddVCTP(MachineInstr *MI); 413 414 // Check that the predication in the loop will be equivalent once we 415 // perform the conversion. Also ensure that we can provide the number 416 // of elements to the loop start instruction. 417 bool ValidateTailPredicate(); 418 419 // Check that any values available outside of the loop will be the same 420 // after tail predication conversion. 421 bool ValidateLiveOuts(); 422 423 // Is it safe to define LR with DLS/WLS? 424 // LR can be defined if it is the operand to start, because it's the same 425 // value, or if it's going to be equivalent to the operand to Start. 426 MachineInstr *isSafeToDefineLR(); 427 428 // Check the branch targets are within range and we satisfy our 429 // restrictions. 430 void Validate(ARMBasicBlockUtils *BBUtils); 431 432 bool FoundAllComponents() const { 433 return Start && Dec && End; 434 } 435 436 SmallVectorImpl<VPTState> &getVPTBlocks() { 437 return VPTState::Blocks; 438 } 439 440 // Return the operand for the loop start instruction. This will be the loop 441 // iteration count, or the number of elements if we're tail predicating. 442 MachineOperand &getLoopStartOperand() { 443 if (IsTailPredicationLegal()) 444 return TPNumElements; 445 return isDo(Start) ? Start->getOperand(1) : Start->getOperand(0); 446 } 447 448 unsigned getStartOpcode() const { 449 bool IsDo = isDo(Start); 450 if (!IsTailPredicationLegal()) 451 return IsDo ? ARM::t2DLS : ARM::t2WLS; 452 453 return VCTPOpcodeToLSTP(VCTPs.back()->getOpcode(), IsDo); 454 } 455 456 void dump() const { 457 if (Start) dbgs() << "ARM Loops: Found Loop Start: " << *Start; 458 if (Dec) dbgs() << "ARM Loops: Found Loop Dec: " << *Dec; 459 if (End) dbgs() << "ARM Loops: Found Loop End: " << *End; 460 if (!VCTPs.empty()) { 461 dbgs() << "ARM Loops: Found VCTP(s):\n"; 462 for (auto *MI : VCTPs) 463 dbgs() << " - " << *MI; 464 } 465 if (!FoundAllComponents()) 466 dbgs() << "ARM Loops: Not a low-overhead loop.\n"; 467 else if (!(Start && Dec && End)) 468 dbgs() << "ARM Loops: Failed to find all loop components.\n"; 469 } 470 }; 471 472 class ARMLowOverheadLoops : public MachineFunctionPass { 473 MachineFunction *MF = nullptr; 474 MachineLoopInfo *MLI = nullptr; 475 ReachingDefAnalysis *RDA = nullptr; 476 const ARMBaseInstrInfo *TII = nullptr; 477 MachineRegisterInfo *MRI = nullptr; 478 const TargetRegisterInfo *TRI = nullptr; 479 std::unique_ptr<ARMBasicBlockUtils> BBUtils = nullptr; 480 481 public: 482 static char ID; 483 484 ARMLowOverheadLoops() : MachineFunctionPass(ID) { } 485 486 void getAnalysisUsage(AnalysisUsage &AU) const override { 487 AU.setPreservesCFG(); 488 AU.addRequired<MachineLoopInfo>(); 489 AU.addRequired<ReachingDefAnalysis>(); 490 MachineFunctionPass::getAnalysisUsage(AU); 491 } 492 493 bool runOnMachineFunction(MachineFunction &MF) override; 494 495 MachineFunctionProperties getRequiredProperties() const override { 496 return MachineFunctionProperties().set( 497 MachineFunctionProperties::Property::NoVRegs).set( 498 MachineFunctionProperties::Property::TracksLiveness); 499 } 500 501 StringRef getPassName() const override { 502 return ARM_LOW_OVERHEAD_LOOPS_NAME; 503 } 504 505 private: 506 bool ProcessLoop(MachineLoop *ML); 507 508 bool RevertNonLoops(); 509 510 void RevertWhile(MachineInstr *MI) const; 511 void RevertDo(MachineInstr *MI) const; 512 513 bool RevertLoopDec(MachineInstr *MI) const; 514 515 void RevertLoopEnd(MachineInstr *MI, bool SkipCmp = false) const; 516 517 void RevertLoopEndDec(MachineInstr *MI) const; 518 519 void ConvertVPTBlocks(LowOverheadLoop &LoLoop); 520 521 MachineInstr *ExpandLoopStart(LowOverheadLoop &LoLoop); 522 523 void Expand(LowOverheadLoop &LoLoop); 524 525 void IterationCountDCE(LowOverheadLoop &LoLoop); 526 }; 527 } 528 529 char ARMLowOverheadLoops::ID = 0; 530 531 SmallVector<VPTState, 4> VPTState::Blocks; 532 SetVector<MachineInstr *> VPTState::CurrentPredicates; 533 std::map<MachineInstr *, 534 std::unique_ptr<PredicatedMI>> VPTState::PredicatedInsts; 535 536 INITIALIZE_PASS(ARMLowOverheadLoops, DEBUG_TYPE, ARM_LOW_OVERHEAD_LOOPS_NAME, 537 false, false) 538 539 static bool TryRemove(MachineInstr *MI, ReachingDefAnalysis &RDA, 540 InstSet &ToRemove, InstSet &Ignore) { 541 542 // Check that we can remove all of Killed without having to modify any IT 543 // blocks. 544 auto WontCorruptITs = [](InstSet &Killed, ReachingDefAnalysis &RDA) { 545 // Collect the dead code and the MBBs in which they reside. 546 SmallPtrSet<MachineBasicBlock*, 2> BasicBlocks; 547 for (auto *Dead : Killed) 548 BasicBlocks.insert(Dead->getParent()); 549 550 // Collect IT blocks in all affected basic blocks. 551 std::map<MachineInstr *, SmallPtrSet<MachineInstr *, 2>> ITBlocks; 552 for (auto *MBB : BasicBlocks) { 553 for (auto &IT : *MBB) { 554 if (IT.getOpcode() != ARM::t2IT) 555 continue; 556 RDA.getReachingLocalUses(&IT, MCRegister::from(ARM::ITSTATE), 557 ITBlocks[&IT]); 558 } 559 } 560 561 // If we're removing all of the instructions within an IT block, then 562 // also remove the IT instruction. 563 SmallPtrSet<MachineInstr *, 2> ModifiedITs; 564 SmallPtrSet<MachineInstr *, 2> RemoveITs; 565 for (auto *Dead : Killed) { 566 if (MachineOperand *MO = Dead->findRegisterUseOperand(ARM::ITSTATE)) { 567 MachineInstr *IT = RDA.getMIOperand(Dead, *MO); 568 RemoveITs.insert(IT); 569 auto &CurrentBlock = ITBlocks[IT]; 570 CurrentBlock.erase(Dead); 571 if (CurrentBlock.empty()) 572 ModifiedITs.erase(IT); 573 else 574 ModifiedITs.insert(IT); 575 } 576 } 577 if (!ModifiedITs.empty()) 578 return false; 579 Killed.insert(RemoveITs.begin(), RemoveITs.end()); 580 return true; 581 }; 582 583 SmallPtrSet<MachineInstr *, 2> Uses; 584 if (!RDA.isSafeToRemove(MI, Uses, Ignore)) 585 return false; 586 587 if (WontCorruptITs(Uses, RDA)) { 588 ToRemove.insert(Uses.begin(), Uses.end()); 589 LLVM_DEBUG(dbgs() << "ARM Loops: Able to remove: " << *MI 590 << " - can also remove:\n"; 591 for (auto *Use : Uses) 592 dbgs() << " - " << *Use); 593 594 SmallPtrSet<MachineInstr*, 4> Killed; 595 RDA.collectKilledOperands(MI, Killed); 596 if (WontCorruptITs(Killed, RDA)) { 597 ToRemove.insert(Killed.begin(), Killed.end()); 598 LLVM_DEBUG(for (auto *Dead : Killed) 599 dbgs() << " - " << *Dead); 600 } 601 return true; 602 } 603 return false; 604 } 605 606 bool LowOverheadLoop::ValidateTailPredicate() { 607 if (!IsTailPredicationLegal()) { 608 LLVM_DEBUG(if (VCTPs.empty()) 609 dbgs() << "ARM Loops: Didn't find a VCTP instruction.\n"; 610 dbgs() << "ARM Loops: Tail-predication is not valid.\n"); 611 return false; 612 } 613 614 assert(!VCTPs.empty() && "VCTP instruction expected but is not set"); 615 assert(ML.getBlocks().size() == 1 && 616 "Shouldn't be processing a loop with more than one block"); 617 618 if (DisableTailPredication) { 619 LLVM_DEBUG(dbgs() << "ARM Loops: tail-predication is disabled\n"); 620 return false; 621 } 622 623 if (!VPTState::isValid(RDA)) { 624 LLVM_DEBUG(dbgs() << "ARM Loops: Invalid VPT state.\n"); 625 return false; 626 } 627 628 if (!ValidateLiveOuts()) { 629 LLVM_DEBUG(dbgs() << "ARM Loops: Invalid live outs.\n"); 630 return false; 631 } 632 633 // Check that creating a [W|D]LSTP, which will define LR with an element 634 // count instead of iteration count, won't affect any other instructions 635 // than the LoopStart and LoopDec. 636 // TODO: We should try to insert the [W|D]LSTP after any of the other uses. 637 Register StartReg = isDo(Start) ? Start->getOperand(1).getReg() 638 : Start->getOperand(0).getReg(); 639 if (StartInsertPt == Start && StartReg == ARM::LR) { 640 if (auto *IterCount = RDA.getMIOperand(Start, isDo(Start) ? 1 : 0)) { 641 SmallPtrSet<MachineInstr *, 2> Uses; 642 RDA.getGlobalUses(IterCount, MCRegister::from(ARM::LR), Uses); 643 for (auto *Use : Uses) { 644 if (Use != Start && Use != Dec) { 645 LLVM_DEBUG(dbgs() << " ARM Loops: Found LR use: " << *Use); 646 return false; 647 } 648 } 649 } 650 } 651 652 // For tail predication, we need to provide the number of elements, instead 653 // of the iteration count, to the loop start instruction. The number of 654 // elements is provided to the vctp instruction, so we need to check that 655 // we can use this register at InsertPt. 656 MachineInstr *VCTP = VCTPs.back(); 657 if (Start->getOpcode() == ARM::t2DoLoopStartTP) { 658 TPNumElements = Start->getOperand(2); 659 StartInsertPt = Start; 660 StartInsertBB = Start->getParent(); 661 } else { 662 TPNumElements = VCTP->getOperand(1); 663 MCRegister NumElements = TPNumElements.getReg().asMCReg(); 664 665 // If the register is defined within loop, then we can't perform TP. 666 // TODO: Check whether this is just a mov of a register that would be 667 // available. 668 if (RDA.hasLocalDefBefore(VCTP, NumElements)) { 669 LLVM_DEBUG(dbgs() << "ARM Loops: VCTP operand is defined in the loop.\n"); 670 return false; 671 } 672 673 // The element count register maybe defined after InsertPt, in which case we 674 // need to try to move either InsertPt or the def so that the [w|d]lstp can 675 // use the value. 676 677 if (StartInsertPt != StartInsertBB->end() && 678 !RDA.isReachingDefLiveOut(&*StartInsertPt, NumElements)) { 679 if (auto *ElemDef = 680 RDA.getLocalLiveOutMIDef(StartInsertBB, NumElements)) { 681 if (RDA.isSafeToMoveForwards(ElemDef, &*StartInsertPt)) { 682 ElemDef->removeFromParent(); 683 StartInsertBB->insert(StartInsertPt, ElemDef); 684 LLVM_DEBUG(dbgs() 685 << "ARM Loops: Moved element count def: " << *ElemDef); 686 } else if (RDA.isSafeToMoveBackwards(&*StartInsertPt, ElemDef)) { 687 StartInsertPt->removeFromParent(); 688 StartInsertBB->insertAfter(MachineBasicBlock::iterator(ElemDef), 689 &*StartInsertPt); 690 LLVM_DEBUG(dbgs() << "ARM Loops: Moved start past: " << *ElemDef); 691 } else { 692 // If we fail to move an instruction and the element count is provided 693 // by a mov, use the mov operand if it will have the same value at the 694 // insertion point 695 MachineOperand Operand = ElemDef->getOperand(1); 696 if (isMovRegOpcode(ElemDef->getOpcode()) && 697 RDA.getUniqueReachingMIDef(ElemDef, Operand.getReg().asMCReg()) == 698 RDA.getUniqueReachingMIDef(&*StartInsertPt, 699 Operand.getReg().asMCReg())) { 700 TPNumElements = Operand; 701 NumElements = TPNumElements.getReg(); 702 } else { 703 LLVM_DEBUG(dbgs() 704 << "ARM Loops: Unable to move element count to loop " 705 << "start instruction.\n"); 706 return false; 707 } 708 } 709 } 710 } 711 712 // Especially in the case of while loops, InsertBB may not be the 713 // preheader, so we need to check that the register isn't redefined 714 // before entering the loop. 715 auto CannotProvideElements = [this](MachineBasicBlock *MBB, 716 MCRegister NumElements) { 717 if (MBB->empty()) 718 return false; 719 // NumElements is redefined in this block. 720 if (RDA.hasLocalDefBefore(&MBB->back(), NumElements)) 721 return true; 722 723 // Don't continue searching up through multiple predecessors. 724 if (MBB->pred_size() > 1) 725 return true; 726 727 return false; 728 }; 729 730 // Search backwards for a def, until we get to InsertBB. 731 MachineBasicBlock *MBB = Preheader; 732 while (MBB && MBB != StartInsertBB) { 733 if (CannotProvideElements(MBB, NumElements)) { 734 LLVM_DEBUG(dbgs() << "ARM Loops: Unable to provide element count.\n"); 735 return false; 736 } 737 MBB = *MBB->pred_begin(); 738 } 739 } 740 741 // Could inserting the [W|D]LSTP cause some unintended affects? In a perfect 742 // world the [w|d]lstp instruction would be last instruction in the preheader 743 // and so it would only affect instructions within the loop body. But due to 744 // scheduling, and/or the logic in this pass (above), the insertion point can 745 // be moved earlier. So if the Loop Start isn't the last instruction in the 746 // preheader, and if the initial element count is smaller than the vector 747 // width, the Loop Start instruction will immediately generate one or more 748 // false lane mask which can, incorrectly, affect the proceeding MVE 749 // instructions in the preheader. 750 if (std::any_of(StartInsertPt, StartInsertBB->end(), shouldInspect)) { 751 LLVM_DEBUG(dbgs() << "ARM Loops: Instruction blocks [W|D]LSTP\n"); 752 return false; 753 } 754 755 // Check that the value change of the element count is what we expect and 756 // that the predication will be equivalent. For this we need: 757 // NumElements = NumElements - VectorWidth. The sub will be a sub immediate 758 // and we can also allow register copies within the chain too. 759 auto IsValidSub = [](MachineInstr *MI, int ExpectedVecWidth) { 760 return -getAddSubImmediate(*MI) == ExpectedVecWidth; 761 }; 762 763 MachineBasicBlock *MBB = VCTP->getParent(); 764 // Remove modifications to the element count since they have no purpose in a 765 // tail predicated loop. Explicitly refer to the vctp operand no matter which 766 // register NumElements has been assigned to, since that is what the 767 // modifications will be using 768 if (auto *Def = RDA.getUniqueReachingMIDef( 769 &MBB->back(), VCTP->getOperand(1).getReg().asMCReg())) { 770 SmallPtrSet<MachineInstr*, 2> ElementChain; 771 SmallPtrSet<MachineInstr*, 2> Ignore; 772 unsigned ExpectedVectorWidth = getTailPredVectorWidth(VCTP->getOpcode()); 773 774 Ignore.insert(VCTPs.begin(), VCTPs.end()); 775 776 if (TryRemove(Def, RDA, ElementChain, Ignore)) { 777 bool FoundSub = false; 778 779 for (auto *MI : ElementChain) { 780 if (isMovRegOpcode(MI->getOpcode())) 781 continue; 782 783 if (isSubImmOpcode(MI->getOpcode())) { 784 if (FoundSub || !IsValidSub(MI, ExpectedVectorWidth)) { 785 LLVM_DEBUG(dbgs() << "ARM Loops: Unexpected instruction in element" 786 " count: " << *MI); 787 return false; 788 } 789 FoundSub = true; 790 } else { 791 LLVM_DEBUG(dbgs() << "ARM Loops: Unexpected instruction in element" 792 " count: " << *MI); 793 return false; 794 } 795 } 796 ToRemove.insert(ElementChain.begin(), ElementChain.end()); 797 } 798 } 799 800 // If we converted the LoopStart to a t2DoLoopStartTP, we can also remove any 801 // extra instructions in the preheader, which often includes a now unused MOV. 802 if (Start->getOpcode() == ARM::t2DoLoopStartTP && Preheader && 803 !Preheader->empty() && 804 !RDA.hasLocalDefBefore(VCTP, VCTP->getOperand(1).getReg())) { 805 if (auto *Def = RDA.getUniqueReachingMIDef( 806 &Preheader->back(), VCTP->getOperand(1).getReg().asMCReg())) { 807 SmallPtrSet<MachineInstr*, 2> Ignore; 808 Ignore.insert(VCTPs.begin(), VCTPs.end()); 809 TryRemove(Def, RDA, ToRemove, Ignore); 810 } 811 } 812 813 return true; 814 } 815 816 static bool isRegInClass(const MachineOperand &MO, 817 const TargetRegisterClass *Class) { 818 return MO.isReg() && MO.getReg() && Class->contains(MO.getReg()); 819 } 820 821 // MVE 'narrowing' operate on half a lane, reading from half and writing 822 // to half, which are referred to has the top and bottom half. The other 823 // half retains its previous value. 824 static bool retainsPreviousHalfElement(const MachineInstr &MI) { 825 const MCInstrDesc &MCID = MI.getDesc(); 826 uint64_t Flags = MCID.TSFlags; 827 return (Flags & ARMII::RetainsPreviousHalfElement) != 0; 828 } 829 830 // Some MVE instructions read from the top/bottom halves of their operand(s) 831 // and generate a vector result with result elements that are double the 832 // width of the input. 833 static bool producesDoubleWidthResult(const MachineInstr &MI) { 834 const MCInstrDesc &MCID = MI.getDesc(); 835 uint64_t Flags = MCID.TSFlags; 836 return (Flags & ARMII::DoubleWidthResult) != 0; 837 } 838 839 static bool isHorizontalReduction(const MachineInstr &MI) { 840 const MCInstrDesc &MCID = MI.getDesc(); 841 uint64_t Flags = MCID.TSFlags; 842 return (Flags & ARMII::HorizontalReduction) != 0; 843 } 844 845 // Can this instruction generate a non-zero result when given only zeroed 846 // operands? This allows us to know that, given operands with false bytes 847 // zeroed by masked loads, that the result will also contain zeros in those 848 // bytes. 849 static bool canGenerateNonZeros(const MachineInstr &MI) { 850 851 // Check for instructions which can write into a larger element size, 852 // possibly writing into a previous zero'd lane. 853 if (producesDoubleWidthResult(MI)) 854 return true; 855 856 switch (MI.getOpcode()) { 857 default: 858 break; 859 // FIXME: VNEG FP and -0? I think we'll need to handle this once we allow 860 // fp16 -> fp32 vector conversions. 861 // Instructions that perform a NOT will generate 1s from 0s. 862 case ARM::MVE_VMVN: 863 case ARM::MVE_VORN: 864 // Count leading zeros will do just that! 865 case ARM::MVE_VCLZs8: 866 case ARM::MVE_VCLZs16: 867 case ARM::MVE_VCLZs32: 868 return true; 869 } 870 return false; 871 } 872 873 // Look at its register uses to see if it only can only receive zeros 874 // into its false lanes which would then produce zeros. Also check that 875 // the output register is also defined by an FalseLanesZero instruction 876 // so that if tail-predication happens, the lanes that aren't updated will 877 // still be zeros. 878 static bool producesFalseLanesZero(MachineInstr &MI, 879 const TargetRegisterClass *QPRs, 880 const ReachingDefAnalysis &RDA, 881 InstSet &FalseLanesZero) { 882 if (canGenerateNonZeros(MI)) 883 return false; 884 885 bool isPredicated = isVectorPredicated(&MI); 886 // Predicated loads will write zeros to the falsely predicated bytes of the 887 // destination register. 888 if (MI.mayLoad()) 889 return isPredicated; 890 891 auto IsZeroInit = [](MachineInstr *Def) { 892 return !isVectorPredicated(Def) && 893 Def->getOpcode() == ARM::MVE_VMOVimmi32 && 894 Def->getOperand(1).getImm() == 0; 895 }; 896 897 bool AllowScalars = isHorizontalReduction(MI); 898 for (auto &MO : MI.operands()) { 899 if (!MO.isReg() || !MO.getReg()) 900 continue; 901 if (!isRegInClass(MO, QPRs) && AllowScalars) 902 continue; 903 904 // Check that this instruction will produce zeros in its false lanes: 905 // - If it only consumes false lanes zero or constant 0 (vmov #0) 906 // - If it's predicated, it only matters that it's def register already has 907 // false lane zeros, so we can ignore the uses. 908 SmallPtrSet<MachineInstr *, 2> Defs; 909 RDA.getGlobalReachingDefs(&MI, MO.getReg(), Defs); 910 for (auto *Def : Defs) { 911 if (Def == &MI || FalseLanesZero.count(Def) || IsZeroInit(Def)) 912 continue; 913 if (MO.isUse() && isPredicated) 914 continue; 915 return false; 916 } 917 } 918 LLVM_DEBUG(dbgs() << "ARM Loops: Always False Zeros: " << MI); 919 return true; 920 } 921 922 bool LowOverheadLoop::ValidateLiveOuts() { 923 // We want to find out if the tail-predicated version of this loop will 924 // produce the same values as the loop in its original form. For this to 925 // be true, the newly inserted implicit predication must not change the 926 // the (observable) results. 927 // We're doing this because many instructions in the loop will not be 928 // predicated and so the conversion from VPT predication to tail-predication 929 // can result in different values being produced; due to the tail-predication 930 // preventing many instructions from updating their falsely predicated 931 // lanes. This analysis assumes that all the instructions perform lane-wise 932 // operations and don't perform any exchanges. 933 // A masked load, whether through VPT or tail predication, will write zeros 934 // to any of the falsely predicated bytes. So, from the loads, we know that 935 // the false lanes are zeroed and here we're trying to track that those false 936 // lanes remain zero, or where they change, the differences are masked away 937 // by their user(s). 938 // All MVE stores have to be predicated, so we know that any predicate load 939 // operands, or stored results are equivalent already. Other explicitly 940 // predicated instructions will perform the same operation in the original 941 // loop and the tail-predicated form too. Because of this, we can insert 942 // loads, stores and other predicated instructions into our Predicated 943 // set and build from there. 944 const TargetRegisterClass *QPRs = TRI.getRegClass(ARM::MQPRRegClassID); 945 SetVector<MachineInstr *> FalseLanesUnknown; 946 SmallPtrSet<MachineInstr *, 4> FalseLanesZero; 947 SmallPtrSet<MachineInstr *, 4> Predicated; 948 MachineBasicBlock *Header = ML.getHeader(); 949 950 for (auto &MI : *Header) { 951 if (!shouldInspect(MI)) 952 continue; 953 954 if (isVCTP(&MI) || isVPTOpcode(MI.getOpcode())) 955 continue; 956 957 bool isPredicated = isVectorPredicated(&MI); 958 bool retainsOrReduces = 959 retainsPreviousHalfElement(MI) || isHorizontalReduction(MI); 960 961 if (isPredicated) 962 Predicated.insert(&MI); 963 if (producesFalseLanesZero(MI, QPRs, RDA, FalseLanesZero)) 964 FalseLanesZero.insert(&MI); 965 else if (MI.getNumDefs() == 0) 966 continue; 967 else if (!isPredicated && retainsOrReduces) 968 return false; 969 else if (!isPredicated) 970 FalseLanesUnknown.insert(&MI); 971 } 972 973 auto HasPredicatedUsers = [this](MachineInstr *MI, const MachineOperand &MO, 974 SmallPtrSetImpl<MachineInstr *> &Predicated) { 975 SmallPtrSet<MachineInstr *, 2> Uses; 976 RDA.getGlobalUses(MI, MO.getReg().asMCReg(), Uses); 977 for (auto *Use : Uses) { 978 if (Use != MI && !Predicated.count(Use)) 979 return false; 980 } 981 return true; 982 }; 983 984 // Visit the unknowns in reverse so that we can start at the values being 985 // stored and then we can work towards the leaves, hopefully adding more 986 // instructions to Predicated. Successfully terminating the loop means that 987 // all the unknown values have to found to be masked by predicated user(s). 988 // For any unpredicated values, we store them in NonPredicated so that we 989 // can later check whether these form a reduction. 990 SmallPtrSet<MachineInstr*, 2> NonPredicated; 991 for (auto *MI : reverse(FalseLanesUnknown)) { 992 for (auto &MO : MI->operands()) { 993 if (!isRegInClass(MO, QPRs) || !MO.isDef()) 994 continue; 995 if (!HasPredicatedUsers(MI, MO, Predicated)) { 996 LLVM_DEBUG(dbgs() << "ARM Loops: Found an unknown def of : " 997 << TRI.getRegAsmName(MO.getReg()) << " at " << *MI); 998 NonPredicated.insert(MI); 999 break; 1000 } 1001 } 1002 // Any unknown false lanes have been masked away by the user(s). 1003 if (!NonPredicated.contains(MI)) 1004 Predicated.insert(MI); 1005 } 1006 1007 SmallPtrSet<MachineInstr *, 2> LiveOutMIs; 1008 SmallVector<MachineBasicBlock *, 2> ExitBlocks; 1009 ML.getExitBlocks(ExitBlocks); 1010 assert(ML.getNumBlocks() == 1 && "Expected single block loop!"); 1011 assert(ExitBlocks.size() == 1 && "Expected a single exit block"); 1012 MachineBasicBlock *ExitBB = ExitBlocks.front(); 1013 for (const MachineBasicBlock::RegisterMaskPair &RegMask : ExitBB->liveins()) { 1014 // TODO: Instead of blocking predication, we could move the vctp to the exit 1015 // block and calculate it's operand there in or the preheader. 1016 if (RegMask.PhysReg == ARM::VPR) 1017 return false; 1018 // Check Q-regs that are live in the exit blocks. We don't collect scalars 1019 // because they won't be affected by lane predication. 1020 if (QPRs->contains(RegMask.PhysReg)) 1021 if (auto *MI = RDA.getLocalLiveOutMIDef(Header, RegMask.PhysReg)) 1022 LiveOutMIs.insert(MI); 1023 } 1024 1025 // We've already validated that any VPT predication within the loop will be 1026 // equivalent when we perform the predication transformation; so we know that 1027 // any VPT predicated instruction is predicated upon VCTP. Any live-out 1028 // instruction needs to be predicated, so check this here. The instructions 1029 // in NonPredicated have been found to be a reduction that we can ensure its 1030 // legality. 1031 for (auto *MI : LiveOutMIs) { 1032 if (NonPredicated.count(MI) && FalseLanesUnknown.contains(MI)) { 1033 LLVM_DEBUG(dbgs() << "ARM Loops: Unable to handle live out: " << *MI); 1034 return false; 1035 } 1036 } 1037 1038 return true; 1039 } 1040 1041 void LowOverheadLoop::Validate(ARMBasicBlockUtils *BBUtils) { 1042 if (Revert) 1043 return; 1044 1045 // Check branch target ranges: WLS[TP] can only branch forwards and LE[TP] 1046 // can only jump back. 1047 auto ValidateRanges = [](MachineInstr *Start, MachineInstr *End, 1048 ARMBasicBlockUtils *BBUtils, MachineLoop &ML) { 1049 MachineBasicBlock *TgtBB = End->getOpcode() == ARM::t2LoopEnd 1050 ? End->getOperand(1).getMBB() 1051 : End->getOperand(2).getMBB(); 1052 // TODO Maybe there's cases where the target doesn't have to be the header, 1053 // but for now be safe and revert. 1054 if (TgtBB != ML.getHeader()) { 1055 LLVM_DEBUG(dbgs() << "ARM Loops: LoopEnd is not targeting header.\n"); 1056 return false; 1057 } 1058 1059 // The WLS and LE instructions have 12-bits for the label offset. WLS 1060 // requires a positive offset, while LE uses negative. 1061 if (BBUtils->getOffsetOf(End) < BBUtils->getOffsetOf(ML.getHeader()) || 1062 !BBUtils->isBBInRange(End, ML.getHeader(), 4094)) { 1063 LLVM_DEBUG(dbgs() << "ARM Loops: LE offset is out-of-range\n"); 1064 return false; 1065 } 1066 1067 if (Start->getOpcode() == ARM::t2WhileLoopStart && 1068 (BBUtils->getOffsetOf(Start) > 1069 BBUtils->getOffsetOf(Start->getOperand(1).getMBB()) || 1070 !BBUtils->isBBInRange(Start, Start->getOperand(1).getMBB(), 4094))) { 1071 LLVM_DEBUG(dbgs() << "ARM Loops: WLS offset is out-of-range!\n"); 1072 return false; 1073 } 1074 return true; 1075 }; 1076 1077 // Find a suitable position to insert the loop start instruction. It needs to 1078 // be able to safely define LR. 1079 auto FindStartInsertionPoint = [](MachineInstr *Start, MachineInstr *Dec, 1080 MachineBasicBlock::iterator &InsertPt, 1081 MachineBasicBlock *&InsertBB, 1082 ReachingDefAnalysis &RDA, 1083 InstSet &ToRemove) { 1084 // For a t2DoLoopStart it is always valid to use the start insertion point. 1085 // For WLS we can define LR if LR already contains the same value. 1086 if (isDo(Start) || Start->getOperand(0).getReg() == ARM::LR) { 1087 InsertPt = MachineBasicBlock::iterator(Start); 1088 InsertBB = Start->getParent(); 1089 return true; 1090 } 1091 1092 // We've found no suitable LR def and Start doesn't use LR directly. Can we 1093 // just define LR anyway? 1094 if (!RDA.isSafeToDefRegAt(Start, MCRegister::from(ARM::LR))) 1095 return false; 1096 1097 InsertPt = MachineBasicBlock::iterator(Start); 1098 InsertBB = Start->getParent(); 1099 return true; 1100 }; 1101 1102 if (!FindStartInsertionPoint(Start, Dec, StartInsertPt, StartInsertBB, RDA, 1103 ToRemove)) { 1104 LLVM_DEBUG(dbgs() << "ARM Loops: Unable to find safe insertion point.\n"); 1105 Revert = true; 1106 return; 1107 } 1108 LLVM_DEBUG(if (StartInsertPt == StartInsertBB->end()) 1109 dbgs() << "ARM Loops: Will insert LoopStart at end of block\n"; 1110 else 1111 dbgs() << "ARM Loops: Will insert LoopStart at " 1112 << *StartInsertPt 1113 ); 1114 1115 Revert = !ValidateRanges(Start, End, BBUtils, ML); 1116 CannotTailPredicate = !ValidateTailPredicate(); 1117 } 1118 1119 bool LowOverheadLoop::AddVCTP(MachineInstr *MI) { 1120 LLVM_DEBUG(dbgs() << "ARM Loops: Adding VCTP: " << *MI); 1121 if (VCTPs.empty()) { 1122 VCTPs.push_back(MI); 1123 return true; 1124 } 1125 1126 // If we find another VCTP, check whether it uses the same value as the main VCTP. 1127 // If it does, store it in the VCTPs set, else refuse it. 1128 MachineInstr *Prev = VCTPs.back(); 1129 if (!Prev->getOperand(1).isIdenticalTo(MI->getOperand(1)) || 1130 !RDA.hasSameReachingDef(Prev, MI, MI->getOperand(1).getReg().asMCReg())) { 1131 LLVM_DEBUG(dbgs() << "ARM Loops: Found VCTP with a different reaching " 1132 "definition from the main VCTP"); 1133 return false; 1134 } 1135 VCTPs.push_back(MI); 1136 return true; 1137 } 1138 1139 bool LowOverheadLoop::ValidateMVEInst(MachineInstr* MI) { 1140 if (CannotTailPredicate) 1141 return false; 1142 1143 if (!shouldInspect(*MI)) 1144 return true; 1145 1146 if (MI->getOpcode() == ARM::MVE_VPSEL || 1147 MI->getOpcode() == ARM::MVE_VPNOT) { 1148 // TODO: Allow VPSEL and VPNOT, we currently cannot because: 1149 // 1) It will use the VPR as a predicate operand, but doesn't have to be 1150 // instead a VPT block, which means we can assert while building up 1151 // the VPT block because we don't find another VPT or VPST to being a new 1152 // one. 1153 // 2) VPSEL still requires a VPR operand even after tail predicating, 1154 // which means we can't remove it unless there is another 1155 // instruction, such as vcmp, that can provide the VPR def. 1156 return false; 1157 } 1158 1159 // Record all VCTPs and check that they're equivalent to one another. 1160 if (isVCTP(MI) && !AddVCTP(MI)) 1161 return false; 1162 1163 // Inspect uses first so that any instructions that alter the VPR don't 1164 // alter the predicate upon themselves. 1165 const MCInstrDesc &MCID = MI->getDesc(); 1166 bool IsUse = false; 1167 unsigned LastOpIdx = MI->getNumOperands() - 1; 1168 for (auto &Op : enumerate(reverse(MCID.operands()))) { 1169 const MachineOperand &MO = MI->getOperand(LastOpIdx - Op.index()); 1170 if (!MO.isReg() || !MO.isUse() || MO.getReg() != ARM::VPR) 1171 continue; 1172 1173 if (ARM::isVpred(Op.value().OperandType)) { 1174 VPTState::addInst(MI); 1175 IsUse = true; 1176 } else if (MI->getOpcode() != ARM::MVE_VPST) { 1177 LLVM_DEBUG(dbgs() << "ARM Loops: Found instruction using vpr: " << *MI); 1178 return false; 1179 } 1180 } 1181 1182 // If we find an instruction that has been marked as not valid for tail 1183 // predication, only allow the instruction if it's contained within a valid 1184 // VPT block. 1185 bool RequiresExplicitPredication = 1186 (MCID.TSFlags & ARMII::ValidForTailPredication) == 0; 1187 if (isDomainMVE(MI) && RequiresExplicitPredication) { 1188 LLVM_DEBUG(if (!IsUse) 1189 dbgs() << "ARM Loops: Can't tail predicate: " << *MI); 1190 return IsUse; 1191 } 1192 1193 // If the instruction is already explicitly predicated, then the conversion 1194 // will be fine, but ensure that all store operations are predicated. 1195 if (MI->mayStore()) 1196 return IsUse; 1197 1198 // If this instruction defines the VPR, update the predicate for the 1199 // proceeding instructions. 1200 if (isVectorPredicate(MI)) { 1201 // Clear the existing predicate when we're not in VPT Active state, 1202 // otherwise we add to it. 1203 if (!isVectorPredicated(MI)) 1204 VPTState::resetPredicate(MI); 1205 else 1206 VPTState::addPredicate(MI); 1207 } 1208 1209 // Finally once the predicate has been modified, we can start a new VPT 1210 // block if necessary. 1211 if (isVPTOpcode(MI->getOpcode())) 1212 VPTState::CreateVPTBlock(MI); 1213 1214 return true; 1215 } 1216 1217 bool ARMLowOverheadLoops::runOnMachineFunction(MachineFunction &mf) { 1218 const ARMSubtarget &ST = static_cast<const ARMSubtarget&>(mf.getSubtarget()); 1219 if (!ST.hasLOB()) 1220 return false; 1221 1222 MF = &mf; 1223 LLVM_DEBUG(dbgs() << "ARM Loops on " << MF->getName() << " ------------- \n"); 1224 1225 MLI = &getAnalysis<MachineLoopInfo>(); 1226 RDA = &getAnalysis<ReachingDefAnalysis>(); 1227 MF->getProperties().set(MachineFunctionProperties::Property::TracksLiveness); 1228 MRI = &MF->getRegInfo(); 1229 TII = static_cast<const ARMBaseInstrInfo*>(ST.getInstrInfo()); 1230 TRI = ST.getRegisterInfo(); 1231 BBUtils = std::unique_ptr<ARMBasicBlockUtils>(new ARMBasicBlockUtils(*MF)); 1232 BBUtils->computeAllBlockSizes(); 1233 BBUtils->adjustBBOffsetsAfter(&MF->front()); 1234 1235 bool Changed = false; 1236 for (auto ML : *MLI) { 1237 if (ML->isOutermost()) 1238 Changed |= ProcessLoop(ML); 1239 } 1240 Changed |= RevertNonLoops(); 1241 return Changed; 1242 } 1243 1244 bool ARMLowOverheadLoops::ProcessLoop(MachineLoop *ML) { 1245 1246 bool Changed = false; 1247 1248 // Process inner loops first. 1249 for (auto I = ML->begin(), E = ML->end(); I != E; ++I) 1250 Changed |= ProcessLoop(*I); 1251 1252 LLVM_DEBUG(dbgs() << "ARM Loops: Processing loop containing:\n"; 1253 if (auto *Preheader = ML->getLoopPreheader()) 1254 dbgs() << " - " << Preheader->getName() << "\n"; 1255 else if (auto *Preheader = MLI->findLoopPreheader(ML)) 1256 dbgs() << " - " << Preheader->getName() << "\n"; 1257 else if (auto *Preheader = MLI->findLoopPreheader(ML, true)) 1258 dbgs() << " - " << Preheader->getName() << "\n"; 1259 for (auto *MBB : ML->getBlocks()) 1260 dbgs() << " - " << MBB->getName() << "\n"; 1261 ); 1262 1263 // Search the given block for a loop start instruction. If one isn't found, 1264 // and there's only one predecessor block, search that one too. 1265 std::function<MachineInstr*(MachineBasicBlock*)> SearchForStart = 1266 [&SearchForStart](MachineBasicBlock *MBB) -> MachineInstr* { 1267 for (auto &MI : *MBB) { 1268 if (isLoopStart(MI)) 1269 return &MI; 1270 } 1271 if (MBB->pred_size() == 1) 1272 return SearchForStart(*MBB->pred_begin()); 1273 return nullptr; 1274 }; 1275 1276 LowOverheadLoop LoLoop(*ML, *MLI, *RDA, *TRI, *TII); 1277 // Search the preheader for the start intrinsic. 1278 // FIXME: I don't see why we shouldn't be supporting multiple predecessors 1279 // with potentially multiple set.loop.iterations, so we need to enable this. 1280 if (LoLoop.Preheader) 1281 LoLoop.Start = SearchForStart(LoLoop.Preheader); 1282 else 1283 return false; 1284 1285 // Find the low-overhead loop components and decide whether or not to fall 1286 // back to a normal loop. Also look for a vctp instructions and decide 1287 // whether we can convert that predicate using tail predication. 1288 for (auto *MBB : reverse(ML->getBlocks())) { 1289 for (auto &MI : *MBB) { 1290 if (MI.isDebugValue()) 1291 continue; 1292 else if (MI.getOpcode() == ARM::t2LoopDec) 1293 LoLoop.Dec = &MI; 1294 else if (MI.getOpcode() == ARM::t2LoopEnd) 1295 LoLoop.End = &MI; 1296 else if (MI.getOpcode() == ARM::t2LoopEndDec) 1297 LoLoop.End = LoLoop.Dec = &MI; 1298 else if (isLoopStart(MI)) 1299 LoLoop.Start = &MI; 1300 else if (MI.getDesc().isCall()) { 1301 // TODO: Though the call will require LE to execute again, does this 1302 // mean we should revert? Always executing LE hopefully should be 1303 // faster than performing a sub,cmp,br or even subs,br. 1304 LoLoop.Revert = true; 1305 LLVM_DEBUG(dbgs() << "ARM Loops: Found call.\n"); 1306 } else { 1307 // Record VPR defs and build up their corresponding vpt blocks. 1308 // Check we know how to tail predicate any mve instructions. 1309 LoLoop.AnalyseMVEInst(&MI); 1310 } 1311 } 1312 } 1313 1314 LLVM_DEBUG(LoLoop.dump()); 1315 if (!LoLoop.FoundAllComponents()) { 1316 LLVM_DEBUG(dbgs() << "ARM Loops: Didn't find loop start, update, end\n"); 1317 return false; 1318 } 1319 1320 // Check that the only instruction using LoopDec is LoopEnd. This can only 1321 // happen when the Dec and End are separate, not a single t2LoopEndDec. 1322 // TODO: Check for copy chains that really have no effect. 1323 if (LoLoop.Dec != LoLoop.End) { 1324 SmallPtrSet<MachineInstr *, 2> Uses; 1325 RDA->getReachingLocalUses(LoLoop.Dec, MCRegister::from(ARM::LR), Uses); 1326 if (Uses.size() > 1 || !Uses.count(LoLoop.End)) { 1327 LLVM_DEBUG(dbgs() << "ARM Loops: Unable to remove LoopDec.\n"); 1328 LoLoop.Revert = true; 1329 } 1330 } 1331 LoLoop.Validate(BBUtils.get()); 1332 Expand(LoLoop); 1333 return true; 1334 } 1335 1336 // WhileLoopStart holds the exit block, so produce a cmp lr, 0 and then a 1337 // beq that branches to the exit branch. 1338 // TODO: We could also try to generate a cbz if the value in LR is also in 1339 // another low register. 1340 void ARMLowOverheadLoops::RevertWhile(MachineInstr *MI) const { 1341 LLVM_DEBUG(dbgs() << "ARM Loops: Reverting to cmp: " << *MI); 1342 MachineBasicBlock *DestBB = MI->getOperand(1).getMBB(); 1343 unsigned BrOpc = BBUtils->isBBInRange(MI, DestBB, 254) ? 1344 ARM::tBcc : ARM::t2Bcc; 1345 1346 RevertWhileLoopStart(MI, TII, BrOpc); 1347 } 1348 1349 void ARMLowOverheadLoops::RevertDo(MachineInstr *MI) const { 1350 LLVM_DEBUG(dbgs() << "ARM Loops: Reverting to mov: " << *MI); 1351 RevertDoLoopStart(MI, TII); 1352 } 1353 1354 bool ARMLowOverheadLoops::RevertLoopDec(MachineInstr *MI) const { 1355 LLVM_DEBUG(dbgs() << "ARM Loops: Reverting to sub: " << *MI); 1356 MachineBasicBlock *MBB = MI->getParent(); 1357 SmallPtrSet<MachineInstr*, 1> Ignore; 1358 for (auto I = MachineBasicBlock::iterator(MI), E = MBB->end(); I != E; ++I) { 1359 if (I->getOpcode() == ARM::t2LoopEnd) { 1360 Ignore.insert(&*I); 1361 break; 1362 } 1363 } 1364 1365 // If nothing defines CPSR between LoopDec and LoopEnd, use a t2SUBS. 1366 bool SetFlags = 1367 RDA->isSafeToDefRegAt(MI, MCRegister::from(ARM::CPSR), Ignore); 1368 1369 llvm::RevertLoopDec(MI, TII, SetFlags); 1370 return SetFlags; 1371 } 1372 1373 // Generate a subs, or sub and cmp, and a branch instead of an LE. 1374 void ARMLowOverheadLoops::RevertLoopEnd(MachineInstr *MI, bool SkipCmp) const { 1375 LLVM_DEBUG(dbgs() << "ARM Loops: Reverting to cmp, br: " << *MI); 1376 1377 MachineBasicBlock *DestBB = MI->getOperand(1).getMBB(); 1378 unsigned BrOpc = BBUtils->isBBInRange(MI, DestBB, 254) ? 1379 ARM::tBcc : ARM::t2Bcc; 1380 1381 llvm::RevertLoopEnd(MI, TII, BrOpc, SkipCmp); 1382 } 1383 1384 // Generate a subs, or sub and cmp, and a branch instead of an LE. 1385 void ARMLowOverheadLoops::RevertLoopEndDec(MachineInstr *MI) const { 1386 LLVM_DEBUG(dbgs() << "ARM Loops: Reverting to subs, br: " << *MI); 1387 assert(MI->getOpcode() == ARM::t2LoopEndDec && "Expected a t2LoopEndDec!"); 1388 MachineBasicBlock *MBB = MI->getParent(); 1389 1390 MachineInstrBuilder MIB = 1391 BuildMI(*MBB, MI, MI->getDebugLoc(), TII->get(ARM::t2SUBri)); 1392 MIB.addDef(ARM::LR); 1393 MIB.add(MI->getOperand(1)); 1394 MIB.addImm(1); 1395 MIB.addImm(ARMCC::AL); 1396 MIB.addReg(ARM::NoRegister); 1397 MIB.addReg(ARM::CPSR); 1398 MIB->getOperand(5).setIsDef(true); 1399 1400 MachineBasicBlock *DestBB = MI->getOperand(2).getMBB(); 1401 unsigned BrOpc = 1402 BBUtils->isBBInRange(MI, DestBB, 254) ? ARM::tBcc : ARM::t2Bcc; 1403 1404 // Create bne 1405 MIB = BuildMI(*MBB, MI, MI->getDebugLoc(), TII->get(BrOpc)); 1406 MIB.add(MI->getOperand(2)); // branch target 1407 MIB.addImm(ARMCC::NE); // condition code 1408 MIB.addReg(ARM::CPSR); 1409 1410 MI->eraseFromParent(); 1411 } 1412 1413 // Perform dead code elimation on the loop iteration count setup expression. 1414 // If we are tail-predicating, the number of elements to be processed is the 1415 // operand of the VCTP instruction in the vector body, see getCount(), which is 1416 // register $r3 in this example: 1417 // 1418 // $lr = big-itercount-expression 1419 // .. 1420 // $lr = t2DoLoopStart renamable $lr 1421 // vector.body: 1422 // .. 1423 // $vpr = MVE_VCTP32 renamable $r3 1424 // renamable $lr = t2LoopDec killed renamable $lr, 1 1425 // t2LoopEnd renamable $lr, %vector.body 1426 // tB %end 1427 // 1428 // What we would like achieve here is to replace the do-loop start pseudo 1429 // instruction t2DoLoopStart with: 1430 // 1431 // $lr = MVE_DLSTP_32 killed renamable $r3 1432 // 1433 // Thus, $r3 which defines the number of elements, is written to $lr, 1434 // and then we want to delete the whole chain that used to define $lr, 1435 // see the comment below how this chain could look like. 1436 // 1437 void ARMLowOverheadLoops::IterationCountDCE(LowOverheadLoop &LoLoop) { 1438 if (!LoLoop.IsTailPredicationLegal()) 1439 return; 1440 1441 LLVM_DEBUG(dbgs() << "ARM Loops: Trying DCE on loop iteration count.\n"); 1442 1443 MachineInstr *Def = 1444 RDA->getMIOperand(LoLoop.Start, isDo(LoLoop.Start) ? 1 : 0); 1445 if (!Def) { 1446 LLVM_DEBUG(dbgs() << "ARM Loops: Couldn't find iteration count.\n"); 1447 return; 1448 } 1449 1450 // Collect and remove the users of iteration count. 1451 SmallPtrSet<MachineInstr*, 4> Killed = { LoLoop.Start, LoLoop.Dec, 1452 LoLoop.End }; 1453 if (!TryRemove(Def, *RDA, LoLoop.ToRemove, Killed)) 1454 LLVM_DEBUG(dbgs() << "ARM Loops: Unsafe to remove loop iteration count.\n"); 1455 } 1456 1457 MachineInstr* ARMLowOverheadLoops::ExpandLoopStart(LowOverheadLoop &LoLoop) { 1458 LLVM_DEBUG(dbgs() << "ARM Loops: Expanding LoopStart.\n"); 1459 // When using tail-predication, try to delete the dead code that was used to 1460 // calculate the number of loop iterations. 1461 IterationCountDCE(LoLoop); 1462 1463 MachineBasicBlock::iterator InsertPt = LoLoop.StartInsertPt; 1464 MachineInstr *Start = LoLoop.Start; 1465 MachineBasicBlock *MBB = LoLoop.StartInsertBB; 1466 unsigned Opc = LoLoop.getStartOpcode(); 1467 MachineOperand &Count = LoLoop.getLoopStartOperand(); 1468 1469 // A DLS lr, lr we needn't emit 1470 MachineInstr* NewStart; 1471 if (Opc == ARM::t2DLS && Count.isReg() && Count.getReg() == ARM::LR) { 1472 LLVM_DEBUG(dbgs() << "ARM Loops: Didn't insert start: DLS lr, lr"); 1473 NewStart = nullptr; 1474 } else { 1475 MachineInstrBuilder MIB = 1476 BuildMI(*MBB, InsertPt, Start->getDebugLoc(), TII->get(Opc)); 1477 1478 MIB.addDef(ARM::LR); 1479 MIB.add(Count); 1480 if (!isDo(Start)) 1481 MIB.add(Start->getOperand(1)); 1482 1483 LLVM_DEBUG(dbgs() << "ARM Loops: Inserted start: " << *MIB); 1484 NewStart = &*MIB; 1485 } 1486 1487 LoLoop.ToRemove.insert(Start); 1488 return NewStart; 1489 } 1490 1491 void ARMLowOverheadLoops::ConvertVPTBlocks(LowOverheadLoop &LoLoop) { 1492 auto RemovePredicate = [](MachineInstr *MI) { 1493 LLVM_DEBUG(dbgs() << "ARM Loops: Removing predicate from: " << *MI); 1494 if (int PIdx = llvm::findFirstVPTPredOperandIdx(*MI)) { 1495 assert(MI->getOperand(PIdx).getImm() == ARMVCC::Then && 1496 "Expected Then predicate!"); 1497 MI->getOperand(PIdx).setImm(ARMVCC::None); 1498 MI->getOperand(PIdx+1).setReg(0); 1499 } else 1500 llvm_unreachable("trying to unpredicate a non-predicated instruction"); 1501 }; 1502 1503 for (auto &Block : LoLoop.getVPTBlocks()) { 1504 SmallVectorImpl<MachineInstr *> &Insts = Block.getInsts(); 1505 1506 auto ReplaceVCMPWithVPT = [&](MachineInstr *&TheVCMP, MachineInstr *At) { 1507 assert(TheVCMP && "Replacing a removed or non-existent VCMP"); 1508 // Replace the VCMP with a VPT 1509 MachineInstrBuilder MIB = 1510 BuildMI(*At->getParent(), At, At->getDebugLoc(), 1511 TII->get(VCMPOpcodeToVPT(TheVCMP->getOpcode()))); 1512 MIB.addImm(ARMVCC::Then); 1513 // Register one 1514 MIB.add(TheVCMP->getOperand(1)); 1515 // Register two 1516 MIB.add(TheVCMP->getOperand(2)); 1517 // The comparison code, e.g. ge, eq, lt 1518 MIB.add(TheVCMP->getOperand(3)); 1519 LLVM_DEBUG(dbgs() << "ARM Loops: Combining with VCMP to VPT: " << *MIB); 1520 LoLoop.BlockMasksToRecompute.insert(MIB.getInstr()); 1521 LoLoop.ToRemove.insert(TheVCMP); 1522 TheVCMP = nullptr; 1523 }; 1524 1525 if (VPTState::isEntryPredicatedOnVCTP(Block, /*exclusive*/ true)) { 1526 MachineInstr *VPST = Insts.front(); 1527 if (VPTState::hasUniformPredicate(Block)) { 1528 // A vpt block starting with VPST, is only predicated upon vctp and has no 1529 // internal vpr defs: 1530 // - Remove vpst. 1531 // - Unpredicate the remaining instructions. 1532 LLVM_DEBUG(dbgs() << "ARM Loops: Removing VPST: " << *VPST); 1533 for (unsigned i = 1; i < Insts.size(); ++i) 1534 RemovePredicate(Insts[i]); 1535 } else { 1536 // The VPT block has a non-uniform predicate but it uses a vpst and its 1537 // entry is guarded only by a vctp, which means we: 1538 // - Need to remove the original vpst. 1539 // - Then need to unpredicate any following instructions, until 1540 // we come across the divergent vpr def. 1541 // - Insert a new vpst to predicate the instruction(s) that following 1542 // the divergent vpr def. 1543 MachineInstr *Divergent = VPTState::getDivergent(Block); 1544 auto DivergentNext = ++MachineBasicBlock::iterator(Divergent); 1545 bool DivergentNextIsPredicated = 1546 getVPTInstrPredicate(*DivergentNext) != ARMVCC::None; 1547 1548 for (auto I = ++MachineBasicBlock::iterator(VPST), E = DivergentNext; 1549 I != E; ++I) 1550 RemovePredicate(&*I); 1551 1552 // Check if the instruction defining vpr is a vcmp so it can be combined 1553 // with the VPST This should be the divergent instruction 1554 MachineInstr *VCMP = 1555 VCMPOpcodeToVPT(Divergent->getOpcode()) != 0 ? Divergent : nullptr; 1556 1557 if (DivergentNextIsPredicated) { 1558 // Insert a VPST at the divergent only if the next instruction 1559 // would actually use it. A VCMP following a VPST can be 1560 // merged into a VPT so do that instead if the VCMP exists. 1561 if (!VCMP) { 1562 // Create a VPST (with a null mask for now, we'll recompute it 1563 // later) 1564 MachineInstrBuilder MIB = 1565 BuildMI(*Divergent->getParent(), Divergent, 1566 Divergent->getDebugLoc(), TII->get(ARM::MVE_VPST)); 1567 MIB.addImm(0); 1568 LLVM_DEBUG(dbgs() << "ARM Loops: Created VPST: " << *MIB); 1569 LoLoop.BlockMasksToRecompute.insert(MIB.getInstr()); 1570 } else { 1571 // No RDA checks are necessary here since the VPST would have been 1572 // directly after the VCMP 1573 ReplaceVCMPWithVPT(VCMP, VCMP); 1574 } 1575 } 1576 } 1577 LLVM_DEBUG(dbgs() << "ARM Loops: Removing VPST: " << *VPST); 1578 LoLoop.ToRemove.insert(VPST); 1579 } else if (Block.containsVCTP()) { 1580 // The vctp will be removed, so either the entire block will be dead or 1581 // the block mask of the vp(s)t will need to be recomputed. 1582 MachineInstr *VPST = Insts.front(); 1583 if (Block.size() == 2) { 1584 assert(VPST->getOpcode() == ARM::MVE_VPST && 1585 "Found a VPST in an otherwise empty vpt block"); 1586 LoLoop.ToRemove.insert(VPST); 1587 } else 1588 LoLoop.BlockMasksToRecompute.insert(VPST); 1589 } else if (Insts.front()->getOpcode() == ARM::MVE_VPST) { 1590 // If this block starts with a VPST then attempt to merge it with the 1591 // preceeding un-merged VCMP into a VPT. This VCMP comes from a VPT 1592 // block that no longer exists 1593 MachineInstr *VPST = Insts.front(); 1594 auto Next = ++MachineBasicBlock::iterator(VPST); 1595 assert(getVPTInstrPredicate(*Next) != ARMVCC::None && 1596 "The instruction after a VPST must be predicated"); 1597 (void)Next; 1598 MachineInstr *VprDef = RDA->getUniqueReachingMIDef(VPST, ARM::VPR); 1599 if (VprDef && VCMPOpcodeToVPT(VprDef->getOpcode()) && 1600 !LoLoop.ToRemove.contains(VprDef)) { 1601 MachineInstr *VCMP = VprDef; 1602 // The VCMP and VPST can only be merged if the VCMP's operands will have 1603 // the same values at the VPST. 1604 // If any of the instructions between the VCMP and VPST are predicated 1605 // then a different code path is expected to have merged the VCMP and 1606 // VPST already. 1607 if (!std::any_of(++MachineBasicBlock::iterator(VCMP), 1608 MachineBasicBlock::iterator(VPST), hasVPRUse) && 1609 RDA->hasSameReachingDef(VCMP, VPST, VCMP->getOperand(1).getReg()) && 1610 RDA->hasSameReachingDef(VCMP, VPST, VCMP->getOperand(2).getReg())) { 1611 ReplaceVCMPWithVPT(VCMP, VPST); 1612 LLVM_DEBUG(dbgs() << "ARM Loops: Removing VPST: " << *VPST); 1613 LoLoop.ToRemove.insert(VPST); 1614 } 1615 } 1616 } 1617 } 1618 1619 LoLoop.ToRemove.insert(LoLoop.VCTPs.begin(), LoLoop.VCTPs.end()); 1620 } 1621 1622 void ARMLowOverheadLoops::Expand(LowOverheadLoop &LoLoop) { 1623 1624 // Combine the LoopDec and LoopEnd instructions into LE(TP). 1625 auto ExpandLoopEnd = [this](LowOverheadLoop &LoLoop) { 1626 MachineInstr *End = LoLoop.End; 1627 MachineBasicBlock *MBB = End->getParent(); 1628 unsigned Opc = LoLoop.IsTailPredicationLegal() ? 1629 ARM::MVE_LETP : ARM::t2LEUpdate; 1630 MachineInstrBuilder MIB = BuildMI(*MBB, End, End->getDebugLoc(), 1631 TII->get(Opc)); 1632 MIB.addDef(ARM::LR); 1633 unsigned Off = LoLoop.Dec == LoLoop.End ? 1 : 0; 1634 MIB.add(End->getOperand(Off + 0)); 1635 MIB.add(End->getOperand(Off + 1)); 1636 LLVM_DEBUG(dbgs() << "ARM Loops: Inserted LE: " << *MIB); 1637 LoLoop.ToRemove.insert(LoLoop.Dec); 1638 LoLoop.ToRemove.insert(End); 1639 return &*MIB; 1640 }; 1641 1642 // TODO: We should be able to automatically remove these branches before we 1643 // get here - probably by teaching analyzeBranch about the pseudo 1644 // instructions. 1645 // If there is an unconditional branch, after I, that just branches to the 1646 // next block, remove it. 1647 auto RemoveDeadBranch = [](MachineInstr *I) { 1648 MachineBasicBlock *BB = I->getParent(); 1649 MachineInstr *Terminator = &BB->instr_back(); 1650 if (Terminator->isUnconditionalBranch() && I != Terminator) { 1651 MachineBasicBlock *Succ = Terminator->getOperand(0).getMBB(); 1652 if (BB->isLayoutSuccessor(Succ)) { 1653 LLVM_DEBUG(dbgs() << "ARM Loops: Removing branch: " << *Terminator); 1654 Terminator->eraseFromParent(); 1655 } 1656 } 1657 }; 1658 1659 if (LoLoop.Revert) { 1660 if (LoLoop.Start->getOpcode() == ARM::t2WhileLoopStart) 1661 RevertWhile(LoLoop.Start); 1662 else 1663 RevertDo(LoLoop.Start); 1664 if (LoLoop.Dec == LoLoop.End) 1665 RevertLoopEndDec(LoLoop.End); 1666 else 1667 RevertLoopEnd(LoLoop.End, RevertLoopDec(LoLoop.Dec)); 1668 } else { 1669 LoLoop.Start = ExpandLoopStart(LoLoop); 1670 if (LoLoop.Start) 1671 RemoveDeadBranch(LoLoop.Start); 1672 LoLoop.End = ExpandLoopEnd(LoLoop); 1673 RemoveDeadBranch(LoLoop.End); 1674 if (LoLoop.IsTailPredicationLegal()) 1675 ConvertVPTBlocks(LoLoop); 1676 for (auto *I : LoLoop.ToRemove) { 1677 LLVM_DEBUG(dbgs() << "ARM Loops: Erasing " << *I); 1678 I->eraseFromParent(); 1679 } 1680 for (auto *I : LoLoop.BlockMasksToRecompute) { 1681 LLVM_DEBUG(dbgs() << "ARM Loops: Recomputing VPT/VPST Block Mask: " << *I); 1682 recomputeVPTBlockMask(*I); 1683 LLVM_DEBUG(dbgs() << " ... done: " << *I); 1684 } 1685 } 1686 1687 PostOrderLoopTraversal DFS(LoLoop.ML, *MLI); 1688 DFS.ProcessLoop(); 1689 const SmallVectorImpl<MachineBasicBlock*> &PostOrder = DFS.getOrder(); 1690 for (auto *MBB : PostOrder) { 1691 recomputeLiveIns(*MBB); 1692 // FIXME: For some reason, the live-in print order is non-deterministic for 1693 // our tests and I can't out why... So just sort them. 1694 MBB->sortUniqueLiveIns(); 1695 } 1696 1697 for (auto *MBB : reverse(PostOrder)) 1698 recomputeLivenessFlags(*MBB); 1699 1700 // We've moved, removed and inserted new instructions, so update RDA. 1701 RDA->reset(); 1702 } 1703 1704 bool ARMLowOverheadLoops::RevertNonLoops() { 1705 LLVM_DEBUG(dbgs() << "ARM Loops: Reverting any remaining pseudos...\n"); 1706 bool Changed = false; 1707 1708 for (auto &MBB : *MF) { 1709 SmallVector<MachineInstr*, 4> Starts; 1710 SmallVector<MachineInstr*, 4> Decs; 1711 SmallVector<MachineInstr*, 4> Ends; 1712 SmallVector<MachineInstr *, 4> EndDecs; 1713 1714 for (auto &I : MBB) { 1715 if (isLoopStart(I)) 1716 Starts.push_back(&I); 1717 else if (I.getOpcode() == ARM::t2LoopDec) 1718 Decs.push_back(&I); 1719 else if (I.getOpcode() == ARM::t2LoopEnd) 1720 Ends.push_back(&I); 1721 else if (I.getOpcode() == ARM::t2LoopEndDec) 1722 EndDecs.push_back(&I); 1723 } 1724 1725 if (Starts.empty() && Decs.empty() && Ends.empty() && EndDecs.empty()) 1726 continue; 1727 1728 Changed = true; 1729 1730 for (auto *Start : Starts) { 1731 if (Start->getOpcode() == ARM::t2WhileLoopStart) 1732 RevertWhile(Start); 1733 else 1734 RevertDo(Start); 1735 } 1736 for (auto *Dec : Decs) 1737 RevertLoopDec(Dec); 1738 1739 for (auto *End : Ends) 1740 RevertLoopEnd(End); 1741 for (auto *End : EndDecs) 1742 RevertLoopEndDec(End); 1743 } 1744 return Changed; 1745 } 1746 1747 FunctionPass *llvm::createARMLowOverheadLoopsPass() { 1748 return new ARMLowOverheadLoops(); 1749 } 1750