]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[PATCH] arm: Add DFB instruction for ARMv8-R
authorAlex Coplan <alex.coplan@arm.com>
Mon, 8 Jun 2020 14:16:29 +0000 (15:16 +0100)
committerNick Clifton <nickc@redhat.com>
Mon, 8 Jun 2020 14:16:29 +0000 (15:16 +0100)
gas/ChangeLog:
2020-06-08  Alex Coplan  <alex.coplan@arm.com>

* config/tc-arm.c (insns): Add dfb.
* testsuite/gas/arm/dfb.d: New test.
* testsuite/gas/arm/dfb.s: Input for test.

opcodes/ChangeLog:
2020-06-08  Alex Coplan  <alex.coplan@arm.com>

* arm-dis.c (arm_opcodes): Add dfb.
(thumb32_opcodes): Add dfb.

gas/ChangeLog
gas/config/tc-arm.c
gas/testsuite/gas/arm/dfb.d [new file with mode: 0644]
gas/testsuite/gas/arm/dfb.s [new file with mode: 0644]
opcodes/ChangeLog
opcodes/arm-dis.c

index 3ad6f6e721a06c0b09b2fc4ad9d0f1c3dc0a4cc7..149d896f31bdaa120af87df4816e61fac1cac0f5 100644 (file)
@@ -1,3 +1,9 @@
+2020-06-08  Alex Coplan  <alex.coplan@arm.com>
+
+       * config/tc-arm.c (insns): Add dfb.
+       * testsuite/gas/arm/dfb.d: New test.
+       * testsuite/gas/arm/dfb.s: Input for test.
+
 2020-06-08  Nick Clifton  <nickc@redhat.com>
 
        * testsuite/gas/cfi/cfi-i386-2.d: Skip for PE based targets.
index a69300697f0f8b2de2d22011aee530163ab2e5bb..00fa2c76c8345ee43edb9fb8ed3d0882bf55999f 100644 (file)
@@ -24950,6 +24950,13 @@ static const struct asm_opcode insns[] =
                                                        ldrexd, t_ldrexd),
  TCE("stlexd", 1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
                                                        strexd, t_strexd),
+#undef THUMB_VARIANT
+#define THUMB_VARIANT & arm_ext_v8r
+#undef ARM_VARIANT
+#define ARM_VARIANT & arm_ext_v8r
+
+/* ARMv8-R instructions.  */
+ TUF("dfb",    57ff04c, f3bf8f4c, 0, (), noargs, noargs),
 
 /* Defined in V8 but is in undefined encoding space for earlier
    architectures.  However earlier architectures are required to treat
diff --git a/gas/testsuite/gas/arm/dfb.d b/gas/testsuite/gas/arm/dfb.d
new file mode 100644 (file)
index 0000000..3cc434c
--- /dev/null
@@ -0,0 +1,15 @@
+#objdump: -dr
+
+.*:     file format .*
+
+Disassembly of section .text:
+
+[0-9a-f]+ <f_a32>:
+.*:    f57ff04c        dfb
+
+[0-9a-f]+ <f_t32>:
+.*:    f3bf 8f4c       dfb
+.*:    bf18            it      ne
+.*:    f3bf 8f4c       dfbne
+.*:    bf08            it      eq
+.*:    f3bf 8f4c       dfbeq
diff --git a/gas/testsuite/gas/arm/dfb.s b/gas/testsuite/gas/arm/dfb.s
new file mode 100644 (file)
index 0000000..22e89b0
--- /dev/null
@@ -0,0 +1,14 @@
+// Test file for ARMv8-R dfb.
+.arch armv8-r
+.syntax unified
+
+f_a32:
+  dfb
+
+.thumb
+f_t32:
+  dfb
+  it ne
+  dfbne
+  it eq
+  dfbeq
index d405787a05934f6803058a1a1c43d175b146a1a1..e8714edb9336bd960711cc5657f9bd270a9f2dc1 100644 (file)
@@ -1,3 +1,8 @@
+2020-06-08  Alex Coplan  <alex.coplan@arm.com>
+
+       * arm-dis.c (arm_opcodes): Add dfb.
+       (thumb32_opcodes): Add dfb.
+
 2020-06-08  Jan Beulich  <jbeulich@suse.com>
 
        * i386-opc.h (reg_entry): Const-qualify reg_name field.
index 79a3dc656a92b7e8bfc258f64d621d34f60273f9..de62328ec9b43cad1c196c62a66e038d76fd272f 100644 (file)
@@ -3685,6 +3685,10 @@ static const struct opcode32 arm_opcodes[] =
   {ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS),
     0xe320f010, 0xffffffff, "esb"},
 
+  /* V8-R instructions.  */
+  {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8R),
+    0xf57ff04c, 0xffffffff, "dfb"},
+
   /* V8 instructions.  */
   {ARM_FEATURE_CORE_LOW (ARM_EXT_V8),
     0x0320f005, 0x0fffffff, "sevl"},
@@ -4735,6 +4739,10 @@ static const struct opcode32 thumb32_opcodes[] =
   {ARM_FEATURE_CORE_LOW (ARM_EXT_V8),
     0xe8d000ff, 0xfff000ff, "ldaexd%c\t%12-15r, %8-11r, [%16-19R]"},
 
+  /* V8-R instructions.  */
+  {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8R),
+    0xf3bf8f4c, 0xffffffff, "dfb%c"},
+
   /* CRC32 instructions.  */
   {ARM_FEATURE_CORE_HIGH (ARM_EXT2_CRC),
     0xfac0f080, 0xfff0f0f0, "crc32b\t%8-11R, %16-19R, %0-3R"},