blob: e022088acdbd8936a7cb9e6538be12aee153a2d6 [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"
Misha Brukmanef8cf022004-07-27 18:33:06 +000021#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattner4dc4f302006-10-13 17:56:02 +000022#include "llvm/Target/TargetMachine.h"
23#include "llvm/Target/TargetAsmInfo.h"
Chris Lattner96d73862006-11-16 18:13:49 +000024#include "llvm/ADT/Statistic.h"
25#include "llvm/Support/Compiler.h"
Misha Brukmanef8cf022004-07-27 18:33:06 +000026#include <map>
27using 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 Lattner4dc4f302006-10-13 17:56:02 +000034 /// OffsetMap - Mapping between BB and byte offset from start of function.
35 /// TODO: replace this with a vector, using the MBB idx as the key.
Misha Brukmanef8cf022004-07-27 18:33:06 +000036 std::map<MachineBasicBlock*, unsigned> OffsetMap;
37
Chris Lattner26e385a2006-02-08 19:33:26 +000038 virtual bool runOnMachineFunction(MachineFunction &Fn);
Misha Brukmanef8cf022004-07-27 18:33:06 +000039
40 virtual const char *getPassName() const {
41 return "PowerPC Branch Selection";
42 }
43 };
44}
45
46/// createPPCBranchSelectionPass - returns an instance of the Branch Selection
47/// Pass
48///
49FunctionPass *llvm::createPPCBranchSelectionPass() {
Chris Lattner26e385a2006-02-08 19:33:26 +000050 return new PPCBSel();
Misha Brukmanef8cf022004-07-27 18:33:06 +000051}
Chris Lattner26e385a2006-02-08 19:33:26 +000052
53/// getNumBytesForInstruction - Return the number of bytes of code the specified
54/// instruction may be. This returns the maximum number of bytes.
55///
56static unsigned getNumBytesForInstruction(MachineInstr *MI) {
57 switch (MI->getOpcode()) {
58 case PPC::COND_BRANCH:
Nate Begemanbb01d4f2006-03-17 01:40:33 +000059 // while this will be 4 most of the time, if we emit 8 it is just a
Chris Lattner26e385a2006-02-08 19:33:26 +000060 // minor pessimization that saves us from having to worry about
61 // keeping the offsets up to date later when we emit long branch glue.
Nate Begemanbb01d4f2006-03-17 01:40:33 +000062 return 8;
Chris Lattnerd48ce272006-06-27 18:18:41 +000063 case PPC::IMPLICIT_DEF_GPRC: // no asm emitted
64 case PPC::IMPLICIT_DEF_G8RC: // no asm emitted
Chris Lattner4dc4f302006-10-13 17:56:02 +000065 case PPC::IMPLICIT_DEF_F4: // no asm emitted
66 case PPC::IMPLICIT_DEF_F8: // no asm emitted
Chris Lattnera7152882006-11-16 23:49:52 +000067 case PPC::IMPLICIT_DEF_VRRC: // no asm emitted
Chris Lattner26e385a2006-02-08 19:33:26 +000068 return 0;
Chris Lattner4dc4f302006-10-13 17:56:02 +000069 case PPC::INLINEASM: { // Inline Asm: Variable size.
70 MachineFunction *MF = MI->getParent()->getParent();
71 const char *AsmStr = MI->getOperand(0).getSymbolName();
72 return MF->getTarget().getTargetAsmInfo()->getInlineAsmLength(AsmStr);
73 }
Chris Lattner26e385a2006-02-08 19:33:26 +000074 default:
75 return 4; // PowerPC instructions are all 4 bytes
76 }
77}
78
79
80bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) {
81 // Running total of instructions encountered since beginning of function
82 unsigned ByteCount = 0;
83
84 // For each MBB, add its offset to the offset map, and count up its
85 // instructions
86 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
87 ++MFI) {
88 MachineBasicBlock *MBB = MFI;
89 OffsetMap[MBB] = ByteCount;
90
91 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
92 MBBI != EE; ++MBBI)
93 ByteCount += getNumBytesForInstruction(MBBI);
94 }
95
96 // We're about to run over the MBB's again, so reset the ByteCount
97 ByteCount = 0;
98
99 // For each MBB, find the conditional branch pseudo instructions, and
100 // calculate the difference between the target MBB and the current ICount
101 // to decide whether or not to emit a short or long branch.
102 //
103 // short branch:
104 // bCC .L_TARGET_MBB
105 //
106 // long branch:
107 // bInverseCC $PC+8
108 // b .L_TARGET_MBB
Chris Lattner26e385a2006-02-08 19:33:26 +0000109 for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
110 ++MFI) {
111 MachineBasicBlock *MBB = MFI;
112
113 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
114 MBBI != EE; ++MBBI) {
115 // We may end up deleting the MachineInstr that MBBI points to, so
116 // remember its opcode now so we can refer to it after calling erase()
117 unsigned ByteSize = getNumBytesForInstruction(MBBI);
Chris Lattnera7152882006-11-16 23:49:52 +0000118 if (MBBI->getOpcode() != PPC::COND_BRANCH) {
119 ByteCount += ByteSize;
120 continue;
Chris Lattner26e385a2006-02-08 19:33:26 +0000121 }
Chris Lattnera7152882006-11-16 23:49:52 +0000122
123 // condbranch operands:
124 // 0. CR register
125 // 1. PPC branch opcode
126 // 2. Target MBB
127 MachineBasicBlock *DestMBB = MBBI->getOperand(2).getMachineBasicBlock();
128 unsigned Opcode = MBBI->getOperand(1).getImmedValue();
129 unsigned CRReg = MBBI->getOperand(0).getReg();
130
131 int Displacement = OffsetMap[DestMBB] - ByteCount;
132 unsigned Inverted = PPCInstrInfo::invertPPCBranchOpcode(Opcode);
133
134 MachineBasicBlock::iterator MBBJ;
135 if (Displacement >= -32768 && Displacement <= 32767) {
136 MBBJ = BuildMI(*MBB, MBBJ, Opcode, 2).addReg(CRReg).addMBB(DestMBB);
137 } else {
138 // Long branch, skip next branch instruction (i.e. $PC+8).
139 ++NumExpanded;
140 BuildMI(*MBB, MBBJ, Inverted, 2).addReg(CRReg).addImm(2);
141 MBBJ = BuildMI(*MBB, MBBJ, PPC::B, 1).addMBB(DestMBB);
142 }
143
144 // Erase the psuedo COND_BRANCH instruction, and then back up the
145 // iterator so that when the for loop increments it, we end up in
146 // the correct place rather than iterating off the end.
147 MBB->erase(MBBI);
148 MBBI = MBBJ;
Chris Lattner26e385a2006-02-08 19:33:26 +0000149 ByteCount += ByteSize;
150 }
151 }
152
153 OffsetMap.clear();
154 return true;
155}
156