You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
/* Capstone Disassembler Engine */ |
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */ |
|
|
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
|
|
#include <capstone.h> |
|
|
|
static void print_string_hex(char *comment, unsigned char *str, size_t len) |
|
{ |
|
unsigned char *c; |
|
|
|
printf("%s", comment); |
|
for (c = str; c < str + len; c++) { |
|
printf("0x%02x ", *c & 0xff); |
|
} |
|
|
|
printf("\n"); |
|
} |
|
|
|
void print_insn_detail_mips(csh handle, cs_insn *ins) |
|
{ |
|
int i; |
|
cs_mips *mips; |
|
|
|
// detail can be NULL on "data" instruction if SKIPDATA option is turned ON |
|
if (ins->detail == NULL) |
|
return; |
|
|
|
mips = &(ins->detail->mips); |
|
if (mips->op_count) |
|
printf("\top_count: %u\n", mips->op_count); |
|
|
|
for (i = 0; i < mips->op_count; i++) { |
|
cs_mips_op *op = &(mips->operands[i]); |
|
switch((int)op->type) { |
|
default: |
|
break; |
|
case MIPS_OP_REG: |
|
printf("\t\toperands[%u].type: REG = %s\n", i, cs_reg_name(handle, op->reg)); |
|
break; |
|
case MIPS_OP_IMM: |
|
printf("\t\toperands[%u].type: IMM = 0x%" PRIx64 "\n", i, op->imm); |
|
break; |
|
case MIPS_OP_MEM: |
|
printf("\t\toperands[%u].type: MEM\n", i); |
|
if (op->mem.base != X86_REG_INVALID) |
|
printf("\t\t\toperands[%u].mem.base: REG = %s\n", |
|
i, cs_reg_name(handle, op->mem.base)); |
|
if (op->mem.disp != 0) |
|
printf("\t\t\toperands[%u].mem.disp: 0x%" PRIx64 "\n", i, op->mem.disp); |
|
|
|
break; |
|
} |
|
|
|
} |
|
|
|
printf("\n"); |
|
}
|
|
|