1 //===- MipsDelaySlotFiller.cpp - Mips Delay Slot Filler -------------------===//
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 //
9 // Simple pass to fill delay slots with useful instructions.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "MCTargetDesc/MipsMCNaCl.h"
14 #include "Mips.h"
15 #include "MipsInstrInfo.h"
16 #include "MipsRegisterInfo.h"
17 #include "MipsSubtarget.h"
18 #include "llvm/ADT/BitVector.h"
19 #include "llvm/ADT/DenseMap.h"
20 #include "llvm/ADT/PointerUnion.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/SmallVector.h"
23 #include "llvm/ADT/Statistic.h"
24 #include "llvm/ADT/StringRef.h"
25 #include "llvm/Analysis/AliasAnalysis.h"
26 #include "llvm/Analysis/ValueTracking.h"
27 #include "llvm/CodeGen/MachineBasicBlock.h"
28 #include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
29 #include "llvm/CodeGen/MachineFunction.h"
30 #include "llvm/CodeGen/MachineFunctionPass.h"
31 #include "llvm/CodeGen/MachineInstr.h"
32 #include "llvm/CodeGen/MachineInstrBuilder.h"
33 #include "llvm/CodeGen/MachineOperand.h"
34 #include "llvm/CodeGen/MachineRegisterInfo.h"
35 #include "llvm/CodeGen/PseudoSourceValue.h"
36 #include "llvm/CodeGen/TargetRegisterInfo.h"
37 #include "llvm/CodeGen/TargetSubtargetInfo.h"
38 #include "llvm/MC/MCInstrDesc.h"
39 #include "llvm/MC/MCRegisterInfo.h"
40 #include "llvm/Support/Casting.h"
41 #include "llvm/Support/CodeGen.h"
42 #include "llvm/Support/CommandLine.h"
43 #include "llvm/Support/ErrorHandling.h"
44 #include "llvm/Target/TargetMachine.h"
45 #include <algorithm>
46 #include <cassert>
47 #include <iterator>
48 #include <memory>
49 #include <utility>
50 
51 using namespace llvm;
52 
53 #define DEBUG_TYPE "mips-delay-slot-filler"
54 
55 STATISTIC(FilledSlots, "Number of delay slots filled");
56 STATISTIC(UsefulSlots, "Number of delay slots filled with instructions that"
57                        " are not NOP.");
58 
59 static cl::opt<bool> DisableDelaySlotFiller(
60   "disable-mips-delay-filler",
61   cl::init(false),
62   cl::desc("Fill all delay slots with NOPs."),
63   cl::Hidden);
64 
65 static cl::opt<bool> DisableForwardSearch(
66   "disable-mips-df-forward-search",
67   cl::init(true),
68   cl::desc("Disallow MIPS delay filler to search forward."),
69   cl::Hidden);
70 
71 static cl::opt<bool> DisableSuccBBSearch(
72   "disable-mips-df-succbb-search",
73   cl::init(true),
74   cl::desc("Disallow MIPS delay filler to search successor basic blocks."),
75   cl::Hidden);
76 
77 static cl::opt<bool> DisableBackwardSearch(
78   "disable-mips-df-backward-search",
79   cl::init(false),
80   cl::desc("Disallow MIPS delay filler to search backward."),
81   cl::Hidden);
82 
83 enum CompactBranchPolicy {
84   CB_Never,   ///< The policy 'never' may in some circumstances or for some
85               ///< ISAs not be absolutely adhered to.
86   CB_Optimal, ///< Optimal is the default and will produce compact branches
87               ///< when delay slots cannot be filled.
88   CB_Always   ///< 'always' may in some circumstances may not be
89               ///< absolutely adhered to there may not be a corresponding
90               ///< compact form of a branch.
91 };
92 
93 static cl::opt<CompactBranchPolicy> MipsCompactBranchPolicy(
94     "mips-compact-branches", cl::Optional, cl::init(CB_Optimal),
95     cl::desc("MIPS Specific: Compact branch policy."),
96     cl::values(clEnumValN(CB_Never, "never",
97                           "Do not use compact branches if possible."),
98                clEnumValN(CB_Optimal, "optimal",
99                           "Use compact branches where appropriate (default)."),
100                clEnumValN(CB_Always, "always",
101                           "Always use compact branches if possible.")));
102 
103 namespace {
104 
105   using Iter = MachineBasicBlock::iterator;
106   using ReverseIter = MachineBasicBlock::reverse_iterator;
107   using BB2BrMap = SmallDenseMap<MachineBasicBlock *, MachineInstr *, 2>;
108 
109   class RegDefsUses {
110   public:
111     RegDefsUses(const TargetRegisterInfo &TRI);
112 
113     void init(const MachineInstr &MI);
114 
115     /// This function sets all caller-saved registers in Defs.
116     void setCallerSaved(const MachineInstr &MI);
117 
118     /// This function sets all unallocatable registers in Defs.
119     void setUnallocatableRegs(const MachineFunction &MF);
120 
121     /// Set bits in Uses corresponding to MBB's live-out registers except for
122     /// the registers that are live-in to SuccBB.
123     void addLiveOut(const MachineBasicBlock &MBB,
124                     const MachineBasicBlock &SuccBB);
125 
126     bool update(const MachineInstr &MI, unsigned Begin, unsigned End);
127 
128   private:
129     bool checkRegDefsUses(BitVector &NewDefs, BitVector &NewUses, unsigned Reg,
130                           bool IsDef) const;
131 
132     /// Returns true if Reg or its alias is in RegSet.
133     bool isRegInSet(const BitVector &RegSet, unsigned Reg) const;
134 
135     const TargetRegisterInfo &TRI;
136     BitVector Defs, Uses;
137   };
138 
139   /// Base class for inspecting loads and stores.
140   class InspectMemInstr {
141   public:
142     InspectMemInstr(bool ForbidMemInstr_) : ForbidMemInstr(ForbidMemInstr_) {}
143     virtual ~InspectMemInstr() = default;
144 
145     /// Return true if MI cannot be moved to delay slot.
146     bool hasHazard(const MachineInstr &MI);
147 
148   protected:
149     /// Flags indicating whether loads or stores have been seen.
150     bool OrigSeenLoad = false;
151     bool OrigSeenStore = false;
152     bool SeenLoad = false;
153     bool SeenStore = false;
154 
155     /// Memory instructions are not allowed to move to delay slot if this flag
156     /// is true.
157     bool ForbidMemInstr;
158 
159   private:
160     virtual bool hasHazard_(const MachineInstr &MI) = 0;
161   };
162 
163   /// This subclass rejects any memory instructions.
164   class NoMemInstr : public InspectMemInstr {
165   public:
166     NoMemInstr() : InspectMemInstr(true) {}
167 
168   private:
169     bool hasHazard_(const MachineInstr &MI) override { return true; }
170   };
171 
172   /// This subclass accepts loads from stacks and constant loads.
173   class LoadFromStackOrConst : public InspectMemInstr {
174   public:
175     LoadFromStackOrConst() : InspectMemInstr(false) {}
176 
177   private:
178     bool hasHazard_(const MachineInstr &MI) override;
179   };
180 
181   /// This subclass uses memory dependence information to determine whether a
182   /// memory instruction can be moved to a delay slot.
183   class MemDefsUses : public InspectMemInstr {
184   public:
185     explicit MemDefsUses(const MachineFrameInfo *MFI);
186 
187   private:
188     using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>;
189 
190     bool hasHazard_(const MachineInstr &MI) override;
191 
192     /// Update Defs and Uses. Return true if there exist dependences that
193     /// disqualify the delay slot candidate between V and values in Uses and
194     /// Defs.
195     bool updateDefsUses(ValueType V, bool MayStore);
196 
197     /// Get the list of underlying objects of MI's memory operand.
198     bool getUnderlyingObjects(const MachineInstr &MI,
199                               SmallVectorImpl<ValueType> &Objects) const;
200 
201     const MachineFrameInfo *MFI;
202     SmallPtrSet<ValueType, 4> Uses, Defs;
203 
204     /// Flags indicating whether loads or stores with no underlying objects have
205     /// been seen.
206     bool SeenNoObjLoad = false;
207     bool SeenNoObjStore = false;
208   };
209 
210   class MipsDelaySlotFiller : public MachineFunctionPass {
211   public:
212     MipsDelaySlotFiller() : MachineFunctionPass(ID) {
213       initializeMipsDelaySlotFillerPass(*PassRegistry::getPassRegistry());
214     }
215 
216     StringRef getPassName() const override { return "Mips Delay Slot Filler"; }
217 
218     bool runOnMachineFunction(MachineFunction &F) override {
219       TM = &F.getTarget();
220       bool Changed = false;
221       for (MachineBasicBlock &MBB : F)
222         Changed |= runOnMachineBasicBlock(MBB);
223 
224       // This pass invalidates liveness information when it reorders
225       // instructions to fill delay slot. Without this, -verify-machineinstrs
226       // will fail.
227       if (Changed)
228         F.getRegInfo().invalidateLiveness();
229 
230       return Changed;
231     }
232 
233     MachineFunctionProperties getRequiredProperties() const override {
234       return MachineFunctionProperties().set(
235           MachineFunctionProperties::Property::NoVRegs);
236     }
237 
238     void getAnalysisUsage(AnalysisUsage &AU) const override {
239       AU.addRequired<MachineBranchProbabilityInfo>();
240       MachineFunctionPass::getAnalysisUsage(AU);
241     }
242 
243     static char ID;
244 
245   private:
246     bool runOnMachineBasicBlock(MachineBasicBlock &MBB);
247 
248     Iter replaceWithCompactBranch(MachineBasicBlock &MBB, Iter Branch,
249                                   const DebugLoc &DL);
250 
251     /// This function checks if it is valid to move Candidate to the delay slot
252     /// and returns true if it isn't. It also updates memory and register
253     /// dependence information.
254     bool delayHasHazard(const MachineInstr &Candidate, RegDefsUses &RegDU,
255                         InspectMemInstr &IM) const;
256 
257     /// This function searches range [Begin, End) for an instruction that can be
258     /// moved to the delay slot. Returns true on success.
259     template<typename IterTy>
260     bool searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End,
261                      RegDefsUses &RegDU, InspectMemInstr &IM, Iter Slot,
262                      IterTy &Filler) const;
263 
264     /// This function searches in the backward direction for an instruction that
265     /// can be moved to the delay slot. Returns true on success.
266     bool searchBackward(MachineBasicBlock &MBB, MachineInstr &Slot) const;
267 
268     /// This function searches MBB in the forward direction for an instruction
269     /// that can be moved to the delay slot. Returns true on success.
270     bool searchForward(MachineBasicBlock &MBB, Iter Slot) const;
271 
272     /// This function searches one of MBB's successor blocks for an instruction
273     /// that can be moved to the delay slot and inserts clones of the
274     /// instruction into the successor's predecessor blocks.
275     bool searchSuccBBs(MachineBasicBlock &MBB, Iter Slot) const;
276 
277     /// Pick a successor block of MBB. Return NULL if MBB doesn't have a
278     /// successor block that is not a landing pad.
279     MachineBasicBlock *selectSuccBB(MachineBasicBlock &B) const;
280 
281     /// This function analyzes MBB and returns an instruction with an unoccupied
282     /// slot that branches to Dst.
283     std::pair<MipsInstrInfo::BranchType, MachineInstr *>
284     getBranch(MachineBasicBlock &MBB, const MachineBasicBlock &Dst) const;
285 
286     /// Examine Pred and see if it is possible to insert an instruction into
287     /// one of its branches delay slot or its end.
288     bool examinePred(MachineBasicBlock &Pred, const MachineBasicBlock &Succ,
289                      RegDefsUses &RegDU, bool &HasMultipleSuccs,
290                      BB2BrMap &BrMap) const;
291 
292     bool terminateSearch(const MachineInstr &Candidate) const;
293 
294     const TargetMachine *TM = nullptr;
295   };
296 
297 } // end anonymous namespace
298 
299 char MipsDelaySlotFiller::ID = 0;
300 
301 static bool hasUnoccupiedSlot(const MachineInstr *MI) {
302   return MI->hasDelaySlot() && !MI->isBundledWithSucc();
303 }
304 
305 INITIALIZE_PASS(MipsDelaySlotFiller, DEBUG_TYPE,
306                 "Fill delay slot for MIPS", false, false)
307 
308 /// This function inserts clones of Filler into predecessor blocks.
309 static void insertDelayFiller(Iter Filler, const BB2BrMap &BrMap) {
310   MachineFunction *MF = Filler->getParent()->getParent();
311 
312   for (const auto &I : BrMap) {
313     if (I.second) {
314       MIBundleBuilder(I.second).append(MF->CloneMachineInstr(&*Filler));
315       ++UsefulSlots;
316     } else {
317       I.first->push_back(MF->CloneMachineInstr(&*Filler));
318     }
319   }
320 }
321 
322 /// This function adds registers Filler defines to MBB's live-in register list.
323 static void addLiveInRegs(Iter Filler, MachineBasicBlock &MBB) {
324   for (const MachineOperand &MO : Filler->operands()) {
325     unsigned R;
326 
327     if (!MO.isReg() || !MO.isDef() || !(R = MO.getReg()))
328       continue;
329 
330 #ifndef NDEBUG
331     const MachineFunction &MF = *MBB.getParent();
332     assert(MF.getSubtarget().getRegisterInfo()->getAllocatableSet(MF).test(R) &&
333            "Shouldn't move an instruction with unallocatable registers across "
334            "basic block boundaries.");
335 #endif
336 
337     if (!MBB.isLiveIn(R))
338       MBB.addLiveIn(R);
339   }
340 }
341 
342 RegDefsUses::RegDefsUses(const TargetRegisterInfo &TRI)
343     : TRI(TRI), Defs(TRI.getNumRegs(), false), Uses(TRI.getNumRegs(), false) {}
344 
345 void RegDefsUses::init(const MachineInstr &MI) {
346   // Add all register operands which are explicit and non-variadic.
347   update(MI, 0, MI.getDesc().getNumOperands());
348 
349   // If MI is a call, add RA to Defs to prevent users of RA from going into
350   // delay slot.
351   if (MI.isCall())
352     Defs.set(Mips::RA);
353 
354   // Add all implicit register operands of branch instructions except
355   // register AT.
356   if (MI.isBranch()) {
357     update(MI, MI.getDesc().getNumOperands(), MI.getNumOperands());
358     Defs.reset(Mips::AT);
359   }
360 }
361 
362 void RegDefsUses::setCallerSaved(const MachineInstr &MI) {
363   assert(MI.isCall());
364 
365   // Add RA/RA_64 to Defs to prevent users of RA/RA_64 from going into
366   // the delay slot. The reason is that RA/RA_64 must not be changed
367   // in the delay slot so that the callee can return to the caller.
368   if (MI.definesRegister(Mips::RA) || MI.definesRegister(Mips::RA_64)) {
369     Defs.set(Mips::RA);
370     Defs.set(Mips::RA_64);
371   }
372 
373   // If MI is a call, add all caller-saved registers to Defs.
374   BitVector CallerSavedRegs(TRI.getNumRegs(), true);
375 
376   CallerSavedRegs.reset(Mips::ZERO);
377   CallerSavedRegs.reset(Mips::ZERO_64);
378 
379   for (const MCPhysReg *R = TRI.getCalleeSavedRegs(MI.getParent()->getParent());
380        *R; ++R)
381     for (MCRegAliasIterator AI(*R, &TRI, true); AI.isValid(); ++AI)
382       CallerSavedRegs.reset(*AI);
383 
384   Defs |= CallerSavedRegs;
385 }
386 
387 void RegDefsUses::setUnallocatableRegs(const MachineFunction &MF) {
388   BitVector AllocSet = TRI.getAllocatableSet(MF);
389 
390   for (unsigned R : AllocSet.set_bits())
391     for (MCRegAliasIterator AI(R, &TRI, false); AI.isValid(); ++AI)
392       AllocSet.set(*AI);
393 
394   AllocSet.set(Mips::ZERO);
395   AllocSet.set(Mips::ZERO_64);
396 
397   Defs |= AllocSet.flip();
398 }
399 
400 void RegDefsUses::addLiveOut(const MachineBasicBlock &MBB,
401                              const MachineBasicBlock &SuccBB) {
402   for (const MachineBasicBlock *S : MBB.successors())
403     if (S != &SuccBB)
404       for (const auto &LI : S->liveins())
405         Uses.set(LI.PhysReg);
406 }
407 
408 bool RegDefsUses::update(const MachineInstr &MI, unsigned Begin, unsigned End) {
409   BitVector NewDefs(TRI.getNumRegs()), NewUses(TRI.getNumRegs());
410   bool HasHazard = false;
411 
412   for (unsigned I = Begin; I != End; ++I) {
413     const MachineOperand &MO = MI.getOperand(I);
414 
415     if (MO.isReg() && MO.getReg()) {
416       if (checkRegDefsUses(NewDefs, NewUses, MO.getReg(), MO.isDef())) {
417         LLVM_DEBUG(dbgs() << DEBUG_TYPE ": found register hazard for operand "
418                           << I << ": ";
419                    MO.dump());
420         HasHazard = true;
421       }
422     }
423   }
424 
425   Defs |= NewDefs;
426   Uses |= NewUses;
427 
428   return HasHazard;
429 }
430 
431 bool RegDefsUses::checkRegDefsUses(BitVector &NewDefs, BitVector &NewUses,
432                                    unsigned Reg, bool IsDef) const {
433   if (IsDef) {
434     NewDefs.set(Reg);
435     // check whether Reg has already been defined or used.
436     return (isRegInSet(Defs, Reg) || isRegInSet(Uses, Reg));
437   }
438 
439   NewUses.set(Reg);
440   // check whether Reg has already been defined.
441   return isRegInSet(Defs, Reg);
442 }
443 
444 bool RegDefsUses::isRegInSet(const BitVector &RegSet, unsigned Reg) const {
445   // Check Reg and all aliased Registers.
446   for (MCRegAliasIterator AI(Reg, &TRI, true); AI.isValid(); ++AI)
447     if (RegSet.test(*AI))
448       return true;
449   return false;
450 }
451 
452 bool InspectMemInstr::hasHazard(const MachineInstr &MI) {
453   if (!MI.mayStore() && !MI.mayLoad())
454     return false;
455 
456   if (ForbidMemInstr)
457     return true;
458 
459   OrigSeenLoad = SeenLoad;
460   OrigSeenStore = SeenStore;
461   SeenLoad |= MI.mayLoad();
462   SeenStore |= MI.mayStore();
463 
464   // If MI is an ordered or volatile memory reference, disallow moving
465   // subsequent loads and stores to delay slot.
466   if (MI.hasOrderedMemoryRef() && (OrigSeenLoad || OrigSeenStore)) {
467     ForbidMemInstr = true;
468     return true;
469   }
470 
471   return hasHazard_(MI);
472 }
473 
474 bool LoadFromStackOrConst::hasHazard_(const MachineInstr &MI) {
475   if (MI.mayStore())
476     return true;
477 
478   if (!MI.hasOneMemOperand() || !(*MI.memoperands_begin())->getPseudoValue())
479     return true;
480 
481   if (const PseudoSourceValue *PSV =
482       (*MI.memoperands_begin())->getPseudoValue()) {
483     if (isa<FixedStackPseudoSourceValue>(PSV))
484       return false;
485     return !PSV->isConstant(nullptr) && !PSV->isStack();
486   }
487 
488   return true;
489 }
490 
491 MemDefsUses::MemDefsUses(const MachineFrameInfo *MFI_)
492     : InspectMemInstr(false), MFI(MFI_) {}
493 
494 bool MemDefsUses::hasHazard_(const MachineInstr &MI) {
495   bool HasHazard = false;
496 
497   // Check underlying object list.
498   SmallVector<ValueType, 4> Objs;
499   if (getUnderlyingObjects(MI, Objs)) {
500     for (ValueType VT : Objs)
501       HasHazard |= updateDefsUses(VT, MI.mayStore());
502     return HasHazard;
503   }
504 
505   // No underlying objects found.
506   HasHazard = MI.mayStore() && (OrigSeenLoad || OrigSeenStore);
507   HasHazard |= MI.mayLoad() || OrigSeenStore;
508 
509   SeenNoObjLoad |= MI.mayLoad();
510   SeenNoObjStore |= MI.mayStore();
511 
512   return HasHazard;
513 }
514 
515 bool MemDefsUses::updateDefsUses(ValueType V, bool MayStore) {
516   if (MayStore)
517     return !Defs.insert(V).second || Uses.count(V) || SeenNoObjStore ||
518            SeenNoObjLoad;
519 
520   Uses.insert(V);
521   return Defs.count(V) || SeenNoObjStore;
522 }
523 
524 bool MemDefsUses::
525 getUnderlyingObjects(const MachineInstr &MI,
526                      SmallVectorImpl<ValueType> &Objects) const {
527   if (!MI.hasOneMemOperand())
528     return false;
529 
530   auto & MMO = **MI.memoperands_begin();
531 
532   if (const PseudoSourceValue *PSV = MMO.getPseudoValue()) {
533     if (!PSV->isAliased(MFI))
534       return false;
535     Objects.push_back(PSV);
536     return true;
537   }
538 
539   if (const Value *V = MMO.getValue()) {
540     SmallVector<const Value *, 4> Objs;
541     ::getUnderlyingObjects(V, Objs);
542 
543     for (const Value *UValue : Objs) {
544       if (!isIdentifiedObject(V))
545         return false;
546 
547       Objects.push_back(UValue);
548     }
549     return true;
550   }
551 
552   return false;
553 }
554 
555 // Replace Branch with the compact branch instruction.
556 Iter MipsDelaySlotFiller::replaceWithCompactBranch(MachineBasicBlock &MBB,
557                                                    Iter Branch,
558                                                    const DebugLoc &DL) {
559   const MipsSubtarget &STI = MBB.getParent()->getSubtarget<MipsSubtarget>();
560   const MipsInstrInfo *TII = STI.getInstrInfo();
561 
562   unsigned NewOpcode = TII->getEquivalentCompactForm(Branch);
563   Branch = TII->genInstrWithNewOpc(NewOpcode, Branch);
564 
565   auto *ToErase = cast<MachineInstr>(&*std::next(Branch));
566   // Update call site info for the Branch.
567   if (ToErase->shouldUpdateCallSiteInfo())
568     ToErase->getMF()->moveCallSiteInfo(ToErase, cast<MachineInstr>(&*Branch));
569   ToErase->eraseFromParent();
570   return Branch;
571 }
572 
573 // For given opcode returns opcode of corresponding instruction with short
574 // delay slot.
575 // For the pseudo TAILCALL*_MM instructions return the short delay slot
576 // form. Unfortunately, TAILCALL<->b16 is denied as b16 has a limited range
577 // that is too short to make use of for tail calls.
578 static int getEquivalentCallShort(int Opcode) {
579   switch (Opcode) {
580   case Mips::BGEZAL:
581     return Mips::BGEZALS_MM;
582   case Mips::BLTZAL:
583     return Mips::BLTZALS_MM;
584   case Mips::JAL:
585   case Mips::JAL_MM:
586     return Mips::JALS_MM;
587   case Mips::JALR:
588     return Mips::JALRS_MM;
589   case Mips::JALR16_MM:
590     return Mips::JALRS16_MM;
591   case Mips::TAILCALL_MM:
592     llvm_unreachable("Attempting to shorten the TAILCALL_MM pseudo!");
593   case Mips::TAILCALLREG:
594     return Mips::JR16_MM;
595   default:
596     llvm_unreachable("Unexpected call instruction for microMIPS.");
597   }
598 }
599 
600 /// runOnMachineBasicBlock - Fill in delay slots for the given basic block.
601 /// We assume there is only one delay slot per delayed instruction.
602 bool MipsDelaySlotFiller::runOnMachineBasicBlock(MachineBasicBlock &MBB) {
603   bool Changed = false;
604   const MipsSubtarget &STI = MBB.getParent()->getSubtarget<MipsSubtarget>();
605   bool InMicroMipsMode = STI.inMicroMipsMode();
606   const MipsInstrInfo *TII = STI.getInstrInfo();
607 
608   for (Iter I = MBB.begin(); I != MBB.end(); ++I) {
609     if (!hasUnoccupiedSlot(&*I))
610       continue;
611 
612     // Delay slot filling is disabled at -O0, or in microMIPS32R6.
613     if (!DisableDelaySlotFiller && (TM->getOptLevel() != CodeGenOpt::None) &&
614         !(InMicroMipsMode && STI.hasMips32r6())) {
615 
616       bool Filled = false;
617 
618       if (MipsCompactBranchPolicy.getValue() != CB_Always ||
619            !TII->getEquivalentCompactForm(I)) {
620         if (searchBackward(MBB, *I)) {
621           LLVM_DEBUG(dbgs() << DEBUG_TYPE ": found instruction for delay slot"
622                                           " in backwards search.\n");
623           Filled = true;
624         } else if (I->isTerminator()) {
625           if (searchSuccBBs(MBB, I)) {
626             Filled = true;
627             LLVM_DEBUG(dbgs() << DEBUG_TYPE ": found instruction for delay slot"
628                                             " in successor BB search.\n");
629           }
630         } else if (searchForward(MBB, I)) {
631           LLVM_DEBUG(dbgs() << DEBUG_TYPE ": found instruction for delay slot"
632                                           " in forwards search.\n");
633           Filled = true;
634         }
635       }
636 
637       if (Filled) {
638         // Get instruction with delay slot.
639         MachineBasicBlock::instr_iterator DSI = I.getInstrIterator();
640 
641         if (InMicroMipsMode && TII->getInstSizeInBytes(*std::next(DSI)) == 2 &&
642             DSI->isCall()) {
643           // If instruction in delay slot is 16b change opcode to
644           // corresponding instruction with short delay slot.
645 
646           // TODO: Implement an instruction mapping table of 16bit opcodes to
647           // 32bit opcodes so that an instruction can be expanded. This would
648           // save 16 bits as a TAILCALL_MM pseudo requires a fullsized nop.
649           // TODO: Permit b16 when branching backwards to the same function
650           // if it is in range.
651           DSI->setDesc(TII->get(getEquivalentCallShort(DSI->getOpcode())));
652         }
653         ++FilledSlots;
654         Changed = true;
655         continue;
656       }
657     }
658 
659     // For microMIPS if instruction is BEQ or BNE with one ZERO register, then
660     // instead of adding NOP replace this instruction with the corresponding
661     // compact branch instruction, i.e. BEQZC or BNEZC. Additionally
662     // PseudoReturn and PseudoIndirectBranch are expanded to JR_MM, so they can
663     // be replaced with JRC16_MM.
664 
665     // For MIPSR6 attempt to produce the corresponding compact (no delay slot)
666     // form of the CTI. For indirect jumps this will not require inserting a
667     // NOP and for branches will hopefully avoid requiring a NOP.
668     if ((InMicroMipsMode ||
669          (STI.hasMips32r6() && MipsCompactBranchPolicy != CB_Never)) &&
670         TII->getEquivalentCompactForm(I)) {
671       I = replaceWithCompactBranch(MBB, I, I->getDebugLoc());
672       Changed = true;
673       continue;
674     }
675 
676     // Bundle the NOP to the instruction with the delay slot.
677     LLVM_DEBUG(dbgs() << DEBUG_TYPE << ": could not fill delay slot for ";
678                I->dump());
679     TII->insertNop(MBB, std::next(I), I->getDebugLoc());
680     MIBundleBuilder(MBB, I, std::next(I, 2));
681     ++FilledSlots;
682     Changed = true;
683   }
684 
685   return Changed;
686 }
687 
688 template <typename IterTy>
689 bool MipsDelaySlotFiller::searchRange(MachineBasicBlock &MBB, IterTy Begin,
690                                       IterTy End, RegDefsUses &RegDU,
691                                       InspectMemInstr &IM, Iter Slot,
692                                       IterTy &Filler) const {
693   for (IterTy I = Begin; I != End;) {
694     IterTy CurrI = I;
695     ++I;
696     LLVM_DEBUG(dbgs() << DEBUG_TYPE ": checking instruction: "; CurrI->dump());
697     // skip debug value
698     if (CurrI->isDebugInstr()) {
699       LLVM_DEBUG(dbgs() << DEBUG_TYPE ": ignoring debug instruction: ";
700                  CurrI->dump());
701       continue;
702     }
703 
704     if (CurrI->isBundle()) {
705       LLVM_DEBUG(dbgs() << DEBUG_TYPE ": ignoring BUNDLE instruction: ";
706                  CurrI->dump());
707       // However, we still need to update the register def-use information.
708       RegDU.update(*CurrI, 0, CurrI->getNumOperands());
709       continue;
710     }
711 
712     if (terminateSearch(*CurrI)) {
713       LLVM_DEBUG(dbgs() << DEBUG_TYPE ": should terminate search: ";
714                  CurrI->dump());
715       break;
716     }
717 
718     assert((!CurrI->isCall() && !CurrI->isReturn() && !CurrI->isBranch()) &&
719            "Cannot put calls, returns or branches in delay slot.");
720 
721     if (CurrI->isKill()) {
722       CurrI->eraseFromParent();
723       continue;
724     }
725 
726     if (delayHasHazard(*CurrI, RegDU, IM))
727       continue;
728 
729     const MipsSubtarget &STI = MBB.getParent()->getSubtarget<MipsSubtarget>();
730     if (STI.isTargetNaCl()) {
731       // In NaCl, instructions that must be masked are forbidden in delay slots.
732       // We only check for loads, stores and SP changes.  Calls, returns and
733       // branches are not checked because non-NaCl targets never put them in
734       // delay slots.
735       unsigned AddrIdx;
736       if ((isBasePlusOffsetMemoryAccess(CurrI->getOpcode(), &AddrIdx) &&
737            baseRegNeedsLoadStoreMask(CurrI->getOperand(AddrIdx).getReg())) ||
738           CurrI->modifiesRegister(Mips::SP, STI.getRegisterInfo()))
739         continue;
740     }
741 
742     bool InMicroMipsMode = STI.inMicroMipsMode();
743     const MipsInstrInfo *TII = STI.getInstrInfo();
744     unsigned Opcode = (*Slot).getOpcode();
745     // This is complicated by the tail call optimization. For non-PIC code
746     // there is only a 32bit sized unconditional branch which can be assumed
747     // to be able to reach the target. b16 only has a range of +/- 1 KB.
748     // It's entirely possible that the target function is reachable with b16
749     // but we don't have enough information to make that decision.
750      if (InMicroMipsMode && TII->getInstSizeInBytes(*CurrI) == 2 &&
751         (Opcode == Mips::JR || Opcode == Mips::PseudoIndirectBranch ||
752          Opcode == Mips::PseudoIndirectBranch_MM ||
753          Opcode == Mips::PseudoReturn || Opcode == Mips::TAILCALL))
754       continue;
755      // Instructions LWP/SWP and MOVEP should not be in a delay slot as that
756      // results in unpredictable behaviour
757      if (InMicroMipsMode && (Opcode == Mips::LWP_MM || Opcode == Mips::SWP_MM ||
758                              Opcode == Mips::MOVEP_MM))
759        continue;
760 
761     Filler = CurrI;
762     LLVM_DEBUG(dbgs() << DEBUG_TYPE ": found instruction for delay slot: ";
763                CurrI->dump());
764 
765     return true;
766   }
767 
768   return false;
769 }
770 
771 bool MipsDelaySlotFiller::searchBackward(MachineBasicBlock &MBB,
772                                          MachineInstr &Slot) const {
773   if (DisableBackwardSearch)
774     return false;
775 
776   auto *Fn = MBB.getParent();
777   RegDefsUses RegDU(*Fn->getSubtarget().getRegisterInfo());
778   MemDefsUses MemDU(&Fn->getFrameInfo());
779   ReverseIter Filler;
780 
781   RegDU.init(Slot);
782 
783   MachineBasicBlock::iterator SlotI = Slot;
784   if (!searchRange(MBB, ++SlotI.getReverse(), MBB.rend(), RegDU, MemDU, Slot,
785                    Filler)) {
786     LLVM_DEBUG(dbgs() << DEBUG_TYPE ": could not find instruction for delay "
787                                     "slot using backwards search.\n");
788     return false;
789   }
790 
791   MBB.splice(std::next(SlotI), &MBB, Filler.getReverse());
792   MIBundleBuilder(MBB, SlotI, std::next(SlotI, 2));
793   ++UsefulSlots;
794   return true;
795 }
796 
797 bool MipsDelaySlotFiller::searchForward(MachineBasicBlock &MBB,
798                                         Iter Slot) const {
799   // Can handle only calls.
800   if (DisableForwardSearch || !Slot->isCall())
801     return false;
802 
803   RegDefsUses RegDU(*MBB.getParent()->getSubtarget().getRegisterInfo());
804   NoMemInstr NM;
805   Iter Filler;
806 
807   RegDU.setCallerSaved(*Slot);
808 
809   if (!searchRange(MBB, std::next(Slot), MBB.end(), RegDU, NM, Slot, Filler)) {
810     LLVM_DEBUG(dbgs() << DEBUG_TYPE ": could not find instruction for delay "
811                                     "slot using forwards search.\n");
812     return false;
813   }
814 
815   MBB.splice(std::next(Slot), &MBB, Filler);
816   MIBundleBuilder(MBB, Slot, std::next(Slot, 2));
817   ++UsefulSlots;
818   return true;
819 }
820 
821 bool MipsDelaySlotFiller::searchSuccBBs(MachineBasicBlock &MBB,
822                                         Iter Slot) const {
823   if (DisableSuccBBSearch)
824     return false;
825 
826   MachineBasicBlock *SuccBB = selectSuccBB(MBB);
827 
828   if (!SuccBB)
829     return false;
830 
831   RegDefsUses RegDU(*MBB.getParent()->getSubtarget().getRegisterInfo());
832   bool HasMultipleSuccs = false;
833   BB2BrMap BrMap;
834   std::unique_ptr<InspectMemInstr> IM;
835   Iter Filler;
836   auto *Fn = MBB.getParent();
837 
838   // Iterate over SuccBB's predecessor list.
839   for (MachineBasicBlock *Pred : SuccBB->predecessors())
840     if (!examinePred(*Pred, *SuccBB, RegDU, HasMultipleSuccs, BrMap))
841       return false;
842 
843   // Do not allow moving instructions which have unallocatable register operands
844   // across basic block boundaries.
845   RegDU.setUnallocatableRegs(*Fn);
846 
847   // Only allow moving loads from stack or constants if any of the SuccBB's
848   // predecessors have multiple successors.
849   if (HasMultipleSuccs) {
850     IM.reset(new LoadFromStackOrConst());
851   } else {
852     const MachineFrameInfo &MFI = Fn->getFrameInfo();
853     IM.reset(new MemDefsUses(&MFI));
854   }
855 
856   if (!searchRange(MBB, SuccBB->begin(), SuccBB->end(), RegDU, *IM, Slot,
857                    Filler))
858     return false;
859 
860   insertDelayFiller(Filler, BrMap);
861   addLiveInRegs(Filler, *SuccBB);
862   Filler->eraseFromParent();
863 
864   return true;
865 }
866 
867 MachineBasicBlock *
868 MipsDelaySlotFiller::selectSuccBB(MachineBasicBlock &B) const {
869   if (B.succ_empty())
870     return nullptr;
871 
872   // Select the successor with the larget edge weight.
873   auto &Prob = getAnalysis<MachineBranchProbabilityInfo>();
874   MachineBasicBlock *S = *std::max_element(
875       B.succ_begin(), B.succ_end(),
876       [&](const MachineBasicBlock *Dst0, const MachineBasicBlock *Dst1) {
877         return Prob.getEdgeProbability(&B, Dst0) <
878                Prob.getEdgeProbability(&B, Dst1);
879       });
880   return S->isEHPad() ? nullptr : S;
881 }
882 
883 std::pair<MipsInstrInfo::BranchType, MachineInstr *>
884 MipsDelaySlotFiller::getBranch(MachineBasicBlock &MBB,
885                                const MachineBasicBlock &Dst) const {
886   const MipsInstrInfo *TII =
887       MBB.getParent()->getSubtarget<MipsSubtarget>().getInstrInfo();
888   MachineBasicBlock *TrueBB = nullptr, *FalseBB = nullptr;
889   SmallVector<MachineInstr*, 2> BranchInstrs;
890   SmallVector<MachineOperand, 2> Cond;
891 
892   MipsInstrInfo::BranchType R =
893       TII->analyzeBranch(MBB, TrueBB, FalseBB, Cond, false, BranchInstrs);
894 
895   if ((R == MipsInstrInfo::BT_None) || (R == MipsInstrInfo::BT_NoBranch))
896     return std::make_pair(R, nullptr);
897 
898   if (R != MipsInstrInfo::BT_CondUncond) {
899     if (!hasUnoccupiedSlot(BranchInstrs[0]))
900       return std::make_pair(MipsInstrInfo::BT_None, nullptr);
901 
902     assert(((R != MipsInstrInfo::BT_Uncond) || (TrueBB == &Dst)));
903 
904     return std::make_pair(R, BranchInstrs[0]);
905   }
906 
907   assert((TrueBB == &Dst) || (FalseBB == &Dst));
908 
909   // Examine the conditional branch. See if its slot is occupied.
910   if (hasUnoccupiedSlot(BranchInstrs[0]))
911     return std::make_pair(MipsInstrInfo::BT_Cond, BranchInstrs[0]);
912 
913   // If that fails, try the unconditional branch.
914   if (hasUnoccupiedSlot(BranchInstrs[1]) && (FalseBB == &Dst))
915     return std::make_pair(MipsInstrInfo::BT_Uncond, BranchInstrs[1]);
916 
917   return std::make_pair(MipsInstrInfo::BT_None, nullptr);
918 }
919 
920 bool MipsDelaySlotFiller::examinePred(MachineBasicBlock &Pred,
921                                       const MachineBasicBlock &Succ,
922                                       RegDefsUses &RegDU,
923                                       bool &HasMultipleSuccs,
924                                       BB2BrMap &BrMap) const {
925   std::pair<MipsInstrInfo::BranchType, MachineInstr *> P =
926       getBranch(Pred, Succ);
927 
928   // Return if either getBranch wasn't able to analyze the branches or there
929   // were no branches with unoccupied slots.
930   if (P.first == MipsInstrInfo::BT_None)
931     return false;
932 
933   if ((P.first != MipsInstrInfo::BT_Uncond) &&
934       (P.first != MipsInstrInfo::BT_NoBranch)) {
935     HasMultipleSuccs = true;
936     RegDU.addLiveOut(Pred, Succ);
937   }
938 
939   BrMap[&Pred] = P.second;
940   return true;
941 }
942 
943 bool MipsDelaySlotFiller::delayHasHazard(const MachineInstr &Candidate,
944                                          RegDefsUses &RegDU,
945                                          InspectMemInstr &IM) const {
946   assert(!Candidate.isKill() &&
947          "KILL instructions should have been eliminated at this point.");
948 
949   bool HasHazard = Candidate.isImplicitDef();
950 
951   HasHazard |= IM.hasHazard(Candidate);
952   HasHazard |= RegDU.update(Candidate, 0, Candidate.getNumOperands());
953 
954   return HasHazard;
955 }
956 
957 bool MipsDelaySlotFiller::terminateSearch(const MachineInstr &Candidate) const {
958   return (Candidate.isTerminator() || Candidate.isCall() ||
959           Candidate.isPosition() || Candidate.isInlineAsm() ||
960           Candidate.hasUnmodeledSideEffects());
961 }
962 
963 /// createMipsDelaySlotFillerPass - Returns a pass that fills in delay
964 /// slots in Mips MachineFunctions
965 FunctionPass *llvm::createMipsDelaySlotFillerPass() {
966   return new MipsDelaySlotFiller();
967 }
968