1 /* Capstone Disassembly Engine */ 2 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */ 3 4 #ifdef CAPSTONE_HAS_XCORE 5 6 #include "../../utils.h" 7 #include "../../MCRegisterInfo.h" 8 #include "XCoreDisassembler.h" 9 #include "XCoreInstPrinter.h" 10 #include "XCoreMapping.h" 11 init(cs_struct * ud)12static cs_err init(cs_struct *ud) 13 { 14 MCRegisterInfo *mri; 15 16 mri = cs_mem_malloc(sizeof(*mri)); 17 18 XCore_init(mri); 19 ud->printer = XCore_printInst; 20 ud->printer_info = mri; 21 ud->getinsn_info = mri; 22 ud->disasm = XCore_getInstruction; 23 ud->post_printer = XCore_post_printer; 24 25 ud->reg_name = XCore_reg_name; 26 ud->insn_id = XCore_get_insn_id; 27 ud->insn_name = XCore_insn_name; 28 ud->group_name = XCore_group_name; 29 30 return CS_ERR_OK; 31 } 32 option(cs_struct * handle,cs_opt_type type,size_t value)33static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) 34 { 35 return CS_ERR_OK; 36 } 37 destroy(cs_struct * handle)38static void destroy(cs_struct *handle) 39 { 40 } 41 XCore_enable(void)42void XCore_enable(void) 43 { 44 arch_init[CS_ARCH_XCORE] = init; 45 arch_option[CS_ARCH_XCORE] = option; 46 arch_destroy[CS_ARCH_XCORE] = destroy; 47 48 // support this arch 49 all_arch |= (1 << CS_ARCH_XCORE); 50 } 51 52 #endif 53