Capstone disassembly/disassembler framework: Core (Arm, Arm64, BPF, EVM, M68K, M680X, MOS65xx, Mips, PPC, RISCV, Sparc, SystemZ, TMS320C64x, Web Assembly, X86, X86_64, XCore) + bindings.
(bloaty 依赖)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/* Capstone Disassembly Engine */
|
|
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
|
|
|
|
|
|
|
|
#ifdef CAPSTONE_HAS_XCORE
|
|
|
|
|
|
|
|
#include "../../utils.h"
|
|
|
|
#include "../../MCRegisterInfo.h"
|
|
|
|
#include "XCoreDisassembler.h"
|
|
|
|
#include "XCoreInstPrinter.h"
|
|
|
|
#include "XCoreMapping.h"
|
|
|
|
|
|
|
|
static cs_err init(cs_struct *ud)
|
|
|
|
{
|
|
|
|
MCRegisterInfo *mri;
|
|
|
|
|
|
|
|
mri = cs_mem_malloc(sizeof(*mri));
|
|
|
|
|
|
|
|
XCore_init(mri);
|
|
|
|
ud->printer = XCore_printInst;
|
|
|
|
ud->printer_info = mri;
|
|
|
|
ud->getinsn_info = mri;
|
|
|
|
ud->disasm = XCore_getInstruction;
|
|
|
|
ud->post_printer = XCore_post_printer;
|
|
|
|
|
|
|
|
ud->reg_name = XCore_reg_name;
|
|
|
|
ud->insn_id = XCore_get_insn_id;
|
|
|
|
ud->insn_name = XCore_insn_name;
|
|
|
|
ud->group_name = XCore_group_name;
|
|
|
|
|
|
|
|
return CS_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static cs_err option(cs_struct *handle, cs_opt_type type, size_t value)
|
|
|
|
{
|
|
|
|
return CS_ERR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void destroy(cs_struct *handle)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void XCore_enable(void)
|
|
|
|
{
|
|
|
|
arch_init[CS_ARCH_XCORE] = init;
|
|
|
|
arch_option[CS_ARCH_XCORE] = option;
|
|
|
|
arch_destroy[CS_ARCH_XCORE] = destroy;
|
|
|
|
|
|
|
|
// support this arch
|
|
|
|
all_arch |= (1 << CS_ARCH_XCORE);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|