1 //===-- MipsDelaySlotFiller.cpp - Mips Delay Slot Filler ------------------===// 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 // Simple pass to fill delay slots with useful instructions. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "MCTargetDesc/MipsMCNaCl.h" 15 #include "Mips.h" 16 #include "MipsInstrInfo.h" 17 #include "MipsTargetMachine.h" 18 #include "llvm/ADT/BitVector.h" 19 #include "llvm/ADT/SmallPtrSet.h" 20 #include "llvm/ADT/Statistic.h" 21 #include "llvm/Analysis/AliasAnalysis.h" 22 #include "llvm/Analysis/ValueTracking.h" 23 #include "llvm/CodeGen/MachineBranchProbabilityInfo.h" 24 #include "llvm/CodeGen/MachineFunctionPass.h" 25 #include "llvm/CodeGen/MachineInstrBuilder.h" 26 #include "llvm/CodeGen/MachineRegisterInfo.h" 27 #include "llvm/CodeGen/PseudoSourceValue.h" 28 #include "llvm/Support/CommandLine.h" 29 #include "llvm/Target/TargetInstrInfo.h" 30 #include "llvm/Target/TargetMachine.h" 31 #include "llvm/Target/TargetRegisterInfo.h" 32 33 using namespace llvm; 34 35 #define DEBUG_TYPE "delay-slot-filler" 36 37 STATISTIC(FilledSlots, "Number of delay slots filled"); 38 STATISTIC(UsefulSlots, "Number of delay slots filled with instructions that" 39 " are not NOP."); 40 41 static cl::opt<bool> DisableDelaySlotFiller( 42 "disable-mips-delay-filler", 43 cl::init(false), 44 cl::desc("Fill all delay slots with NOPs."), 45 cl::Hidden); 46 47 static cl::opt<bool> DisableForwardSearch( 48 "disable-mips-df-forward-search", 49 cl::init(true), 50 cl::desc("Disallow MIPS delay filler to search forward."), 51 cl::Hidden); 52 53 static cl::opt<bool> DisableSuccBBSearch( 54 "disable-mips-df-succbb-search", 55 cl::init(true), 56 cl::desc("Disallow MIPS delay filler to search successor basic blocks."), 57 cl::Hidden); 58 59 static cl::opt<bool> DisableBackwardSearch( 60 "disable-mips-df-backward-search", 61 cl::init(false), 62 cl::desc("Disallow MIPS delay filler to search backward."), 63 cl::Hidden); 64 65 namespace { 66 typedef MachineBasicBlock::iterator Iter; 67 typedef MachineBasicBlock::reverse_iterator ReverseIter; 68 typedef SmallDenseMap<MachineBasicBlock*, MachineInstr*, 2> BB2BrMap; 69 70 class RegDefsUses { 71 public: 72 RegDefsUses(TargetMachine &TM); 73 void init(const MachineInstr &MI); 74 75 /// This function sets all caller-saved registers in Defs. 76 void setCallerSaved(const MachineInstr &MI); 77 78 /// This function sets all unallocatable registers in Defs. 79 void setUnallocatableRegs(const MachineFunction &MF); 80 81 /// Set bits in Uses corresponding to MBB's live-out registers except for 82 /// the registers that are live-in to SuccBB. 83 void addLiveOut(const MachineBasicBlock &MBB, 84 const MachineBasicBlock &SuccBB); 85 86 bool update(const MachineInstr &MI, unsigned Begin, unsigned End); 87 88 private: 89 bool checkRegDefsUses(BitVector &NewDefs, BitVector &NewUses, unsigned Reg, 90 bool IsDef) const; 91 92 /// Returns true if Reg or its alias is in RegSet. 93 bool isRegInSet(const BitVector &RegSet, unsigned Reg) const; 94 95 const TargetRegisterInfo &TRI; 96 BitVector Defs, Uses; 97 }; 98 99 /// Base class for inspecting loads and stores. 100 class InspectMemInstr { 101 public: 102 InspectMemInstr(bool ForbidMemInstr_) 103 : OrigSeenLoad(false), OrigSeenStore(false), SeenLoad(false), 104 SeenStore(false), ForbidMemInstr(ForbidMemInstr_) {} 105 106 /// Return true if MI cannot be moved to delay slot. 107 bool hasHazard(const MachineInstr &MI); 108 109 virtual ~InspectMemInstr() {} 110 111 protected: 112 /// Flags indicating whether loads or stores have been seen. 113 bool OrigSeenLoad, OrigSeenStore, SeenLoad, SeenStore; 114 115 /// Memory instructions are not allowed to move to delay slot if this flag 116 /// is true. 117 bool ForbidMemInstr; 118 119 private: 120 virtual bool hasHazard_(const MachineInstr &MI) = 0; 121 }; 122 123 /// This subclass rejects any memory instructions. 124 class NoMemInstr : public InspectMemInstr { 125 public: 126 NoMemInstr() : InspectMemInstr(true) {} 127 private: 128 bool hasHazard_(const MachineInstr &MI) override { return true; } 129 }; 130 131 /// This subclass accepts loads from stacks and constant loads. 132 class LoadFromStackOrConst : public InspectMemInstr { 133 public: 134 LoadFromStackOrConst() : InspectMemInstr(false) {} 135 private: 136 bool hasHazard_(const MachineInstr &MI) override; 137 }; 138 139 /// This subclass uses memory dependence information to determine whether a 140 /// memory instruction can be moved to a delay slot. 141 class MemDefsUses : public InspectMemInstr { 142 public: 143 MemDefsUses(const MachineFrameInfo *MFI); 144 145 private: 146 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType; 147 148 bool hasHazard_(const MachineInstr &MI) override; 149 150 /// Update Defs and Uses. Return true if there exist dependences that 151 /// disqualify the delay slot candidate between V and values in Uses and 152 /// Defs. 153 bool updateDefsUses(ValueType V, bool MayStore); 154 155 /// Get the list of underlying objects of MI's memory operand. 156 bool getUnderlyingObjects(const MachineInstr &MI, 157 SmallVectorImpl<ValueType> &Objects) const; 158 159 const MachineFrameInfo *MFI; 160 SmallPtrSet<ValueType, 4> Uses, Defs; 161 162 /// Flags indicating whether loads or stores with no underlying objects have 163 /// been seen. 164 bool SeenNoObjLoad, SeenNoObjStore; 165 }; 166 167 class Filler : public MachineFunctionPass { 168 public: 169 Filler(TargetMachine &tm) 170 : MachineFunctionPass(ID), TM(tm) { } 171 172 const char *getPassName() const override { 173 return "Mips Delay Slot Filler"; 174 } 175 176 bool runOnMachineFunction(MachineFunction &F) override { 177 bool Changed = false; 178 for (MachineFunction::iterator FI = F.begin(), FE = F.end(); 179 FI != FE; ++FI) 180 Changed |= runOnMachineBasicBlock(*FI); 181 182 // This pass invalidates liveness information when it reorders 183 // instructions to fill delay slot. Without this, -verify-machineinstrs 184 // will fail. 185 if (Changed) 186 F.getRegInfo().invalidateLiveness(); 187 188 return Changed; 189 } 190 191 void getAnalysisUsage(AnalysisUsage &AU) const override { 192 AU.addRequired<MachineBranchProbabilityInfo>(); 193 MachineFunctionPass::getAnalysisUsage(AU); 194 } 195 196 private: 197 bool runOnMachineBasicBlock(MachineBasicBlock &MBB); 198 199 /// This function checks if it is valid to move Candidate to the delay slot 200 /// and returns true if it isn't. It also updates memory and register 201 /// dependence information. 202 bool delayHasHazard(const MachineInstr &Candidate, RegDefsUses &RegDU, 203 InspectMemInstr &IM) const; 204 205 /// This function searches range [Begin, End) for an instruction that can be 206 /// moved to the delay slot. Returns true on success. 207 template<typename IterTy> 208 bool searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End, 209 RegDefsUses &RegDU, InspectMemInstr &IM, 210 IterTy &Filler) const; 211 212 /// This function searches in the backward direction for an instruction that 213 /// can be moved to the delay slot. Returns true on success. 214 bool searchBackward(MachineBasicBlock &MBB, Iter Slot) const; 215 216 /// This function searches MBB in the forward direction for an instruction 217 /// that can be moved to the delay slot. Returns true on success. 218 bool searchForward(MachineBasicBlock &MBB, Iter Slot) const; 219 220 /// This function searches one of MBB's successor blocks for an instruction 221 /// that can be moved to the delay slot and inserts clones of the 222 /// instruction into the successor's predecessor blocks. 223 bool searchSuccBBs(MachineBasicBlock &MBB, Iter Slot) const; 224 225 /// Pick a successor block of MBB. Return NULL if MBB doesn't have a 226 /// successor block that is not a landing pad. 227 MachineBasicBlock *selectSuccBB(MachineBasicBlock &B) const; 228 229 /// This function analyzes MBB and returns an instruction with an unoccupied 230 /// slot that branches to Dst. 231 std::pair<MipsInstrInfo::BranchType, MachineInstr *> 232 getBranch(MachineBasicBlock &MBB, const MachineBasicBlock &Dst) const; 233 234 /// Examine Pred and see if it is possible to insert an instruction into 235 /// one of its branches delay slot or its end. 236 bool examinePred(MachineBasicBlock &Pred, const MachineBasicBlock &Succ, 237 RegDefsUses &RegDU, bool &HasMultipleSuccs, 238 BB2BrMap &BrMap) const; 239 240 bool terminateSearch(const MachineInstr &Candidate) const; 241 242 TargetMachine &TM; 243 244 static char ID; 245 }; 246 char Filler::ID = 0; 247 } // end of anonymous namespace 248 249 static bool hasUnoccupiedSlot(const MachineInstr *MI) { 250 return MI->hasDelaySlot() && !MI->isBundledWithSucc(); 251 } 252 253 /// This function inserts clones of Filler into predecessor blocks. 254 static void insertDelayFiller(Iter Filler, const BB2BrMap &BrMap) { 255 MachineFunction *MF = Filler->getParent()->getParent(); 256 257 for (BB2BrMap::const_iterator I = BrMap.begin(); I != BrMap.end(); ++I) { 258 if (I->second) { 259 MIBundleBuilder(I->second).append(MF->CloneMachineInstr(&*Filler)); 260 ++UsefulSlots; 261 } else { 262 I->first->insert(I->first->end(), MF->CloneMachineInstr(&*Filler)); 263 } 264 } 265 } 266 267 /// This function adds registers Filler defines to MBB's live-in register list. 268 static void addLiveInRegs(Iter Filler, MachineBasicBlock &MBB) { 269 for (unsigned I = 0, E = Filler->getNumOperands(); I != E; ++I) { 270 const MachineOperand &MO = Filler->getOperand(I); 271 unsigned R; 272 273 if (!MO.isReg() || !MO.isDef() || !(R = MO.getReg())) 274 continue; 275 276 #ifndef NDEBUG 277 const MachineFunction &MF = *MBB.getParent(); 278 assert(MF.getTarget() 279 .getSubtargetImpl() 280 ->getRegisterInfo() 281 ->getAllocatableSet(MF) 282 .test(R) && 283 "Shouldn't move an instruction with unallocatable registers across " 284 "basic block boundaries."); 285 #endif 286 287 if (!MBB.isLiveIn(R)) 288 MBB.addLiveIn(R); 289 } 290 } 291 292 RegDefsUses::RegDefsUses(TargetMachine &TM) 293 : TRI(*TM.getSubtargetImpl()->getRegisterInfo()), 294 Defs(TRI.getNumRegs(), false), Uses(TRI.getNumRegs(), false) {} 295 296 void RegDefsUses::init(const MachineInstr &MI) { 297 // Add all register operands which are explicit and non-variadic. 298 update(MI, 0, MI.getDesc().getNumOperands()); 299 300 // If MI is a call, add RA to Defs to prevent users of RA from going into 301 // delay slot. 302 if (MI.isCall()) 303 Defs.set(Mips::RA); 304 305 // Add all implicit register operands of branch instructions except 306 // register AT. 307 if (MI.isBranch()) { 308 update(MI, MI.getDesc().getNumOperands(), MI.getNumOperands()); 309 Defs.reset(Mips::AT); 310 } 311 } 312 313 void RegDefsUses::setCallerSaved(const MachineInstr &MI) { 314 assert(MI.isCall()); 315 316 // If MI is a call, add all caller-saved registers to Defs. 317 BitVector CallerSavedRegs(TRI.getNumRegs(), true); 318 319 CallerSavedRegs.reset(Mips::ZERO); 320 CallerSavedRegs.reset(Mips::ZERO_64); 321 322 for (const MCPhysReg *R = TRI.getCalleeSavedRegs(); *R; ++R) 323 for (MCRegAliasIterator AI(*R, &TRI, true); AI.isValid(); ++AI) 324 CallerSavedRegs.reset(*AI); 325 326 Defs |= CallerSavedRegs; 327 } 328 329 void RegDefsUses::setUnallocatableRegs(const MachineFunction &MF) { 330 BitVector AllocSet = TRI.getAllocatableSet(MF); 331 332 for (int R = AllocSet.find_first(); R != -1; R = AllocSet.find_next(R)) 333 for (MCRegAliasIterator AI(R, &TRI, false); AI.isValid(); ++AI) 334 AllocSet.set(*AI); 335 336 AllocSet.set(Mips::ZERO); 337 AllocSet.set(Mips::ZERO_64); 338 339 Defs |= AllocSet.flip(); 340 } 341 342 void RegDefsUses::addLiveOut(const MachineBasicBlock &MBB, 343 const MachineBasicBlock &SuccBB) { 344 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(), 345 SE = MBB.succ_end(); SI != SE; ++SI) 346 if (*SI != &SuccBB) 347 for (MachineBasicBlock::livein_iterator LI = (*SI)->livein_begin(), 348 LE = (*SI)->livein_end(); LI != LE; ++LI) 349 Uses.set(*LI); 350 } 351 352 bool RegDefsUses::update(const MachineInstr &MI, unsigned Begin, unsigned End) { 353 BitVector NewDefs(TRI.getNumRegs()), NewUses(TRI.getNumRegs()); 354 bool HasHazard = false; 355 356 for (unsigned I = Begin; I != End; ++I) { 357 const MachineOperand &MO = MI.getOperand(I); 358 359 if (MO.isReg() && MO.getReg()) 360 HasHazard |= checkRegDefsUses(NewDefs, NewUses, MO.getReg(), MO.isDef()); 361 } 362 363 Defs |= NewDefs; 364 Uses |= NewUses; 365 366 return HasHazard; 367 } 368 369 bool RegDefsUses::checkRegDefsUses(BitVector &NewDefs, BitVector &NewUses, 370 unsigned Reg, bool IsDef) const { 371 if (IsDef) { 372 NewDefs.set(Reg); 373 // check whether Reg has already been defined or used. 374 return (isRegInSet(Defs, Reg) || isRegInSet(Uses, Reg)); 375 } 376 377 NewUses.set(Reg); 378 // check whether Reg has already been defined. 379 return isRegInSet(Defs, Reg); 380 } 381 382 bool RegDefsUses::isRegInSet(const BitVector &RegSet, unsigned Reg) const { 383 // Check Reg and all aliased Registers. 384 for (MCRegAliasIterator AI(Reg, &TRI, true); AI.isValid(); ++AI) 385 if (RegSet.test(*AI)) 386 return true; 387 return false; 388 } 389 390 bool InspectMemInstr::hasHazard(const MachineInstr &MI) { 391 if (!MI.mayStore() && !MI.mayLoad()) 392 return false; 393 394 if (ForbidMemInstr) 395 return true; 396 397 OrigSeenLoad = SeenLoad; 398 OrigSeenStore = SeenStore; 399 SeenLoad |= MI.mayLoad(); 400 SeenStore |= MI.mayStore(); 401 402 // If MI is an ordered or volatile memory reference, disallow moving 403 // subsequent loads and stores to delay slot. 404 if (MI.hasOrderedMemoryRef() && (OrigSeenLoad || OrigSeenStore)) { 405 ForbidMemInstr = true; 406 return true; 407 } 408 409 return hasHazard_(MI); 410 } 411 412 bool LoadFromStackOrConst::hasHazard_(const MachineInstr &MI) { 413 if (MI.mayStore()) 414 return true; 415 416 if (!MI.hasOneMemOperand() || !(*MI.memoperands_begin())->getPseudoValue()) 417 return true; 418 419 if (const PseudoSourceValue *PSV = 420 (*MI.memoperands_begin())->getPseudoValue()) { 421 if (isa<FixedStackPseudoSourceValue>(PSV)) 422 return false; 423 return !PSV->isConstant(nullptr) && PSV != PseudoSourceValue::getStack(); 424 } 425 426 return true; 427 } 428 429 MemDefsUses::MemDefsUses(const MachineFrameInfo *MFI_) 430 : InspectMemInstr(false), MFI(MFI_), SeenNoObjLoad(false), 431 SeenNoObjStore(false) {} 432 433 bool MemDefsUses::hasHazard_(const MachineInstr &MI) { 434 bool HasHazard = false; 435 SmallVector<ValueType, 4> Objs; 436 437 // Check underlying object list. 438 if (getUnderlyingObjects(MI, Objs)) { 439 for (SmallVectorImpl<ValueType>::const_iterator I = Objs.begin(); 440 I != Objs.end(); ++I) 441 HasHazard |= updateDefsUses(*I, MI.mayStore()); 442 443 return HasHazard; 444 } 445 446 // No underlying objects found. 447 HasHazard = MI.mayStore() && (OrigSeenLoad || OrigSeenStore); 448 HasHazard |= MI.mayLoad() || OrigSeenStore; 449 450 SeenNoObjLoad |= MI.mayLoad(); 451 SeenNoObjStore |= MI.mayStore(); 452 453 return HasHazard; 454 } 455 456 bool MemDefsUses::updateDefsUses(ValueType V, bool MayStore) { 457 if (MayStore) 458 return !Defs.insert(V) || Uses.count(V) || SeenNoObjStore || SeenNoObjLoad; 459 460 Uses.insert(V); 461 return Defs.count(V) || SeenNoObjStore; 462 } 463 464 bool MemDefsUses:: 465 getUnderlyingObjects(const MachineInstr &MI, 466 SmallVectorImpl<ValueType> &Objects) const { 467 if (!MI.hasOneMemOperand() || 468 (!(*MI.memoperands_begin())->getValue() && 469 !(*MI.memoperands_begin())->getPseudoValue())) 470 return false; 471 472 if (const PseudoSourceValue *PSV = 473 (*MI.memoperands_begin())->getPseudoValue()) { 474 if (!PSV->isAliased(MFI)) 475 return false; 476 Objects.push_back(PSV); 477 return true; 478 } 479 480 const Value *V = (*MI.memoperands_begin())->getValue(); 481 482 SmallVector<Value *, 4> Objs; 483 GetUnderlyingObjects(const_cast<Value *>(V), Objs); 484 485 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), E = Objs.end(); 486 I != E; ++I) { 487 if (!isIdentifiedObject(V)) 488 return false; 489 490 Objects.push_back(*I); 491 } 492 493 return true; 494 } 495 496 /// runOnMachineBasicBlock - Fill in delay slots for the given basic block. 497 /// We assume there is only one delay slot per delayed instruction. 498 bool Filler::runOnMachineBasicBlock(MachineBasicBlock &MBB) { 499 bool Changed = false; 500 bool InMicroMipsMode = TM.getSubtarget<MipsSubtarget>().inMicroMipsMode(); 501 502 for (Iter I = MBB.begin(); I != MBB.end(); ++I) { 503 if (!hasUnoccupiedSlot(&*I)) 504 continue; 505 506 // For microMIPS, at the moment, do not fill delay slots of call 507 // instructions. 508 // 509 // TODO: Support for replacing regular call instructions with corresponding 510 // short delay slot instructions should be implemented. 511 if (!InMicroMipsMode || !I->isCall()) { 512 ++FilledSlots; 513 Changed = true; 514 515 // Delay slot filling is disabled at -O0. 516 if (!DisableDelaySlotFiller && (TM.getOptLevel() != CodeGenOpt::None)) { 517 if (searchBackward(MBB, I)) 518 continue; 519 520 if (I->isTerminator()) { 521 if (searchSuccBBs(MBB, I)) 522 continue; 523 } else if (searchForward(MBB, I)) { 524 continue; 525 } 526 } 527 } 528 529 // Bundle the NOP to the instruction with the delay slot. 530 const MipsInstrInfo *TII = static_cast<const MipsInstrInfo *>( 531 TM.getSubtargetImpl()->getInstrInfo()); 532 BuildMI(MBB, std::next(I), I->getDebugLoc(), TII->get(Mips::NOP)); 533 MIBundleBuilder(MBB, I, std::next(I, 2)); 534 } 535 536 return Changed; 537 } 538 539 /// createMipsDelaySlotFillerPass - Returns a pass that fills in delay 540 /// slots in Mips MachineFunctions 541 FunctionPass *llvm::createMipsDelaySlotFillerPass(MipsTargetMachine &tm) { 542 return new Filler(tm); 543 } 544 545 template<typename IterTy> 546 bool Filler::searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End, 547 RegDefsUses &RegDU, InspectMemInstr& IM, 548 IterTy &Filler) const { 549 for (IterTy I = Begin; I != End; ++I) { 550 // skip debug value 551 if (I->isDebugValue()) 552 continue; 553 554 if (terminateSearch(*I)) 555 break; 556 557 assert((!I->isCall() && !I->isReturn() && !I->isBranch()) && 558 "Cannot put calls, returns or branches in delay slot."); 559 560 if (delayHasHazard(*I, RegDU, IM)) 561 continue; 562 563 if (TM.getSubtarget<MipsSubtarget>().isTargetNaCl()) { 564 // In NaCl, instructions that must be masked are forbidden in delay slots. 565 // We only check for loads, stores and SP changes. Calls, returns and 566 // branches are not checked because non-NaCl targets never put them in 567 // delay slots. 568 unsigned AddrIdx; 569 if ((isBasePlusOffsetMemoryAccess(I->getOpcode(), &AddrIdx) && 570 baseRegNeedsLoadStoreMask(I->getOperand(AddrIdx).getReg())) || 571 I->modifiesRegister(Mips::SP, 572 TM.getSubtargetImpl()->getRegisterInfo())) 573 continue; 574 } 575 576 Filler = I; 577 return true; 578 } 579 580 return false; 581 } 582 583 bool Filler::searchBackward(MachineBasicBlock &MBB, Iter Slot) const { 584 if (DisableBackwardSearch) 585 return false; 586 587 RegDefsUses RegDU(TM); 588 MemDefsUses MemDU(MBB.getParent()->getFrameInfo()); 589 ReverseIter Filler; 590 591 RegDU.init(*Slot); 592 593 if (!searchRange(MBB, ReverseIter(Slot), MBB.rend(), RegDU, MemDU, Filler)) 594 return false; 595 596 MBB.splice(std::next(Slot), &MBB, std::next(Filler).base()); 597 MIBundleBuilder(MBB, Slot, std::next(Slot, 2)); 598 ++UsefulSlots; 599 return true; 600 } 601 602 bool Filler::searchForward(MachineBasicBlock &MBB, Iter Slot) const { 603 // Can handle only calls. 604 if (DisableForwardSearch || !Slot->isCall()) 605 return false; 606 607 RegDefsUses RegDU(TM); 608 NoMemInstr NM; 609 Iter Filler; 610 611 RegDU.setCallerSaved(*Slot); 612 613 if (!searchRange(MBB, std::next(Slot), MBB.end(), RegDU, NM, Filler)) 614 return false; 615 616 MBB.splice(std::next(Slot), &MBB, Filler); 617 MIBundleBuilder(MBB, Slot, std::next(Slot, 2)); 618 ++UsefulSlots; 619 return true; 620 } 621 622 bool Filler::searchSuccBBs(MachineBasicBlock &MBB, Iter Slot) const { 623 if (DisableSuccBBSearch) 624 return false; 625 626 MachineBasicBlock *SuccBB = selectSuccBB(MBB); 627 628 if (!SuccBB) 629 return false; 630 631 RegDefsUses RegDU(TM); 632 bool HasMultipleSuccs = false; 633 BB2BrMap BrMap; 634 std::unique_ptr<InspectMemInstr> IM; 635 Iter Filler; 636 637 // Iterate over SuccBB's predecessor list. 638 for (MachineBasicBlock::pred_iterator PI = SuccBB->pred_begin(), 639 PE = SuccBB->pred_end(); PI != PE; ++PI) 640 if (!examinePred(**PI, *SuccBB, RegDU, HasMultipleSuccs, BrMap)) 641 return false; 642 643 // Do not allow moving instructions which have unallocatable register operands 644 // across basic block boundaries. 645 RegDU.setUnallocatableRegs(*MBB.getParent()); 646 647 // Only allow moving loads from stack or constants if any of the SuccBB's 648 // predecessors have multiple successors. 649 if (HasMultipleSuccs) { 650 IM.reset(new LoadFromStackOrConst()); 651 } else { 652 const MachineFrameInfo *MFI = MBB.getParent()->getFrameInfo(); 653 IM.reset(new MemDefsUses(MFI)); 654 } 655 656 if (!searchRange(MBB, SuccBB->begin(), SuccBB->end(), RegDU, *IM, Filler)) 657 return false; 658 659 insertDelayFiller(Filler, BrMap); 660 addLiveInRegs(Filler, *SuccBB); 661 Filler->eraseFromParent(); 662 663 return true; 664 } 665 666 MachineBasicBlock *Filler::selectSuccBB(MachineBasicBlock &B) const { 667 if (B.succ_empty()) 668 return nullptr; 669 670 // Select the successor with the larget edge weight. 671 auto &Prob = getAnalysis<MachineBranchProbabilityInfo>(); 672 MachineBasicBlock *S = *std::max_element(B.succ_begin(), B.succ_end(), 673 [&](const MachineBasicBlock *Dst0, 674 const MachineBasicBlock *Dst1) { 675 return Prob.getEdgeWeight(&B, Dst0) < Prob.getEdgeWeight(&B, Dst1); 676 }); 677 return S->isLandingPad() ? nullptr : S; 678 } 679 680 std::pair<MipsInstrInfo::BranchType, MachineInstr *> 681 Filler::getBranch(MachineBasicBlock &MBB, const MachineBasicBlock &Dst) const { 682 const MipsInstrInfo *TII = 683 static_cast<const MipsInstrInfo *>(TM.getSubtargetImpl()->getInstrInfo()); 684 MachineBasicBlock *TrueBB = nullptr, *FalseBB = nullptr; 685 SmallVector<MachineInstr*, 2> BranchInstrs; 686 SmallVector<MachineOperand, 2> Cond; 687 688 MipsInstrInfo::BranchType R = 689 TII->AnalyzeBranch(MBB, TrueBB, FalseBB, Cond, false, BranchInstrs); 690 691 if ((R == MipsInstrInfo::BT_None) || (R == MipsInstrInfo::BT_NoBranch)) 692 return std::make_pair(R, nullptr); 693 694 if (R != MipsInstrInfo::BT_CondUncond) { 695 if (!hasUnoccupiedSlot(BranchInstrs[0])) 696 return std::make_pair(MipsInstrInfo::BT_None, nullptr); 697 698 assert(((R != MipsInstrInfo::BT_Uncond) || (TrueBB == &Dst))); 699 700 return std::make_pair(R, BranchInstrs[0]); 701 } 702 703 assert((TrueBB == &Dst) || (FalseBB == &Dst)); 704 705 // Examine the conditional branch. See if its slot is occupied. 706 if (hasUnoccupiedSlot(BranchInstrs[0])) 707 return std::make_pair(MipsInstrInfo::BT_Cond, BranchInstrs[0]); 708 709 // If that fails, try the unconditional branch. 710 if (hasUnoccupiedSlot(BranchInstrs[1]) && (FalseBB == &Dst)) 711 return std::make_pair(MipsInstrInfo::BT_Uncond, BranchInstrs[1]); 712 713 return std::make_pair(MipsInstrInfo::BT_None, nullptr); 714 } 715 716 bool Filler::examinePred(MachineBasicBlock &Pred, const MachineBasicBlock &Succ, 717 RegDefsUses &RegDU, bool &HasMultipleSuccs, 718 BB2BrMap &BrMap) const { 719 std::pair<MipsInstrInfo::BranchType, MachineInstr *> P = 720 getBranch(Pred, Succ); 721 722 // Return if either getBranch wasn't able to analyze the branches or there 723 // were no branches with unoccupied slots. 724 if (P.first == MipsInstrInfo::BT_None) 725 return false; 726 727 if ((P.first != MipsInstrInfo::BT_Uncond) && 728 (P.first != MipsInstrInfo::BT_NoBranch)) { 729 HasMultipleSuccs = true; 730 RegDU.addLiveOut(Pred, Succ); 731 } 732 733 BrMap[&Pred] = P.second; 734 return true; 735 } 736 737 bool Filler::delayHasHazard(const MachineInstr &Candidate, RegDefsUses &RegDU, 738 InspectMemInstr &IM) const { 739 bool HasHazard = (Candidate.isImplicitDef() || Candidate.isKill()); 740 741 HasHazard |= IM.hasHazard(Candidate); 742 HasHazard |= RegDU.update(Candidate, 0, Candidate.getNumOperands()); 743 744 return HasHazard; 745 } 746 747 bool Filler::terminateSearch(const MachineInstr &Candidate) const { 748 return (Candidate.isTerminator() || Candidate.isCall() || 749 Candidate.isPosition() || Candidate.isInlineAsm() || 750 Candidate.hasUnmodeledSideEffects()); 751 } 752