1 //===-- MSP430BranchSelector.cpp - Emit long conditional branches--*- C++ -*-=//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains a pass that scans a machine function to determine which
11 // conditional branches need more than 10 bits of displacement to reach their
12 // target basic block. It does this in two passes; a calculation of basic block
13 // positions pass, and a branch pseudo op to machine branch opcode pass. This
14 // pass should be run last, just before the assembly printer.
16 //===----------------------------------------------------------------------===//
18 #define DEBUG_TYPE "msp430-branch-select"
20 #include "MSP430InstrInfo.h"
21 #include "llvm/CodeGen/MachineInstrBuilder.h"
22 #include "llvm/CodeGen/MachineFunctionPass.h"
23 #include "llvm/Target/TargetMachine.h"
24 #include "llvm/ADT/Statistic.h"
25 #include "llvm/Support/MathExtras.h"
28 STATISTIC(NumExpanded
, "Number of branches expanded to long format");
31 struct MSP430BSel
: public MachineFunctionPass
{
33 MSP430BSel() : MachineFunctionPass(ID
) {}
35 /// BlockSizes - The sizes of the basic blocks in the function.
36 std::vector
<unsigned> BlockSizes
;
38 virtual bool runOnMachineFunction(MachineFunction
&Fn
);
40 virtual const char *getPassName() const {
41 return "MSP430 Branch Selector";
44 char MSP430BSel::ID
= 0;
47 /// createMSP430BranchSelectionPass - returns an instance of the Branch
50 FunctionPass
*llvm::createMSP430BranchSelectionPass() {
51 return new MSP430BSel();
54 bool MSP430BSel::runOnMachineFunction(MachineFunction
&Fn
) {
55 const MSP430InstrInfo
*TII
=
56 static_cast<const MSP430InstrInfo
*>(Fn
.getTarget().getInstrInfo());
57 // Give the blocks of the function a dense, in-order, numbering.
59 BlockSizes
.resize(Fn
.getNumBlockIDs());
61 // Measure each MBB and compute a size for the entire function.
62 unsigned FuncSize
= 0;
63 for (MachineFunction::iterator MFI
= Fn
.begin(), E
= Fn
.end(); MFI
!= E
;
65 MachineBasicBlock
*MBB
= MFI
;
67 unsigned BlockSize
= 0;
68 for (MachineBasicBlock::iterator MBBI
= MBB
->begin(), EE
= MBB
->end();
70 BlockSize
+= TII
->GetInstSizeInBytes(MBBI
);
72 BlockSizes
[MBB
->getNumber()] = BlockSize
;
73 FuncSize
+= BlockSize
;
76 // If the entire function is smaller than the displacement of a branch field,
77 // we know we don't need to shrink any branches in this function. This is a
79 if (FuncSize
< (1 << 9)) {
84 // For each conditional branch, if the offset to its destination is larger
85 // than the offset field allows, transform it into a long branch sequence
93 bool MadeChange
= true;
94 bool EverMadeChange
= false;
96 // Iteratively expand branches until we reach a fixed point.
99 for (MachineFunction::iterator MFI
= Fn
.begin(), E
= Fn
.end(); MFI
!= E
;
101 MachineBasicBlock
&MBB
= *MFI
;
102 unsigned MBBStartOffset
= 0;
103 for (MachineBasicBlock::iterator I
= MBB
.begin(), E
= MBB
.end();
105 if ((I
->getOpcode() != MSP430::JCC
|| I
->getOperand(0).isImm()) &&
106 I
->getOpcode() != MSP430::JMP
) {
107 MBBStartOffset
+= TII
->GetInstSizeInBytes(I
);
111 // Determine the offset from the current branch to the destination
113 MachineBasicBlock
*Dest
= I
->getOperand(0).getMBB();
116 if (Dest
->getNumber() <= MBB
.getNumber()) {
117 // If this is a backwards branch, the delta is the offset from the
118 // start of this block to this branch, plus the sizes of all blocks
119 // from this block to the dest.
120 BranchSize
= MBBStartOffset
;
122 for (unsigned i
= Dest
->getNumber(), e
= MBB
.getNumber(); i
!= e
; ++i
)
123 BranchSize
+= BlockSizes
[i
];
125 // Otherwise, add the size of the blocks between this block and the
126 // dest to the number of bytes left in this block.
127 BranchSize
= -MBBStartOffset
;
129 for (unsigned i
= MBB
.getNumber(), e
= Dest
->getNumber(); i
!= e
; ++i
)
130 BranchSize
+= BlockSizes
[i
];
133 // If this branch is in range, ignore it.
134 if (isInt
<10>(BranchSize
)) {
139 // Otherwise, we have to expand it to a long branch.
141 MachineInstr
*OldBranch
= I
;
142 DebugLoc dl
= OldBranch
->getDebugLoc();
144 if (I
->getOpcode() == MSP430::JMP
) {
147 // The BCC operands are:
148 // 0. MSP430 branch predicate
150 SmallVector
<MachineOperand
, 1> Cond
;
151 Cond
.push_back(I
->getOperand(1));
153 // Jump over the uncond branch inst (i.e. $+6) on opposite condition.
154 TII
->ReverseBranchCondition(Cond
);
155 BuildMI(MBB
, I
, dl
, TII
->get(MSP430::JCC
))
156 .addImm(4).addOperand(Cond
[0]);
160 // Uncond branch to the real destination.
161 I
= BuildMI(MBB
, I
, dl
, TII
->get(MSP430::Bi
)).addMBB(Dest
);
163 // Remove the old branch from the function.
164 OldBranch
->eraseFromParent();
166 // Remember that this instruction is NewSize bytes, increase the size of the
167 // block by NewSize-2, remember to iterate.
168 BlockSizes
[MBB
.getNumber()] += NewSize
-2;
169 MBBStartOffset
+= NewSize
;
175 EverMadeChange
|= MadeChange
;