14 byte[] data =
new byte[
len / 2];
15 for (
int i = 0;
i <
len;
i += 2) {
16 data[
i / 2] = (byte) ((Character.digit(
s.charAt(
i), 16) << 4)
17 + Character.digit(
s.charAt(
i+1), 16));
25 public static Capstone
cs;
28 return Integer.toString(
i, 16);
32 return Long.toString(
i, 16);
36 System.out.printf(
"0x%x:\t%s\t%s\n", ins.address, ins.mnemonic, ins.opStr);
41 System.out.printf(
"\top_count: %d\n",
operands.op.length);
46 System.out.printf(
"\t\toperands[%d].type: REG = %s\n",
c, ins.regName(
i.value.reg));
48 System.out.printf(
"\t\toperands[%d].type: IMM = 0x%x\n",
c,
i.value.imm);
50 System.out.printf(
"\t\toperands[%d].type: MEM\n",
c);
51 String base = ins.regName(
i.value.mem.base);
53 System.out.printf(
"\t\t\toperands[%d].mem.base: REG = %s\n",
c, base);
54 if (
i.value.mem.disp != 0)
55 System.out.printf(
"\t\t\toperands[%d].mem.disp: %s\n",
c,
hex(
i.value.mem.disp));
70 System.out.println(
new String(
new char[16]).
replace(
"\0",
"*"));
71 System.out.println(
"Platform: " +
test.comment);
73 System.out.println(
"Disasm:");
76 cs.setDetail(Capstone.CS_OPT_ON);
77 Capstone.CsInsn[] all_ins =
cs.disasm(
test.code, 0x1000);
79 for (
int j = 0; j < all_ins.length; j++) {
84 System.out.printf(
"0x%x:\n\n", all_ins[all_ins.length-1].address + all_ins[all_ins.length-1].size);
static String stringToHex(byte[] code)
static final String MIPS_CODE2
static byte[] hexString2Byte(String s)
static String hex(long i)
static final String MIPS_CODE
static void print_ins_detail(Capstone.CsInsn ins)
static void main(String argv[])
static static fork const void static count static fd const char const char static newpath char char argv
@ MIPS_OP_REG
= CS_OP_REG (Register operand).
@ MIPS_OP_IMM
= CS_OP_IMM (Immediate operand).
@ MIPS_OP_MEM
= CS_OP_MEM (Memory operand).
int replace(char *string, const char *token, const char *fmt,...)
if(dbg->bits==RZ_SYS_BITS_64)