blob: 6977093923af62c9813b83d4b9ed2cf189fc89b5 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PPCBranchSelector.cpp - Emit long conditional branches-----*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a pass that scans a machine function to determine which
11// conditional branches need more than 16 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 psuedo op to machine branch opcode pass. This
14// pass should be run last, just before the assembly printer.
15//
16//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "ppc-branch-select"
19#include "PPC.h"
20#include "PPCInstrBuilder.h"
21#include "PPCInstrInfo.h"
22#include "PPCPredicates.h"
23#include "llvm/CodeGen/MachineFunctionPass.h"
24#include "llvm/Target/TargetMachine.h"
25#include "llvm/Target/TargetAsmInfo.h"
26#include "llvm/ADT/Statistic.h"
27#include "llvm/Support/Compiler.h"
28#include "llvm/Support/MathExtras.h"
29using namespace llvm;
30
31STATISTIC(NumExpanded, "Number of branches expanded to long format");
32
33namespace {
34 struct VISIBILITY_HIDDEN PPCBSel : public MachineFunctionPass {
35 static char ID;
36 PPCBSel() : MachineFunctionPass((intptr_t)&ID) {}
37
38 /// BlockSizes - The sizes of the basic blocks in the function.
39 std::vector<unsigned> BlockSizes;
40
41 virtual bool runOnMachineFunction(MachineFunction &Fn);
42
43 virtual const char *getPassName() const {
44 return "PowerPC Branch Selector";
45 }
46 };
47 char PPCBSel::ID = 0;
48}
49
50/// createPPCBranchSelectionPass - returns an instance of the Branch Selection
51/// Pass
52///
53FunctionPass *llvm::createPPCBranchSelectionPass() {
54 return new PPCBSel();
55}
56
57/// getNumBytesForInstruction - Return the number of bytes of code the specified
58/// instruction may be. This returns the maximum number of bytes.
59///
60static unsigned getNumBytesForInstruction(MachineInstr *MI) {
61 switch (MI->getOpcode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 case PPC::INLINEASM: { // Inline Asm: Variable size.
63 MachineFunction *MF = MI->getParent()->getParent();
64 const char *AsmStr = MI->getOperand(0).getSymbolName();
65 return MF->getTarget().getTargetAsmInfo()->getInlineAsmLength(AsmStr);
66 }
67 case PPC::LABEL: {
68 return 0;
69 }
70 default:
71 return 4; // PowerPC instructions are all 4 bytes
72 }
73}
74
75
76bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) {
77 const TargetInstrInfo *TII = Fn.getTarget().getInstrInfo();
78 // Give the blocks of the function a dense, in-order, numbering.
79 Fn.RenumberBlocks();
80 BlockSizes.resize(Fn.getNumBlockIDs());
81
82 // Measure each MBB and compute a size for the entire function.
83 unsigned FuncSize = 0;
84 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
85 ++MFI) {
86 MachineBasicBlock *MBB = MFI;
87
88 unsigned BlockSize = 0;
89 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
90 MBBI != EE; ++MBBI)
91 BlockSize += getNumBytesForInstruction(MBBI);
92
93 BlockSizes[MBB->getNumber()] = BlockSize;
94 FuncSize += BlockSize;
95 }
96
97 // If the entire function is smaller than the displacement of a branch field,
98 // we know we don't need to shrink any branches in this function. This is a
99 // common case.
100 if (FuncSize < (1 << 15)) {
101 BlockSizes.clear();
102 return false;
103 }
104
105 // For each conditional branch, if the offset to its destination is larger
106 // than the offset field allows, transform it into a long branch sequence
107 // like this:
108 // short branch:
109 // bCC MBB
110 // long branch:
111 // b!CC $PC+8
112 // b MBB
113 //
114 bool MadeChange = true;
115 bool EverMadeChange = false;
116 while (MadeChange) {
117 // Iteratively expand branches until we reach a fixed point.
118 MadeChange = false;
119
120 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
121 ++MFI) {
122 MachineBasicBlock &MBB = *MFI;
123 unsigned MBBStartOffset = 0;
124 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
125 I != E; ++I) {
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000126 if (I->getOpcode() != PPC::BCC || I->getOperand(2).isImmediate()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 MBBStartOffset += getNumBytesForInstruction(I);
128 continue;
129 }
130
131 // Determine the offset from the current branch to the destination
132 // block.
Chris Lattner6017d482007-12-30 23:10:15 +0000133 MachineBasicBlock *Dest = I->getOperand(2).getMBB();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134
135 int BranchSize;
136 if (Dest->getNumber() <= MBB.getNumber()) {
137 // If this is a backwards branch, the delta is the offset from the
138 // start of this block to this branch, plus the sizes of all blocks
139 // from this block to the dest.
140 BranchSize = MBBStartOffset;
141
142 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
143 BranchSize += BlockSizes[i];
144 } else {
145 // Otherwise, add the size of the blocks between this block and the
146 // dest to the number of bytes left in this block.
147 BranchSize = -MBBStartOffset;
148
149 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
150 BranchSize += BlockSizes[i];
151 }
152
153 // If this branch is in range, ignore it.
154 if (isInt16(BranchSize)) {
155 MBBStartOffset += 4;
156 continue;
157 }
158
159 // Otherwise, we have to expand it to a long branch.
160 // The BCC operands are:
161 // 0. PPC branch predicate
162 // 1. CR register
163 // 2. Target MBB
164 PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm();
165 unsigned CRReg = I->getOperand(1).getReg();
166
167 MachineInstr *OldBranch = I;
168
169 // Jump over the uncond branch inst (i.e. $PC+8) on opposite condition.
170 BuildMI(MBB, I, TII->get(PPC::BCC))
171 .addImm(PPC::InvertPredicate(Pred)).addReg(CRReg).addImm(2);
172
173 // Uncond branch to the real destination.
174 I = BuildMI(MBB, I, TII->get(PPC::B)).addMBB(Dest);
175
176 // Remove the old branch from the function.
177 OldBranch->eraseFromParent();
178
179 // Remember that this instruction is 8-bytes, increase the size of the
180 // block by 4, remember to iterate.
181 BlockSizes[MBB.getNumber()] += 4;
182 MBBStartOffset += 8;
183 ++NumExpanded;
184 MadeChange = true;
185 }
186 }
187 EverMadeChange |= MadeChange;
188 }
189
190 BlockSizes.clear();
191 return true;
192}
193