aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2012-09-28 03:53:39 +0000
committerAnthony Green <green@redhat.com>2012-09-28 03:53:39 +0000
commit1415a2a767bf5ed24c4b4f3b1fc1c45c9a876614 (patch)
tree378084bfb2a2ae4951826a92aa09ba81e00e6358 /include
parent4c2786ba1e67cbfddf0175d7831321ddae2d73a9 (diff)
downloadfsf-binutils-gdb-1415a2a767bf5ed24c4b4f3b1fc1c45c9a876614.zip
fsf-binutils-gdb-1415a2a767bf5ed24c4b4f3b1fc1c45c9a876614.tar.gz
fsf-binutils-gdb-1415a2a767bf5ed24c4b4f3b1fc1c45c9a876614.tar.bz2
Don't abort() when disassembling bad moxie instructions.
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/opcode/moxie.h4
2 files changed, 7 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index c0b69ad..4a535eb 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-27 Anthony Green <green@moxielogic.com>
+
+ * opcode/moxie.h (MOXIE_BAD): New define.
+
2012-09-12 Chris Schlumberger-Socha <chris.schlumberger-socha@arm.com>
* elf/aarch64.h (R_AARCH64_GOT_LD_PREL19): New reloc.
diff --git a/include/opcode/moxie.h b/include/opcode/moxie.h
index e2bc374..dae40c8 100644
--- a/include/opcode/moxie.h
+++ b/include/opcode/moxie.h
@@ -60,6 +60,8 @@
#define MOXIE_F3_NARG 0x300
#define MOXIE_F3_PCREL 0x301
+#define MOXIE_BAD 0x400
+
typedef struct moxie_opc_info_t
{
short opcode;
@@ -67,6 +69,6 @@ typedef struct moxie_opc_info_t
const char * name;
} moxie_opc_info_t;
-extern const moxie_opc_info_t moxie_form1_opc_info[64];
+extern const moxie_opc_info_t moxie_form1_opc_info[128];
extern const moxie_opc_info_t moxie_form2_opc_info[4];
extern const moxie_opc_info_t moxie_form3_opc_info[16];