1 //===----------------------- MipsBranchExpansion.cpp ----------------------===//
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 /// \file
10 ///
11 /// This pass do two things:
12 /// - it expands a branch or jump instruction into a long branch if its offset
13 ///   is too large to fit into its immediate field,
14 /// - it inserts nops to prevent forbidden slot hazards.
15 ///
16 /// The reason why this pass combines these two tasks is that one of these two
17 /// tasks can break the result of the previous one.
18 ///
19 /// Example of that is a situation where at first, no branch should be expanded,
20 /// but after adding at least one nop somewhere in the code to prevent a
21 /// forbidden slot hazard, offset of some branches may go out of range. In that
22 /// case it is necessary to check again if there is some branch that needs
23 /// expansion. On the other hand, expanding some branch may cause a control
24 /// transfer instruction to appear in the forbidden slot, which is a hazard that
25 /// should be fixed. This pass alternates between this two tasks untill no
26 /// changes are made. Only then we can be sure that all branches are expanded
27 /// properly, and no hazard situations exist.
28 ///
29 /// Regarding branch expanding:
30 ///
31 /// When branch instruction like beqzc or bnezc has offset that is too large
32 /// to fit into its immediate field, it has to be expanded to another
33 /// instruction or series of instructions.
34 ///
35 /// FIXME: Fix pc-region jump instructions which cross 256MB segment boundaries.
36 /// TODO: Handle out of range bc, b (pseudo) instructions.
37 ///
38 /// Regarding compact branch hazard prevention:
39 ///
40 /// Hazards handled: forbidden slots for MIPSR6.
41 ///
42 /// A forbidden slot hazard occurs when a compact branch instruction is executed
43 /// and the adjacent instruction in memory is a control transfer instruction
44 /// such as a branch or jump, ERET, ERETNC, DERET, WAIT and PAUSE.
45 ///
46 /// For example:
47 ///
48 /// 0x8004      bnec    a1,v0,<P+0x18>
49 /// 0x8008      beqc    a1,a2,<P+0x54>
50 ///
51 /// In such cases, the processor is required to signal a Reserved Instruction
52 /// exception.
53 ///
54 /// Here, if the instruction at 0x8004 is executed, the processor will raise an
55 /// exception as there is a control transfer instruction at 0x8008.
56 ///
57 /// There are two sources of forbidden slot hazards:
58 ///
59 /// A) A previous pass has created a compact branch directly.
60 /// B) Transforming a delay slot branch into compact branch. This case can be
61 ///    difficult to process as lookahead for hazards is insufficient, as
62 ///    backwards delay slot fillling can also produce hazards in previously
63 ///    processed instuctions.
64 ///
65 /// In future this pass can be extended (or new pass can be created) to handle
66 /// other pipeline hazards, such as various MIPS1 hazards, processor errata that
67 /// require instruction reorganization, etc.
68 ///
69 /// This pass has to run after the delay slot filler as that pass can introduce
70 /// pipeline hazards such as compact branch hazard, hence the existing hazard
71 /// recognizer is not suitable.
72 ///
73 //===----------------------------------------------------------------------===//
74 
75 #include "MCTargetDesc/MipsABIInfo.h"
76 #include "MCTargetDesc/MipsBaseInfo.h"
77 #include "MCTargetDesc/MipsMCNaCl.h"
78 #include "MCTargetDesc/MipsMCTargetDesc.h"
79 #include "Mips.h"
80 #include "MipsInstrInfo.h"
81 #include "MipsMachineFunction.h"
82 #include "MipsSubtarget.h"
83 #include "MipsTargetMachine.h"
84 #include "llvm/ADT/SmallVector.h"
85 #include "llvm/ADT/Statistic.h"
86 #include "llvm/ADT/StringRef.h"
87 #include "llvm/CodeGen/MachineBasicBlock.h"
88 #include "llvm/CodeGen/MachineFunction.h"
89 #include "llvm/CodeGen/MachineFunctionPass.h"
90 #include "llvm/CodeGen/MachineInstr.h"
91 #include "llvm/CodeGen/MachineInstrBuilder.h"
92 #include "llvm/CodeGen/MachineModuleInfo.h"
93 #include "llvm/CodeGen/MachineOperand.h"
94 #include "llvm/CodeGen/TargetSubtargetInfo.h"
95 #include "llvm/IR/DebugLoc.h"
96 #include "llvm/Support/CommandLine.h"
97 #include "llvm/Support/ErrorHandling.h"
98 #include "llvm/Support/MathExtras.h"
99 #include "llvm/Target/TargetMachine.h"
100 #include <algorithm>
101 #include <cassert>
102 #include <cstdint>
103 #include <iterator>
104 #include <utility>
105 
106 using namespace llvm;
107 
108 #define DEBUG_TYPE "mips-branch-expansion"
109 
110 STATISTIC(NumInsertedNops, "Number of nops inserted");
111 STATISTIC(LongBranches, "Number of long branches.");
112 
113 static cl::opt<bool>
114     SkipLongBranch("skip-mips-long-branch", cl::init(false),
115                    cl::desc("MIPS: Skip branch expansion pass."), cl::Hidden);
116 
117 static cl::opt<bool>
118     ForceLongBranch("force-mips-long-branch", cl::init(false),
119                     cl::desc("MIPS: Expand all branches to long format."),
120                     cl::Hidden);
121 
122 namespace {
123 
124 using Iter = MachineBasicBlock::iterator;
125 using ReverseIter = MachineBasicBlock::reverse_iterator;
126 
127 struct MBBInfo {
128   uint64_t Size = 0;
129   bool HasLongBranch = false;
130   MachineInstr *Br = nullptr;
131   uint64_t Offset = 0;
132   MBBInfo() = default;
133 };
134 
135 class MipsBranchExpansion : public MachineFunctionPass {
136 public:
137   static char ID;
138 
139   MipsBranchExpansion() : MachineFunctionPass(ID), ABI(MipsABIInfo::Unknown()) {
140     initializeMipsBranchExpansionPass(*PassRegistry::getPassRegistry());
141   }
142 
143   StringRef getPassName() const override {
144     return "Mips Branch Expansion Pass";
145   }
146 
147   bool runOnMachineFunction(MachineFunction &F) override;
148 
149   MachineFunctionProperties getRequiredProperties() const override {
150     return MachineFunctionProperties().set(
151         MachineFunctionProperties::Property::NoVRegs);
152   }
153 
154 private:
155   void splitMBB(MachineBasicBlock *MBB);
156   void initMBBInfo();
157   int64_t computeOffset(const MachineInstr *Br);
158   uint64_t computeOffsetFromTheBeginning(int MBB);
159   void replaceBranch(MachineBasicBlock &MBB, Iter Br, const DebugLoc &DL,
160                      MachineBasicBlock *MBBOpnd);
161   bool buildProperJumpMI(MachineBasicBlock *MBB,
162                          MachineBasicBlock::iterator Pos, DebugLoc DL);
163   void expandToLongBranch(MBBInfo &Info);
164   bool handleForbiddenSlot();
165   bool handlePossibleLongBranch();
166 
167   const MipsSubtarget *STI;
168   const MipsInstrInfo *TII;
169 
170   MachineFunction *MFp;
171   SmallVector<MBBInfo, 16> MBBInfos;
172   bool IsPIC;
173   MipsABIInfo ABI;
174   bool ForceLongBranchFirstPass = false;
175 };
176 
177 } // end of anonymous namespace
178 
179 char MipsBranchExpansion::ID = 0;
180 
181 INITIALIZE_PASS(MipsBranchExpansion, DEBUG_TYPE,
182                 "Expand out of range branch instructions and fix forbidden"
183                 " slot hazards",
184                 false, false)
185 
186 /// Returns a pass that clears pipeline hazards.
187 FunctionPass *llvm::createMipsBranchExpansion() {
188   return new MipsBranchExpansion();
189 }
190 
191 // Find the next real instruction from the current position in current basic
192 // block.
193 static Iter getNextMachineInstrInBB(Iter Position) {
194   Iter I = Position, E = Position->getParent()->end();
195   I = std::find_if_not(I, E,
196                        [](const Iter &Insn) { return Insn->isTransient(); });
197 
198   return I;
199 }
200 
201 // Find the next real instruction from the current position, looking through
202 // basic block boundaries.
203 static std::pair<Iter, bool> getNextMachineInstr(Iter Position,
204                                                  MachineBasicBlock *Parent) {
205   if (Position == Parent->end()) {
206     do {
207       MachineBasicBlock *Succ = Parent->getNextNode();
208       if (Succ != nullptr && Parent->isSuccessor(Succ)) {
209         Position = Succ->begin();
210         Parent = Succ;
211       } else {
212         return std::make_pair(Position, true);
213       }
214     } while (Parent->empty());
215   }
216 
217   Iter Instr = getNextMachineInstrInBB(Position);
218   if (Instr == Parent->end()) {
219     return getNextMachineInstr(Instr, Parent);
220   }
221   return std::make_pair(Instr, false);
222 }
223 
224 /// Iterate over list of Br's operands and search for a MachineBasicBlock
225 /// operand.
226 static MachineBasicBlock *getTargetMBB(const MachineInstr &Br) {
227   for (unsigned I = 0, E = Br.getDesc().getNumOperands(); I < E; ++I) {
228     const MachineOperand &MO = Br.getOperand(I);
229 
230     if (MO.isMBB())
231       return MO.getMBB();
232   }
233 
234   llvm_unreachable("This instruction does not have an MBB operand.");
235 }
236 
237 // Traverse the list of instructions backwards until a non-debug instruction is
238 // found or it reaches E.
239 static ReverseIter getNonDebugInstr(ReverseIter B, const ReverseIter &E) {
240   for (; B != E; ++B)
241     if (!B->isDebugInstr())
242       return B;
243 
244   return E;
245 }
246 
247 // Split MBB if it has two direct jumps/branches.
248 void MipsBranchExpansion::splitMBB(MachineBasicBlock *MBB) {
249   ReverseIter End = MBB->rend();
250   ReverseIter LastBr = getNonDebugInstr(MBB->rbegin(), End);
251 
252   // Return if MBB has no branch instructions.
253   if ((LastBr == End) ||
254       (!LastBr->isConditionalBranch() && !LastBr->isUnconditionalBranch()))
255     return;
256 
257   ReverseIter FirstBr = getNonDebugInstr(std::next(LastBr), End);
258 
259   // MBB has only one branch instruction if FirstBr is not a branch
260   // instruction.
261   if ((FirstBr == End) ||
262       (!FirstBr->isConditionalBranch() && !FirstBr->isUnconditionalBranch()))
263     return;
264 
265   assert(!FirstBr->isIndirectBranch() && "Unexpected indirect branch found.");
266 
267   // Create a new MBB. Move instructions in MBB to the newly created MBB.
268   MachineBasicBlock *NewMBB =
269       MFp->CreateMachineBasicBlock(MBB->getBasicBlock());
270 
271   // Insert NewMBB and fix control flow.
272   MachineBasicBlock *Tgt = getTargetMBB(*FirstBr);
273   NewMBB->transferSuccessors(MBB);
274   NewMBB->removeSuccessor(Tgt, true);
275   MBB->addSuccessor(NewMBB);
276   MBB->addSuccessor(Tgt);
277   MFp->insert(std::next(MachineFunction::iterator(MBB)), NewMBB);
278 
279   NewMBB->splice(NewMBB->end(), MBB, LastBr.getReverse(), MBB->end());
280 }
281 
282 // Fill MBBInfos.
283 void MipsBranchExpansion::initMBBInfo() {
284   // Split the MBBs if they have two branches. Each basic block should have at
285   // most one branch after this loop is executed.
286   for (auto &MBB : *MFp)
287     splitMBB(&MBB);
288 
289   MFp->RenumberBlocks();
290   MBBInfos.clear();
291   MBBInfos.resize(MFp->size());
292 
293   for (unsigned I = 0, E = MBBInfos.size(); I < E; ++I) {
294     MachineBasicBlock *MBB = MFp->getBlockNumbered(I);
295 
296     // Compute size of MBB.
297     for (MachineBasicBlock::instr_iterator MI = MBB->instr_begin();
298          MI != MBB->instr_end(); ++MI)
299       MBBInfos[I].Size += TII->getInstSizeInBytes(*MI);
300   }
301 }
302 
303 // Compute offset of branch in number of bytes.
304 int64_t MipsBranchExpansion::computeOffset(const MachineInstr *Br) {
305   int64_t Offset = 0;
306   int ThisMBB = Br->getParent()->getNumber();
307   int TargetMBB = getTargetMBB(*Br)->getNumber();
308 
309   // Compute offset of a forward branch.
310   if (ThisMBB < TargetMBB) {
311     for (int N = ThisMBB + 1; N < TargetMBB; ++N)
312       Offset += MBBInfos[N].Size;
313 
314     return Offset + 4;
315   }
316 
317   // Compute offset of a backward branch.
318   for (int N = ThisMBB; N >= TargetMBB; --N)
319     Offset += MBBInfos[N].Size;
320 
321   return -Offset + 4;
322 }
323 
324 // Returns the distance in bytes up until MBB
325 uint64_t MipsBranchExpansion::computeOffsetFromTheBeginning(int MBB) {
326   uint64_t Offset = 0;
327   for (int N = 0; N < MBB; ++N)
328     Offset += MBBInfos[N].Size;
329   return Offset;
330 }
331 
332 // Replace Br with a branch which has the opposite condition code and a
333 // MachineBasicBlock operand MBBOpnd.
334 void MipsBranchExpansion::replaceBranch(MachineBasicBlock &MBB, Iter Br,
335                                         const DebugLoc &DL,
336                                         MachineBasicBlock *MBBOpnd) {
337   unsigned NewOpc = TII->getOppositeBranchOpc(Br->getOpcode());
338   const MCInstrDesc &NewDesc = TII->get(NewOpc);
339 
340   MachineInstrBuilder MIB = BuildMI(MBB, Br, DL, NewDesc);
341 
342   for (unsigned I = 0, E = Br->getDesc().getNumOperands(); I < E; ++I) {
343     MachineOperand &MO = Br->getOperand(I);
344 
345     if (!MO.isReg()) {
346       assert(MO.isMBB() && "MBB operand expected.");
347       break;
348     }
349 
350     MIB.addReg(MO.getReg());
351   }
352 
353   MIB.addMBB(MBBOpnd);
354 
355   if (Br->hasDelaySlot()) {
356     // Bundle the instruction in the delay slot to the newly created branch
357     // and erase the original branch.
358     assert(Br->isBundledWithSucc());
359     MachineBasicBlock::instr_iterator II = Br.getInstrIterator();
360     MIBundleBuilder(&*MIB).append((++II)->removeFromBundle());
361   }
362   Br->eraseFromParent();
363 }
364 
365 bool MipsBranchExpansion::buildProperJumpMI(MachineBasicBlock *MBB,
366                                             MachineBasicBlock::iterator Pos,
367                                             DebugLoc DL) {
368   bool HasR6 = ABI.IsN64() ? STI->hasMips64r6() : STI->hasMips32r6();
369   bool AddImm = HasR6 && !STI->useIndirectJumpsHazard();
370 
371   unsigned JR = ABI.IsN64() ? Mips::JR64 : Mips::JR;
372   unsigned JIC = ABI.IsN64() ? Mips::JIC64 : Mips::JIC;
373   unsigned JR_HB = ABI.IsN64() ? Mips::JR_HB64 : Mips::JR_HB;
374   unsigned JR_HB_R6 = ABI.IsN64() ? Mips::JR_HB64_R6 : Mips::JR_HB_R6;
375 
376   unsigned JumpOp;
377   if (STI->useIndirectJumpsHazard())
378     JumpOp = HasR6 ? JR_HB_R6 : JR_HB;
379   else
380     JumpOp = HasR6 ? JIC : JR;
381 
382   if (JumpOp == Mips::JIC && STI->inMicroMipsMode())
383     JumpOp = Mips::JIC_MMR6;
384 
385   unsigned ATReg = ABI.IsN64() ? Mips::AT_64 : Mips::AT;
386   MachineInstrBuilder Instr =
387       BuildMI(*MBB, Pos, DL, TII->get(JumpOp)).addReg(ATReg);
388   if (AddImm)
389     Instr.addImm(0);
390 
391   return !AddImm;
392 }
393 
394 // Expand branch instructions to long branches.
395 // TODO: This function has to be fixed for beqz16 and bnez16, because it
396 // currently assumes that all branches have 16-bit offsets, and will produce
397 // wrong code if branches whose allowed offsets are [-128, -126, ..., 126]
398 // are present.
399 void MipsBranchExpansion::expandToLongBranch(MBBInfo &I) {
400   MachineBasicBlock::iterator Pos;
401   MachineBasicBlock *MBB = I.Br->getParent(), *TgtMBB = getTargetMBB(*I.Br);
402   DebugLoc DL = I.Br->getDebugLoc();
403   const BasicBlock *BB = MBB->getBasicBlock();
404   MachineFunction::iterator FallThroughMBB = ++MachineFunction::iterator(MBB);
405   MachineBasicBlock *LongBrMBB = MFp->CreateMachineBasicBlock(BB);
406 
407   MFp->insert(FallThroughMBB, LongBrMBB);
408   MBB->replaceSuccessor(TgtMBB, LongBrMBB);
409 
410   if (IsPIC) {
411     MachineBasicBlock *BalTgtMBB = MFp->CreateMachineBasicBlock(BB);
412     MFp->insert(FallThroughMBB, BalTgtMBB);
413     LongBrMBB->addSuccessor(BalTgtMBB);
414     BalTgtMBB->addSuccessor(TgtMBB);
415 
416     // We must select between the MIPS32r6/MIPS64r6 BALC (which is a normal
417     // instruction) and the pre-MIPS32r6/MIPS64r6 definition (which is an
418     // pseudo-instruction wrapping BGEZAL).
419     const unsigned BalOp =
420         STI->hasMips32r6()
421             ? STI->inMicroMipsMode() ? Mips::BALC_MMR6 : Mips::BALC
422             : STI->inMicroMipsMode() ? Mips::BAL_BR_MM : Mips::BAL_BR;
423 
424     if (!ABI.IsN64()) {
425       // Pre R6:
426       // $longbr:
427       //  addiu $sp, $sp, -8
428       //  sw $ra, 0($sp)
429       //  lui $at, %hi($tgt - $baltgt)
430       //  bal $baltgt
431       //  addiu $at, $at, %lo($tgt - $baltgt)
432       // $baltgt:
433       //  addu $at, $ra, $at
434       //  lw $ra, 0($sp)
435       //  jr $at
436       //  addiu $sp, $sp, 8
437       // $fallthrough:
438       //
439 
440       // R6:
441       // $longbr:
442       //  addiu $sp, $sp, -8
443       //  sw $ra, 0($sp)
444       //  lui $at, %hi($tgt - $baltgt)
445       //  addiu $at, $at, %lo($tgt - $baltgt)
446       //  balc $baltgt
447       // $baltgt:
448       //  addu $at, $ra, $at
449       //  lw $ra, 0($sp)
450       //  addiu $sp, $sp, 8
451       //  jic $at, 0
452       // $fallthrough:
453 
454       Pos = LongBrMBB->begin();
455 
456       BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::ADDiu), Mips::SP)
457           .addReg(Mips::SP)
458           .addImm(-8);
459       BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::SW))
460           .addReg(Mips::RA)
461           .addReg(Mips::SP)
462           .addImm(0);
463 
464       // LUi and ADDiu instructions create 32-bit offset of the target basic
465       // block from the target of BAL(C) instruction.  We cannot use immediate
466       // value for this offset because it cannot be determined accurately when
467       // the program has inline assembly statements.  We therefore use the
468       // relocation expressions %hi($tgt-$baltgt) and %lo($tgt-$baltgt) which
469       // are resolved during the fixup, so the values will always be correct.
470       //
471       // Since we cannot create %hi($tgt-$baltgt) and %lo($tgt-$baltgt)
472       // expressions at this point (it is possible only at the MC layer),
473       // we replace LUi and ADDiu with pseudo instructions
474       // LONG_BRANCH_LUi and LONG_BRANCH_ADDiu, and add both basic
475       // blocks as operands to these instructions.  When lowering these pseudo
476       // instructions to LUi and ADDiu in the MC layer, we will create
477       // %hi($tgt-$baltgt) and %lo($tgt-$baltgt) expressions and add them as
478       // operands to lowered instructions.
479 
480       BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_LUi), Mips::AT)
481           .addMBB(TgtMBB, MipsII::MO_ABS_HI)
482           .addMBB(BalTgtMBB);
483 
484       MachineInstrBuilder BalInstr =
485           BuildMI(*MFp, DL, TII->get(BalOp)).addMBB(BalTgtMBB);
486       MachineInstrBuilder ADDiuInstr =
487           BuildMI(*MFp, DL, TII->get(Mips::LONG_BRANCH_ADDiu), Mips::AT)
488               .addReg(Mips::AT)
489               .addMBB(TgtMBB, MipsII::MO_ABS_LO)
490               .addMBB(BalTgtMBB);
491       if (STI->hasMips32r6()) {
492         LongBrMBB->insert(Pos, ADDiuInstr);
493         LongBrMBB->insert(Pos, BalInstr);
494       } else {
495         LongBrMBB->insert(Pos, BalInstr);
496         LongBrMBB->insert(Pos, ADDiuInstr);
497         LongBrMBB->rbegin()->bundleWithPred();
498       }
499 
500       Pos = BalTgtMBB->begin();
501 
502       BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDu), Mips::AT)
503           .addReg(Mips::RA)
504           .addReg(Mips::AT);
505       BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::LW), Mips::RA)
506           .addReg(Mips::SP)
507           .addImm(0);
508       if (STI->isTargetNaCl())
509         // Bundle-align the target of indirect branch JR.
510         TgtMBB->setAlignment(MIPS_NACL_BUNDLE_ALIGN);
511 
512       // In NaCl, modifying the sp is not allowed in branch delay slot.
513       // For MIPS32R6, we can skip using a delay slot branch.
514       bool hasDelaySlot = buildProperJumpMI(BalTgtMBB, Pos, DL);
515 
516       if (STI->isTargetNaCl() || !hasDelaySlot) {
517         BuildMI(*BalTgtMBB, std::prev(Pos), DL, TII->get(Mips::ADDiu), Mips::SP)
518             .addReg(Mips::SP)
519             .addImm(8);
520       }
521       if (hasDelaySlot) {
522         if (STI->isTargetNaCl()) {
523           BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::NOP));
524         } else {
525           BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDiu), Mips::SP)
526               .addReg(Mips::SP)
527               .addImm(8);
528         }
529         BalTgtMBB->rbegin()->bundleWithPred();
530       }
531     } else {
532       // Pre R6:
533       // $longbr:
534       //  daddiu $sp, $sp, -16
535       //  sd $ra, 0($sp)
536       //  daddiu $at, $zero, %hi($tgt - $baltgt)
537       //  dsll $at, $at, 16
538       //  bal $baltgt
539       //  daddiu $at, $at, %lo($tgt - $baltgt)
540       // $baltgt:
541       //  daddu $at, $ra, $at
542       //  ld $ra, 0($sp)
543       //  jr64 $at
544       //  daddiu $sp, $sp, 16
545       // $fallthrough:
546 
547       // R6:
548       // $longbr:
549       //  daddiu $sp, $sp, -16
550       //  sd $ra, 0($sp)
551       //  daddiu $at, $zero, %hi($tgt - $baltgt)
552       //  dsll $at, $at, 16
553       //  daddiu $at, $at, %lo($tgt - $baltgt)
554       //  balc $baltgt
555       // $baltgt:
556       //  daddu $at, $ra, $at
557       //  ld $ra, 0($sp)
558       //  daddiu $sp, $sp, 16
559       //  jic $at, 0
560       // $fallthrough:
561 
562       // We assume the branch is within-function, and that offset is within
563       // +/- 2GB.  High 32 bits will therefore always be zero.
564 
565       // Note that this will work even if the offset is negative, because
566       // of the +1 modification that's added in that case.  For example, if the
567       // offset is -1MB (0xFFFFFFFFFFF00000), the computation for %higher is
568       //
569       // 0xFFFFFFFFFFF00000 + 0x80008000 = 0x000000007FF08000
570       //
571       // and the bits [47:32] are zero.  For %highest
572       //
573       // 0xFFFFFFFFFFF00000 + 0x800080008000 = 0x000080007FF08000
574       //
575       // and the bits [63:48] are zero.
576 
577       Pos = LongBrMBB->begin();
578 
579       BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::DADDiu), Mips::SP_64)
580           .addReg(Mips::SP_64)
581           .addImm(-16);
582       BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::SD))
583           .addReg(Mips::RA_64)
584           .addReg(Mips::SP_64)
585           .addImm(0);
586       BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_DADDiu),
587               Mips::AT_64)
588           .addReg(Mips::ZERO_64)
589           .addMBB(TgtMBB, MipsII::MO_ABS_HI)
590           .addMBB(BalTgtMBB);
591       BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::DSLL), Mips::AT_64)
592           .addReg(Mips::AT_64)
593           .addImm(16);
594 
595       MachineInstrBuilder BalInstr =
596           BuildMI(*MFp, DL, TII->get(BalOp)).addMBB(BalTgtMBB);
597       MachineInstrBuilder DADDiuInstr =
598           BuildMI(*MFp, DL, TII->get(Mips::LONG_BRANCH_DADDiu), Mips::AT_64)
599               .addReg(Mips::AT_64)
600               .addMBB(TgtMBB, MipsII::MO_ABS_LO)
601               .addMBB(BalTgtMBB);
602       if (STI->hasMips32r6()) {
603         LongBrMBB->insert(Pos, DADDiuInstr);
604         LongBrMBB->insert(Pos, BalInstr);
605       } else {
606         LongBrMBB->insert(Pos, BalInstr);
607         LongBrMBB->insert(Pos, DADDiuInstr);
608         LongBrMBB->rbegin()->bundleWithPred();
609       }
610 
611       Pos = BalTgtMBB->begin();
612 
613       BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::DADDu), Mips::AT_64)
614           .addReg(Mips::RA_64)
615           .addReg(Mips::AT_64);
616       BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::LD), Mips::RA_64)
617           .addReg(Mips::SP_64)
618           .addImm(0);
619 
620       bool hasDelaySlot = buildProperJumpMI(BalTgtMBB, Pos, DL);
621       // If there is no delay slot, Insert stack adjustment before
622       if (!hasDelaySlot) {
623         BuildMI(*BalTgtMBB, std::prev(Pos), DL, TII->get(Mips::DADDiu),
624                 Mips::SP_64)
625             .addReg(Mips::SP_64)
626             .addImm(16);
627       } else {
628         BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::DADDiu), Mips::SP_64)
629             .addReg(Mips::SP_64)
630             .addImm(16);
631         BalTgtMBB->rbegin()->bundleWithPred();
632       }
633     }
634   } else { // Not PIC
635     Pos = LongBrMBB->begin();
636     LongBrMBB->addSuccessor(TgtMBB);
637 
638     // Compute the position of the potentiall jump instruction (basic blocks
639     // before + 4 for the instruction)
640     uint64_t JOffset = computeOffsetFromTheBeginning(MBB->getNumber()) +
641                        MBBInfos[MBB->getNumber()].Size + 4;
642     uint64_t TgtMBBOffset = computeOffsetFromTheBeginning(TgtMBB->getNumber());
643     // If it's a forward jump, then TgtMBBOffset will be shifted by two
644     // instructions
645     if (JOffset < TgtMBBOffset)
646       TgtMBBOffset += 2 * 4;
647     // Compare 4 upper bits to check if it's the same segment
648     bool SameSegmentJump = JOffset >> 28 == TgtMBBOffset >> 28;
649 
650     if (STI->hasMips32r6() && TII->isBranchOffsetInRange(Mips::BC, I.Offset)) {
651       // R6:
652       // $longbr:
653       //  bc $tgt
654       // $fallthrough:
655       //
656       BuildMI(*LongBrMBB, Pos, DL,
657               TII->get(STI->inMicroMipsMode() ? Mips::BC_MMR6 : Mips::BC))
658           .addMBB(TgtMBB);
659     } else if (SameSegmentJump) {
660       // Pre R6:
661       // $longbr:
662       //  j $tgt
663       //  nop
664       // $fallthrough:
665       //
666       MIBundleBuilder(*LongBrMBB, Pos)
667           .append(BuildMI(*MFp, DL, TII->get(Mips::J)).addMBB(TgtMBB))
668           .append(BuildMI(*MFp, DL, TII->get(Mips::NOP)));
669     } else {
670       // At this point, offset where we need to branch does not fit into
671       // immediate field of the branch instruction and is not in the same
672       // segment as jump instruction. Therefore we will break it into couple
673       // instructions, where we first load the offset into register, and then we
674       // do branch register.
675       if (ABI.IsN64()) {
676         BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_LUi))
677             .addReg(Mips::AT_64)
678             .addMBB(TgtMBB, MipsII::MO_HIGHEST);
679         BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_DADDiu),
680                 Mips::AT_64)
681             .addReg(Mips::AT_64)
682             .addMBB(TgtMBB, MipsII::MO_HIGHER);
683         BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::DSLL), Mips::AT_64)
684             .addReg(Mips::AT_64)
685             .addImm(16);
686         BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_DADDiu),
687                 Mips::AT_64)
688             .addReg(Mips::AT_64)
689             .addMBB(TgtMBB, MipsII::MO_ABS_HI);
690         BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::DSLL), Mips::AT_64)
691             .addReg(Mips::AT_64)
692             .addImm(16);
693         BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_DADDiu),
694                 Mips::AT_64)
695             .addReg(Mips::AT_64)
696             .addMBB(TgtMBB, MipsII::MO_ABS_LO);
697       } else {
698         BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_LUi))
699             .addReg(Mips::AT)
700             .addMBB(TgtMBB, MipsII::MO_ABS_HI);
701         BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_ADDiu),
702                 Mips::AT)
703             .addReg(Mips::AT)
704             .addMBB(TgtMBB, MipsII::MO_ABS_LO);
705       }
706       buildProperJumpMI(LongBrMBB, Pos, DL);
707     }
708   }
709 
710   if (I.Br->isUnconditionalBranch()) {
711     // Change branch destination.
712     assert(I.Br->getDesc().getNumOperands() == 1);
713     I.Br->RemoveOperand(0);
714     I.Br->addOperand(MachineOperand::CreateMBB(LongBrMBB));
715   } else
716     // Change branch destination and reverse condition.
717     replaceBranch(*MBB, I.Br, DL, &*FallThroughMBB);
718 }
719 
720 static void emitGPDisp(MachineFunction &F, const MipsInstrInfo *TII) {
721   MachineBasicBlock &MBB = F.front();
722   MachineBasicBlock::iterator I = MBB.begin();
723   DebugLoc DL = MBB.findDebugLoc(MBB.begin());
724   BuildMI(MBB, I, DL, TII->get(Mips::LUi), Mips::V0)
725       .addExternalSymbol("_gp_disp", MipsII::MO_ABS_HI);
726   BuildMI(MBB, I, DL, TII->get(Mips::ADDiu), Mips::V0)
727       .addReg(Mips::V0)
728       .addExternalSymbol("_gp_disp", MipsII::MO_ABS_LO);
729   MBB.removeLiveIn(Mips::V0);
730 }
731 
732 bool MipsBranchExpansion::handleForbiddenSlot() {
733   // Forbidden slot hazards are only defined for MIPSR6 but not microMIPSR6.
734   if (!STI->hasMips32r6() || STI->inMicroMipsMode())
735     return false;
736 
737   bool Changed = false;
738 
739   for (MachineFunction::iterator FI = MFp->begin(); FI != MFp->end(); ++FI) {
740     for (Iter I = FI->begin(); I != FI->end(); ++I) {
741 
742       // Forbidden slot hazard handling. Use lookahead over state.
743       if (!TII->HasForbiddenSlot(*I))
744         continue;
745 
746       Iter Inst;
747       bool LastInstInFunction =
748           std::next(I) == FI->end() && std::next(FI) == MFp->end();
749       if (!LastInstInFunction) {
750         std::pair<Iter, bool> Res = getNextMachineInstr(std::next(I), &*FI);
751         LastInstInFunction |= Res.second;
752         Inst = Res.first;
753       }
754 
755       if (LastInstInFunction || !TII->SafeInForbiddenSlot(*Inst)) {
756 
757         MachineBasicBlock::instr_iterator Iit = I->getIterator();
758         if (std::next(Iit) == FI->end() ||
759             std::next(Iit)->getOpcode() != Mips::NOP) {
760           Changed = true;
761           MIBundleBuilder(&*I).append(
762               BuildMI(*MFp, I->getDebugLoc(), TII->get(Mips::NOP)));
763           NumInsertedNops++;
764         }
765       }
766     }
767   }
768 
769   return Changed;
770 }
771 
772 bool MipsBranchExpansion::handlePossibleLongBranch() {
773   if (STI->inMips16Mode() || !STI->enableLongBranchPass())
774     return false;
775 
776   if (SkipLongBranch)
777     return false;
778 
779   bool EverMadeChange = false, MadeChange = true;
780 
781   while (MadeChange) {
782     MadeChange = false;
783 
784     initMBBInfo();
785 
786     for (unsigned I = 0, E = MBBInfos.size(); I < E; ++I) {
787       MachineBasicBlock *MBB = MFp->getBlockNumbered(I);
788       // Search for MBB's branch instruction.
789       ReverseIter End = MBB->rend();
790       ReverseIter Br = getNonDebugInstr(MBB->rbegin(), End);
791 
792       if ((Br != End) && Br->isBranch() && !Br->isIndirectBranch() &&
793           (Br->isConditionalBranch() ||
794            (Br->isUnconditionalBranch() && IsPIC))) {
795         int64_t Offset = computeOffset(&*Br);
796 
797         if (STI->isTargetNaCl()) {
798           // The offset calculation does not include sandboxing instructions
799           // that will be added later in the MC layer.  Since at this point we
800           // don't know the exact amount of code that "sandboxing" will add, we
801           // conservatively estimate that code will not grow more than 100%.
802           Offset *= 2;
803         }
804 
805         if (ForceLongBranchFirstPass ||
806             !TII->isBranchOffsetInRange(Br->getOpcode(), Offset)) {
807           MBBInfos[I].Offset = Offset;
808           MBBInfos[I].Br = &*Br;
809         }
810       }
811     } // End for
812 
813     ForceLongBranchFirstPass = false;
814 
815     SmallVectorImpl<MBBInfo>::iterator I, E = MBBInfos.end();
816 
817     for (I = MBBInfos.begin(); I != E; ++I) {
818       // Skip if this MBB doesn't have a branch or the branch has already been
819       // converted to a long branch.
820       if (!I->Br)
821         continue;
822 
823       expandToLongBranch(*I);
824       ++LongBranches;
825       EverMadeChange = MadeChange = true;
826     }
827 
828     MFp->RenumberBlocks();
829   }
830 
831   return EverMadeChange;
832 }
833 
834 bool MipsBranchExpansion::runOnMachineFunction(MachineFunction &MF) {
835   const TargetMachine &TM = MF.getTarget();
836   IsPIC = TM.isPositionIndependent();
837   ABI = static_cast<const MipsTargetMachine &>(TM).getABI();
838   STI = &static_cast<const MipsSubtarget &>(MF.getSubtarget());
839   TII = static_cast<const MipsInstrInfo *>(STI->getInstrInfo());
840 
841   if (IsPIC && ABI.IsO32() &&
842       MF.getInfo<MipsFunctionInfo>()->globalBaseRegSet())
843     emitGPDisp(MF, TII);
844 
845   MFp = &MF;
846 
847   ForceLongBranchFirstPass = ForceLongBranch;
848   // Run these two at least once
849   bool longBranchChanged = handlePossibleLongBranch();
850   bool forbiddenSlotChanged = handleForbiddenSlot();
851 
852   bool Changed = longBranchChanged || forbiddenSlotChanged;
853 
854   // Then run them alternatively while there are changes
855   while (forbiddenSlotChanged) {
856     longBranchChanged = handlePossibleLongBranch();
857     if (!longBranchChanged)
858       break;
859     forbiddenSlotChanged = handleForbiddenSlot();
860   }
861 
862   return Changed;
863 }
864