blob: a96930a09889987ab82d4da7711456997ed99c4d [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- MSP430BranchSelector.cpp - Emit long conditional branches ---------===//
Anton Korobeynikovce52fd52010-01-15 21:19:05 +00002//
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//
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
Gabor Greif21fed662010-08-23 20:30:51 +000013// positions pass, and a branch pseudo op to machine branch opcode pass. This
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000014// pass should be run last, just before the assembly printer.
15//
16//===----------------------------------------------------------------------===//
17
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000018#include "MSP430.h"
19#include "MSP430InstrInfo.h"
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000020#include "llvm/ADT/Statistic.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/CodeGen/MachineFunctionPass.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000023#include "llvm/Support/MathExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/Target/TargetMachine.h"
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000025using namespace llvm;
26
Chandler Carruth84e68b22014-04-22 02:41:26 +000027#define DEBUG_TYPE "msp430-branch-select"
28
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000029STATISTIC(NumExpanded, "Number of branches expanded to long format");
30
31namespace {
32 struct MSP430BSel : public MachineFunctionPass {
33 static char ID;
Owen Andersona7aed182010-08-06 18:33:48 +000034 MSP430BSel() : MachineFunctionPass(ID) {}
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000035
36 /// BlockSizes - The sizes of the basic blocks in the function.
37 std::vector<unsigned> BlockSizes;
38
Craig Topper6f9e59e2014-04-29 07:58:09 +000039 bool runOnMachineFunction(MachineFunction &Fn) override;
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000040
Craig Topper6f9e59e2014-04-29 07:58:09 +000041 const char *getPassName() const override {
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000042 return "MSP430 Branch Selector";
43 }
44 };
45 char MSP430BSel::ID = 0;
46}
47
48/// createMSP430BranchSelectionPass - returns an instance of the Branch
49/// Selection Pass
50///
51FunctionPass *llvm::createMSP430BranchSelectionPass() {
52 return new MSP430BSel();
53}
54
55bool MSP430BSel::runOnMachineFunction(MachineFunction &Fn) {
Gabor Greif4ad727172010-07-23 13:28:47 +000056 const MSP430InstrInfo *TII =
57 static_cast<const MSP430InstrInfo*>(Fn.getTarget().getInstrInfo());
Anton Korobeynikovce52fd52010-01-15 21:19:05 +000058 // Give the blocks of the function a dense, in-order, numbering.
59 Fn.RenumberBlocks();
60 BlockSizes.resize(Fn.getNumBlockIDs());
61
62 // Measure each MBB and compute a size for the entire function.
63 unsigned FuncSize = 0;
64 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
65 ++MFI) {
66 MachineBasicBlock *MBB = MFI;
67
68 unsigned BlockSize = 0;
69 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
70 MBBI != EE; ++MBBI)
71 BlockSize += TII->GetInstSizeInBytes(MBBI);
72
73 BlockSizes[MBB->getNumber()] = BlockSize;
74 FuncSize += BlockSize;
75 }
76
77 // If the entire function is smaller than the displacement of a branch field,
78 // we know we don't need to shrink any branches in this function. This is a
79 // common case.
80 if (FuncSize < (1 << 9)) {
81 BlockSizes.clear();
82 return false;
83 }
84
85 // For each conditional branch, if the offset to its destination is larger
86 // than the offset field allows, transform it into a long branch sequence
87 // like this:
88 // short branch:
89 // bCC MBB
90 // long branch:
91 // b!CC $PC+6
92 // b MBB
93 //
94 bool MadeChange = true;
95 bool EverMadeChange = false;
96 while (MadeChange) {
97 // Iteratively expand branches until we reach a fixed point.
98 MadeChange = false;
99
100 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
101 ++MFI) {
102 MachineBasicBlock &MBB = *MFI;
103 unsigned MBBStartOffset = 0;
104 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
105 I != E; ++I) {
106 if ((I->getOpcode() != MSP430::JCC || I->getOperand(0).isImm()) &&
107 I->getOpcode() != MSP430::JMP) {
108 MBBStartOffset += TII->GetInstSizeInBytes(I);
109 continue;
110 }
111
112 // Determine the offset from the current branch to the destination
113 // block.
114 MachineBasicBlock *Dest = I->getOperand(0).getMBB();
115
116 int BranchSize;
117 if (Dest->getNumber() <= MBB.getNumber()) {
118 // If this is a backwards branch, the delta is the offset from the
119 // start of this block to this branch, plus the sizes of all blocks
120 // from this block to the dest.
121 BranchSize = MBBStartOffset;
122
123 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
124 BranchSize += BlockSizes[i];
125 } else {
126 // Otherwise, add the size of the blocks between this block and the
127 // dest to the number of bytes left in this block.
128 BranchSize = -MBBStartOffset;
129
130 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
131 BranchSize += BlockSizes[i];
132 }
133
134 // If this branch is in range, ignore it.
135 if (isInt<10>(BranchSize)) {
136 MBBStartOffset += 2;
137 continue;
138 }
139
140 // Otherwise, we have to expand it to a long branch.
141 unsigned NewSize;
142 MachineInstr *OldBranch = I;
143 DebugLoc dl = OldBranch->getDebugLoc();
144
145 if (I->getOpcode() == MSP430::JMP) {
146 NewSize = 4;
147 } else {
148 // The BCC operands are:
149 // 0. MSP430 branch predicate
150 // 1. Target MBB
151 SmallVector<MachineOperand, 1> Cond;
152 Cond.push_back(I->getOperand(1));
153
154 // Jump over the uncond branch inst (i.e. $+6) on opposite condition.
155 TII->ReverseBranchCondition(Cond);
156 BuildMI(MBB, I, dl, TII->get(MSP430::JCC))
157 .addImm(4).addOperand(Cond[0]);
158
159 NewSize = 6;
160 }
161 // Uncond branch to the real destination.
Anton Korobeynikov319d71f2010-05-01 12:28:21 +0000162 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest);
Anton Korobeynikovce52fd52010-01-15 21:19:05 +0000163
164 // Remove the old branch from the function.
165 OldBranch->eraseFromParent();
166
167 // Remember that this instruction is NewSize bytes, increase the size of the
168 // block by NewSize-2, remember to iterate.
169 BlockSizes[MBB.getNumber()] += NewSize-2;
170 MBBStartOffset += NewSize;
171
172 ++NumExpanded;
173 MadeChange = true;
174 }
175 }
176 EverMadeChange |= MadeChange;
177 }
178
179 BlockSizes.clear();
180 return true;
181}