[llvm] 51d8e67 - [ARC] Add tablegen definition for the Find Leading Set (FLS) instruction
Mark Schimmel via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 22 17:45:11 PDT 2021
Author: Thomas Johnson
Date: 2021-07-22T17:42:25-07:00
New Revision: 51d8e67e88d1b673c20a61ef4fac201bc15ae664
URL: https://github.com/llvm/llvm-project/commit/51d8e67e88d1b673c20a61ef4fac201bc15ae664
DIFF: https://github.com/llvm/llvm-project/commit/51d8e67e88d1b673c20a61ef4fac201bc15ae664.diff
LOG: [ARC] Add tablegen definition for the Find Leading Set (FLS) instruction
Differential Revision: https://reviews.llvm.org/D106602
Added:
Modified:
llvm/lib/Target/ARC/ARCInstrInfo.td
llvm/test/MC/Disassembler/ARC/misc.txt
Removed:
################################################################################
diff --git a/llvm/lib/Target/ARC/ARCInstrInfo.td b/llvm/lib/Target/ARC/ARCInstrInfo.td
index 0813f5377a48..ea3e41621323 100644
--- a/llvm/lib/Target/ARC/ARCInstrInfo.td
+++ b/llvm/lib/Target/ARC/ARCInstrInfo.td
@@ -241,6 +241,8 @@ multiclass ArcBinaryEXT5Inst<bits<6> mincode, string opasm> :
multiclass ArcUnaryGEN4Inst<bits<6> mincode, string opasm> :
ArcUnaryInst<0b00100, mincode, opasm>;
+multiclass ArcUnaryEXT5Inst<bits<6> mincode, string opasm> :
+ ArcUnaryInst<0b00101, mincode, opasm>;
// Pattern generation for
diff erent instruction variants.
multiclass MultiPat<SDPatternOperator InFrag,
@@ -298,6 +300,9 @@ defm : MultiPat<mulhu, MPYMU_rrr, MPYMU_rru6, MPYMU_rrlimm>;
defm SEXB : ArcUnaryGEN4Inst<0b000101, "sexb">;
defm SEXH : ArcUnaryGEN4Inst<0b000110, "sexh">;
+// Extension unary instruction definitions.
+defm FLS : ArcUnaryEXT5Inst<0b010011, "fls">;
+
// General Unary Instruction fragments.
def : Pat<(sext_inreg i32:$a, i8), (SEXB_rr i32:$a)>;
def : Pat<(sext_inreg i32:$a, i16), (SEXH_rr i32:$a)>;
diff --git a/llvm/test/MC/Disassembler/ARC/misc.txt b/llvm/test/MC/Disassembler/ARC/misc.txt
index 16e5f090baca..f314b2a402cf 100644
--- a/llvm/test/MC/Disassembler/ARC/misc.txt
+++ b/llvm/test/MC/Disassembler/ARC/misc.txt
@@ -60,3 +60,9 @@
# CHECK: seteq %fp, %fp, -1
0xb8 0x23 0xff 0x3f
+
+# CHECK: fls %r0, %r0
+0x2f 0x28 0x13 0x00
+
+# CHECK: fls.f %r0, %r0
+0x2f 0x28 0x13 0x80
More information about the llvm-commits
mailing list