58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
/* Capstone Disassembler Engine */
|
|
/* By Dang Hoang Vu <danghvu@gmail.com> 2013 */
|
|
|
|
#include "../../utils.h"
|
|
#include "../../MCRegisterInfo.h"
|
|
#include "MipsDisassembler.h"
|
|
#include "MipsInstPrinter.h"
|
|
#include "mapping.h"
|
|
|
|
|
|
static cs_err init(cs_struct *ud)
|
|
{
|
|
MCRegisterInfo *mri = my_malloc(sizeof(*mri));
|
|
|
|
Mips_init(mri);
|
|
ud->printer = Mips_printInst;
|
|
ud->printer_info = mri;
|
|
ud->getinsn_info = mri;
|
|
ud->reg_name = Mips_reg_name;
|
|
ud->insn_id = Mips_get_insn_id;
|
|
ud->insn_name = Mips_insn_name;
|
|
|
|
if (ud->mode & CS_MODE_32)
|
|
ud->disasm = Mips_getInstruction;
|
|
else
|
|
ud->disasm = Mips64_getInstruction;
|
|
|
|
return CS_ERR_OK;
|
|
}
|
|
|
|
static cs_err option(cs_struct *handle, cs_opt_type type, size_t value)
|
|
{
|
|
if (type == CS_OPT_MODE) {
|
|
if (value & CS_MODE_32)
|
|
handle->disasm = Mips_getInstruction;
|
|
else
|
|
handle->disasm = Mips64_getInstruction;
|
|
|
|
handle->mode = value;
|
|
}
|
|
return CS_ERR_OK;
|
|
}
|
|
|
|
static void destroy(cs_struct *handle)
|
|
{
|
|
Mips_free_cache();
|
|
}
|
|
|
|
static void __attribute__ ((constructor)) __init_mips__()
|
|
{
|
|
arch_init[CS_ARCH_MIPS] = init;
|
|
arch_option[CS_ARCH_MIPS] = option;
|
|
arch_destroy[CS_ARCH_MIPS] = destroy;
|
|
|
|
// support this arch
|
|
all_arch |= (1 << CS_ARCH_MIPS);
|
|
}
|