rizin/librz/arch/p/asm/asm_wasm.c
NOT XVilka e282e551f3
librz/asm: improve plugin descriptions (#5012)
Co-authored-by: Anton Kochkov <anton.kochkov@gmail.com>
2025-03-19 03:14:03 +08:00

41 lines
1 KiB
C

// SPDX-FileCopyrightText: 2017-2018 pancake <pancake@nopcode.org>
// SPDX-FileCopyrightText: 2017-2018 cgvwzq
// SPDX-License-Identifier: LGPL-3.0-only
// http://webassembly.org/docs/binary-encoding/#module-structure
#include <stdio.h>
#include <string.h>
#include <rz_types.h>
#include <rz_lib.h>
#include <rz_asm.h>
#include <wasm/wasm.h>
static int disassemble(RzAsm *a, RzAsmOp *op, const ut8 *buf, int len) {
WasmOp wop = { { 0 } };
int ret = wasm_dis(&wop, buf, len);
rz_asm_op_set_asm(op, wop.txt);
free(wop.txt);
op->size = ret;
return op->size;
}
static int assemble(RzAsm *a, RzAsmOp *op, const char *buf) {
ut8 *opbuf = (ut8 *)rz_strbuf_get(&op->buf);
op->size = wasm_asm(buf, opbuf, 32); // XXX hardcoded opsize
return op->size;
}
RzAsmPlugin rz_asm_plugin_wasm = {
.name = "wasm",
.author = "cgvwzq",
.version = "0.1.0",
.arch = "wasm",
.license = "MIT",
.bits = 32,
.endian = RZ_SYS_ENDIAN_LITTLE,
.desc = "WebAssembly disassembler",
.disassemble = &disassemble,
.assemble = &assemble
};