blob: fa50770f4b69bf59ccae4096abef1f48773f03d4 [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
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08004#include <stddef.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08005#include <stdio.h>
6#include <stdlib.h>
7#include <string.h>
8#include <capstone.h>
9
10#include "cs_priv.h"
11
12#include "MCRegisterInfo.h"
13
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080014#include "utils.h"
15
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080016cs_err (*arch_init[MAX_ARCH])(cs_struct *) = { NULL };
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +080017cs_err (*arch_option[MAX_ARCH]) (cs_struct *, cs_opt_type, size_t value) = { NULL };
18void (*arch_destroy[MAX_ARCH]) (cs_struct *) = { NULL };
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080019
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080020unsigned int all_arch = 0;
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080021
Nguyen Anh Quynhb8806782013-12-22 15:20:07 +080022
Nguyen Anh Quynhb90cb992013-12-28 13:59:09 +080023unsigned int cs_version(int *major, int *minor)
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +080024{
Nguyen Anh Quynh08777472013-12-22 14:16:28 +080025 if (major != NULL && minor != NULL) {
26 *major = CS_API_MAJOR;
27 *minor = CS_API_MINOR;
28 }
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080029
30 return (CS_API_MAJOR << 8) + CS_API_MINOR;
31}
32
33bool cs_support(cs_arch arch)
34{
35 if (arch == CS_ARCH_ALL)
36 return all_arch == ((1 << CS_ARCH_ARM) | (1 << CS_ARCH_ARM64) |
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080037 (1 << CS_ARCH_MIPS) | (1 << CS_ARCH_X86) |
38 (1 << CS_ARCH_PPC));
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080039
40 return all_arch & (1 << arch);
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +080041}
42
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080043cs_err cs_errno(csh handle)
44{
45 if (!handle)
46 return CS_ERR_CSH;
47
48 cs_struct *ud = (cs_struct *)(uintptr_t)handle;
49
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +080050 return ud->errnum;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080051}
52
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080053cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle)
54{
danghvu2b192962013-12-19 22:40:28 -060055 cs_struct *ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080056
danghvu2b192962013-12-19 22:40:28 -060057 ud = calloc(1, sizeof(*ud));
58 if (!ud) {
59 // memory insufficient
60 return CS_ERR_MEM;
61 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080062
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +080063 if (arch < CS_ARCH_MAX && arch_init[ud->arch]) {
64 ud->errnum = CS_ERR_OK;
65 ud->arch = arch;
66 ud->mode = mode;
67 ud->big_endian = mode & CS_MODE_BIG_ENDIAN;
68 ud->reg_name = NULL;
69 ud->detail = CS_OPT_ON; // by default break instruction into details
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080070
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +080071 arch_init[ud->arch](ud);
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +080072 } else {
73 *handle = 0;
74 return CS_ERR_ARCH;
75 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080076
danghvu2b192962013-12-19 22:40:28 -060077 *handle = (uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080078
danghvu2b192962013-12-19 22:40:28 -060079 return CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080080}
81
82cs_err cs_close(csh handle)
83{
84 if (!handle)
85 return CS_ERR_CSH;
86
87 cs_struct *ud = (cs_struct *)(uintptr_t)handle;
88
89 switch (ud->arch) {
90 case CS_ARCH_X86:
91 break;
92 case CS_ARCH_ARM:
93 case CS_ARCH_MIPS:
94 case CS_ARCH_ARM64:
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080095 case CS_ARCH_PPC:
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080096 free(ud->printer_info);
97 break;
98 default: // unsupported architecture
99 return CS_ERR_HANDLE;
100 }
101
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +0800102 if (arch_destroy[ud->arch])
103 arch_destroy[ud->arch](ud);
104
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800105 memset(ud, 0, sizeof(*ud));
106 free(ud);
107
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800108 return CS_ERR_OK;
109}
110
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800111#define MIN(x, y) ((x) < (y) ? (x) : (y))
112
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800113// fill insn with mnemonic & operands info
114static void fill_insn(cs_struct *handle, cs_insn *insn, char *buffer, MCInst *mci,
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800115 PostPrinter_t postprinter, const uint8_t *code)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800116{
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800117 if (handle->detail) {
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800118 // avoiding copy insn->detail
119 memcpy(insn, &mci->flat_insn, sizeof(*insn) - sizeof(insn->detail));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800120
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800121 // NOTE: copy details in 2 chunks, since union is always put at address divisible by 8
122 // copy from @regs_read until @arm
123 memcpy(insn->detail, (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, regs_read),
124 offsetof(cs_detail, arm) - offsetof(cs_detail, regs_read));
125 // then copy from @arm until end
126 memcpy((void *)(insn->detail) + offsetof(cs_detail, arm), (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, arm),
127 sizeof(cs_detail) - offsetof(cs_detail, arm));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800128 } else {
129 insn->address = mci->address;
130 insn->size = mci->insn_size;
131 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800132
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800133 // fill the instruction bytes
134 memcpy(insn->bytes, code, MIN(sizeof(insn->bytes), insn->size));
135
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800136 // map internal instruction opcode to public insn ID
137 if (handle->insn_id)
138 handle->insn_id(insn, MCInst_getOpcode(mci), handle->detail);
139
140 // alias instruction might have ID saved in OpcodePub
141 if (MCInst_getOpcodePub(mci))
142 insn->id = MCInst_getOpcodePub(mci);
143
144 // post printer handles some corner cases (hacky)
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800145 if (postprinter)
146 postprinter((csh)handle, insn, buffer);
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800147
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800148 // fill in mnemonic & operands
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800149 // find first space or tab
150 char *sp = buffer;
151 for (sp = buffer; *sp; sp++)
152 if (*sp == ' '||*sp == '\t')
153 break;
154 if (*sp) {
155 *sp = '\0';
Nguyen Anh Quynh86dc3932013-12-12 14:43:39 +0800156 // find the next non-space char
157 sp++;
158 for (; ((*sp == ' ') || (*sp == '\t')); sp++);
159 strncpy(insn->op_str, sp, sizeof(insn->op_str) - 1);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800160 insn->op_str[sizeof(insn->op_str) - 1] = '\0';
161 } else
162 insn->op_str[0] = '\0';
163
164 strncpy(insn->mnemonic, buffer, sizeof(insn->mnemonic) - 1);
165 insn->mnemonic[sizeof(insn->mnemonic) - 1] = '\0';
166}
167
Nguyen Anh Quynhda8adad2013-12-04 09:44:07 +0800168cs_err cs_option(csh ud, cs_opt_type type, size_t value)
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800169{
danghvu2b192962013-12-19 22:40:28 -0600170 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
171 if (!handle)
172 return CS_ERR_CSH;
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800173
danghvu0b6ea042013-12-19 23:07:26 -0600174 if (type == CS_OPT_DETAIL) {
Nguyen Anh Quynh7d02c922013-12-21 09:59:31 +0800175 handle->detail = value;
176 return CS_ERR_OK;
177 }
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800178
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800179 return arch_option[handle->arch](handle, type, value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800180}
181
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800182// dynamicly allocate memory to contain disasm insn
183// NOTE: caller must free() the allocated memory itself to avoid memory leaking
Nguyen Anh Quynh04c19be2013-12-25 13:26:22 +0800184size_t cs_disasm_ex(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_t count, cs_insn **insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800185{
186 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
187 MCInst mci;
188 uint16_t insn_size;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800189 size_t c = 0, f = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800190 cs_insn insn_cache[64];
191 void *total = NULL;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800192 size_t total_size = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800193
194 if (!handle) {
195 // FIXME: how to handle this case:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800196 // handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800197 return 0;
198 }
199
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800200 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800201
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800202 memset(insn_cache, 0, sizeof(insn_cache));
203
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800204 while (size > 0) {
danghvu2b192962013-12-19 22:40:28 -0600205 MCInst_Init(&mci);
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800206 mci.csh = handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800207
208 bool r = handle->disasm(ud, buffer, size, &mci, &insn_size, offset, handle->getinsn_info);
209 if (r) {
210 SStream ss;
211 SStream_Init(&ss);
212
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800213 // relative branches need to know the address & size of current insn
214 mci.insn_size = insn_size;
215 mci.address = offset;
216
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800217 if (handle->detail) {
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800218 // save all the information for non-detailed mode
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800219 mci.flat_insn.address = offset;
220 mci.flat_insn.size = insn_size;
221 // allocate memory for @detail pointer
222 insn_cache[f].detail = calloc(1, sizeof(cs_detail));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800223 }
224
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800225 handle->printer(&mci, &ss, handle->printer_info);
226
Joxean114df0e2013-12-04 07:11:32 +0100227 fill_insn(handle, &insn_cache[f], ss.buffer, &mci, handle->post_printer, buffer);
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800228
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800229 f++;
230
231 if (f == ARR_SIZE(insn_cache)) {
232 // resize total to contain newly disasm insns
233 total_size += sizeof(insn_cache);
234 void *tmp = realloc(total, total_size);
235 if (tmp == NULL) { // insufficient memory
236 free(total);
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800237 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800238 return 0;
239 }
240
241 total = tmp;
242 memcpy(total + total_size - sizeof(insn_cache), insn_cache, sizeof(insn_cache));
243 // reset f back to 0
244 f = 0;
245 }
246
247 c++;
248 buffer += insn_size;
249 size -= insn_size;
250 offset += insn_size;
251
252 if (count > 0 && c == count)
253 break;
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800254 } else {
255 // encounter a broken instruction
256 // XXX: TODO: JOXEAN continue here
257 break;
258 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800259 }
260
261 if (f) {
262 // resize total to contain newly disasm insns
263 void *tmp = realloc(total, total_size + f * sizeof(insn_cache[0]));
264 if (tmp == NULL) { // insufficient memory
265 free(total);
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800266 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800267 return 0;
268 }
269
270 total = tmp;
271 memcpy(total + total_size, insn_cache, f * sizeof(insn_cache[0]));
272 }
273
274 *insn = total;
275
276 return c;
277}
278
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800279void cs_free(cs_insn *insn, size_t count)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800280{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800281 size_t i;
282
283 // free all detail pointers
284 for (i = 0; i < count; i++)
285 free(insn[i].detail);
286
287 // then free pointer to cs_insn array
288 free(insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800289}
290
291// return friendly name of regiser in a string
pancakef0e4eed2013-12-11 22:14:42 +0100292const char *cs_reg_name(csh ud, unsigned int reg)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800293{
294 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
295
296 if (!handle || handle->reg_name == NULL) {
297 return NULL;
298 }
299
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800300 return handle->reg_name(ud, reg);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800301}
302
pancakef0e4eed2013-12-11 22:14:42 +0100303const char *cs_insn_name(csh ud, unsigned int insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800304{
305 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
306
307 if (!handle || handle->insn_name == NULL) {
308 return NULL;
309 }
310
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800311 return handle->insn_name(ud, insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800312}
313
Nguyen Anh Quynh70083562013-12-20 22:02:20 +0800314static bool arr_exist(unsigned char *arr, unsigned char max, unsigned int id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800315{
316 int i;
317
318 for (i = 0; i < max; i++) {
319 if (arr[i] == id)
320 return true;
321 }
322
323 return false;
324}
325
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800326bool cs_insn_group(csh ud, cs_insn *insn, unsigned int group_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800327{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800328 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800329 return false;
330
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800331 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
332
333 if (!handle->detail) {
334 handle->errnum = CS_ERR_DETAIL;
335 return false;
336 }
337
338 return arr_exist(insn->detail->groups, insn->detail->groups_count, group_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800339}
340
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800341bool cs_reg_read(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800342{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800343 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800344 return false;
345
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800346 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
347
348 if (!handle->detail) {
349 handle->errnum = CS_ERR_DETAIL;
350 return false;
351 }
352
353 return arr_exist(insn->detail->regs_read, insn->detail->regs_read_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800354}
355
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800356bool cs_reg_write(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800357{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800358 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800359 return false;
360
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800361 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
362
363 if (!handle->detail) {
364 handle->errnum = CS_ERR_DETAIL;
365 return false;
366 }
367
368 return arr_exist(insn->detail->regs_write, insn->detail->regs_write_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800369}
370
371int cs_op_count(csh ud, cs_insn *insn, unsigned int op_type)
372{
373 if (!ud)
374 return -1;
375
376 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
377 unsigned int count = 0, i;
378
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800379 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800380
381 switch (handle->arch) {
382 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800383 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800384 return -1;
385 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800386 for (i = 0; i < insn->detail->arm.op_count; i++)
387 if (insn->detail->arm.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800388 count++;
389 break;
390 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800391 for (i = 0; i < insn->detail->arm64.op_count; i++)
392 if (insn->detail->arm64.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800393 count++;
394 break;
395 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800396 for (i = 0; i < insn->detail->x86.op_count; i++)
397 if (insn->detail->x86.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800398 count++;
399 break;
400 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800401 for (i = 0; i < insn->detail->mips.op_count; i++)
402 if (insn->detail->mips.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800403 count++;
404 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800405 case CS_ARCH_PPC:
406 for (i = 0; i < insn->detail->ppc.op_count; i++)
407 if (insn->detail->ppc.operands[i].type == op_type)
408 count++;
409 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800410 }
411
412 return count;
413}
414
415int cs_op_index(csh ud, cs_insn *insn, unsigned int op_type,
416 unsigned int post)
417{
418 if (!ud)
419 return -1;
420
421 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
422 unsigned int count = 0, i;
423
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800424 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800425
426 switch (handle->arch) {
427 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800428 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800429 return -1;
430 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800431 for (i = 0; i < insn->detail->arm.op_count; i++) {
432 if (insn->detail->arm.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800433 count++;
434 if (count == post)
435 return i;
436 }
437 break;
438 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800439 for (i = 0; i < insn->detail->arm64.op_count; i++) {
440 if (insn->detail->arm64.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800441 count++;
442 if (count == post)
443 return i;
444 }
445 break;
446 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800447 for (i = 0; i < insn->detail->x86.op_count; i++) {
448 if (insn->detail->x86.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800449 count++;
450 if (count == post)
451 return i;
452 }
453 break;
454 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800455 for (i = 0; i < insn->detail->mips.op_count; i++) {
456 if (insn->detail->mips.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800457 count++;
458 if (count == post)
459 return i;
460 }
461 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800462 case CS_ARCH_PPC:
463 for (i = 0; i < insn->detail->ppc.op_count; i++) {
464 if (insn->detail->ppc.operands[i].type == op_type)
465 count++;
466 if (count == post)
467 return i;
468 }
469 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800470 }
471
472 return -1;
473}