60 lines
1.2 KiB
C
60 lines
1.2 KiB
C
/* Capstone Disassembly Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
|
|
|
|
#ifdef CAPSTONE_HAS_POWERPC
|
|
|
|
#include "../../utils.h"
|
|
#include "../../MCRegisterInfo.h"
|
|
#include "PPCDisassembler.h"
|
|
#include "PPCInstPrinter.h"
|
|
#include "PPCMapping.h"
|
|
|
|
static cs_err init(cs_struct *ud)
|
|
{
|
|
MCRegisterInfo *mri;
|
|
mri = (MCRegisterInfo *) cs_mem_malloc(sizeof(*mri));
|
|
|
|
PPC_init(mri);
|
|
ud->printer = PPC_printInst;
|
|
ud->printer_info = mri;
|
|
ud->getinsn_info = mri;
|
|
ud->disasm = PPC_getInstruction;
|
|
ud->post_printer = PPC_post_printer;
|
|
|
|
ud->reg_name = PPC_reg_name;
|
|
ud->insn_id = PPC_get_insn_id;
|
|
ud->insn_name = PPC_insn_name;
|
|
ud->group_name = PPC_group_name;
|
|
|
|
return CS_ERR_OK;
|
|
}
|
|
|
|
static cs_err option(cs_struct *handle, cs_opt_type type, size_t value)
|
|
{
|
|
if (type == CS_OPT_SYNTAX)
|
|
handle->syntax = (int) value;
|
|
|
|
if (type == CS_OPT_MODE) {
|
|
handle->mode = (cs_mode)value;
|
|
}
|
|
|
|
return CS_ERR_OK;
|
|
}
|
|
|
|
static void destroy(cs_struct *handle)
|
|
{
|
|
}
|
|
|
|
void PPC_enable(void)
|
|
{
|
|
arch_init[CS_ARCH_PPC] = init;
|
|
arch_option[CS_ARCH_PPC] = option;
|
|
arch_destroy[CS_ARCH_PPC] = destroy;
|
|
arch_disallowed_mode_mask[CS_ARCH_PPC] = ~(CS_MODE_LITTLE_ENDIAN |
|
|
CS_MODE_32 | CS_MODE_64 | CS_MODE_BIG_ENDIAN);
|
|
|
|
// support this arch
|
|
all_arch |= (1 << CS_ARCH_PPC);
|
|
}
|
|
|
|
#endif
|