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.
67 lines
1.4 KiB
67 lines
1.4 KiB
/* Capstone Disassembler Engine */ |
|
/* By Dang Hoang Vu <danghvu@gmail.com> 2013 */ |
|
|
|
#include "../../cs_priv.h" |
|
#include "../../MCRegisterInfo.h" |
|
#include "X86Disassembler.h" |
|
#include "X86InstPrinter.h" |
|
#include "X86Mapping.h" |
|
|
|
void enable_x86() {}; |
|
|
|
static cs_err init(cs_struct *ud) |
|
{ |
|
// verify if requested mode is valid |
|
if (ud->mode & ~(CS_MODE_LITTLE_ENDIAN | CS_MODE_32 | CS_MODE_64 | CS_MODE_16)) |
|
return CS_ERR_MODE; |
|
|
|
// by default, we use Intel syntax |
|
ud->printer = X86_Intel_printInst; |
|
ud->printer_info = NULL; |
|
ud->disasm = X86_getInstruction; |
|
ud->reg_name = X86_reg_name; |
|
ud->insn_id = X86_get_insn_id; |
|
ud->insn_name = X86_insn_name; |
|
ud->post_printer = X86_post_printer; |
|
ud->check_combine = X86_insn_check_combine; |
|
ud->combine = X86_insn_combine; |
|
|
|
return CS_ERR_OK; |
|
} |
|
|
|
static cs_err option(cs_struct *handle, cs_opt_type type, size_t value) |
|
{ |
|
if (type == CS_OPT_SYNTAX) { |
|
switch(value) { |
|
default: |
|
// wrong syntax value |
|
handle->errnum = CS_ERR_OPTION; |
|
return CS_ERR_OPTION; |
|
|
|
case CS_OPT_SYNTAX_DEFAULT: |
|
case CS_OPT_SYNTAX_INTEL: |
|
handle->printer = X86_Intel_printInst; |
|
break; |
|
|
|
case CS_OPT_SYNTAX_ATT: |
|
handle->printer = X86_ATT_printInst; |
|
break; |
|
} |
|
} |
|
|
|
return CS_ERR_OK; |
|
} |
|
|
|
static void destroy(cs_struct *handle) |
|
{ |
|
} |
|
|
|
void X86_enable(void) |
|
{ |
|
arch_init[CS_ARCH_X86] = init; |
|
arch_option[CS_ARCH_X86] = option; |
|
arch_destroy[CS_ARCH_X86] = destroy; |
|
|
|
// support this arch |
|
all_arch |= (1 << CS_ARCH_X86); |
|
}
|
|
|