Skip to content

Commit

Permalink
Added support for exposing opcode in disassembled object
Browse files Browse the repository at this point in the history
  • Loading branch information
jj16791 authored and FinnWilkinson committed Oct 24, 2022
1 parent 087889d commit 51cc803
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,7 @@ size_t CAPSTONE_API cs_disasm(csh ud, const uint8_t *buffer, size_t size, uint64

handle->printer(&mci, &ss, handle->printer_info);
fill_insn(handle, insn_cache, ss.buffer, &mci, handle->post_printer, buffer);
insn_cache->opcode = mci.Opcode;

// adjust for pseudo opcode (X86)
if (handle->arch == CS_ARCH_X86)
Expand Down Expand Up @@ -1110,6 +1111,7 @@ bool CAPSTONE_API cs_disasm_iter(csh ud, const uint8_t **code, size_t *size,
handle->printer(&mci, &ss, handle->printer_info);

fill_insn(handle, insn, ss.buffer, &mci, handle->post_printer, *code);
insn->opcode = mci.Opcode;

// adjust for pseudo opcode (X86)
if (handle->arch == CS_ARCH_X86)
Expand Down
3 changes: 3 additions & 0 deletions include/capstone/capstone.h
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,9 @@ typedef struct cs_insn {
/// NOTE 2: when in Skipdata mode, or when detail mode is OFF, even if this pointer
/// is not NULL, its content is still irrelevant.
cs_detail *detail;

/// The internal opcode of this instruction
unsigned int opcode;
} cs_insn;


Expand Down

0 comments on commit 51cc803

Please sign in to comment.