- Added arm plugin - Added bf plugin - Added csr plugin - Added m68k plugin - Added mips plugin - Added ppc plugin - Added sparc plugin - Removed deprecated test programs - Updated rasm2 (not working) * r_parse - Initial import --HG-- rename : libr/asm/arch/arm/asm.c => libr/asm/p/asm_arm.c rename : libr/asm/arch/bf/asm.c => libr/asm/p/asm_bf.c rename : libr/asm/arch/csr/asm.c => libr/asm/p/asm_csr.c rename : libr/asm/arch/m68k/asm.c => libr/asm/p/asm_m68k.c rename : libr/asm/arch/mips/asm.c => libr/asm/p/asm_mips.c rename : libr/asm/arch/ppc/asm.c => libr/asm/p/asm_ppc.c rename : libr/asm/arch/sparc/asm.c => libr/asm/p/asm_sparc.c rename : libr/asm/arch/x86/pseudo.c => libr/parse/pseudo.c
109 lines
2.7 KiB
C
109 lines
2.7 KiB
C
/* radare - LGPL - Copyright 2009 nibble<.ds@gmail.com> */
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
|
|
#include <r_types.h>
|
|
#include <r_lib.h>
|
|
#include <r_util.h>
|
|
#include <r_asm.h>
|
|
|
|
#include "dis-asm.h"
|
|
#include "opcode/mips.h"
|
|
|
|
|
|
static int mips_mode = 0;
|
|
static unsigned long Offset = 0;
|
|
static char *buf_global = NULL;
|
|
static unsigned char bytes[4];
|
|
|
|
static int mips_buffer_read_memory (bfd_vma memaddr, bfd_byte *myaddr, unsigned int length, struct disassemble_info *info)
|
|
{
|
|
memcpy (myaddr, bytes, length);
|
|
return 0;
|
|
}
|
|
|
|
static int symbol_at_address(bfd_vma addr, struct disassemble_info * info)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static void memory_error_func(int status, bfd_vma memaddr, struct disassemble_info *info)
|
|
{
|
|
//--
|
|
}
|
|
|
|
static void print_address(bfd_vma address, struct disassemble_info *info)
|
|
{
|
|
char tmp[32];
|
|
if (buf_global == NULL)
|
|
return;
|
|
sprintf(tmp, "0x%08llx", (u64)address-8); /* WTF ?!?! why gnu disasm doesnt do this well? */
|
|
strcat(buf_global, tmp);
|
|
}
|
|
static int buf_fprintf(void *stream, const char *format, ...)
|
|
{
|
|
va_list ap;
|
|
char *tmp;
|
|
if (buf_global == NULL)
|
|
return 0;
|
|
va_start(ap, format);
|
|
tmp = alloca(strlen(format)+strlen(buf_global)+2);
|
|
sprintf(tmp, "%s%s", buf_global, format);
|
|
vsprintf(buf_global, tmp, ap);
|
|
va_end(ap);
|
|
return 0;
|
|
}
|
|
|
|
static int disassemble(struct r_asm_t *a, struct r_asm_aop_t *aop, u8 *buf, u64 len)
|
|
{
|
|
struct disassemble_info disasm_obj;
|
|
|
|
buf_global = aop->buf_asm;
|
|
Offset = a->pc;
|
|
memcpy(bytes, buf, 4); // TODO handle thumb
|
|
r_hex_bin2str(bytes, 4, aop->buf_hex);
|
|
|
|
/* prepare disassembler */
|
|
memset(&disasm_obj,'\0', sizeof(struct disassemble_info));
|
|
mips_mode = a->bits;
|
|
disasm_obj.arch = CPU_LOONGSON_2F;
|
|
disasm_obj.buffer = bytes;
|
|
disasm_obj.read_memory_func = &mips_buffer_read_memory;
|
|
disasm_obj.symbol_at_address_func = &symbol_at_address;
|
|
disasm_obj.memory_error_func = &memory_error_func;
|
|
disasm_obj.print_address_func = &print_address;
|
|
disasm_obj.buffer_vma = Offset;
|
|
disasm_obj.buffer_length = 4;
|
|
disasm_obj.endian = !a->big_endian;
|
|
disasm_obj.fprintf_func = &buf_fprintf;
|
|
disasm_obj.stream = stdout;
|
|
|
|
aop->buf_asm[0]='\0';
|
|
if (a->big_endian)
|
|
aop->inst_len = print_insn_big_mips((bfd_vma)Offset, &disasm_obj);
|
|
else aop->inst_len = print_insn_little_mips((bfd_vma)Offset, &disasm_obj);
|
|
|
|
if (aop->inst_len == -1)
|
|
strcpy(aop->buf_asm, " (data)");
|
|
|
|
if (aop->inst_len > 0)
|
|
memcpy(aop->buf, buf, aop->inst_len);
|
|
|
|
return aop->inst_len;
|
|
}
|
|
|
|
static struct r_asm_handle_t r_asm_plugin_mips = {
|
|
.name = "asm_mips",
|
|
.desc = "MIPS disassembly plugin",
|
|
.init = NULL,
|
|
.fini = NULL,
|
|
.disassemble = &disassemble,
|
|
.assemble = NULL
|
|
};
|
|
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_mips
|
|
};
|