summaryrefslogtreecommitdiffstats
path: root/lib/Target/CellSPU/SPUOperands.td
diff options
context:
space:
mode:
authorScott Michel <scottm@aero.org>2008-12-10 00:15:19 +0000
committerScott Michel <scottm@aero.org>2008-12-10 00:15:19 +0000
commitaedc637c966b6eaa3ca33e9220efe5ec34517de7 (patch)
tree1345ee8a3819d9eefb4ee01c61d54c7d47995b7d /lib/Target/CellSPU/SPUOperands.td
parent30a64a76492b6a92ccf6d6a6ac907ff8b2b18305 (diff)
downloadexternal_llvm-aedc637c966b6eaa3ca33e9220efe5ec34517de7.zip
external_llvm-aedc637c966b6eaa3ca33e9220efe5ec34517de7.tar.gz
external_llvm-aedc637c966b6eaa3ca33e9220efe5ec34517de7.tar.bz2
CellSPU:
- Fix bug 3185, with misc other cleanups. - Needed to implement SPUInstrInfo::InsertBranch(). CAUTION: Not sure what gets or needs to get passed to InsertBranch() to insert a conditional branch. This will abort for now until a good test case shows up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CellSPU/SPUOperands.td')
-rw-r--r--lib/Target/CellSPU/SPUOperands.td7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Target/CellSPU/SPUOperands.td b/lib/Target/CellSPU/SPUOperands.td
index 4398227..d788f83 100644
--- a/lib/Target/CellSPU/SPUOperands.td
+++ b/lib/Target/CellSPU/SPUOperands.td
@@ -575,7 +575,7 @@ def calltarget : Operand<iPTR> {
let MIOperandInfo = (ops u18imm:$calldest);
}
-// Relative call target
+// PC relative call target
def relcalltarget : Operand<iPTR> {
let PrintMethod = "printPCRelativeOperand";
let MIOperandInfo = (ops s16imm:$calldest);
@@ -586,6 +586,11 @@ def brtarget : Operand<OtherVT> {
let PrintMethod = "printPCRelativeOperand";
}
+// Hint for branch target
+def hbrtarget : Operand<OtherVT> {
+ let PrintMethod = "printHBROperand";
+}
+
// Indirect call target
def indcalltarget : Operand<iPTR> {
let PrintMethod = "printCallOperand";