1 //===----------------------- MipsBranchExpansion.cpp ----------------------===//
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
7 //===----------------------------------------------------------------------===//
10 /// This pass do two things:
11 /// - it expands a branch or jump instruction into a long branch if its offset
12 /// is too large to fit into its immediate field,
13 /// - it inserts nops to prevent forbidden slot hazards.
15 /// The reason why this pass combines these two tasks is that one of these two
16 /// tasks can break the result of the previous one.
18 /// Example of that is a situation where at first, no branch should be expanded,
19 /// but after adding at least one nop somewhere in the code to prevent a
20 /// forbidden slot hazard, offset of some branches may go out of range. In that
21 /// case it is necessary to check again if there is some branch that needs
22 /// expansion. On the other hand, expanding some branch may cause a control
23 /// transfer instruction to appear in the forbidden slot, which is a hazard that
24 /// should be fixed. This pass alternates between this two tasks untill no
25 /// changes are made. Only then we can be sure that all branches are expanded
26 /// properly, and no hazard situations exist.
28 /// Regarding branch expanding:
30 /// When branch instruction like beqzc or bnezc has offset that is too large
31 /// to fit into its immediate field, it has to be expanded to another
32 /// instruction or series of instructions.
34 /// FIXME: Fix pc-region jump instructions which cross 256MB segment boundaries.
35 /// TODO: Handle out of range bc, b (pseudo) instructions.
37 /// Regarding compact branch hazard prevention:
39 /// Hazards handled: forbidden slots for MIPSR6.
41 /// A forbidden slot hazard occurs when a compact branch instruction is executed
42 /// and the adjacent instruction in memory is a control transfer instruction
43 /// such as a branch or jump, ERET, ERETNC, DERET, WAIT and PAUSE.
47 /// 0x8004 bnec a1,v0,<P+0x18>
48 /// 0x8008 beqc a1,a2,<P+0x54>
50 /// In such cases, the processor is required to signal a Reserved Instruction
53 /// Here, if the instruction at 0x8004 is executed, the processor will raise an
54 /// exception as there is a control transfer instruction at 0x8008.
56 /// There are two sources of forbidden slot hazards:
58 /// A) A previous pass has created a compact branch directly.
59 /// B) Transforming a delay slot branch into compact branch. This case can be
60 /// difficult to process as lookahead for hazards is insufficient, as
61 /// backwards delay slot fillling can also produce hazards in previously
62 /// processed instuctions.
64 /// In future this pass can be extended (or new pass can be created) to handle
65 /// other pipeline hazards, such as various MIPS1 hazards, processor errata that
66 /// require instruction reorganization, etc.
68 /// This pass has to run after the delay slot filler as that pass can introduce
69 /// pipeline hazards such as compact branch hazard, hence the existing hazard
70 /// recognizer is not suitable.
72 //===----------------------------------------------------------------------===//
74 #include "MCTargetDesc/MipsABIInfo.h"
75 #include "MCTargetDesc/MipsBaseInfo.h"
76 #include "MCTargetDesc/MipsMCNaCl.h"
77 #include "MCTargetDesc/MipsMCTargetDesc.h"
79 #include "MipsInstrInfo.h"
80 #include "MipsMachineFunction.h"
81 #include "MipsSubtarget.h"
82 #include "MipsTargetMachine.h"
83 #include "llvm/ADT/SmallVector.h"
84 #include "llvm/ADT/Statistic.h"
85 #include "llvm/ADT/StringRef.h"
86 #include "llvm/CodeGen/MachineBasicBlock.h"
87 #include "llvm/CodeGen/MachineFunction.h"
88 #include "llvm/CodeGen/MachineFunctionPass.h"
89 #include "llvm/CodeGen/MachineInstr.h"
90 #include "llvm/CodeGen/MachineInstrBuilder.h"
91 #include "llvm/CodeGen/MachineModuleInfo.h"
92 #include "llvm/CodeGen/MachineOperand.h"
93 #include "llvm/CodeGen/TargetSubtargetInfo.h"
94 #include "llvm/IR/DebugLoc.h"
95 #include "llvm/Support/CommandLine.h"
96 #include "llvm/Support/ErrorHandling.h"
97 #include "llvm/Support/MathExtras.h"
98 #include "llvm/Target/TargetMachine.h"
105 using namespace llvm
;
107 #define DEBUG_TYPE "mips-branch-expansion"
109 STATISTIC(NumInsertedNops
, "Number of nops inserted");
110 STATISTIC(LongBranches
, "Number of long branches.");
113 SkipLongBranch("skip-mips-long-branch", cl::init(false),
114 cl::desc("MIPS: Skip branch expansion pass."), cl::Hidden
);
117 ForceLongBranch("force-mips-long-branch", cl::init(false),
118 cl::desc("MIPS: Expand all branches to long format."),
123 using Iter
= MachineBasicBlock::iterator
;
124 using ReverseIter
= MachineBasicBlock::reverse_iterator
;
128 bool HasLongBranch
= false;
129 MachineInstr
*Br
= nullptr;
134 class MipsBranchExpansion
: public MachineFunctionPass
{
138 MipsBranchExpansion() : MachineFunctionPass(ID
), ABI(MipsABIInfo::Unknown()) {
139 initializeMipsBranchExpansionPass(*PassRegistry::getPassRegistry());
142 StringRef
getPassName() const override
{
143 return "Mips Branch Expansion Pass";
146 bool runOnMachineFunction(MachineFunction
&F
) override
;
148 MachineFunctionProperties
getRequiredProperties() const override
{
149 return MachineFunctionProperties().set(
150 MachineFunctionProperties::Property::NoVRegs
);
154 void splitMBB(MachineBasicBlock
*MBB
);
156 int64_t computeOffset(const MachineInstr
*Br
);
157 uint64_t computeOffsetFromTheBeginning(int MBB
);
158 void replaceBranch(MachineBasicBlock
&MBB
, Iter Br
, const DebugLoc
&DL
,
159 MachineBasicBlock
*MBBOpnd
);
160 bool buildProperJumpMI(MachineBasicBlock
*MBB
,
161 MachineBasicBlock::iterator Pos
, DebugLoc DL
);
162 void expandToLongBranch(MBBInfo
&Info
);
163 bool handleForbiddenSlot();
164 bool handlePossibleLongBranch();
166 const MipsSubtarget
*STI
;
167 const MipsInstrInfo
*TII
;
169 MachineFunction
*MFp
;
170 SmallVector
<MBBInfo
, 16> MBBInfos
;
173 bool ForceLongBranchFirstPass
= false;
176 } // end of anonymous namespace
178 char MipsBranchExpansion::ID
= 0;
180 INITIALIZE_PASS(MipsBranchExpansion
, DEBUG_TYPE
,
181 "Expand out of range branch instructions and fix forbidden"
185 /// Returns a pass that clears pipeline hazards.
186 FunctionPass
*llvm::createMipsBranchExpansion() {
187 return new MipsBranchExpansion();
190 // Find the next real instruction from the current position in current basic
192 static Iter
getNextMachineInstrInBB(Iter Position
) {
193 Iter I
= Position
, E
= Position
->getParent()->end();
194 I
= std::find_if_not(I
, E
,
195 [](const Iter
&Insn
) { return Insn
->isTransient(); });
200 // Find the next real instruction from the current position, looking through
201 // basic block boundaries.
202 static std::pair
<Iter
, bool> getNextMachineInstr(Iter Position
,
203 MachineBasicBlock
*Parent
) {
204 if (Position
== Parent
->end()) {
206 MachineBasicBlock
*Succ
= Parent
->getNextNode();
207 if (Succ
!= nullptr && Parent
->isSuccessor(Succ
)) {
208 Position
= Succ
->begin();
211 return std::make_pair(Position
, true);
213 } while (Parent
->empty());
216 Iter Instr
= getNextMachineInstrInBB(Position
);
217 if (Instr
== Parent
->end()) {
218 return getNextMachineInstr(Instr
, Parent
);
220 return std::make_pair(Instr
, false);
223 /// Iterate over list of Br's operands and search for a MachineBasicBlock
225 static MachineBasicBlock
*getTargetMBB(const MachineInstr
&Br
) {
226 for (unsigned I
= 0, E
= Br
.getDesc().getNumOperands(); I
< E
; ++I
) {
227 const MachineOperand
&MO
= Br
.getOperand(I
);
233 llvm_unreachable("This instruction does not have an MBB operand.");
236 // Traverse the list of instructions backwards until a non-debug instruction is
237 // found or it reaches E.
238 static ReverseIter
getNonDebugInstr(ReverseIter B
, const ReverseIter
&E
) {
240 if (!B
->isDebugInstr())
246 // Split MBB if it has two direct jumps/branches.
247 void MipsBranchExpansion::splitMBB(MachineBasicBlock
*MBB
) {
248 ReverseIter End
= MBB
->rend();
249 ReverseIter LastBr
= getNonDebugInstr(MBB
->rbegin(), End
);
251 // Return if MBB has no branch instructions.
252 if ((LastBr
== End
) ||
253 (!LastBr
->isConditionalBranch() && !LastBr
->isUnconditionalBranch()))
256 ReverseIter FirstBr
= getNonDebugInstr(std::next(LastBr
), End
);
258 // MBB has only one branch instruction if FirstBr is not a branch
260 if ((FirstBr
== End
) ||
261 (!FirstBr
->isConditionalBranch() && !FirstBr
->isUnconditionalBranch()))
264 assert(!FirstBr
->isIndirectBranch() && "Unexpected indirect branch found.");
266 // Create a new MBB. Move instructions in MBB to the newly created MBB.
267 MachineBasicBlock
*NewMBB
=
268 MFp
->CreateMachineBasicBlock(MBB
->getBasicBlock());
270 // Insert NewMBB and fix control flow.
271 MachineBasicBlock
*Tgt
= getTargetMBB(*FirstBr
);
272 NewMBB
->transferSuccessors(MBB
);
273 if (Tgt
!= getTargetMBB(*LastBr
))
274 NewMBB
->removeSuccessor(Tgt
, true);
275 MBB
->addSuccessor(NewMBB
);
276 MBB
->addSuccessor(Tgt
);
277 MFp
->insert(std::next(MachineFunction::iterator(MBB
)), NewMBB
);
279 NewMBB
->splice(NewMBB
->end(), MBB
, LastBr
.getReverse(), MBB
->end());
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
)
289 MFp
->RenumberBlocks();
291 MBBInfos
.resize(MFp
->size());
293 for (unsigned I
= 0, E
= MBBInfos
.size(); I
< E
; ++I
) {
294 MachineBasicBlock
*MBB
= MFp
->getBlockNumbered(I
);
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
);
303 // Compute offset of branch in number of bytes.
304 int64_t MipsBranchExpansion::computeOffset(const MachineInstr
*Br
) {
306 int ThisMBB
= Br
->getParent()->getNumber();
307 int TargetMBB
= getTargetMBB(*Br
)->getNumber();
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
;
317 // Compute offset of a backward branch.
318 for (int N
= ThisMBB
; N
>= TargetMBB
; --N
)
319 Offset
+= MBBInfos
[N
].Size
;
324 // Returns the distance in bytes up until MBB
325 uint64_t MipsBranchExpansion::computeOffsetFromTheBeginning(int MBB
) {
327 for (int N
= 0; N
< MBB
; ++N
)
328 Offset
+= MBBInfos
[N
].Size
;
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
,
336 MachineBasicBlock
*MBBOpnd
) {
337 unsigned NewOpc
= TII
->getOppositeBranchOpc(Br
->getOpcode());
338 const MCInstrDesc
&NewDesc
= TII
->get(NewOpc
);
340 MachineInstrBuilder MIB
= BuildMI(MBB
, Br
, DL
, NewDesc
);
342 for (unsigned I
= 0, E
= Br
->getDesc().getNumOperands(); I
< E
; ++I
) {
343 MachineOperand
&MO
= Br
->getOperand(I
);
345 switch (MO
.getType()) {
346 case MachineOperand::MO_Register
:
347 MIB
.addReg(MO
.getReg());
349 case MachineOperand::MO_Immediate
:
350 // Octeon BBIT family of branch has an immediate operand
351 // (e.g. BBIT0 $v0, 3, %bb.1).
352 if (!TII
->isBranchWithImm(Br
->getOpcode()))
353 llvm_unreachable("Unexpected immediate in branch instruction");
354 MIB
.addImm(MO
.getImm());
356 case MachineOperand::MO_MachineBasicBlock
:
360 llvm_unreachable("Unexpected operand type in branch instruction");
364 if (Br
->hasDelaySlot()) {
365 // Bundle the instruction in the delay slot to the newly created branch
366 // and erase the original branch.
367 assert(Br
->isBundledWithSucc());
368 MachineBasicBlock::instr_iterator II
= Br
.getInstrIterator();
369 MIBundleBuilder(&*MIB
).append((++II
)->removeFromBundle());
371 Br
->eraseFromParent();
374 bool MipsBranchExpansion::buildProperJumpMI(MachineBasicBlock
*MBB
,
375 MachineBasicBlock::iterator Pos
,
377 bool HasR6
= ABI
.IsN64() ? STI
->hasMips64r6() : STI
->hasMips32r6();
378 bool AddImm
= HasR6
&& !STI
->useIndirectJumpsHazard();
380 unsigned JR
= ABI
.IsN64() ? Mips::JR64
: Mips::JR
;
381 unsigned JIC
= ABI
.IsN64() ? Mips::JIC64
: Mips::JIC
;
382 unsigned JR_HB
= ABI
.IsN64() ? Mips::JR_HB64
: Mips::JR_HB
;
383 unsigned JR_HB_R6
= ABI
.IsN64() ? Mips::JR_HB64_R6
: Mips::JR_HB_R6
;
386 if (STI
->useIndirectJumpsHazard())
387 JumpOp
= HasR6
? JR_HB_R6
: JR_HB
;
389 JumpOp
= HasR6
? JIC
: JR
;
391 if (JumpOp
== Mips::JIC
&& STI
->inMicroMipsMode())
392 JumpOp
= Mips::JIC_MMR6
;
394 unsigned ATReg
= ABI
.IsN64() ? Mips::AT_64
: Mips::AT
;
395 MachineInstrBuilder Instr
=
396 BuildMI(*MBB
, Pos
, DL
, TII
->get(JumpOp
)).addReg(ATReg
);
403 // Expand branch instructions to long branches.
404 // TODO: This function has to be fixed for beqz16 and bnez16, because it
405 // currently assumes that all branches have 16-bit offsets, and will produce
406 // wrong code if branches whose allowed offsets are [-128, -126, ..., 126]
408 void MipsBranchExpansion::expandToLongBranch(MBBInfo
&I
) {
409 MachineBasicBlock::iterator Pos
;
410 MachineBasicBlock
*MBB
= I
.Br
->getParent(), *TgtMBB
= getTargetMBB(*I
.Br
);
411 DebugLoc DL
= I
.Br
->getDebugLoc();
412 const BasicBlock
*BB
= MBB
->getBasicBlock();
413 MachineFunction::iterator FallThroughMBB
= ++MachineFunction::iterator(MBB
);
414 MachineBasicBlock
*LongBrMBB
= MFp
->CreateMachineBasicBlock(BB
);
416 MFp
->insert(FallThroughMBB
, LongBrMBB
);
417 MBB
->replaceSuccessor(TgtMBB
, LongBrMBB
);
420 MachineBasicBlock
*BalTgtMBB
= MFp
->CreateMachineBasicBlock(BB
);
421 MFp
->insert(FallThroughMBB
, BalTgtMBB
);
422 LongBrMBB
->addSuccessor(BalTgtMBB
);
423 BalTgtMBB
->addSuccessor(TgtMBB
);
425 // We must select between the MIPS32r6/MIPS64r6 BALC (which is a normal
426 // instruction) and the pre-MIPS32r6/MIPS64r6 definition (which is an
427 // pseudo-instruction wrapping BGEZAL).
428 const unsigned BalOp
=
430 ? STI
->inMicroMipsMode() ? Mips::BALC_MMR6
: Mips::BALC
431 : STI
->inMicroMipsMode() ? Mips::BAL_BR_MM
: Mips::BAL_BR
;
436 // addiu $sp, $sp, -8
438 // lui $at, %hi($tgt - $baltgt)
440 // addiu $at, $at, %lo($tgt - $baltgt)
442 // addu $at, $ra, $at
451 // addiu $sp, $sp, -8
453 // lui $at, %hi($tgt - $baltgt)
454 // addiu $at, $at, %lo($tgt - $baltgt)
457 // addu $at, $ra, $at
463 Pos
= LongBrMBB
->begin();
465 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::ADDiu
), Mips::SP
)
468 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::SW
))
473 // LUi and ADDiu instructions create 32-bit offset of the target basic
474 // block from the target of BAL(C) instruction. We cannot use immediate
475 // value for this offset because it cannot be determined accurately when
476 // the program has inline assembly statements. We therefore use the
477 // relocation expressions %hi($tgt-$baltgt) and %lo($tgt-$baltgt) which
478 // are resolved during the fixup, so the values will always be correct.
480 // Since we cannot create %hi($tgt-$baltgt) and %lo($tgt-$baltgt)
481 // expressions at this point (it is possible only at the MC layer),
482 // we replace LUi and ADDiu with pseudo instructions
483 // LONG_BRANCH_LUi and LONG_BRANCH_ADDiu, and add both basic
484 // blocks as operands to these instructions. When lowering these pseudo
485 // instructions to LUi and ADDiu in the MC layer, we will create
486 // %hi($tgt-$baltgt) and %lo($tgt-$baltgt) expressions and add them as
487 // operands to lowered instructions.
489 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_LUi
), Mips::AT
)
490 .addMBB(TgtMBB
, MipsII::MO_ABS_HI
)
493 MachineInstrBuilder BalInstr
=
494 BuildMI(*MFp
, DL
, TII
->get(BalOp
)).addMBB(BalTgtMBB
);
495 MachineInstrBuilder ADDiuInstr
=
496 BuildMI(*MFp
, DL
, TII
->get(Mips::LONG_BRANCH_ADDiu
), Mips::AT
)
498 .addMBB(TgtMBB
, MipsII::MO_ABS_LO
)
500 if (STI
->hasMips32r6()) {
501 LongBrMBB
->insert(Pos
, ADDiuInstr
);
502 LongBrMBB
->insert(Pos
, BalInstr
);
504 LongBrMBB
->insert(Pos
, BalInstr
);
505 LongBrMBB
->insert(Pos
, ADDiuInstr
);
506 LongBrMBB
->rbegin()->bundleWithPred();
509 Pos
= BalTgtMBB
->begin();
511 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::ADDu
), Mips::AT
)
514 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::LW
), Mips::RA
)
517 if (STI
->isTargetNaCl())
518 // Bundle-align the target of indirect branch JR.
519 TgtMBB
->setAlignment(MIPS_NACL_BUNDLE_ALIGN
);
521 // In NaCl, modifying the sp is not allowed in branch delay slot.
522 // For MIPS32R6, we can skip using a delay slot branch.
523 bool hasDelaySlot
= buildProperJumpMI(BalTgtMBB
, Pos
, DL
);
525 if (STI
->isTargetNaCl() || !hasDelaySlot
) {
526 BuildMI(*BalTgtMBB
, std::prev(Pos
), DL
, TII
->get(Mips::ADDiu
), Mips::SP
)
531 if (STI
->isTargetNaCl()) {
532 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::NOP
));
534 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::ADDiu
), Mips::SP
)
538 BalTgtMBB
->rbegin()->bundleWithPred();
543 // daddiu $sp, $sp, -16
545 // daddiu $at, $zero, %hi($tgt - $baltgt)
548 // daddiu $at, $at, %lo($tgt - $baltgt)
550 // daddu $at, $ra, $at
553 // daddiu $sp, $sp, 16
558 // daddiu $sp, $sp, -16
560 // daddiu $at, $zero, %hi($tgt - $baltgt)
562 // daddiu $at, $at, %lo($tgt - $baltgt)
565 // daddu $at, $ra, $at
567 // daddiu $sp, $sp, 16
571 // We assume the branch is within-function, and that offset is within
572 // +/- 2GB. High 32 bits will therefore always be zero.
574 // Note that this will work even if the offset is negative, because
575 // of the +1 modification that's added in that case. For example, if the
576 // offset is -1MB (0xFFFFFFFFFFF00000), the computation for %higher is
578 // 0xFFFFFFFFFFF00000 + 0x80008000 = 0x000000007FF08000
580 // and the bits [47:32] are zero. For %highest
582 // 0xFFFFFFFFFFF00000 + 0x800080008000 = 0x000080007FF08000
584 // and the bits [63:48] are zero.
586 Pos
= LongBrMBB
->begin();
588 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::DADDiu
), Mips::SP_64
)
591 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::SD
))
595 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu
),
597 .addReg(Mips::ZERO_64
)
598 .addMBB(TgtMBB
, MipsII::MO_ABS_HI
)
600 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::DSLL
), Mips::AT_64
)
604 MachineInstrBuilder BalInstr
=
605 BuildMI(*MFp
, DL
, TII
->get(BalOp
)).addMBB(BalTgtMBB
);
606 MachineInstrBuilder DADDiuInstr
=
607 BuildMI(*MFp
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu
), Mips::AT_64
)
609 .addMBB(TgtMBB
, MipsII::MO_ABS_LO
)
611 if (STI
->hasMips32r6()) {
612 LongBrMBB
->insert(Pos
, DADDiuInstr
);
613 LongBrMBB
->insert(Pos
, BalInstr
);
615 LongBrMBB
->insert(Pos
, BalInstr
);
616 LongBrMBB
->insert(Pos
, DADDiuInstr
);
617 LongBrMBB
->rbegin()->bundleWithPred();
620 Pos
= BalTgtMBB
->begin();
622 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::DADDu
), Mips::AT_64
)
624 .addReg(Mips::AT_64
);
625 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::LD
), Mips::RA_64
)
629 bool hasDelaySlot
= buildProperJumpMI(BalTgtMBB
, Pos
, DL
);
630 // If there is no delay slot, Insert stack adjustment before
632 BuildMI(*BalTgtMBB
, std::prev(Pos
), DL
, TII
->get(Mips::DADDiu
),
637 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::DADDiu
), Mips::SP_64
)
640 BalTgtMBB
->rbegin()->bundleWithPred();
644 Pos
= LongBrMBB
->begin();
645 LongBrMBB
->addSuccessor(TgtMBB
);
647 // Compute the position of the potentiall jump instruction (basic blocks
648 // before + 4 for the instruction)
649 uint64_t JOffset
= computeOffsetFromTheBeginning(MBB
->getNumber()) +
650 MBBInfos
[MBB
->getNumber()].Size
+ 4;
651 uint64_t TgtMBBOffset
= computeOffsetFromTheBeginning(TgtMBB
->getNumber());
652 // If it's a forward jump, then TgtMBBOffset will be shifted by two
654 if (JOffset
< TgtMBBOffset
)
655 TgtMBBOffset
+= 2 * 4;
656 // Compare 4 upper bits to check if it's the same segment
657 bool SameSegmentJump
= JOffset
>> 28 == TgtMBBOffset
>> 28;
659 if (STI
->hasMips32r6() && TII
->isBranchOffsetInRange(Mips::BC
, I
.Offset
)) {
665 BuildMI(*LongBrMBB
, Pos
, DL
,
666 TII
->get(STI
->inMicroMipsMode() ? Mips::BC_MMR6
: Mips::BC
))
668 } else if (SameSegmentJump
) {
675 MIBundleBuilder(*LongBrMBB
, Pos
)
676 .append(BuildMI(*MFp
, DL
, TII
->get(Mips::J
)).addMBB(TgtMBB
))
677 .append(BuildMI(*MFp
, DL
, TII
->get(Mips::NOP
)));
679 // At this point, offset where we need to branch does not fit into
680 // immediate field of the branch instruction and is not in the same
681 // segment as jump instruction. Therefore we will break it into couple
682 // instructions, where we first load the offset into register, and then we
683 // do branch register.
685 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_LUi2Op_64
),
687 .addMBB(TgtMBB
, MipsII::MO_HIGHEST
);
688 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu2Op
),
691 .addMBB(TgtMBB
, MipsII::MO_HIGHER
);
692 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::DSLL
), Mips::AT_64
)
695 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu2Op
),
698 .addMBB(TgtMBB
, MipsII::MO_ABS_HI
);
699 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::DSLL
), Mips::AT_64
)
702 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu2Op
),
705 .addMBB(TgtMBB
, MipsII::MO_ABS_LO
);
707 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_LUi2Op
),
709 .addMBB(TgtMBB
, MipsII::MO_ABS_HI
);
710 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_ADDiu2Op
),
713 .addMBB(TgtMBB
, MipsII::MO_ABS_LO
);
715 buildProperJumpMI(LongBrMBB
, Pos
, DL
);
719 if (I
.Br
->isUnconditionalBranch()) {
720 // Change branch destination.
721 assert(I
.Br
->getDesc().getNumOperands() == 1);
722 I
.Br
->RemoveOperand(0);
723 I
.Br
->addOperand(MachineOperand::CreateMBB(LongBrMBB
));
725 // Change branch destination and reverse condition.
726 replaceBranch(*MBB
, I
.Br
, DL
, &*FallThroughMBB
);
729 static void emitGPDisp(MachineFunction
&F
, const MipsInstrInfo
*TII
) {
730 MachineBasicBlock
&MBB
= F
.front();
731 MachineBasicBlock::iterator I
= MBB
.begin();
732 DebugLoc DL
= MBB
.findDebugLoc(MBB
.begin());
733 BuildMI(MBB
, I
, DL
, TII
->get(Mips::LUi
), Mips::V0
)
734 .addExternalSymbol("_gp_disp", MipsII::MO_ABS_HI
);
735 BuildMI(MBB
, I
, DL
, TII
->get(Mips::ADDiu
), Mips::V0
)
737 .addExternalSymbol("_gp_disp", MipsII::MO_ABS_LO
);
738 MBB
.removeLiveIn(Mips::V0
);
741 bool MipsBranchExpansion::handleForbiddenSlot() {
742 // Forbidden slot hazards are only defined for MIPSR6 but not microMIPSR6.
743 if (!STI
->hasMips32r6() || STI
->inMicroMipsMode())
746 bool Changed
= false;
748 for (MachineFunction::iterator FI
= MFp
->begin(); FI
!= MFp
->end(); ++FI
) {
749 for (Iter I
= FI
->begin(); I
!= FI
->end(); ++I
) {
751 // Forbidden slot hazard handling. Use lookahead over state.
752 if (!TII
->HasForbiddenSlot(*I
))
756 bool LastInstInFunction
=
757 std::next(I
) == FI
->end() && std::next(FI
) == MFp
->end();
758 if (!LastInstInFunction
) {
759 std::pair
<Iter
, bool> Res
= getNextMachineInstr(std::next(I
), &*FI
);
760 LastInstInFunction
|= Res
.second
;
764 if (LastInstInFunction
|| !TII
->SafeInForbiddenSlot(*Inst
)) {
766 MachineBasicBlock::instr_iterator Iit
= I
->getIterator();
767 if (std::next(Iit
) == FI
->end() ||
768 std::next(Iit
)->getOpcode() != Mips::NOP
) {
770 MIBundleBuilder(&*I
).append(
771 BuildMI(*MFp
, I
->getDebugLoc(), TII
->get(Mips::NOP
)));
781 bool MipsBranchExpansion::handlePossibleLongBranch() {
782 if (STI
->inMips16Mode() || !STI
->enableLongBranchPass())
788 bool EverMadeChange
= false, MadeChange
= true;
795 for (unsigned I
= 0, E
= MBBInfos
.size(); I
< E
; ++I
) {
796 MachineBasicBlock
*MBB
= MFp
->getBlockNumbered(I
);
797 // Search for MBB's branch instruction.
798 ReverseIter End
= MBB
->rend();
799 ReverseIter Br
= getNonDebugInstr(MBB
->rbegin(), End
);
801 if ((Br
!= End
) && Br
->isBranch() && !Br
->isIndirectBranch() &&
802 (Br
->isConditionalBranch() ||
803 (Br
->isUnconditionalBranch() && IsPIC
))) {
804 int64_t Offset
= computeOffset(&*Br
);
806 if (STI
->isTargetNaCl()) {
807 // The offset calculation does not include sandboxing instructions
808 // that will be added later in the MC layer. Since at this point we
809 // don't know the exact amount of code that "sandboxing" will add, we
810 // conservatively estimate that code will not grow more than 100%.
814 if (ForceLongBranchFirstPass
||
815 !TII
->isBranchOffsetInRange(Br
->getOpcode(), Offset
)) {
816 MBBInfos
[I
].Offset
= Offset
;
817 MBBInfos
[I
].Br
= &*Br
;
822 ForceLongBranchFirstPass
= false;
824 SmallVectorImpl
<MBBInfo
>::iterator I
, E
= MBBInfos
.end();
826 for (I
= MBBInfos
.begin(); I
!= E
; ++I
) {
827 // Skip if this MBB doesn't have a branch or the branch has already been
828 // converted to a long branch.
832 expandToLongBranch(*I
);
834 EverMadeChange
= MadeChange
= true;
837 MFp
->RenumberBlocks();
840 return EverMadeChange
;
843 bool MipsBranchExpansion::runOnMachineFunction(MachineFunction
&MF
) {
844 const TargetMachine
&TM
= MF
.getTarget();
845 IsPIC
= TM
.isPositionIndependent();
846 ABI
= static_cast<const MipsTargetMachine
&>(TM
).getABI();
847 STI
= &static_cast<const MipsSubtarget
&>(MF
.getSubtarget());
848 TII
= static_cast<const MipsInstrInfo
*>(STI
->getInstrInfo());
850 if (IsPIC
&& ABI
.IsO32() &&
851 MF
.getInfo
<MipsFunctionInfo
>()->globalBaseRegSet())
856 ForceLongBranchFirstPass
= ForceLongBranch
;
857 // Run these two at least once
858 bool longBranchChanged
= handlePossibleLongBranch();
859 bool forbiddenSlotChanged
= handleForbiddenSlot();
861 bool Changed
= longBranchChanged
|| forbiddenSlotChanged
;
863 // Then run them alternatively while there are changes
864 while (forbiddenSlotChanged
) {
865 longBranchChanged
= handlePossibleLongBranch();
866 if (!longBranchChanged
)
868 forbiddenSlotChanged
= handleForbiddenSlot();