2005-10-16 07:39:50 +02:00
|
|
|
//===-- PPCBranchSelector.cpp - Emit long conditional branches-----*- C++ -*-=//
|
2005-04-22 01:30:14 +02:00
|
|
|
//
|
2004-07-27 20:33:06 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 01:30:14 +02:00
|
|
|
//
|
2004-07-27 20:33:06 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2005-04-22 01:30:14 +02:00
|
|
|
// This file contains a pass that scans a machine function to determine which
|
2004-07-27 20:33:06 +02:00
|
|
|
// conditional branches need more than 16 bits of displacement to reach their
|
|
|
|
// target basic block. It does this in two passes; a calculation of basic block
|
2010-08-23 22:30:51 +02:00
|
|
|
// positions pass, and a branch pseudo op to machine branch opcode pass. This
|
2004-07-27 20:33:06 +02:00
|
|
|
// pass should be run last, just before the assembly printer.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-12-19 23:59:26 +01:00
|
|
|
#define DEBUG_TYPE "ppc-branch-select"
|
2005-10-15 01:51:18 +02:00
|
|
|
#include "PPC.h"
|
2005-10-15 01:45:43 +02:00
|
|
|
#include "PPCInstrBuilder.h"
|
2005-10-15 01:59:06 +02:00
|
|
|
#include "PPCInstrInfo.h"
|
2006-11-17 23:10:59 +01:00
|
|
|
#include "PPCPredicates.h"
|
2004-07-27 20:33:06 +02:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2006-10-13 19:56:02 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2006-11-16 19:13:49 +01:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2006-11-18 01:32:03 +01:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2004-07-27 20:33:06 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2006-12-19 23:59:26 +01:00
|
|
|
STATISTIC(NumExpanded, "Number of branches expanded to long format");
|
2006-11-16 19:13:49 +01:00
|
|
|
|
2004-07-27 20:33:06 +02:00
|
|
|
namespace {
|
2009-10-25 07:33:48 +01:00
|
|
|
struct PPCBSel : public MachineFunctionPass {
|
2007-05-03 03:11:54 +02:00
|
|
|
static char ID;
|
2010-08-06 20:33:48 +02:00
|
|
|
PPCBSel() : MachineFunctionPass(ID) {}
|
2007-05-01 23:15:47 +02:00
|
|
|
|
2006-11-18 01:32:03 +01:00
|
|
|
/// BlockSizes - The sizes of the basic blocks in the function.
|
|
|
|
std::vector<unsigned> BlockSizes;
|
2004-07-27 20:33:06 +02:00
|
|
|
|
2006-02-08 20:33:26 +01:00
|
|
|
virtual bool runOnMachineFunction(MachineFunction &Fn);
|
2004-07-27 20:33:06 +02:00
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
2006-11-18 01:32:03 +01:00
|
|
|
return "PowerPC Branch Selector";
|
2004-07-27 20:33:06 +02:00
|
|
|
}
|
|
|
|
};
|
2007-05-03 03:11:54 +02:00
|
|
|
char PPCBSel::ID = 0;
|
2004-07-27 20:33:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// createPPCBranchSelectionPass - returns an instance of the Branch Selection
|
|
|
|
/// Pass
|
|
|
|
///
|
|
|
|
FunctionPass *llvm::createPPCBranchSelectionPass() {
|
2006-02-08 20:33:26 +01:00
|
|
|
return new PPCBSel();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) {
|
2010-07-23 15:28:47 +02:00
|
|
|
const PPCInstrInfo *TII =
|
|
|
|
static_cast<const PPCInstrInfo*>(Fn.getTarget().getInstrInfo());
|
2006-11-18 01:32:03 +01:00
|
|
|
// Give the blocks of the function a dense, in-order, numbering.
|
|
|
|
Fn.RenumberBlocks();
|
|
|
|
BlockSizes.resize(Fn.getNumBlockIDs());
|
|
|
|
|
|
|
|
// Measure each MBB and compute a size for the entire function.
|
|
|
|
unsigned FuncSize = 0;
|
2006-02-08 20:33:26 +01:00
|
|
|
for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
|
|
|
|
++MFI) {
|
|
|
|
MachineBasicBlock *MBB = MFI;
|
2006-11-18 01:32:03 +01:00
|
|
|
|
|
|
|
unsigned BlockSize = 0;
|
2006-02-08 20:33:26 +01:00
|
|
|
for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
|
|
|
|
MBBI != EE; ++MBBI)
|
2008-04-16 22:10:13 +02:00
|
|
|
BlockSize += TII->GetInstSizeInBytes(MBBI);
|
2006-11-18 01:32:03 +01:00
|
|
|
|
|
|
|
BlockSizes[MBB->getNumber()] = BlockSize;
|
|
|
|
FuncSize += BlockSize;
|
2006-02-08 20:33:26 +01:00
|
|
|
}
|
|
|
|
|
2006-11-18 01:32:03 +01:00
|
|
|
// If the entire function is smaller than the displacement of a branch field,
|
|
|
|
// we know we don't need to shrink any branches in this function. This is a
|
|
|
|
// common case.
|
|
|
|
if (FuncSize < (1 << 15)) {
|
|
|
|
BlockSizes.clear();
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-08 20:33:26 +01:00
|
|
|
|
2006-11-18 01:32:03 +01:00
|
|
|
// For each conditional branch, if the offset to its destination is larger
|
|
|
|
// than the offset field allows, transform it into a long branch sequence
|
|
|
|
// like this:
|
|
|
|
// short branch:
|
|
|
|
// bCC MBB
|
|
|
|
// long branch:
|
|
|
|
// b!CC $PC+8
|
|
|
|
// b MBB
|
2006-02-08 20:33:26 +01:00
|
|
|
//
|
2006-11-18 01:32:03 +01:00
|
|
|
bool MadeChange = true;
|
|
|
|
bool EverMadeChange = false;
|
|
|
|
while (MadeChange) {
|
|
|
|
// Iteratively expand branches until we reach a fixed point.
|
|
|
|
MadeChange = false;
|
|
|
|
|
|
|
|
for (MachineFunction::iterator MFI = Fn.begin(), E = Fn.end(); MFI != E;
|
|
|
|
++MFI) {
|
|
|
|
MachineBasicBlock &MBB = *MFI;
|
|
|
|
unsigned MBBStartOffset = 0;
|
|
|
|
for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
|
|
|
|
I != E; ++I) {
|
2008-10-03 17:45:36 +02:00
|
|
|
if (I->getOpcode() != PPC::BCC || I->getOperand(2).isImm()) {
|
2008-04-16 22:10:13 +02:00
|
|
|
MBBStartOffset += TII->GetInstSizeInBytes(I);
|
2006-11-18 01:32:03 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the offset from the current branch to the destination
|
|
|
|
// block.
|
2007-12-31 00:10:15 +01:00
|
|
|
MachineBasicBlock *Dest = I->getOperand(2).getMBB();
|
2006-11-18 01:32:03 +01:00
|
|
|
|
|
|
|
int BranchSize;
|
|
|
|
if (Dest->getNumber() <= MBB.getNumber()) {
|
|
|
|
// If this is a backwards branch, the delta is the offset from the
|
|
|
|
// start of this block to this branch, plus the sizes of all blocks
|
|
|
|
// from this block to the dest.
|
|
|
|
BranchSize = MBBStartOffset;
|
|
|
|
|
|
|
|
for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
|
|
|
|
BranchSize += BlockSizes[i];
|
|
|
|
} else {
|
|
|
|
// Otherwise, add the size of the blocks between this block and the
|
|
|
|
// dest to the number of bytes left in this block.
|
|
|
|
BranchSize = -MBBStartOffset;
|
|
|
|
|
|
|
|
for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
|
|
|
|
BranchSize += BlockSizes[i];
|
|
|
|
}
|
2006-11-17 23:10:59 +01:00
|
|
|
|
2006-11-18 01:32:03 +01:00
|
|
|
// If this branch is in range, ignore it.
|
2010-03-29 23:13:41 +02:00
|
|
|
if (isInt<16>(BranchSize)) {
|
2006-11-18 01:32:03 +01:00
|
|
|
MBBStartOffset += 4;
|
|
|
|
continue;
|
|
|
|
}
|
2006-11-17 23:10:59 +01:00
|
|
|
|
2006-11-18 01:32:03 +01:00
|
|
|
// Otherwise, we have to expand it to a long branch.
|
|
|
|
// The BCC operands are:
|
|
|
|
// 0. PPC branch predicate
|
|
|
|
// 1. CR register
|
|
|
|
// 2. Target MBB
|
|
|
|
PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm();
|
|
|
|
unsigned CRReg = I->getOperand(1).getReg();
|
|
|
|
|
|
|
|
MachineInstr *OldBranch = I;
|
2009-02-13 03:27:39 +01:00
|
|
|
DebugLoc dl = OldBranch->getDebugLoc();
|
2006-11-18 01:32:03 +01:00
|
|
|
|
|
|
|
// Jump over the uncond branch inst (i.e. $PC+8) on opposite condition.
|
2009-02-13 03:27:39 +01:00
|
|
|
BuildMI(MBB, I, dl, TII->get(PPC::BCC))
|
2006-11-18 01:32:03 +01:00
|
|
|
.addImm(PPC::InvertPredicate(Pred)).addReg(CRReg).addImm(2);
|
|
|
|
|
|
|
|
// Uncond branch to the real destination.
|
2009-02-13 03:27:39 +01:00
|
|
|
I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
|
2006-11-18 01:32:03 +01:00
|
|
|
|
|
|
|
// Remove the old branch from the function.
|
|
|
|
OldBranch->eraseFromParent();
|
|
|
|
|
|
|
|
// Remember that this instruction is 8-bytes, increase the size of the
|
|
|
|
// block by 4, remember to iterate.
|
|
|
|
BlockSizes[MBB.getNumber()] += 4;
|
|
|
|
MBBStartOffset += 8;
|
2006-11-17 00:49:52 +01:00
|
|
|
++NumExpanded;
|
2006-11-18 01:32:03 +01:00
|
|
|
MadeChange = true;
|
2006-11-17 00:49:52 +01:00
|
|
|
}
|
2006-02-08 20:33:26 +01:00
|
|
|
}
|
2006-11-18 01:32:03 +01:00
|
|
|
EverMadeChange |= MadeChange;
|
2006-02-08 20:33:26 +01:00
|
|
|
}
|
|
|
|
|
2006-11-18 01:32:03 +01:00
|
|
|
BlockSizes.clear();
|
2006-02-08 20:33:26 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|