1 //===-- PPCBranchSelector.cpp - Emit long conditional branches ------------===//
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 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 pseudo op to machine branch opcode pass. This
14 // pass should be run last, just before the assembly printer.
16 //===----------------------------------------------------------------------===//
18 #define DEBUG_TYPE "ppc-branch-select"
20 #include "MCTargetDesc/PPCPredicates.h"
21 #include "PPCInstrBuilder.h"
22 #include "PPCInstrInfo.h"
23 #include "llvm/ADT/Statistic.h"
24 #include "llvm/CodeGen/MachineFunctionPass.h"
25 #include "llvm/Support/MathExtras.h"
26 #include "llvm/Target/TargetMachine.h"
29 STATISTIC(NumExpanded, "Number of branches expanded to long format");
32 void initializePPCBSelPass(PassRegistry&);
36 struct PPCBSel : public MachineFunctionPass {
38 PPCBSel() : MachineFunctionPass(ID) {
39 initializePPCBSelPass(*PassRegistry::getPassRegistry());
42 /// BlockSizes - The sizes of the basic blocks in the function.
43 std::vector<unsigned> BlockSizes;
45 virtual bool runOnMachineFunction(MachineFunction &Fn);
47 virtual const char *getPassName() const {
48 return "PowerPC Branch Selector";
54 INITIALIZE_PASS(PPCBSel, "ppc-branch-select", "PowerPC Branch Selector",
57 /// createPPCBranchSelectionPass - returns an instance of the Branch Selection
60 FunctionPass *llvm::createPPCBranchSelectionPass() {
64 bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) {
65 const PPCInstrInfo *TII =
66 static_cast<const PPCInstrInfo*>(Fn.getTarget().getInstrInfo());
67 // Give the blocks of the function a dense, in-order, numbering.
69 BlockSizes.resize(Fn.getNumBlockIDs());
71 // Measure each MBB and compute a size for the entire function.
72 unsigned FuncSize = 0;
73 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
75 MachineBasicBlock *MBB = MFI;
77 unsigned BlockSize = 0;
78 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
80 BlockSize += TII->GetInstSizeInBytes(MBBI);
82 BlockSizes[MBB->getNumber()] = BlockSize;
83 FuncSize += BlockSize;
86 // If the entire function is smaller than the displacement of a branch field,
87 // we know we don't need to shrink any branches in this function. This is a
89 if (FuncSize < (1 << 15)) {
94 // For each conditional branch, if the offset to its destination is larger
95 // than the offset field allows, transform it into a long branch sequence
103 bool MadeChange = true;
104 bool EverMadeChange = false;
106 // Iteratively expand branches until we reach a fixed point.
109 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
111 MachineBasicBlock &MBB = *MFI;
112 unsigned MBBStartOffset = 0;
113 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
115 if (I->getOpcode() != PPC::BCC || I->getOperand(2).isImm()) {
116 MBBStartOffset += TII->GetInstSizeInBytes(I);
120 // Determine the offset from the current branch to the destination
122 MachineBasicBlock *Dest = I->getOperand(2).getMBB();
125 if (Dest->getNumber() <= MBB.getNumber()) {
126 // If this is a backwards branch, the delta is the offset from the
127 // start of this block to this branch, plus the sizes of all blocks
128 // from this block to the dest.
129 BranchSize = MBBStartOffset;
131 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
132 BranchSize += BlockSizes[i];
134 // Otherwise, add the size of the blocks between this block and the
135 // dest to the number of bytes left in this block.
136 BranchSize = -MBBStartOffset;
138 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
139 BranchSize += BlockSizes[i];
142 // If this branch is in range, ignore it.
143 if (isInt<16>(BranchSize)) {
148 // Otherwise, we have to expand it to a long branch.
149 MachineInstr *OldBranch = I;
150 DebugLoc dl = OldBranch->getDebugLoc();
152 if (I->getOpcode() == PPC::BCC) {
153 // The BCC operands are:
154 // 0. PPC branch predicate
157 PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm();
158 unsigned CRReg = I->getOperand(1).getReg();
160 // Jump over the uncond branch inst (i.e. $PC+8) on opposite condition.
161 BuildMI(MBB, I, dl, TII->get(PPC::BCC))
162 .addImm(PPC::InvertPredicate(Pred)).addReg(CRReg).addImm(2);
163 } else if (I->getOpcode() == PPC::BDNZ) {
164 BuildMI(MBB, I, dl, TII->get(PPC::BDZ)).addImm(2);
165 } else if (I->getOpcode() == PPC::BDNZ8) {
166 BuildMI(MBB, I, dl, TII->get(PPC::BDZ8)).addImm(2);
167 } else if (I->getOpcode() == PPC::BDZ) {
168 BuildMI(MBB, I, dl, TII->get(PPC::BDNZ)).addImm(2);
169 } else if (I->getOpcode() == PPC::BDZ8) {
170 BuildMI(MBB, I, dl, TII->get(PPC::BDNZ8)).addImm(2);
172 llvm_unreachable("Unhandled branch type!");
175 // Uncond branch to the real destination.
176 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
178 // Remove the old branch from the function.
179 OldBranch->eraseFromParent();
181 // Remember that this instruction is 8-bytes, increase the size of the
182 // block by 4, remember to iterate.
183 BlockSizes[MBB.getNumber()] += 4;
189 EverMadeChange |= MadeChange;