From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PATCH v2 7/8] ppc: Support Capstone in disas_set_info
Date: Tue, 19 Sep 2017 10:03:12 -0500 [thread overview]
Message-ID: <20170919150313.10833-8-richard.henderson@linaro.org> (raw)
In-Reply-To: <20170919150313.10833-1-richard.henderson@linaro.org>
Cc: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
disas.c | 4 ++++
target/ppc/translate_init.c | 6 ++++++
2 files changed, 10 insertions(+)
diff --git a/disas.c b/disas.c
index ea295f9cfc..b4e4fc409e 100644
--- a/disas.c
+++ b/disas.c
@@ -449,6 +449,10 @@ void disas(FILE *out, void *code, unsigned long size)
#elif defined(_ARCH_PPC)
s.info.disassembler_options = (char *)"any";
print_insn = print_insn_ppc;
+ s.info.cap_arch = CS_ARCH_PPC;
+# ifdef _ARCH_PPC64
+ s.info.cap_mode = CS_MODE_64;
+# endif
#elif defined(__aarch64__) && defined(CONFIG_ARM_A64_DIS)
print_insn = print_insn_arm_a64;
s.info.cap_arch = CS_ARCH_ARM64;
diff --git a/target/ppc/translate_init.c b/target/ppc/translate_init.c
index c7b4a7c02a..b976784d21 100644
--- a/target/ppc/translate_init.c
+++ b/target/ppc/translate_init.c
@@ -35,6 +35,7 @@
#include "mmu-book3s-v3.h"
#include "sysemu/qtest.h"
#include "qemu/cutils.h"
+#include "disas/capstone.h"
//#define PPC_DUMP_CPU
//#define PPC_DEBUG_SPR
@@ -10662,6 +10663,11 @@ static void ppc_disas_set_info(CPUState *cs, disassemble_info *info)
}
info->disassembler_options = (char *)"any";
info->print_insn = print_insn_ppc;
+
+ info->cap_arch = CS_ARCH_PPC;
+#ifdef TARGET_PPC64
+ info->cap_mode = CS_MODE_64;
+#endif
}
static Property ppc_cpu_properties[] = {
--
2.13.5
next prev parent reply other threads:[~2017-09-19 15:03 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-19 15:03 [Qemu-devel] [PATCH v2 0/8] Support the Capstone disassembler Richard Henderson
2017-09-19 15:03 ` [Qemu-devel] [PATCH v2 1/8] target/i386: Convert to disas_set_info hook Richard Henderson
2017-09-19 15:03 ` [Qemu-devel] [PATCH v2 2/8] target/ppc: " Richard Henderson
2017-09-19 15:03 ` [Qemu-devel] [PATCH v2 3/8] disas: Remove unused flags arguments Richard Henderson
2017-09-19 15:03 ` [Qemu-devel] [PATCH v2 4/8] disas: Support the Capstone disassembler library Richard Henderson
2017-09-20 11:17 ` Alex Bennée
2017-09-20 13:04 ` Richard Henderson
2017-09-20 21:06 ` Richard Henderson
2017-09-26 18:20 ` Richard Henderson
2017-09-19 15:03 ` [Qemu-devel] [PATCH v2 5/8] i386: Support Capstone in disas_set_info Richard Henderson
2017-09-21 14:49 ` Alex Bennée
2017-09-19 15:03 ` [Qemu-devel] [PATCH v2 6/8] arm: " Richard Henderson
2017-09-26 0:08 ` Alex Bennée
2017-09-19 15:03 ` Richard Henderson [this message]
2017-09-19 15:03 ` [Qemu-devel] [PATCH v2 8/8] disas: Remove monitor_disas_is_physical Richard Henderson
2017-09-26 13:45 ` Alex Bennée
2017-09-19 16:06 ` [Qemu-devel] [PATCH v2 0/8] Support the Capstone disassembler no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170919150313.10833-8-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=david@gibson.dropbear.id.au \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).