[aarch64] expose disas_aarch64_insn and rename it to aarch64_decode_insn
authorYao Qi <yao.qi@linaro.org>
Fri, 2 Oct 2015 10:36:00 +0000 (11:36 +0100)
committerYao Qi <yao.qi@linaro.org>
Fri, 2 Oct 2015 14:23:58 +0000 (15:23 +0100)
We want to use disas_aarch64_insn inside GDB to decode instructions, so
this patch exposes it and rename it to aarch64_decode_insn to follow
the conventions of other interfaces.

include/opcode:

2015-10-02  Yao Qi  <yao.qi@linaro.org>

* aarch64.h (aarch64_decode_insn): Declare it.

opcodes:

2015-10-02  Yao Qi  <yao.qi@linaro.org>

* aarch64-dis.c (disas_aarch64_insn): Remove static.  Change
argument insn type to aarch64_insn.  Rename to ...
(aarch64_decode_insn): ... it.
(print_insn_aarch64_word): Caller updated.

include/opcode/ChangeLog
include/opcode/aarch64.h
opcodes/ChangeLog
opcodes/aarch64-dis.c

index aa5ea1c195a11ec56b88d14584d2a574443f22c9..a93d964be3045e0296c8b65f7267e45535896fa9 100644 (file)
@@ -1,3 +1,7 @@
+2015-10-02  Yao Qi  <yao.qi@linaro.org>
+
+       * aarch64.h (aarch64_decode_insn): Declare it.
+
 2015-09-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
 
        * s390.h (S390_INSTR_FLAG_HTM): New flag.
index dcf0fefd19e5e4922c006d8b1355aba459ade98d..ac4da289f061afd29c1230608bce087bed81c504 100644 (file)
@@ -925,6 +925,9 @@ aarch64_stack_pointer_p (const aarch64_opnd_info *);
 extern
 int aarch64_zero_register_p (const aarch64_opnd_info *);
 
+extern int
+aarch64_decode_insn (aarch64_insn, aarch64_inst *);
+
 /* Given an operand qualifier, return the expected data element size
    of a qualified operand.  */
 extern unsigned char
index 051c42beaeadf5471afc14b6f28102923904a2fa..124ead7f0ad3e2d179be9e74d463b220d7f026a9 100644 (file)
@@ -1,3 +1,10 @@
+2015-10-02  Yao Qi  <yao.qi@linaro.org>
+
+       * aarch64-dis.c (disas_aarch64_insn): Remove static.  Change
+       argument insn type to aarch64_insn.  Rename to ...
+       (aarch64_decode_insn): ... it.
+       (print_insn_aarch64_word): Caller updated.
+
 2015-10-02  Yao Qi  <yao.qi@linaro.org>
 
        * aarch64-dis.c (disas_aarch64_insn): Remove argument PC.
index e0faeb5a2b802e92400d6ec42feb0cb360edd50a..fe3caacd54cfa2217f258625fd539cc387cefb2c 100644 (file)
@@ -2029,10 +2029,11 @@ user_friendly_fixup (aarch64_inst *inst)
     }
 }
 
-/* Decode INSN and fill in *INST the instruction information.  */
+/* Decode INSN and fill in *INST the instruction information.  Return zero
+   on success.  */
 
-static int
-disas_aarch64_insn (uint32_t insn, aarch64_inst *inst)
+int
+aarch64_decode_insn (aarch64_insn insn, aarch64_inst *inst)
 {
   const aarch64_opcode *opcode = aarch64_opcode_lookup (insn);
 
@@ -2171,7 +2172,7 @@ print_insn_aarch64_word (bfd_vma pc,
        addresses, since the addend is not currently pc-relative.  */
     pc = 0;
 
-  ret = disas_aarch64_insn (word, &inst);
+  ret = aarch64_decode_insn (word, &inst);
 
   if (((word >> 21) & 0x3ff) == 1)
     {