mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-10 16:23:08 +00:00
54 lines
1.2 KiB
C
54 lines
1.2 KiB
C
/* radare - LGPL - Copyright 2009-2014 - nibble, pancake */
|
|
|
|
#include <r_types.h>
|
|
#include <r_util.h>
|
|
#include <r_lib.h>
|
|
#include <r_asm.h>
|
|
#include <r_core.h>
|
|
|
|
#undef R_API
|
|
#undef R_IPI
|
|
#define R_API static
|
|
#define R_IPI static
|
|
#include "../../shlr/java/ops.c"
|
|
#include "../../shlr/java/class.c"
|
|
#include "../../shlr/java/code.c"
|
|
|
|
static int disassemble(RAsm *a, RAsmOp *op, const ut8 *buf, int len) {
|
|
//void *cp;
|
|
RBinJavaObj *obj = NULL;
|
|
RBin *b = a->binb.bin;
|
|
if (b->cur->curplugin) {
|
|
if (!strcmp (b->cur->curplugin->name, "java")) { // XXX slow
|
|
obj = b->cur->o->bin_obj; //o;
|
|
//eprintf("Handling: %s disasm.\n", b->cur.file);
|
|
}
|
|
}
|
|
return op->size = r_java_disasm (obj, a->pc, buf,
|
|
op->buf_asm, sizeof (op->buf_asm));
|
|
}
|
|
|
|
static int assemble(RAsm *a, RAsmOp *op, const char *buf) {
|
|
// TODO: get class info from bin if possible
|
|
return op->size = r_java_assemble (op->buf, buf);
|
|
}
|
|
|
|
RAsmPlugin r_asm_plugin_java = {
|
|
.name = "java",
|
|
.desc = "Java bytecode",
|
|
.arch = "java",
|
|
.license = "Apache",
|
|
.bits = 32,
|
|
.init = NULL,
|
|
.fini = NULL,
|
|
.disassemble = &disassemble,
|
|
.assemble = &assemble
|
|
};
|
|
|
|
#ifndef CORELIB
|
|
struct r_lib_struct_t radare_plugin = {
|
|
.type = R_LIB_TYPE_ASM,
|
|
.data = &r_asm_plugin_java
|
|
};
|
|
#endif
|