blob: 4650aad18a62a30f7465c6e0b029c3659ab1a035 [file] [log] [blame]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001/* Capstone Disassembler Engine */
2/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
3
4#include <stdio.h>
5#include <stdlib.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08006
tandasat45e5eab2016-05-11 21:48:32 -07007#include <capstone/platform.h>
pancake9c10ace2015-02-24 04:55:55 +01008#include <capstone/capstone.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08009
10struct platform {
11 cs_arch arch;
12 cs_mode mode;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +080013 unsigned char *code;
14 size_t size;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080015 char *comment;
Nguyen Anh Quynhb8ce68e2013-12-03 23:45:08 +080016 cs_opt_type opt_type;
17 cs_opt_value opt_value;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080018};
19
Mr. eXoDia9be1f932014-08-26 12:46:15 +020020static void print_string_hex(unsigned char *str, size_t len)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080021{
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +080022 unsigned char *c;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080023
24 printf("Code: ");
25 for (c = str; c < str + len; c++) {
26 printf("0x%02x ", *c & 0xff);
27 }
28 printf("\n");
29}
30
31static void test()
32{
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070033#ifdef CAPSTONE_HAS_X86
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080034#define X86_CODE16 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
Nguyen Anh Quynh62918ab2015-08-09 10:34:19 -070035#define X86_CODE32 "\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
Nguyen Anh Quynhb4ce3832013-12-06 08:06:21 +080036//#define X86_CODE32 "\x0f\xa7\xc0" // xstorerng
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080037#define X86_CODE64 "\x55\x48\x8b\x05\xb8\x13\x00\x00"
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -070038#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070039#ifdef CAPSTONE_HAS_ARM
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080040//#define ARM_CODE "\x04\xe0\x2d\xe5"
41#define ARM_CODE "\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x00\xa0\xe3\x02\x30\xc1\xe7\x00\x00\x53\xe3"
42#define ARM_CODE2 "\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3"
Nguyen Anh Quynh83466d42014-11-11 21:44:42 +080043#define ARMV8 "\xe0\x3b\xb2\xee\x42\x00\x01\xe1\x51\xf0\x7f\xf5"
44#define THUMB_MCLASS "\xef\xf3\x02\x80"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080045#define THUMB_CODE "\x70\x47\xeb\x46\x83\xb0\xc9\x68"
46#define THUMB_CODE2 "\x4f\xf0\x00\x01\xbd\xe8\x00\x88\xd1\xe8\x00\xf0"
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -070047#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070048#ifdef CAPSTONE_HAS_MIPS
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080049#define MIPS_CODE "\x0C\x10\x00\x97\x00\x00\x00\x00\x24\x02\x00\x0c\x8f\xa2\x00\x00\x34\x21\x34\x56"
50#define MIPS_CODE2 "\x56\x34\x21\x34\xc2\x17\x01\x00"
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +080051#define MIPS_32R6M "\x00\x07\x00\x07\x00\x11\x93\x7c\x01\x8c\x8b\x7c\x00\xc7\x48\xd0"
52#define MIPS_32R6 "\xec\x80\x00\x19\x7c\x43\x22\xa0"
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -070053#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070054#ifdef CAPSTONE_HAS_ARM64
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080055//#define ARM64_CODE "\x00\x40\x21\x4b" // sub w0, w0, w1, uxtw
56//#define ARM64_CODE "\x21\x7c\x02\x9b" // mul x1, x1, x2
57//#define ARM64_CODE "\x20\x74\x0b\xd5" // dc zva, x0
58//#define ARM64_CODE "\xe1\x0b\x40\xb9" // ldr w1, [sp, #0x8]
59#define ARM64_CODE "\x21\x7c\x02\x9b\x21\x7c\x00\x53\x00\x40\x21\x4b\xe1\x0b\x40\xb9"
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -070060#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070061#ifdef CAPSTONE_HAS_PPC
Nguyen Anh Quynhf1d489b2014-01-05 00:00:05 +080062#define PPC_CODE "\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\x2d\x03\x00\x80\x7c\x43\x20\x14\x7c\x43\x20\x93\x4f\x20\x00\x21\x4c\xc8\x00\x21"
Nguyen Anh Quynhb8ffb862015-03-12 16:52:31 +080063#define PPC_CODE2 "\x10\x60\x2a\x10\x10\x64\x28\x88\x7c\x4a\x5d\x0f"
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -070064#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070065#ifdef CAPSTONE_HAS_SPARC
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +080066#define SPARC_CODE "\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x01\xd5\xf6\x10\x16\x21\x00\x00\x0a\x86\x00\x40\x02\x01\x00\x00\x00\x12\xbf\xff\xff\x10\xbf\xff\xff\xa0\x02\x00\x09\x0d\xbf\xff\xff\xd4\x20\x60\x00\xd4\x4e\x00\x16\x2a\xc2\x80\x03"
Nguyen Anh Quynhea9f4b12014-03-10 20:38:01 +080067#define SPARCV9_CODE "\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0"
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -070068#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070069#ifdef CAPSTONE_HAS_SYSZ
Nguyen Anh Quynhda1e8332014-03-23 11:12:07 +080070#define SYSZ_CODE "\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a\xff\xff\x7f\x57\xe3\x01\xff\xff\x7f\x57\xeb\x00\xf0\x00\x00\x24\xb2\x4f\x00\x78"
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -070071#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070072#ifdef CAPSTONE_HAS_XCORE
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +080073#define XCORE_CODE "\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf2\x45\x5b\xf9\xfa\x02\x06\x1b\x10"
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -070074#endif
Nguyen Anh Quynhb16658d2015-10-04 15:05:26 +080075#ifdef CAPSTONE_HAS_M68K
76#define M68K_CODE "\xd4\x40\x87\x5a\x4e\x71\x02\xb4\xc0\xde\xc0\xde\x5c\x00\x1d\x80\x71\x12\x01\x23\xf2\x3c\x44\x22\x40\x49\x0e\x56\x54\xc5\xf2\x3c\x44\x00\x44\x7a\x00\x00\xf2\x00\x0a\x28"
77#endif
78
Nguyen Anh Quynh42706a32014-05-09 07:33:35 +080079 struct platform {
80 cs_arch arch;
81 cs_mode mode;
82 unsigned char *code;
83 size_t size;
84 char *comment;
85 cs_opt_type opt_type;
86 cs_opt_value opt_value;
87 };
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080088 struct platform platforms[] = {
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -070089#ifdef CAPSTONE_HAS_X86
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080090 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +010091 CS_ARCH_X86,
92 CS_MODE_16,
93 (unsigned char*)X86_CODE16,
94 sizeof(X86_CODE16) - 1,
95 "X86 16bit (Intel syntax)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080096 },
97 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +010098 CS_ARCH_X86,
99 CS_MODE_32,
100 (unsigned char*)X86_CODE32,
101 sizeof(X86_CODE32) - 1,
102 "X86 32bit (ATT syntax)",
103 CS_OPT_SYNTAX,
104 CS_OPT_SYNTAX_ATT,
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800105 },
106 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100107 CS_ARCH_X86,
108 CS_MODE_32,
109 (unsigned char*)X86_CODE32,
110 sizeof(X86_CODE32) - 1,
111 "X86 32 (Intel syntax)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800112 },
113 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100114 CS_ARCH_X86,
Nguyen Anh Quynh62918ab2015-08-09 10:34:19 -0700115 CS_MODE_32,
116 (unsigned char*)X86_CODE32,
117 sizeof(X86_CODE32) - 1,
118 "X86 32 (MASM syntax)",
119 CS_OPT_SYNTAX,
120 CS_OPT_SYNTAX_MASM,
121 },
122 {
123 CS_ARCH_X86,
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100124 CS_MODE_64,
125 (unsigned char*)X86_CODE64,
126 sizeof(X86_CODE64) - 1,
127 "X86 64 (Intel syntax)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800128 },
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -0700129#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -0700130#ifdef CAPSTONE_HAS_ARM
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800131 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100132 CS_ARCH_ARM,
133 CS_MODE_ARM,
134 (unsigned char*)ARM_CODE,
135 sizeof(ARM_CODE) - 1,
136 "ARM"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800137 },
138 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100139 CS_ARCH_ARM,
140 CS_MODE_THUMB,
141 (unsigned char*)THUMB_CODE2,
142 sizeof(THUMB_CODE2) - 1,
143 "THUMB-2"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800144 },
145 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100146 CS_ARCH_ARM,
147 CS_MODE_ARM,
148 (unsigned char*)ARM_CODE2,
149 sizeof(ARM_CODE2) - 1,
150 "ARM: Cortex-A15 + NEON"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800151 },
152 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100153 CS_ARCH_ARM,
154 CS_MODE_THUMB,
155 (unsigned char*)THUMB_CODE,
156 sizeof(THUMB_CODE) - 1,
157 "THUMB"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800158 },
159 {
Nguyen Anh Quynh83466d42014-11-11 21:44:42 +0800160 CS_ARCH_ARM,
161 (cs_mode)(CS_MODE_THUMB + CS_MODE_MCLASS),
162 (unsigned char*)THUMB_MCLASS,
163 sizeof(THUMB_MCLASS) - 1,
164 "Thumb-MClass"
165 },
166 {
167 CS_ARCH_ARM,
168 (cs_mode)(CS_MODE_ARM + CS_MODE_V8),
169 (unsigned char*)ARMV8,
170 sizeof(ARMV8) - 1,
171 "Arm-V8"
172 },
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -0700173#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -0700174#ifdef CAPSTONE_HAS_MIPS
Nguyen Anh Quynh83466d42014-11-11 21:44:42 +0800175 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100176 CS_ARCH_MIPS,
Nguyen Anh Quynh84df6002014-11-13 11:27:51 +0800177 (cs_mode)(CS_MODE_MIPS32 + CS_MODE_BIG_ENDIAN),
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100178 (unsigned char*)MIPS_CODE,
179 sizeof(MIPS_CODE) - 1,
180 "MIPS-32 (Big-endian)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800181 },
182 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100183 CS_ARCH_MIPS,
Nguyen Anh Quynh84df6002014-11-13 11:27:51 +0800184 (cs_mode)(CS_MODE_MIPS64 + CS_MODE_LITTLE_ENDIAN),
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100185 (unsigned char*)MIPS_CODE2,
186 sizeof(MIPS_CODE2) - 1,
187 "MIPS-64-EL (Little-endian)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800188 },
189 {
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800190 CS_ARCH_MIPS,
Nguyen Anh Quynh0d97a3b2014-11-13 11:12:52 +0800191 (cs_mode)(CS_MODE_MIPS32R6 + CS_MODE_MICRO + CS_MODE_BIG_ENDIAN),
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +0800192 (unsigned char*)MIPS_32R6M,
193 sizeof(MIPS_32R6M) - 1,
194 "MIPS-32R6 | Micro (Big-endian)"
195 },
196 {
197 CS_ARCH_MIPS,
Nguyen Anh Quynh0d97a3b2014-11-13 11:12:52 +0800198 (cs_mode)(CS_MODE_MIPS32R6 + CS_MODE_BIG_ENDIAN),
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800199 (unsigned char*)MIPS_32R6,
200 sizeof(MIPS_32R6) - 1,
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +0800201 "MIPS-32R6 (Big-endian)"
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800202 },
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -0700203#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -0700204#ifdef CAPSTONE_HAS_ARM64
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800205 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100206 CS_ARCH_ARM64,
207 CS_MODE_ARM,
208 (unsigned char*)ARM64_CODE,
209 sizeof(ARM64_CODE) - 1,
210 "ARM-64"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800211 },
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -0700212#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -0700213#ifdef CAPSTONE_HAS_PPC
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800214 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100215 CS_ARCH_PPC,
216 CS_MODE_BIG_ENDIAN,
217 (unsigned char*)PPC_CODE,
218 sizeof(PPC_CODE) - 1,
Nguyen Anh Quynh42706a32014-05-09 07:33:35 +0800219 "PPC-64"
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800220 },
221 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100222 CS_ARCH_PPC,
223 CS_MODE_BIG_ENDIAN,
224 (unsigned char*)PPC_CODE,
225 sizeof(PPC_CODE) - 1,
Nguyen Anh Quynh42706a32014-05-09 07:33:35 +0800226 "PPC-64, print register with number only",
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100227 CS_OPT_SYNTAX,
228 CS_OPT_SYNTAX_NOREGNAME
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800229 },
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +0800230 {
Nguyen Anh Quynhb8ffb862015-03-12 16:52:31 +0800231 CS_ARCH_PPC,
232 CS_MODE_BIG_ENDIAN + CS_MODE_QPX,
233 (unsigned char*)PPC_CODE2,
234 sizeof(PPC_CODE2) - 1,
235 "PPC-64 + QPX",
236 },
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -0700237#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -0700238#ifdef CAPSTONE_HAS_SPARC
Nguyen Anh Quynhb8ffb862015-03-12 16:52:31 +0800239 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100240 CS_ARCH_SPARC,
241 CS_MODE_BIG_ENDIAN,
242 (unsigned char*)SPARC_CODE,
243 sizeof(SPARC_CODE) - 1,
244 "Sparc"
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +0800245 },
Nguyen Anh Quynhea9f4b12014-03-10 20:38:01 +0800246 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100247 CS_ARCH_SPARC,
248 (cs_mode)(CS_MODE_BIG_ENDIAN + CS_MODE_V9),
249 (unsigned char*)SPARCV9_CODE,
250 sizeof(SPARCV9_CODE) - 1,
251 "SparcV9"
Nguyen Anh Quynhea9f4b12014-03-10 20:38:01 +0800252 },
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -0700253#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -0700254#ifdef CAPSTONE_HAS_SYSZ
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +0800255 {
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100256 CS_ARCH_SYSZ,
257 (cs_mode)0,
258 (unsigned char*)SYSZ_CODE,
259 sizeof(SYSZ_CODE) - 1,
260 "SystemZ"
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +0800261 },
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -0700262#endif
Nguyen Anh Quynh20037df2015-08-09 09:47:53 -0700263#ifdef CAPSTONE_HAS_XCORE
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +0800264 {
265 CS_ARCH_XCORE,
266 (cs_mode)0,
267 (unsigned char*)XCORE_CODE,
268 sizeof(XCORE_CODE) - 1,
269 "XCore"
270 },
Taras Tsugrii63fbf8e2015-07-30 13:01:19 -0700271#endif
Nguyen Anh Quynhb16658d2015-10-04 15:05:26 +0800272#ifdef CAPSTONE_HAS_M68K
273 {
274 CS_ARCH_M68K,
tandasat45e5eab2016-05-11 21:48:32 -0700275 (cs_mode)(CS_MODE_BIG_ENDIAN | CS_MODE_M68K_040),
Nguyen Anh Quynhb16658d2015-10-04 15:05:26 +0800276 (unsigned char*)M68K_CODE,
277 sizeof(M68K_CODE) - 1,
278 "M68K",
279 },
280#endif
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800281 };
282
283 csh handle;
Nguyen Anh Quynh5df9e4b2013-12-03 15:02:12 +0800284 uint64_t address = 0x1000;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800285 cs_insn *insn;
286 int i;
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800287 size_t count;
Nguyen Anh Quynh655c7022014-04-11 12:15:33 +0800288 cs_err err;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800289
290 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) {
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +0800291 printf("****************\n");
292 printf("Platform: %s\n", platforms[i].comment);
Nguyen Anh Quynh655c7022014-04-11 12:15:33 +0800293 err = cs_open(platforms[i].arch, platforms[i].mode, &handle);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800294 if (err) {
295 printf("Failed on cs_open() with error returned: %u\n", err);
Yegor Derevenets50c352c2015-05-30 21:10:23 +0200296 abort();
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800297 }
298
Nguyen Anh Quynhb8ce68e2013-12-03 23:45:08 +0800299 if (platforms[i].opt_type)
300 cs_option(handle, platforms[i].opt_type, platforms[i].opt_value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800301
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800302 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800303 if (count) {
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800304 size_t j;
305
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800306 print_string_hex(platforms[i].code, platforms[i].size);
307 printf("Disasm:\n");
308
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800309 for (j = 0; j < count; j++) {
tandasat45e5eab2016-05-11 21:48:32 -0700310 printf("0x%" PRIx64 ":\t%s\t\t%s\n",
Nguyen Anh Quynh7b7b40c2013-12-03 12:24:06 +0800311 insn[j].address, insn[j].mnemonic, insn[j].op_str);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800312 }
313
314 // print out the next offset, after the last insn
tandasat45e5eab2016-05-11 21:48:32 -0700315 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800316
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800317 // free memory allocated by cs_disasm()
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800318 cs_free(insn, count);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800319 } else {
320 printf("****************\n");
321 printf("Platform: %s\n", platforms[i].comment);
322 print_string_hex(platforms[i].code, platforms[i].size);
323 printf("ERROR: Failed to disasm given code!\n");
Yegor Derevenets50c352c2015-05-30 21:10:23 +0200324 abort();
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800325 }
326
327 printf("\n");
328
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800329 cs_close(&handle);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800330 }
331}
332
333int main()
334{
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800335 test();
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800336
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800337 return 0;
338}