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
);
346 assert(MO
.isMBB() && "MBB operand expected.");
350 MIB
.addReg(MO
.getReg());
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());
362 Br
->eraseFromParent();
365 bool MipsBranchExpansion::buildProperJumpMI(MachineBasicBlock
*MBB
,
366 MachineBasicBlock::iterator Pos
,
368 bool HasR6
= ABI
.IsN64() ? STI
->hasMips64r6() : STI
->hasMips32r6();
369 bool AddImm
= HasR6
&& !STI
->useIndirectJumpsHazard();
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
;
377 if (STI
->useIndirectJumpsHazard())
378 JumpOp
= HasR6
? JR_HB_R6
: JR_HB
;
380 JumpOp
= HasR6
? JIC
: JR
;
382 if (JumpOp
== Mips::JIC
&& STI
->inMicroMipsMode())
383 JumpOp
= Mips::JIC_MMR6
;
385 unsigned ATReg
= ABI
.IsN64() ? Mips::AT_64
: Mips::AT
;
386 MachineInstrBuilder Instr
=
387 BuildMI(*MBB
, Pos
, DL
, TII
->get(JumpOp
)).addReg(ATReg
);
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]
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
);
407 MFp
->insert(FallThroughMBB
, LongBrMBB
);
408 MBB
->replaceSuccessor(TgtMBB
, LongBrMBB
);
411 MachineBasicBlock
*BalTgtMBB
= MFp
->CreateMachineBasicBlock(BB
);
412 MFp
->insert(FallThroughMBB
, BalTgtMBB
);
413 LongBrMBB
->addSuccessor(BalTgtMBB
);
414 BalTgtMBB
->addSuccessor(TgtMBB
);
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
=
421 ? STI
->inMicroMipsMode() ? Mips::BALC_MMR6
: Mips::BALC
422 : STI
->inMicroMipsMode() ? Mips::BAL_BR_MM
: Mips::BAL_BR
;
427 // addiu $sp, $sp, -8
429 // lui $at, %hi($tgt - $baltgt)
431 // addiu $at, $at, %lo($tgt - $baltgt)
433 // addu $at, $ra, $at
442 // addiu $sp, $sp, -8
444 // lui $at, %hi($tgt - $baltgt)
445 // addiu $at, $at, %lo($tgt - $baltgt)
448 // addu $at, $ra, $at
454 Pos
= LongBrMBB
->begin();
456 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::ADDiu
), Mips::SP
)
459 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::SW
))
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.
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.
480 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_LUi
), Mips::AT
)
481 .addMBB(TgtMBB
, MipsII::MO_ABS_HI
)
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
)
489 .addMBB(TgtMBB
, MipsII::MO_ABS_LO
)
491 if (STI
->hasMips32r6()) {
492 LongBrMBB
->insert(Pos
, ADDiuInstr
);
493 LongBrMBB
->insert(Pos
, BalInstr
);
495 LongBrMBB
->insert(Pos
, BalInstr
);
496 LongBrMBB
->insert(Pos
, ADDiuInstr
);
497 LongBrMBB
->rbegin()->bundleWithPred();
500 Pos
= BalTgtMBB
->begin();
502 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::ADDu
), Mips::AT
)
505 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::LW
), Mips::RA
)
508 if (STI
->isTargetNaCl())
509 // Bundle-align the target of indirect branch JR.
510 TgtMBB
->setAlignment(MIPS_NACL_BUNDLE_ALIGN
);
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
);
516 if (STI
->isTargetNaCl() || !hasDelaySlot
) {
517 BuildMI(*BalTgtMBB
, std::prev(Pos
), DL
, TII
->get(Mips::ADDiu
), Mips::SP
)
522 if (STI
->isTargetNaCl()) {
523 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::NOP
));
525 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::ADDiu
), Mips::SP
)
529 BalTgtMBB
->rbegin()->bundleWithPred();
534 // daddiu $sp, $sp, -16
536 // daddiu $at, $zero, %hi($tgt - $baltgt)
539 // daddiu $at, $at, %lo($tgt - $baltgt)
541 // daddu $at, $ra, $at
544 // daddiu $sp, $sp, 16
549 // daddiu $sp, $sp, -16
551 // daddiu $at, $zero, %hi($tgt - $baltgt)
553 // daddiu $at, $at, %lo($tgt - $baltgt)
556 // daddu $at, $ra, $at
558 // daddiu $sp, $sp, 16
562 // We assume the branch is within-function, and that offset is within
563 // +/- 2GB. High 32 bits will therefore always be zero.
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
569 // 0xFFFFFFFFFFF00000 + 0x80008000 = 0x000000007FF08000
571 // and the bits [47:32] are zero. For %highest
573 // 0xFFFFFFFFFFF00000 + 0x800080008000 = 0x000080007FF08000
575 // and the bits [63:48] are zero.
577 Pos
= LongBrMBB
->begin();
579 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::DADDiu
), Mips::SP_64
)
582 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::SD
))
586 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu
),
588 .addReg(Mips::ZERO_64
)
589 .addMBB(TgtMBB
, MipsII::MO_ABS_HI
)
591 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::DSLL
), Mips::AT_64
)
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
)
600 .addMBB(TgtMBB
, MipsII::MO_ABS_LO
)
602 if (STI
->hasMips32r6()) {
603 LongBrMBB
->insert(Pos
, DADDiuInstr
);
604 LongBrMBB
->insert(Pos
, BalInstr
);
606 LongBrMBB
->insert(Pos
, BalInstr
);
607 LongBrMBB
->insert(Pos
, DADDiuInstr
);
608 LongBrMBB
->rbegin()->bundleWithPred();
611 Pos
= BalTgtMBB
->begin();
613 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::DADDu
), Mips::AT_64
)
615 .addReg(Mips::AT_64
);
616 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::LD
), Mips::RA_64
)
620 bool hasDelaySlot
= buildProperJumpMI(BalTgtMBB
, Pos
, DL
);
621 // If there is no delay slot, Insert stack adjustment before
623 BuildMI(*BalTgtMBB
, std::prev(Pos
), DL
, TII
->get(Mips::DADDiu
),
628 BuildMI(*BalTgtMBB
, Pos
, DL
, TII
->get(Mips::DADDiu
), Mips::SP_64
)
631 BalTgtMBB
->rbegin()->bundleWithPred();
635 Pos
= LongBrMBB
->begin();
636 LongBrMBB
->addSuccessor(TgtMBB
);
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
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;
650 if (STI
->hasMips32r6() && TII
->isBranchOffsetInRange(Mips::BC
, I
.Offset
)) {
656 BuildMI(*LongBrMBB
, Pos
, DL
,
657 TII
->get(STI
->inMicroMipsMode() ? Mips::BC_MMR6
: Mips::BC
))
659 } else if (SameSegmentJump
) {
666 MIBundleBuilder(*LongBrMBB
, Pos
)
667 .append(BuildMI(*MFp
, DL
, TII
->get(Mips::J
)).addMBB(TgtMBB
))
668 .append(BuildMI(*MFp
, DL
, TII
->get(Mips::NOP
)));
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.
676 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_LUi2Op_64
),
678 .addMBB(TgtMBB
, MipsII::MO_HIGHEST
);
679 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu2Op
),
682 .addMBB(TgtMBB
, MipsII::MO_HIGHER
);
683 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::DSLL
), Mips::AT_64
)
686 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu2Op
),
689 .addMBB(TgtMBB
, MipsII::MO_ABS_HI
);
690 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::DSLL
), Mips::AT_64
)
693 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_DADDiu2Op
),
696 .addMBB(TgtMBB
, MipsII::MO_ABS_LO
);
698 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_LUi2Op
),
700 .addMBB(TgtMBB
, MipsII::MO_ABS_HI
);
701 BuildMI(*LongBrMBB
, Pos
, DL
, TII
->get(Mips::LONG_BRANCH_ADDiu2Op
),
704 .addMBB(TgtMBB
, MipsII::MO_ABS_LO
);
706 buildProperJumpMI(LongBrMBB
, Pos
, DL
);
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
));
716 // Change branch destination and reverse condition.
717 replaceBranch(*MBB
, I
.Br
, DL
, &*FallThroughMBB
);
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
)
728 .addExternalSymbol("_gp_disp", MipsII::MO_ABS_LO
);
729 MBB
.removeLiveIn(Mips::V0
);
732 bool MipsBranchExpansion::handleForbiddenSlot() {
733 // Forbidden slot hazards are only defined for MIPSR6 but not microMIPSR6.
734 if (!STI
->hasMips32r6() || STI
->inMicroMipsMode())
737 bool Changed
= false;
739 for (MachineFunction::iterator FI
= MFp
->begin(); FI
!= MFp
->end(); ++FI
) {
740 for (Iter I
= FI
->begin(); I
!= FI
->end(); ++I
) {
742 // Forbidden slot hazard handling. Use lookahead over state.
743 if (!TII
->HasForbiddenSlot(*I
))
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
;
755 if (LastInstInFunction
|| !TII
->SafeInForbiddenSlot(*Inst
)) {
757 MachineBasicBlock::instr_iterator Iit
= I
->getIterator();
758 if (std::next(Iit
) == FI
->end() ||
759 std::next(Iit
)->getOpcode() != Mips::NOP
) {
761 MIBundleBuilder(&*I
).append(
762 BuildMI(*MFp
, I
->getDebugLoc(), TII
->get(Mips::NOP
)));
772 bool MipsBranchExpansion::handlePossibleLongBranch() {
773 if (STI
->inMips16Mode() || !STI
->enableLongBranchPass())
779 bool EverMadeChange
= false, MadeChange
= true;
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
);
792 if ((Br
!= End
) && Br
->isBranch() && !Br
->isIndirectBranch() &&
793 (Br
->isConditionalBranch() ||
794 (Br
->isUnconditionalBranch() && IsPIC
))) {
795 int64_t Offset
= computeOffset(&*Br
);
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%.
805 if (ForceLongBranchFirstPass
||
806 !TII
->isBranchOffsetInRange(Br
->getOpcode(), Offset
)) {
807 MBBInfos
[I
].Offset
= Offset
;
808 MBBInfos
[I
].Br
= &*Br
;
813 ForceLongBranchFirstPass
= false;
815 SmallVectorImpl
<MBBInfo
>::iterator I
, E
= MBBInfos
.end();
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.
823 expandToLongBranch(*I
);
825 EverMadeChange
= MadeChange
= true;
828 MFp
->RenumberBlocks();
831 return EverMadeChange
;
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());
841 if (IsPIC
&& ABI
.IsO32() &&
842 MF
.getInfo
<MipsFunctionInfo
>()->globalBaseRegSet())
847 ForceLongBranchFirstPass
= ForceLongBranch
;
848 // Run these two at least once
849 bool longBranchChanged
= handlePossibleLongBranch();
850 bool forbiddenSlotChanged
= handleForbiddenSlot();
852 bool Changed
= longBranchChanged
|| forbiddenSlotChanged
;
854 // Then run them alternatively while there are changes
855 while (forbiddenSlotChanged
) {
856 longBranchChanged
= handlePossibleLongBranch();
857 if (!longBranchChanged
)
859 forbiddenSlotChanged
= handleForbiddenSlot();