From 4bd13cde17a27c342b79b72bde9ef8e1b5373344 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 28 Apr 2016 09:11:03 +0100 Subject: Add support to AArch64 disassembler for verifying instructions. Add verifier for LDPSW. PR target/19722 opcodes * aarch64-dis.c (aarch64_opcode_decode): Run verifier if present. * aarch64-opc.c (verify_ldpsw): New function. * aarch64-opc.h (verify_ldpsw): New prototype. * aarch64-tbl.h: Add initialiser for verifier field. (LDPSW): Set verifier to verify_ldpsw. binutils* testsuite/binutils-all/aarch64/illegal.s: New test. * testsuite/binutils-all/aarch64/illegal.d: New test driver. include * opcode/aarch64.h (struct aarch64_opcode): Add verifier field. --- opcodes/aarch64-opc.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'opcodes/aarch64-opc.h') diff --git a/opcodes/aarch64-opc.h b/opcodes/aarch64-opc.h index 08494c6..c5bcbb8 100644 --- a/opcodes/aarch64-opc.h +++ b/opcodes/aarch64-opc.h @@ -390,4 +390,7 @@ get_logsz (unsigned int size) return ls[size - 1]; } +/* Instruction Verifiers. */ +extern bfd_boolean verify_ldpsw (const struct aarch64_opcode *, const aarch64_insn); + #endif /* OPCODES_AARCH64_OPC_H */ -- cgit v1.1