test_customized_mnem.c
Go to the documentation of this file.
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2015 */
3 
4 // This sample code demonstrates the option CS_OPT_MNEMONIC
5 // to customize instruction mnemonic.
6 
7 #include <stdio.h>
8 #include <stdlib.h>
9 
10 #include <capstone/platform.h>
11 #include <capstone/capstone.h>
12 
13 #define X86_CODE32 "\x75\x01"
14 
15 // Print out the input code in hexadecimal format
16 static void print_string_hex(unsigned char *str, size_t len)
17 {
18  unsigned char *c;
19 
20  for (c = str; c < str + len; c++) {
21  printf("%02x ", *c & 0xff);
22  }
23  printf("\t");
24 }
25 
26 // Print one instruction
27 static void print_insn(csh handle)
28 {
29  cs_insn *insn;
30  size_t count;
31 
32  count = cs_disasm(handle, (const uint8_t *)X86_CODE32, sizeof(X86_CODE32) - 1, 0x1000, 1, &insn);
33  if (count) {
34  print_string_hex((unsigned char *)X86_CODE32, sizeof(X86_CODE32) - 1);
35  printf("\t%s\t%s\n", insn[0].mnemonic, insn[0].op_str);
36  // Free memory allocated by cs_disasm()
37  cs_free(insn, count);
38  } else {
39  printf("ERROR: Failed to disasm given code!\n");
40  abort();
41  }
42 }
43 
44 static void test()
45 {
46  csh handle;
47  cs_err err;
48  // Customize mnemonic JNE to "jnz"
49  cs_opt_mnem my_mnem = { X86_INS_JNE, "jnz" };
50  // Set .mnemonic to NULL to reset to default mnemonic
51  cs_opt_mnem default_mnem = { X86_INS_JNE, NULL };
52 
54  if (err) {
55  printf("Failed on cs_open() with error returned: %u\n", err);
56  abort();
57  }
58 
59  // 1. Print out the instruction in default setup.
60  printf("Disassemble X86 code with default instruction mnemonic\n");
62 
63  // Customized mnemonic JNE to JNZ using CS_OPT_MNEMONIC option
64  printf("\nNow customize engine to change mnemonic from 'JNE' to 'JNZ'\n");
65  cs_option(handle, CS_OPT_MNEMONIC, (size_t)&my_mnem);
66 
67  // 2. Now print out the instruction in newly customized setup.
69 
70  // Reset engine to use the default mnemonic of JNE
71  printf("\nReset engine to use the default mnemonic\n");
72  cs_option(handle, CS_OPT_MNEMONIC, (size_t)&default_mnem);
73 
74  // 3. Now print out the instruction in default setup.
76 
77  // Done
78  cs_close(&handle);
79 }
80 
81 int main()
82 {
83  test();
84 
85  return 0;
86 }
xds_interop_client.str
str
Definition: xds_interop_client.py:487
cs_close
CAPSTONE_EXPORT cs_err CAPSTONE_API cs_close(csh *handle)
Definition: cs.c:522
print_insn
static void print_insn(csh handle)
Definition: test_customized_mnem.c:27
CS_MODE_32
@ CS_MODE_32
32-bit mode (X86)
Definition: capstone.h:107
main
int main()
Definition: test_customized_mnem.c:81
cs_disasm
CAPSTONE_EXPORT size_t CAPSTONE_API cs_disasm(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_t count, cs_insn **insn)
Definition: cs.c:822
printf
_Use_decl_annotations_ int __cdecl printf(const char *_Format,...)
Definition: cs_driver.c:91
error_ref_leak.err
err
Definition: error_ref_leak.py:35
cs_open
CAPSTONE_EXPORT cs_err CAPSTONE_API cs_open(cs_arch arch, cs_mode mode, csh *handle)
Definition: cs.c:474
X86_INS_JNE
@ X86_INS_JNE
Definition: x86.h:651
uint8_t
unsigned char uint8_t
Definition: stdint-msvc2008.h:78
cs_option
CAPSTONE_EXPORT cs_err CAPSTONE_API cs_option(csh ud, cs_opt_type type, size_t value)
Definition: cs.c:670
capstone.h
c
void c(T a)
Definition: miscompile_with_no_unique_address_test.cc:40
print_string_hex
static void print_string_hex(unsigned char *str, size_t len)
Definition: test_customized_mnem.c:16
CS_ARCH_X86
@ CS_ARCH_X86
X86 architecture (including x86 & x86-64)
Definition: capstone.h:78
platform.h
csh
size_t csh
Definition: capstone.h:71
X86_CODE32
#define X86_CODE32
Definition: test_customized_mnem.c:13
count
int * count
Definition: bloaty/third_party/googletest/googlemock/test/gmock_stress_test.cc:96
test
static void test()
Definition: test_customized_mnem.c:44
cs_free
CAPSTONE_EXPORT void CAPSTONE_API cs_free(cs_insn *insn, size_t count)
Definition: cs.c:1039
handle
static csh handle
Definition: test_arm_regression.c:16
len
int len
Definition: abseil-cpp/absl/base/internal/low_level_alloc_test.cc:46
cs_opt_mnem
Definition: capstone.h:161
CS_OPT_MNEMONIC
@ CS_OPT_MNEMONIC
Customize instruction mnemonic.
Definition: capstone.h:177


grpc
Author(s):
autogenerated on Fri May 16 2025 03:00:28