summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2011-09-29 20:37:56 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2011-09-29 20:37:56 +0000
commitc0be26909fa47f3200601c384156f43301f0c5c2 (patch)
tree898715232f95a253a18e04d6748e0a084e42a50f
parentbb5a7442e362776621112dc9453e546a55878e79 (diff)
downloadllvm-c0be26909fa47f3200601c384156f43301f0c5c2.tar.gz
llvm-c0be26909fa47f3200601c384156f43301f0c5c2.tar.bz2
llvm-c0be26909fa47f3200601c384156f43301f0c5c2.tar.xz
Mips64 arithmetic and logical instructions with two source registers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140806 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/Mips/Mips64InstrInfo.td30
-rw-r--r--test/CodeGen/Mips/mips64instrs.ll36
2 files changed, 66 insertions, 0 deletions
diff --git a/lib/Target/Mips/Mips64InstrInfo.td b/lib/Target/Mips/Mips64InstrInfo.td
index dbf3821ed2..764669e1aa 100644
--- a/lib/Target/Mips/Mips64InstrInfo.td
+++ b/lib/Target/Mips/Mips64InstrInfo.td
@@ -17,3 +17,33 @@
def HasMips64 : Predicate<"Subtarget.hasMips64()">;
def HasMips64r2 : Predicate<"Subtarget.hasMips64r2()">;
+//===----------------------------------------------------------------------===//
+// Instructions specific format
+//===----------------------------------------------------------------------===//
+
+// Arithmetic 3 register operands
+class ArithR64<bits<6> op, bits<6> func, string instr_asm, SDNode OpNode,
+ InstrItinClass itin, bit isComm = 0>:
+ FR<op, func, (outs CPU64Regs:$dst), (ins CPU64Regs:$b, CPU64Regs:$c),
+ !strconcat(instr_asm, "\t$dst, $b, $c"),
+ [(set CPU64Regs:$dst, (OpNode CPU64Regs:$b, CPU64Regs:$c))], itin> {
+ let isCommutable = isComm;
+}
+
+// Logical
+let isCommutable = 1 in
+class LogicR64<bits<6> func, string instr_asm, SDNode OpNode>:
+ FR<0x00, func, (outs CPU64Regs:$dst), (ins CPU64Regs:$b, CPU64Regs:$c),
+ !strconcat(instr_asm, "\t$dst, $b, $c"),
+ [(set CPU64Regs:$dst, (OpNode CPU64Regs:$b, CPU64Regs:$c))], IIAlu>;
+
+//===----------------------------------------------------------------------===//
+// Instruction definition
+//===----------------------------------------------------------------------===//
+
+/// Arithmetic Instructions (3-Operand, R-Type)
+def DADDu : ArithR64<0x00, 0x2d, "daddu", add, IIAlu, 1>;
+def DSUBu : ArithR64<0x00, 0x2f, "dsubu", sub, IIAlu, 1>;
+def DAND : LogicR64<0x24, "and", and>;
+def DOR : LogicR64<0x25, "or", or>;
+def DXOR : LogicR64<0x26, "xor", xor>;
diff --git a/test/CodeGen/Mips/mips64instrs.ll b/test/CodeGen/Mips/mips64instrs.ll
new file mode 100644
index 0000000000..1adf1379f6
--- /dev/null
+++ b/test/CodeGen/Mips/mips64instrs.ll
@@ -0,0 +1,36 @@
+; RUN: llc -march=mips64el -mcpu=mips64r1 < %s | FileCheck %s
+
+define i64 @f0(i64 %a0, i64 %a1) nounwind readnone {
+entry:
+; CHECK: daddu
+ %add = add nsw i64 %a1, %a0
+ ret i64 %add
+}
+
+define i64 @f1(i64 %a0, i64 %a1) nounwind readnone {
+entry:
+; CHECK: dsubu
+ %sub = sub nsw i64 %a0, %a1
+ ret i64 %sub
+}
+
+define i64 @f4(i64 %a0, i64 %a1) nounwind readnone {
+entry:
+; CHECK: and
+ %and = and i64 %a1, %a0
+ ret i64 %and
+}
+
+define i64 @f5(i64 %a0, i64 %a1) nounwind readnone {
+entry:
+; CHECK: or
+ %or = or i64 %a1, %a0
+ ret i64 %or
+}
+
+define i64 @f6(i64 %a0, i64 %a1) nounwind readnone {
+entry:
+; CHECK: xor
+ %xor = xor i64 %a1, %a0
+ ret i64 %xor
+}