blob: 01b6ba830271add1d3e07b7b4ab5c650bf88e8c2 [file] [log] [blame]
Nguyen Anh Quynh6023ef72014-04-29 11:21:04 +08001/* Capstone Disassembly Engine */
2/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08003
reverserbcf09f42015-04-09 18:28:19 +01004#if defined(CAPSTONE_HAS_OSXKERNEL)
5#include <libkern/libkern.h>
6#else
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +08007#include <stdlib.h>
reverserbcf09f42015-04-09 18:28:19 +01008#endif
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08009#include <string.h>
10
11#include "utils.h"
12
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +080013// create a cache for fast id lookup
14static unsigned short *make_id2insn(insn_map *insns, unsigned int size)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080015{
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +080016 // NOTE: assume that the max id is always put at the end of insns array
17 unsigned short max_id = insns[size - 1].id;
Alex Ionescu46018db2014-01-22 09:45:00 -080018 unsigned short i;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080019
Nguyen Anh Quynhaaddb252014-06-17 13:32:37 +080020 unsigned short *cache = (unsigned short *)cs_mem_malloc(sizeof(*cache) * (max_id + 1));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080021
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +080022 for (i = 1; i < size; i++)
23 cache[insns[i].id] = i;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080024
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +080025 return cache;
26}
27
28// look for @id in @insns, given its size in @max. first time call will update @cache.
29// return 0 if not found
30unsigned short insn_find(insn_map *insns, unsigned int max, unsigned int id, unsigned short **cache)
31{
32 if (id > insns[max - 1].id)
33 return 0;
34
35 if (*cache == NULL)
36 *cache = make_id2insn(insns, max);
37
38 return (*cache)[id];
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080039}
40
pancakef0e4eed2013-12-11 22:14:42 +010041int name2id(name_map* map, int max, const char *name)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080042{
43 int i;
44
45 for (i = 0; i < max; i++) {
Nguyen Anh Quynh19146e92014-05-28 12:41:31 +080046 if (!strcmp(map[i].name, name)) {
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080047 return map[i].id;
48 }
49 }
50
51 // nothing match
52 return -1;
53}
54
Nguyen Anh Quynhf35e2ad2013-12-03 11:10:26 +080055// count number of positive members in a list.
56// NOTE: list must be guaranteed to end in 0
Nguyen Anh Quynh18103e42013-12-20 17:35:15 +080057unsigned int count_positive(unsigned char *list)
Nguyen Anh Quynhf35e2ad2013-12-03 11:10:26 +080058{
59 unsigned int c;
60
61 for (c = 0; list[c] > 0; c++);
62
63 return c;
64}
Nguyen Anh Quynha9ffb442014-01-15 18:27:01 +080065
66char *cs_strdup(const char *str)
67{
68 size_t len = strlen(str)+ 1;
69 void *new = cs_mem_malloc(len);
70
71 if (new == NULL)
72 return NULL;
73
74 return (char *)memmove(new, str, len);
75}
Nguyen Anh Quynh4b6b15f2014-08-26 15:57:04 +080076
77// we need this since Windows doesnt have snprintf()
78int cs_snprintf(char *buffer, size_t size, const char *fmt, ...)
79{
80 int ret;
81
82 va_list ap;
83 va_start(ap, fmt);
84 ret = cs_vsnprintf(buffer, size, fmt, ap);
85 va_end(ap);
86
87 return ret;
88}