mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-13 09:11:49 +00:00
7ce3232747
* Split some install targets * Fix segfault in r_anal when not setting any handler * Rename R_ASM_SYN -> R_ASM_SYNTAX cprefix - R_ASM_*_NULL -> R_ASM_*_NONE * Added nonworking scr.html eval key in r_core/config * Add install-ruby target for swig bindings * Use @VERSION@ in libr.pc.acr * Lot of fixes for valaswig integration
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
/* radare - GPL3 - Copyright 2009 nibble<.ds@gmail.com> */
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <r_types.h>
|
|
#include <r_lib.h>
|
|
#include <r_util.h>
|
|
#include <r_asm.h>
|
|
|
|
#include "x86/bea/BeaEngine.h"
|
|
#include "fastcall_x86.h"
|
|
|
|
static int disassemble(struct r_asm_t *a, struct r_asm_aop_t *aop, ut8 *buf, ut64 len)
|
|
{
|
|
static DISASM disasm_obj;
|
|
|
|
memset(&disasm_obj, '\0', sizeof(DISASM));
|
|
disasm_obj.EIP = (long long)buf;
|
|
disasm_obj.VirtualAddr = a->pc;
|
|
disasm_obj.Archi = ((a->bits == 64) ? 64 : 0);
|
|
disasm_obj.SecurityBlock = len;
|
|
if (a->syntax == R_ASM_SYNTAX_ATT)
|
|
disasm_obj.Options = 0x400;
|
|
else disasm_obj.Options = 0;
|
|
|
|
aop->inst_len = Disasm(&disasm_obj);
|
|
|
|
snprintf(aop->buf_asm, R_ASM_BUFSIZE, disasm_obj.CompleteInstr);
|
|
|
|
return aop->inst_len;
|
|
}
|
|
|
|
struct r_asm_handle_t r_asm_plugin_x86_bea = {
|
|
.name = "x86.bea",
|
|
.desc = "X86 disassembly plugin (bea engine)",
|
|
.arch = "x86",
|
|
.bits = (int[]){ 32, 64, 0 }, /* also 16 ? */
|
|
.init = NULL,
|
|
.fini = NULL,
|
|
.disassemble = &disassemble,
|
|
.assemble = NULL,
|
|
.fastcall = fastcall,
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_x86_bea
|
|
};
|
|
#endif
|