summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/Mips64InstrInfo.td
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2011-09-30 02:08:54 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2011-09-30 02:08:54 +0000
commitf549ab78533cfb7a22a88216f20d69edfcee3cc9 (patch)
treeaac6a709d30d9596b01a8490c495f540bceed15d /lib/Target/Mips/Mips64InstrInfo.td
parent4ebbf7b8a8e80532bd2ddf7209e62689c1698a96 (diff)
downloadllvm-f549ab78533cfb7a22a88216f20d69edfcee3cc9.tar.gz
llvm-f549ab78533cfb7a22a88216f20d69edfcee3cc9.tar.bz2
llvm-f549ab78533cfb7a22a88216f20d69edfcee3cc9.tar.xz
Mips64 arithmetic and logical instructions with one source register and
immediate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/Mips64InstrInfo.td')
-rw-r--r--lib/Target/Mips/Mips64InstrInfo.td30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/Target/Mips/Mips64InstrInfo.td b/lib/Target/Mips/Mips64InstrInfo.td
index 764669e1aa..a42b404d13 100644
--- a/lib/Target/Mips/Mips64InstrInfo.td
+++ b/lib/Target/Mips/Mips64InstrInfo.td
@@ -18,6 +18,18 @@ def HasMips64 : Predicate<"Subtarget.hasMips64()">;
def HasMips64r2 : Predicate<"Subtarget.hasMips64r2()">;
//===----------------------------------------------------------------------===//
+// Mips Operand, Complex Patterns and Transformations Definitions.
+//===----------------------------------------------------------------------===//
+
+// Instruction operand types
+def simm16_64 : Operand<i64>;
+
+// Unsigned Operand
+def uimm16_64 : Operand<i64> {
+ let PrintMethod = "printUnsignedImm";
+}
+
+//===----------------------------------------------------------------------===//
// Instructions specific format
//===----------------------------------------------------------------------===//
@@ -30,6 +42,13 @@ class ArithR64<bits<6> op, bits<6> func, string instr_asm, SDNode OpNode,
let isCommutable = isComm;
}
+// Arithmetic 2 register operands
+class ArithI64<bits<6> op, string instr_asm, SDNode OpNode,
+ Operand Od, PatLeaf imm_type> :
+ FI<op, (outs CPU64Regs:$dst), (ins CPU64Regs:$b, Od:$c),
+ !strconcat(instr_asm, "\t$dst, $b, $c"),
+ [(set CPU64Regs:$dst, (OpNode CPU64Regs:$b, imm_type:$c))], IIAlu>;
+
// Logical
let isCommutable = 1 in
class LogicR64<bits<6> func, string instr_asm, SDNode OpNode>:
@@ -37,10 +56,21 @@ class LogicR64<bits<6> func, string instr_asm, SDNode OpNode>:
!strconcat(instr_asm, "\t$dst, $b, $c"),
[(set CPU64Regs:$dst, (OpNode CPU64Regs:$b, CPU64Regs:$c))], IIAlu>;
+class LogicI64<bits<6> op, string instr_asm, SDNode OpNode>:
+ FI<op, (outs CPU64Regs:$dst), (ins CPU64Regs:$b, uimm16_64:$c),
+ !strconcat(instr_asm, "\t$dst, $b, $c"),
+ [(set CPU64Regs:$dst, (OpNode CPU64Regs:$b, immZExt16:$c))], IIAlu>;
+
//===----------------------------------------------------------------------===//
// Instruction definition
//===----------------------------------------------------------------------===//
+/// Arithmetic Instructions (ALU Immediate)
+def DADDiu : ArithI64<0x19, "daddiu", add, simm16_64, immSExt16>;
+def DANDi : LogicI64<0x0c, "andi", and>;
+def DORi : LogicI64<0x0d, "ori", or>;
+def DXORi : LogicI64<0x0e, "xori", xor>;
+
/// Arithmetic Instructions (3-Operand, R-Type)
def DADDu : ArithR64<0x00, 0x2d, "daddu", add, IIAlu, 1>;
def DSUBu : ArithR64<0x00, 0x2f, "dsubu", sub, IIAlu, 1>;