summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorKalle Raiskila <kalle.raiskila@nokia.com>2011-08-26 10:14:56 +0000
committerKalle Raiskila <kalle.raiskila@nokia.com>2011-08-26 10:14:56 +0000
commitdb6f646ec300fa631c62695a8d5e7acbbce38878 (patch)
treea66d9dc7340be9261043d804ba8144ec12b20455 /llvm/lib
parentcac93853ae5f5df43d1797e8ee41175bd2bfc867 (diff)
downloadbcm5719-llvm-db6f646ec300fa631c62695a8d5e7acbbce38878.tar.gz
bcm5719-llvm-db6f646ec300fa631c62695a8d5e7acbbce38878.zip
Don't insert branch hint lables that are never used.
llvm-svn: 138630
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/CellSPU/SPUFrameLowering.cpp12
-rw-r--r--llvm/lib/Target/CellSPU/SPUFrameLowering.h11
2 files changed, 0 insertions, 23 deletions
diff --git a/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp b/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp
index 8e3186b599b..093f99f2871 100644
--- a/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp
+++ b/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp
@@ -181,18 +181,6 @@ void SPUFrameLowering::emitPrologue(MachineFunction &MF) const {
MachineLocation FPSrc(MachineLocation::VirtualFP);
Moves.push_back(MachineMove(ReadyLabel, FPDst, FPSrc));
}
- } else {
- // This is a leaf function -- insert a branch hint iff there are
- // sufficient number instructions in the basic block. Note that
- // this is just a best guess based on the basic block's size.
- if (MBB.size() >= (unsigned) SPUFrameLowering::branchHintPenalty()) {
- MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
- dl = MBBI->getDebugLoc();
-
- // Insert terminator label
- BuildMI(MBB, MBBI, dl, TII.get(SPU::PROLOG_LABEL))
- .addSym(MMI.getContext().CreateTempSymbol());
- }
}
}
diff --git a/llvm/lib/Target/CellSPU/SPUFrameLowering.h b/llvm/lib/Target/CellSPU/SPUFrameLowering.h
index 16789ddfc5e..b837f2cf94e 100644
--- a/llvm/lib/Target/CellSPU/SPUFrameLowering.h
+++ b/llvm/lib/Target/CellSPU/SPUFrameLowering.h
@@ -74,17 +74,6 @@ namespace llvm {
static int FItoStackOffset(int frame_index) {
return frame_index * stackSlotSize();
}
- //! Number of instructions required to overcome hint-for-branch latency
- /*!
- HBR (hint-for-branch) instructions can be inserted when, for example,
- we know that a given function is going to be called, such as printf(),
- in the control flow graph. HBRs are only inserted if a sufficient number
- of instructions occurs between the HBR and the target. Currently, HBRs
- take 6 cycles, ergo, the magic number 6.
- */
- static int branchHintPenalty() {
- return 6;
- }
};
}
OpenPOWER on IntegriCloud