mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-05 03:56:46 +00:00
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
/* radare - LGPL - Copyright 2009-2017 - nibble, pancake */
|
|
|
|
#include <r_types.h>
|
|
#include <r_util.h>
|
|
#include <r_lib.h>
|
|
#include <r_asm.h>
|
|
#include <r_core.h>
|
|
|
|
#include "../../shlr/java/code.h"
|
|
#include "../../shlr/java/class.h"
|
|
|
|
static int disassemble(RAsm *a, RAsmOp *op, const ut8 *buf, int len) {
|
|
//void *cp;
|
|
RBinJavaObj *obj = NULL;
|
|
RBin *bin = a->binb.bin;
|
|
RBinPlugin *plugin = bin && bin->cur && bin->cur->o ?
|
|
bin->cur->o->plugin : NULL;
|
|
if (plugin) {
|
|
if (!strcmp (plugin->name, "java")) { // XXX slow
|
|
obj = bin->cur->o->bin_obj; //o;
|
|
//eprintf("Handling: %s disasm.\n", b->cur.file);
|
|
}
|
|
}
|
|
|
|
op->size = r_java_disasm (obj, a->pc, buf, len,
|
|
op->buf_asm, sizeof (op->buf_asm));
|
|
return op->size;
|
|
}
|
|
|
|
static int assemble(RAsm *a, RAsmOp *op, const char *buf) {
|
|
// TODO: get class info from bin if possible
|
|
return op->size = r_java_assemble (a->pc, op->buf, buf);
|
|
}
|
|
|
|
RAsmPlugin r_asm_plugin_java = {
|
|
.name = "java",
|
|
.desc = "Java bytecode",
|
|
.arch = "java",
|
|
.license = "Apache",
|
|
.bits = 32,
|
|
.endian = R_SYS_ENDIAN_BIG,
|
|
.disassemble = &disassemble,
|
|
.assemble = &assemble
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
RLibStruct radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_java,
|
|
.version = R2_VERSION
|
|
};
|
|
#endif
|