diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-05-22 10:27:14 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-10-28 15:12:38 +0000 |
commit | cbafa2362ab8d96af39d6b01a79ea4ed16d47dda (patch) | |
tree | 57c3f69e05f35e4fd9c0f5aa11a5ad7a3685de1d /include | |
parent | 5901b2e15b673720b050fc88e7912e33f0e53604 (diff) | |
download | qemu-cbafa2362ab8d96af39d6b01a79ea4ed16d47dda.zip qemu-cbafa2362ab8d96af39d6b01a79ea4ed16d47dda.tar.gz qemu-cbafa2362ab8d96af39d6b01a79ea4ed16d47dda.tar.bz2 |
plugin: add qemu_plugin_insn_disas helper
Give the plugins access to the QEMU dissasembler so they don't have to
re-invent the wheel. We generate a warning when there are spare bytes
in the decode buffer. This is usually due to the front end loading in
more bytes than decoded.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/disas/disas.h | 2 | ||||
-rw-r--r-- | include/qemu/qemu-plugin.h | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/disas/disas.h b/include/disas/disas.h index ba47e91..36c33f6 100644 --- a/include/disas/disas.h +++ b/include/disas/disas.h @@ -14,6 +14,8 @@ void target_disas(FILE *out, CPUState *cpu, target_ulong code, void monitor_disas(Monitor *mon, CPUState *cpu, target_ulong pc, int nb_insn, int is_physical); +char *plugin_disas(CPUState *cpu, uint64_t addr, size_t size); + /* Look up symbol for debugging purpose. Returns "" if unknown. */ const char *lookup_symbol(target_ulong orig_addr); #endif diff --git a/include/qemu/qemu-plugin.h b/include/qemu/qemu-plugin.h index 784f1df..ddf267f 100644 --- a/include/qemu/qemu-plugin.h +++ b/include/qemu/qemu-plugin.h @@ -352,6 +352,15 @@ qemu_plugin_register_vcpu_syscall_ret_cb(qemu_plugin_id_t id, /** + * qemu_plugin_insn_disas() - return disassembly string for instruction + * @insn: instruction reference + * + * Returns an allocated string containing the disassembly + */ + +char *qemu_plugin_insn_disas(const struct qemu_plugin_insn *insn); + +/** * qemu_plugin_vcpu_for_each() - iterate over the existing vCPU * @id: plugin ID * @cb: callback function |