blob: e60399c56d10a9b803064bfeec205f0084427280 [file] [log] [blame]
Nate Begeman6cca84e2005-10-16 05:39:50 +00001//===-- PPCBranchSelector.cpp - Emit long conditional branches-----*- C++ -*-=//
Misha Brukmanb4402432005-04-21 23:30:14 +00002//
Misha Brukmanef8cf022004-07-27 18:33:06 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by Nate Baegeman and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb4402432005-04-21 23:30:14 +00007//
Misha Brukmanef8cf022004-07-27 18:33:06 +00008//===----------------------------------------------------------------------===//
9//
Misha Brukmanb4402432005-04-21 23:30:14 +000010// This file contains a pass that scans a machine function to determine which
Misha Brukmanef8cf022004-07-27 18:33:06 +000011// 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
Chris Lattnerbfca1ab2005-10-14 23:51:18 +000018#include "PPC.h"
Chris Lattnere80bf1b2005-10-14 23:45:43 +000019#include "PPCInstrBuilder.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000020#include "PPCInstrInfo.h"
Chris Lattner8c6a41e2006-11-17 22:10:59 +000021#include "PPCPredicates.h"
Misha Brukmanef8cf022004-07-27 18:33:06 +000022#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattner4dc4f302006-10-13 17:56:02 +000023#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetAsmInfo.h"
Chris Lattner96d73862006-11-16 18:13:49 +000025#include "llvm/ADT/Statistic.h"
26#include "llvm/Support/Compiler.h"
Misha Brukmanef8cf022004-07-27 18:33:06 +000027using namespace llvm;
28
Chris Lattner96d73862006-11-16 18:13:49 +000029static Statistic<> NumExpanded("ppc-branch-select",
30 "Num branches expanded to long format");
31
Misha Brukmanef8cf022004-07-27 18:33:06 +000032namespace {
Chris Lattner996795b2006-06-28 23:17:24 +000033 struct VISIBILITY_HIDDEN PPCBSel : public MachineFunctionPass {
Chris Lattner3b7261b2006-11-17 01:52:23 +000034 /// OffsetMap - Mapping between BB # and byte offset from start of function.
35 std::vector<unsigned> OffsetMap;
Misha Brukmanef8cf022004-07-27 18:33:06 +000036
Chris Lattner26e385a2006-02-08 19:33:26 +000037 virtual bool runOnMachineFunction(MachineFunction &Fn);
Misha Brukmanef8cf022004-07-27 18:33:06 +000038
39 virtual const char *getPassName() const {
40 return "PowerPC Branch Selection";
41 }
42 };
43}
44
45/// createPPCBranchSelectionPass - returns an instance of the Branch Selection
46/// Pass
47///
48FunctionPass *llvm::createPPCBranchSelectionPass() {
Chris Lattner26e385a2006-02-08 19:33:26 +000049 return new PPCBSel();
Misha Brukmanef8cf022004-07-27 18:33:06 +000050}
Chris Lattner26e385a2006-02-08 19:33:26 +000051
52/// getNumBytesForInstruction - Return the number of bytes of code the specified
53/// instruction may be. This returns the maximum number of bytes.
54///
55static unsigned getNumBytesForInstruction(MachineInstr *MI) {
56 switch (MI->getOpcode()) {
57 case PPC::COND_BRANCH:
Nate Begemanbb01d4f2006-03-17 01:40:33 +000058 // while this will be 4 most of the time, if we emit 8 it is just a
Chris Lattner26e385a2006-02-08 19:33:26 +000059 // minor pessimization that saves us from having to worry about
60 // keeping the offsets up to date later when we emit long branch glue.
Nate Begemanbb01d4f2006-03-17 01:40:33 +000061 return 8;
Chris Lattnerd48ce272006-06-27 18:18:41 +000062 case PPC::IMPLICIT_DEF_GPRC: // no asm emitted
63 case PPC::IMPLICIT_DEF_G8RC: // no asm emitted
Chris Lattner4dc4f302006-10-13 17:56:02 +000064 case PPC::IMPLICIT_DEF_F4: // no asm emitted
65 case PPC::IMPLICIT_DEF_F8: // no asm emitted
Chris Lattnera7152882006-11-16 23:49:52 +000066 case PPC::IMPLICIT_DEF_VRRC: // no asm emitted
Chris Lattner26e385a2006-02-08 19:33:26 +000067 return 0;
Chris Lattner4dc4f302006-10-13 17:56:02 +000068 case PPC::INLINEASM: { // Inline Asm: Variable size.
69 MachineFunction *MF = MI->getParent()->getParent();
70 const char *AsmStr = MI->getOperand(0).getSymbolName();
71 return MF->getTarget().getTargetAsmInfo()->getInlineAsmLength(AsmStr);
72 }
Chris Lattner26e385a2006-02-08 19:33:26 +000073 default:
74 return 4; // PowerPC instructions are all 4 bytes
75 }
76}
77
78
79bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) {
80 // Running total of instructions encountered since beginning of function
81 unsigned ByteCount = 0;
82
Chris Lattner3b7261b2006-11-17 01:52:23 +000083 OffsetMap.resize(Fn.getNumBlockIDs());
84
Chris Lattner26e385a2006-02-08 19:33:26 +000085 // For each MBB, add its offset to the offset map, and count up its
86 // instructions
87 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
88 ++MFI) {
89 MachineBasicBlock *MBB = MFI;
Chris Lattner3b7261b2006-11-17 01:52:23 +000090 OffsetMap[MBB->getNumber()] = ByteCount;
Chris Lattner26e385a2006-02-08 19:33:26 +000091
92 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
93 MBBI != EE; ++MBBI)
94 ByteCount += getNumBytesForInstruction(MBBI);
95 }
96
97 // We're about to run over the MBB's again, so reset the ByteCount
98 ByteCount = 0;
99
100 // For each MBB, find the conditional branch pseudo instructions, and
101 // calculate the difference between the target MBB and the current ICount
102 // to decide whether or not to emit a short or long branch.
103 //
104 // short branch:
105 // bCC .L_TARGET_MBB
106 //
107 // long branch:
108 // bInverseCC $PC+8
109 // b .L_TARGET_MBB
Chris Lattner26e385a2006-02-08 19:33:26 +0000110 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
111 ++MFI) {
112 MachineBasicBlock *MBB = MFI;
113
114 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
115 MBBI != EE; ++MBBI) {
116 // We may end up deleting the MachineInstr that MBBI points to, so
117 // remember its opcode now so we can refer to it after calling erase()
118 unsigned ByteSize = getNumBytesForInstruction(MBBI);
Chris Lattnera7152882006-11-16 23:49:52 +0000119 if (MBBI->getOpcode() != PPC::COND_BRANCH) {
120 ByteCount += ByteSize;
121 continue;
Chris Lattner26e385a2006-02-08 19:33:26 +0000122 }
Chris Lattnera7152882006-11-16 23:49:52 +0000123
124 // condbranch operands:
125 // 0. CR register
126 // 1. PPC branch opcode
127 // 2. Target MBB
128 MachineBasicBlock *DestMBB = MBBI->getOperand(2).getMachineBasicBlock();
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000129 PPC::Predicate Pred = (PPC::Predicate)MBBI->getOperand(1).getImm();
Chris Lattnera7152882006-11-16 23:49:52 +0000130 unsigned CRReg = MBBI->getOperand(0).getReg();
Chris Lattner3b7261b2006-11-17 01:52:23 +0000131 int Displacement = OffsetMap[DestMBB->getNumber()] - ByteCount;
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000132
133 bool ShortBranchOk = Displacement >= -32768 && Displacement <= 32767;
134
135 // Branch on opposite condition if a short branch isn't ok.
136 if (!ShortBranchOk)
137 Pred = PPC::InvertPredicate(Pred);
138
139 unsigned Opcode;
140 switch (Pred) {
141 default: assert(0 && "Unknown cond branch predicate!");
142 case PPC::PRED_LT: Opcode = PPC::BLT; break;
143 case PPC::PRED_LE: Opcode = PPC::BLE; break;
144 case PPC::PRED_EQ: Opcode = PPC::BEQ; break;
145 case PPC::PRED_GE: Opcode = PPC::BGE; break;
146 case PPC::PRED_GT: Opcode = PPC::BGT; break;
147 case PPC::PRED_NE: Opcode = PPC::BNE; break;
148 case PPC::PRED_UN: Opcode = PPC::BUN; break;
149 case PPC::PRED_NU: Opcode = PPC::BNU; break;
150 }
Chris Lattnera7152882006-11-16 23:49:52 +0000151
152 MachineBasicBlock::iterator MBBJ;
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000153 if (ShortBranchOk) {
Chris Lattnerbe1a4d82006-11-17 00:49:36 +0000154 MBBJ = BuildMI(*MBB, MBBI, Opcode, 2).addReg(CRReg).addMBB(DestMBB);
Chris Lattnera7152882006-11-16 23:49:52 +0000155 } else {
156 // Long branch, skip next branch instruction (i.e. $PC+8).
157 ++NumExpanded;
Chris Lattner8c6a41e2006-11-17 22:10:59 +0000158 BuildMI(*MBB, MBBI, Opcode, 2).addReg(CRReg).addImm(2);
Chris Lattnerbe1a4d82006-11-17 00:49:36 +0000159 MBBJ = BuildMI(*MBB, MBBI, PPC::B, 1).addMBB(DestMBB);
Chris Lattnera7152882006-11-16 23:49:52 +0000160 }
161
162 // Erase the psuedo COND_BRANCH instruction, and then back up the
163 // iterator so that when the for loop increments it, we end up in
164 // the correct place rather than iterating off the end.
165 MBB->erase(MBBI);
166 MBBI = MBBJ;
Chris Lattner26e385a2006-02-08 19:33:26 +0000167 ByteCount += ByteSize;
168 }
169 }
170
171 OffsetMap.clear();
172 return true;
173}
174