Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 1 | /* Capstone Disassembler Engine */ |
| 2 | /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */ |
| 3 | |
| 4 | #include <stdio.h> |
| 5 | #include <stdlib.h> |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 6 | |
tandasat | 45e5eab | 2016-05-11 21:48:32 -0700 | [diff] [blame] | 7 | #include <capstone/platform.h> |
pancake | 9c10ace | 2015-02-24 04:55:55 +0100 | [diff] [blame] | 8 | #include <capstone/capstone.h> |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 9 | |
| 10 | struct platform { |
| 11 | cs_arch arch; |
| 12 | cs_mode mode; |
Nguyen Anh Quynh | b42a657 | 2013-11-29 17:40:07 +0800 | [diff] [blame] | 13 | unsigned char *code; |
| 14 | size_t size; |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 15 | char *comment; |
Nguyen Anh Quynh | b8ce68e | 2013-12-03 23:45:08 +0800 | [diff] [blame] | 16 | cs_opt_type opt_type; |
| 17 | cs_opt_value opt_value; |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 18 | }; |
| 19 | |
Mr. eXoDia | 9be1f93 | 2014-08-26 12:46:15 +0200 | [diff] [blame] | 20 | static void print_string_hex(unsigned char *str, size_t len) |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 21 | { |
Nguyen Anh Quynh | b42a657 | 2013-11-29 17:40:07 +0800 | [diff] [blame] | 22 | unsigned char *c; |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 23 | |
| 24 | printf("Code: "); |
| 25 | for (c = str; c < str + len; c++) { |
| 26 | printf("0x%02x ", *c & 0xff); |
| 27 | } |
| 28 | printf("\n"); |
| 29 | } |
| 30 | |
| 31 | static void test() |
| 32 | { |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 33 | #ifdef CAPSTONE_HAS_X86 |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 34 | #define X86_CODE16 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" |
Nguyen Anh Quynh | 62918ab | 2015-08-09 10:34:19 -0700 | [diff] [blame] | 35 | #define X86_CODE32 "\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" |
Nguyen Anh Quynh | b4ce383 | 2013-12-06 08:06:21 +0800 | [diff] [blame] | 36 | //#define X86_CODE32 "\x0f\xa7\xc0" // xstorerng |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 37 | #define X86_CODE64 "\x55\x48\x8b\x05\xb8\x13\x00\x00" |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 38 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 39 | #ifdef CAPSTONE_HAS_ARM |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 40 | //#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 Quynh | 83466d4 | 2014-11-11 21:44:42 +0800 | [diff] [blame] | 43 | #define ARMV8 "\xe0\x3b\xb2\xee\x42\x00\x01\xe1\x51\xf0\x7f\xf5" |
| 44 | #define THUMB_MCLASS "\xef\xf3\x02\x80" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 45 | #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 Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 47 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 48 | #ifdef CAPSTONE_HAS_MIPS |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 49 | #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 Quynh | 248519e | 2014-11-09 14:07:07 +0800 | [diff] [blame] | 51 | #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 Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 53 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 54 | #ifdef CAPSTONE_HAS_ARM64 |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 55 | //#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 Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 60 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 61 | #ifdef CAPSTONE_HAS_PPC |
Nguyen Anh Quynh | f1d489b | 2014-01-05 00:00:05 +0800 | [diff] [blame] | 62 | #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 Quynh | b8ffb86 | 2015-03-12 16:52:31 +0800 | [diff] [blame] | 63 | #define PPC_CODE2 "\x10\x60\x2a\x10\x10\x64\x28\x88\x7c\x4a\x5d\x0f" |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 64 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 65 | #ifdef CAPSTONE_HAS_SPARC |
Nguyen Anh Quynh | 05e2713 | 2014-03-10 11:58:57 +0800 | [diff] [blame] | 66 | #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 Quynh | ea9f4b1 | 2014-03-10 20:38:01 +0800 | [diff] [blame] | 67 | #define SPARCV9_CODE "\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0" |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 68 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 69 | #ifdef CAPSTONE_HAS_SYSZ |
Nguyen Anh Quynh | da1e833 | 2014-03-23 11:12:07 +0800 | [diff] [blame] | 70 | #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 Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 71 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 72 | #ifdef CAPSTONE_HAS_XCORE |
Nguyen Anh Quynh | c80d840 | 2014-05-26 23:02:48 +0800 | [diff] [blame] | 73 | #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 Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 74 | #endif |
Nguyen Anh Quynh | b16658d | 2015-10-04 15:05:26 +0800 | [diff] [blame] | 75 | #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 |
Fotis Loukos | 0a159f1 | 2016-05-03 16:37:52 +0300 | [diff] [blame] | 78 | #ifdef CAPSTONE_HAS_TMS320C64X |
| 79 | #define TMS320C64X_CODE "\x01\xac\x88\x40\x81\xac\x88\x43\x00\x00\x00\x00\x02\x90\x32\x96\x02\x80\x46\x9e\x05\x3c\x83\xe6\x0b\x0c\x8b\x24" |
| 80 | #endif |
Wolfgang Schwotzer | 22b4d0e | 2017-10-21 15:44:36 +0200 | [diff] [blame] | 81 | #ifdef CAPSTONE_HAS_M680X |
| 82 | #define M680X_CODE "\x06\x10\x19\x1a\x55\x1e\x01\x23\xe9\x31\x06\x34\x55\xa6\x81\xa7\x89\x7f\xff\xa6\x9d\x10\x00\xa7\x91\xa6\x9f\x10\x00\x11\xac\x99\x10\x00\x39" |
| 83 | #endif |
| 84 | |
Nguyen Anh Quynh | b16658d | 2015-10-04 15:05:26 +0800 | [diff] [blame] | 85 | |
Nguyen Anh Quynh | 42706a3 | 2014-05-09 07:33:35 +0800 | [diff] [blame] | 86 | struct platform { |
| 87 | cs_arch arch; |
| 88 | cs_mode mode; |
| 89 | unsigned char *code; |
| 90 | size_t size; |
| 91 | char *comment; |
| 92 | cs_opt_type opt_type; |
| 93 | cs_opt_value opt_value; |
| 94 | }; |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 95 | struct platform platforms[] = { |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 96 | #ifdef CAPSTONE_HAS_X86 |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 97 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 98 | CS_ARCH_X86, |
| 99 | CS_MODE_16, |
| 100 | (unsigned char*)X86_CODE16, |
| 101 | sizeof(X86_CODE16) - 1, |
| 102 | "X86 16bit (Intel syntax)" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 103 | }, |
| 104 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 105 | CS_ARCH_X86, |
| 106 | CS_MODE_32, |
| 107 | (unsigned char*)X86_CODE32, |
| 108 | sizeof(X86_CODE32) - 1, |
| 109 | "X86 32bit (ATT syntax)", |
| 110 | CS_OPT_SYNTAX, |
| 111 | CS_OPT_SYNTAX_ATT, |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 112 | }, |
| 113 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 114 | CS_ARCH_X86, |
| 115 | CS_MODE_32, |
| 116 | (unsigned char*)X86_CODE32, |
| 117 | sizeof(X86_CODE32) - 1, |
| 118 | "X86 32 (Intel syntax)" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 119 | }, |
| 120 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 121 | CS_ARCH_X86, |
Nguyen Anh Quynh | 62918ab | 2015-08-09 10:34:19 -0700 | [diff] [blame] | 122 | CS_MODE_32, |
| 123 | (unsigned char*)X86_CODE32, |
| 124 | sizeof(X86_CODE32) - 1, |
| 125 | "X86 32 (MASM syntax)", |
| 126 | CS_OPT_SYNTAX, |
| 127 | CS_OPT_SYNTAX_MASM, |
| 128 | }, |
| 129 | { |
| 130 | CS_ARCH_X86, |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 131 | CS_MODE_64, |
| 132 | (unsigned char*)X86_CODE64, |
| 133 | sizeof(X86_CODE64) - 1, |
| 134 | "X86 64 (Intel syntax)" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 135 | }, |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 136 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 137 | #ifdef CAPSTONE_HAS_ARM |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 138 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 139 | CS_ARCH_ARM, |
| 140 | CS_MODE_ARM, |
| 141 | (unsigned char*)ARM_CODE, |
| 142 | sizeof(ARM_CODE) - 1, |
| 143 | "ARM" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 144 | }, |
| 145 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 146 | CS_ARCH_ARM, |
| 147 | CS_MODE_THUMB, |
| 148 | (unsigned char*)THUMB_CODE2, |
| 149 | sizeof(THUMB_CODE2) - 1, |
| 150 | "THUMB-2" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 151 | }, |
| 152 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 153 | CS_ARCH_ARM, |
| 154 | CS_MODE_ARM, |
| 155 | (unsigned char*)ARM_CODE2, |
| 156 | sizeof(ARM_CODE2) - 1, |
| 157 | "ARM: Cortex-A15 + NEON" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 158 | }, |
| 159 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 160 | CS_ARCH_ARM, |
| 161 | CS_MODE_THUMB, |
| 162 | (unsigned char*)THUMB_CODE, |
| 163 | sizeof(THUMB_CODE) - 1, |
| 164 | "THUMB" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 165 | }, |
| 166 | { |
Nguyen Anh Quynh | 83466d4 | 2014-11-11 21:44:42 +0800 | [diff] [blame] | 167 | CS_ARCH_ARM, |
| 168 | (cs_mode)(CS_MODE_THUMB + CS_MODE_MCLASS), |
| 169 | (unsigned char*)THUMB_MCLASS, |
| 170 | sizeof(THUMB_MCLASS) - 1, |
| 171 | "Thumb-MClass" |
| 172 | }, |
| 173 | { |
| 174 | CS_ARCH_ARM, |
| 175 | (cs_mode)(CS_MODE_ARM + CS_MODE_V8), |
| 176 | (unsigned char*)ARMV8, |
| 177 | sizeof(ARMV8) - 1, |
| 178 | "Arm-V8" |
| 179 | }, |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 180 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 181 | #ifdef CAPSTONE_HAS_MIPS |
Nguyen Anh Quynh | 83466d4 | 2014-11-11 21:44:42 +0800 | [diff] [blame] | 182 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 183 | CS_ARCH_MIPS, |
Nguyen Anh Quynh | 84df600 | 2014-11-13 11:27:51 +0800 | [diff] [blame] | 184 | (cs_mode)(CS_MODE_MIPS32 + CS_MODE_BIG_ENDIAN), |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 185 | (unsigned char*)MIPS_CODE, |
| 186 | sizeof(MIPS_CODE) - 1, |
| 187 | "MIPS-32 (Big-endian)" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 188 | }, |
| 189 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 190 | CS_ARCH_MIPS, |
Nguyen Anh Quynh | 84df600 | 2014-11-13 11:27:51 +0800 | [diff] [blame] | 191 | (cs_mode)(CS_MODE_MIPS64 + CS_MODE_LITTLE_ENDIAN), |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 192 | (unsigned char*)MIPS_CODE2, |
| 193 | sizeof(MIPS_CODE2) - 1, |
| 194 | "MIPS-64-EL (Little-endian)" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 195 | }, |
| 196 | { |
Nguyen Anh Quynh | 5720cb7 | 2014-10-29 22:35:02 +0800 | [diff] [blame] | 197 | CS_ARCH_MIPS, |
Nguyen Anh Quynh | 0d97a3b | 2014-11-13 11:12:52 +0800 | [diff] [blame] | 198 | (cs_mode)(CS_MODE_MIPS32R6 + CS_MODE_MICRO + CS_MODE_BIG_ENDIAN), |
Nguyen Anh Quynh | 248519e | 2014-11-09 14:07:07 +0800 | [diff] [blame] | 199 | (unsigned char*)MIPS_32R6M, |
| 200 | sizeof(MIPS_32R6M) - 1, |
| 201 | "MIPS-32R6 | Micro (Big-endian)" |
| 202 | }, |
| 203 | { |
| 204 | CS_ARCH_MIPS, |
Nguyen Anh Quynh | 0d97a3b | 2014-11-13 11:12:52 +0800 | [diff] [blame] | 205 | (cs_mode)(CS_MODE_MIPS32R6 + CS_MODE_BIG_ENDIAN), |
Nguyen Anh Quynh | 5720cb7 | 2014-10-29 22:35:02 +0800 | [diff] [blame] | 206 | (unsigned char*)MIPS_32R6, |
| 207 | sizeof(MIPS_32R6) - 1, |
Nguyen Anh Quynh | 248519e | 2014-11-09 14:07:07 +0800 | [diff] [blame] | 208 | "MIPS-32R6 (Big-endian)" |
Nguyen Anh Quynh | 5720cb7 | 2014-10-29 22:35:02 +0800 | [diff] [blame] | 209 | }, |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 210 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 211 | #ifdef CAPSTONE_HAS_ARM64 |
Nguyen Anh Quynh | 5720cb7 | 2014-10-29 22:35:02 +0800 | [diff] [blame] | 212 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 213 | CS_ARCH_ARM64, |
| 214 | CS_MODE_ARM, |
| 215 | (unsigned char*)ARM64_CODE, |
| 216 | sizeof(ARM64_CODE) - 1, |
| 217 | "ARM-64" |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 218 | }, |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 219 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 220 | #ifdef CAPSTONE_HAS_PPC |
Nguyen Anh Quynh | 42c6b1a | 2013-12-30 00:15:25 +0800 | [diff] [blame] | 221 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 222 | CS_ARCH_PPC, |
| 223 | CS_MODE_BIG_ENDIAN, |
| 224 | (unsigned char*)PPC_CODE, |
| 225 | sizeof(PPC_CODE) - 1, |
Nguyen Anh Quynh | 42706a3 | 2014-05-09 07:33:35 +0800 | [diff] [blame] | 226 | "PPC-64" |
Nguyen Anh Quynh | 42c6b1a | 2013-12-30 00:15:25 +0800 | [diff] [blame] | 227 | }, |
| 228 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 229 | CS_ARCH_PPC, |
| 230 | CS_MODE_BIG_ENDIAN, |
| 231 | (unsigned char*)PPC_CODE, |
| 232 | sizeof(PPC_CODE) - 1, |
Nguyen Anh Quynh | 42706a3 | 2014-05-09 07:33:35 +0800 | [diff] [blame] | 233 | "PPC-64, print register with number only", |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 234 | CS_OPT_SYNTAX, |
| 235 | CS_OPT_SYNTAX_NOREGNAME |
Nguyen Anh Quynh | 42c6b1a | 2013-12-30 00:15:25 +0800 | [diff] [blame] | 236 | }, |
Nguyen Anh Quynh | 05e2713 | 2014-03-10 11:58:57 +0800 | [diff] [blame] | 237 | { |
Nguyen Anh Quynh | b8ffb86 | 2015-03-12 16:52:31 +0800 | [diff] [blame] | 238 | CS_ARCH_PPC, |
| 239 | CS_MODE_BIG_ENDIAN + CS_MODE_QPX, |
| 240 | (unsigned char*)PPC_CODE2, |
| 241 | sizeof(PPC_CODE2) - 1, |
| 242 | "PPC-64 + QPX", |
| 243 | }, |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 244 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 245 | #ifdef CAPSTONE_HAS_SPARC |
Nguyen Anh Quynh | b8ffb86 | 2015-03-12 16:52:31 +0800 | [diff] [blame] | 246 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 247 | CS_ARCH_SPARC, |
| 248 | CS_MODE_BIG_ENDIAN, |
| 249 | (unsigned char*)SPARC_CODE, |
| 250 | sizeof(SPARC_CODE) - 1, |
| 251 | "Sparc" |
Nguyen Anh Quynh | 05e2713 | 2014-03-10 11:58:57 +0800 | [diff] [blame] | 252 | }, |
Nguyen Anh Quynh | ea9f4b1 | 2014-03-10 20:38:01 +0800 | [diff] [blame] | 253 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 254 | CS_ARCH_SPARC, |
| 255 | (cs_mode)(CS_MODE_BIG_ENDIAN + CS_MODE_V9), |
| 256 | (unsigned char*)SPARCV9_CODE, |
| 257 | sizeof(SPARCV9_CODE) - 1, |
| 258 | "SparcV9" |
Nguyen Anh Quynh | ea9f4b1 | 2014-03-10 20:38:01 +0800 | [diff] [blame] | 259 | }, |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 260 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 261 | #ifdef CAPSTONE_HAS_SYSZ |
Nguyen Anh Quynh | 48a14ca | 2014-03-23 08:35:45 +0800 | [diff] [blame] | 262 | { |
Axel 0vercl0k Souchet | 779d4c7 | 2014-05-08 23:44:49 +0100 | [diff] [blame] | 263 | CS_ARCH_SYSZ, |
| 264 | (cs_mode)0, |
| 265 | (unsigned char*)SYSZ_CODE, |
| 266 | sizeof(SYSZ_CODE) - 1, |
| 267 | "SystemZ" |
Nguyen Anh Quynh | 48a14ca | 2014-03-23 08:35:45 +0800 | [diff] [blame] | 268 | }, |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 269 | #endif |
Nguyen Anh Quynh | 20037df | 2015-08-09 09:47:53 -0700 | [diff] [blame] | 270 | #ifdef CAPSTONE_HAS_XCORE |
Nguyen Anh Quynh | c80d840 | 2014-05-26 23:02:48 +0800 | [diff] [blame] | 271 | { |
| 272 | CS_ARCH_XCORE, |
| 273 | (cs_mode)0, |
| 274 | (unsigned char*)XCORE_CODE, |
| 275 | sizeof(XCORE_CODE) - 1, |
| 276 | "XCore" |
| 277 | }, |
Taras Tsugrii | 63fbf8e | 2015-07-30 13:01:19 -0700 | [diff] [blame] | 278 | #endif |
Nguyen Anh Quynh | b16658d | 2015-10-04 15:05:26 +0800 | [diff] [blame] | 279 | #ifdef CAPSTONE_HAS_M68K |
| 280 | { |
| 281 | CS_ARCH_M68K, |
tandasat | 45e5eab | 2016-05-11 21:48:32 -0700 | [diff] [blame] | 282 | (cs_mode)(CS_MODE_BIG_ENDIAN | CS_MODE_M68K_040), |
Nguyen Anh Quynh | b16658d | 2015-10-04 15:05:26 +0800 | [diff] [blame] | 283 | (unsigned char*)M68K_CODE, |
| 284 | sizeof(M68K_CODE) - 1, |
| 285 | "M68K", |
| 286 | }, |
| 287 | #endif |
Fotis Loukos | 0a159f1 | 2016-05-03 16:37:52 +0300 | [diff] [blame] | 288 | #ifdef CAPSTONE_HAS_TMS320C64X |
| 289 | { |
| 290 | CS_ARCH_TMS320C64X, |
| 291 | 0, |
| 292 | (unsigned char*)TMS320C64X_CODE, |
| 293 | sizeof(TMS320C64X_CODE) - 1, |
| 294 | "TMS320C64x", |
| 295 | }, |
| 296 | #endif |
Wolfgang Schwotzer | 22b4d0e | 2017-10-21 15:44:36 +0200 | [diff] [blame] | 297 | #ifdef CAPSTONE_HAS_M680X |
| 298 | { |
| 299 | CS_ARCH_M680X, |
| 300 | (cs_mode)(CS_MODE_M680X_6809), |
| 301 | (unsigned char*)M680X_CODE, |
| 302 | sizeof(M680X_CODE) - 1, |
| 303 | "M680X_M6809", |
| 304 | }, |
| 305 | #endif |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 306 | }; |
| 307 | |
| 308 | csh handle; |
Nguyen Anh Quynh | 5df9e4b | 2013-12-03 15:02:12 +0800 | [diff] [blame] | 309 | uint64_t address = 0x1000; |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 310 | cs_insn *insn; |
| 311 | int i; |
Nguyen Anh Quynh | 5b556e5 | 2014-04-11 10:15:26 +0800 | [diff] [blame] | 312 | size_t count; |
Nguyen Anh Quynh | 655c702 | 2014-04-11 12:15:33 +0800 | [diff] [blame] | 313 | cs_err err; |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 314 | |
| 315 | for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) { |
Nguyen Anh Quynh | 48a14ca | 2014-03-23 08:35:45 +0800 | [diff] [blame] | 316 | printf("****************\n"); |
| 317 | printf("Platform: %s\n", platforms[i].comment); |
Nguyen Anh Quynh | 655c702 | 2014-04-11 12:15:33 +0800 | [diff] [blame] | 318 | err = cs_open(platforms[i].arch, platforms[i].mode, &handle); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 319 | if (err) { |
| 320 | printf("Failed on cs_open() with error returned: %u\n", err); |
Yegor Derevenets | 50c352c | 2015-05-30 21:10:23 +0200 | [diff] [blame] | 321 | abort(); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 322 | } |
| 323 | |
Nguyen Anh Quynh | b8ce68e | 2013-12-03 23:45:08 +0800 | [diff] [blame] | 324 | if (platforms[i].opt_type) |
| 325 | cs_option(handle, platforms[i].opt_type, platforms[i].opt_value); |
Nguyen Anh Quynh | 01aba00 | 2013-12-03 21:00:09 +0800 | [diff] [blame] | 326 | |
Nguyen Anh Quynh | 0beb0d4 | 2014-08-27 22:55:29 +0800 | [diff] [blame] | 327 | count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 328 | if (count) { |
Nguyen Anh Quynh | 5b556e5 | 2014-04-11 10:15:26 +0800 | [diff] [blame] | 329 | size_t j; |
| 330 | |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 331 | print_string_hex(platforms[i].code, platforms[i].size); |
| 332 | printf("Disasm:\n"); |
| 333 | |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 334 | for (j = 0; j < count; j++) { |
tandasat | 45e5eab | 2016-05-11 21:48:32 -0700 | [diff] [blame] | 335 | printf("0x%" PRIx64 ":\t%s\t\t%s\n", |
Nguyen Anh Quynh | 7b7b40c | 2013-12-03 12:24:06 +0800 | [diff] [blame] | 336 | insn[j].address, insn[j].mnemonic, insn[j].op_str); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | // print out the next offset, after the last insn |
tandasat | 45e5eab | 2016-05-11 21:48:32 -0700 | [diff] [blame] | 340 | printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 341 | |
Nguyen Anh Quynh | 0beb0d4 | 2014-08-27 22:55:29 +0800 | [diff] [blame] | 342 | // free memory allocated by cs_disasm() |
Nguyen Anh Quynh | 4fe224b | 2013-12-24 16:49:36 +0800 | [diff] [blame] | 343 | cs_free(insn, count); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 344 | } else { |
| 345 | printf("****************\n"); |
| 346 | printf("Platform: %s\n", platforms[i].comment); |
| 347 | print_string_hex(platforms[i].code, platforms[i].size); |
| 348 | printf("ERROR: Failed to disasm given code!\n"); |
Yegor Derevenets | 50c352c | 2015-05-30 21:10:23 +0200 | [diff] [blame] | 349 | abort(); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | printf("\n"); |
| 353 | |
Nguyen Anh Quynh | 226d7dc | 2014-02-27 22:20:39 +0800 | [diff] [blame] | 354 | cs_close(&handle); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 355 | } |
| 356 | } |
| 357 | |
| 358 | int main() |
| 359 | { |
Nguyen Anh Quynh | 8f13f3c | 2013-12-04 22:57:04 +0800 | [diff] [blame] | 360 | test(); |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 361 | |
Nguyen Anh Quynh | 26ee41a | 2013-11-27 12:11:31 +0800 | [diff] [blame] | 362 | return 0; |
| 363 | } |