/src/capstonev5/Mapping.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* Capstone Disassembly Engine */ |
2 | | /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */ |
3 | | /* Rot127 <unisono@quyllur.org>, 2022-2023 */ |
4 | | |
5 | | #include "Mapping.h" |
6 | | |
7 | | // create a cache for fast id lookup |
8 | | static unsigned short *make_id2insn(const insn_map *insns, unsigned int size) |
9 | 32.0k | { |
10 | | // NOTE: assume that the max id is always put at the end of insns array |
11 | 32.0k | unsigned short max_id = insns[size - 1].id; |
12 | 32.0k | unsigned int i; |
13 | | |
14 | 32.0k | unsigned short *cache = |
15 | 32.0k | (unsigned short *)cs_mem_calloc(max_id + 1, sizeof(*cache)); |
16 | | |
17 | 81.1M | for (i = 1; i < size; i++) |
18 | 81.1M | cache[insns[i].id] = i; |
19 | | |
20 | 32.0k | return cache; |
21 | 32.0k | } |
22 | | |
23 | | // look for @id in @insns, given its size in @max. first time call will update |
24 | | // @cache. return 0 if not found |
25 | | unsigned short insn_find(const insn_map *insns, unsigned int max, |
26 | | unsigned int id, unsigned short **cache) |
27 | 2.40M | { |
28 | 2.40M | if (id > insns[max - 1].id) |
29 | 0 | return 0; |
30 | | |
31 | 2.40M | if (*cache == NULL) |
32 | 32.0k | *cache = make_id2insn(insns, max); |
33 | | |
34 | 2.40M | return (*cache)[id]; |
35 | 2.40M | } |
36 | | |
37 | | // Gives the id for the given @name if it is saved in @map. |
38 | | // Returns the id or -1 if not found. |
39 | | int name2id(const name_map *map, int max, const char *name) |
40 | 48.4k | { |
41 | 48.4k | int i; |
42 | | |
43 | 10.2M | for (i = 0; i < max; i++) { |
44 | 10.2M | if (!strcmp(map[i].name, name)) { |
45 | 29.6k | return map[i].id; |
46 | 29.6k | } |
47 | 10.2M | } |
48 | | |
49 | | // nothing match |
50 | 18.7k | return -1; |
51 | 48.4k | } |
52 | | |
53 | | // Gives the name for the given @id if it is saved in @map. |
54 | | // Returns the name or NULL if not found. |
55 | | const char *id2name(const name_map *map, int max, const unsigned int id) |
56 | 4.01M | { |
57 | 4.01M | int i; |
58 | | |
59 | 120M | for (i = 0; i < max; i++) { |
60 | 120M | if (map[i].id == id) { |
61 | 4.01M | return map[i].name; |
62 | 4.01M | } |
63 | 120M | } |
64 | | |
65 | | // nothing match |
66 | 6.98k | return NULL; |
67 | 4.01M | } |
68 | | |
69 | | /// Adds a register to the implicit write register list. |
70 | | /// It will not add the same register twice. |
71 | | void map_add_implicit_write(MCInst *MI, uint32_t Reg) |
72 | 266k | { |
73 | 266k | if (!MI->flat_insn->detail) |
74 | 0 | return; |
75 | | |
76 | 266k | uint16_t *regs_write = MI->flat_insn->detail->regs_write; |
77 | 269k | for (int i = 0; i < MAX_IMPL_W_REGS; ++i) { |
78 | 269k | if (i == MI->flat_insn->detail->regs_write_count) { |
79 | 255k | regs_write[i] = Reg; |
80 | 255k | MI->flat_insn->detail->regs_write_count++; |
81 | 255k | return; |
82 | 255k | } |
83 | 13.5k | if (regs_write[i] == Reg) |
84 | 11.1k | return; |
85 | 13.5k | } |
86 | 266k | } |
87 | | |
88 | | /// Copies the implicit read registers of @imap to @MI->flat_insn. |
89 | | /// Already present registers will be preserved. |
90 | | void map_implicit_reads(MCInst *MI, const insn_map *imap) |
91 | | { |
92 | | #ifndef CAPSTONE_DIET |
93 | | if (!MI->flat_insn->detail) |
94 | | return; |
95 | | |
96 | | cs_detail *detail = MI->flat_insn->detail; |
97 | | unsigned Opcode = MCInst_getOpcode(MI); |
98 | | unsigned i = 0; |
99 | | uint16_t reg = imap[Opcode].regs_use[i]; |
100 | | while (reg != 0) { |
101 | | if (i >= MAX_IMPL_R_REGS || |
102 | | detail->regs_read_count >= MAX_IMPL_R_REGS) { |
103 | | printf("ERROR: Too many implicit read register defined in " |
104 | | "instruction mapping.\n"); |
105 | | return; |
106 | | } |
107 | | detail->regs_read[detail->regs_read_count++] = reg; |
108 | | reg = imap[Opcode].regs_use[++i]; |
109 | | } |
110 | | #endif // CAPSTONE_DIET |
111 | | } |
112 | | |
113 | | /// Copies the implicit write registers of @imap to @MI->flat_insn. |
114 | | /// Already present registers will be preserved. |
115 | | void map_implicit_writes(MCInst *MI, const insn_map *imap) |
116 | | { |
117 | | #ifndef CAPSTONE_DIET |
118 | | if (!MI->flat_insn->detail) |
119 | | return; |
120 | | |
121 | | cs_detail *detail = MI->flat_insn->detail; |
122 | | unsigned Opcode = MCInst_getOpcode(MI); |
123 | | unsigned i = 0; |
124 | | uint16_t reg = imap[Opcode].regs_mod[i]; |
125 | | while (reg != 0) { |
126 | | if (i >= MAX_IMPL_W_REGS || |
127 | | detail->regs_write_count >= MAX_IMPL_W_REGS) { |
128 | | printf("ERROR: Too many implicit write register defined in " |
129 | | "instruction mapping.\n"); |
130 | | return; |
131 | | } |
132 | | detail->regs_write[detail->regs_write_count++] = reg; |
133 | | reg = imap[Opcode].regs_mod[++i]; |
134 | | } |
135 | | #endif // CAPSTONE_DIET |
136 | | } |
137 | | |
138 | | /// Copies the groups from @imap to @MI->flat_insn. |
139 | | /// Already present groups will be preserved. |
140 | | void map_groups(MCInst *MI, const insn_map *imap) |
141 | 1.26M | { |
142 | 1.26M | #ifndef CAPSTONE_DIET |
143 | 1.26M | if (!MI->flat_insn->detail) |
144 | 0 | return; |
145 | | |
146 | 1.26M | cs_detail *detail = MI->flat_insn->detail; |
147 | 1.26M | unsigned Opcode = MCInst_getOpcode(MI); |
148 | 1.26M | unsigned i = 0; |
149 | 1.26M | uint16_t group = imap[Opcode].groups[i]; |
150 | 2.72M | while (group != 0) { |
151 | 1.45M | if (detail->groups_count >= MAX_NUM_GROUPS) { |
152 | 0 | printf("ERROR: Too many groups defined in instruction mapping.\n"); |
153 | 0 | return; |
154 | 0 | } |
155 | 1.45M | detail->groups[detail->groups_count++] = group; |
156 | 1.45M | group = imap[Opcode].groups[++i]; |
157 | 1.45M | } |
158 | 1.26M | #endif // CAPSTONE_DIET |
159 | 1.26M | } |
160 | | |
161 | | // Search for the CS instruction id for the given @MC_Opcode in @imap. |
162 | | // return -1 if none is found. |
163 | | unsigned int find_cs_id(unsigned MC_Opcode, const insn_map *imap, |
164 | | unsigned imap_size) |
165 | 1.26M | { |
166 | | // binary searching since the IDs are sorted in order |
167 | 1.26M | unsigned int left, right, m; |
168 | 1.26M | unsigned int max = imap_size; |
169 | | |
170 | 1.26M | right = max - 1; |
171 | | |
172 | 1.26M | if (MC_Opcode < imap[0].id || MC_Opcode > imap[right].id) |
173 | | // not found |
174 | 0 | return -1; |
175 | | |
176 | 1.26M | left = 0; |
177 | | |
178 | 14.2M | while (left <= right) { |
179 | 14.2M | m = (left + right) / 2; |
180 | 14.2M | if (MC_Opcode == imap[m].id) { |
181 | 1.26M | return m; |
182 | 1.26M | } |
183 | | |
184 | 13.0M | if (MC_Opcode < imap[m].id) |
185 | 4.46M | right = m - 1; |
186 | 8.55M | else |
187 | 8.55M | left = m + 1; |
188 | 13.0M | } |
189 | | |
190 | 0 | return -1; |
191 | 1.26M | } |
192 | | |
193 | | /// Sets the Capstone instruction id which maps to the @MI opcode. |
194 | | /// If no mapping is found the function returns and prints an error. |
195 | | void map_cs_id(MCInst *MI, const insn_map *imap, unsigned int imap_size) |
196 | 1.26M | { |
197 | 1.26M | unsigned int i = find_cs_id(MCInst_getOpcode(MI), imap, imap_size); |
198 | 1.26M | if (i != -1) { |
199 | 1.26M | MI->flat_insn->id = imap[i].mapid; |
200 | 1.26M | return; |
201 | 1.26M | } |
202 | 0 | printf("ERROR: Could not find CS id for MCInst opcode: %d\n", |
203 | 0 | MCInst_getOpcode(MI)); |
204 | 0 | return; |
205 | 1.26M | } |
206 | | |
207 | | /// Returns the operand type information from the |
208 | | /// mapping table for instruction operands. |
209 | | /// Only usable by `auto-sync` archs! |
210 | | const cs_op_type mapping_get_op_type(MCInst *MI, unsigned OpNum, |
211 | | const map_insn_ops *insn_ops_map, |
212 | | size_t map_size) |
213 | 4.71M | { |
214 | 4.71M | assert(MI); |
215 | 4.71M | assert(MI->Opcode < map_size); |
216 | 4.71M | assert(OpNum < sizeof(insn_ops_map[MI->Opcode].ops) / |
217 | 4.71M | sizeof(insn_ops_map[MI->Opcode].ops[0])); |
218 | | |
219 | 4.71M | return insn_ops_map[MI->Opcode].ops[OpNum].type; |
220 | 4.71M | } |
221 | | |
222 | | /// Returns the operand access flags from the |
223 | | /// mapping table for instruction operands. |
224 | | /// Only usable by `auto-sync` archs! |
225 | | const cs_ac_type mapping_get_op_access(MCInst *MI, unsigned OpNum, |
226 | | const map_insn_ops *insn_ops_map, |
227 | | size_t map_size) |
228 | 3.75M | { |
229 | 3.75M | assert(MI); |
230 | 3.75M | assert(MI->Opcode < map_size); |
231 | 3.75M | assert(OpNum < sizeof(insn_ops_map[MI->Opcode].ops) / |
232 | 3.75M | sizeof(insn_ops_map[MI->Opcode].ops[0])); |
233 | | |
234 | 3.75M | cs_ac_type access = insn_ops_map[MI->Opcode].ops[OpNum].access; |
235 | 3.75M | if (MCInst_opIsTied(MI, OpNum) || MCInst_opIsTying(MI, OpNum)) |
236 | 253k | access |= (access == CS_AC_READ) ? CS_AC_WRITE : CS_AC_READ; |
237 | 3.75M | return access; |
238 | 3.75M | } |
239 | | |
240 | | /// Returns the operand at detail->arch.operands[op_count + offset] |
241 | | /// Or NULL if detail is not set. |
242 | | #define DEFINE_get_detail_op(arch, ARCH) \ |
243 | | cs_##arch##_op *ARCH##_get_detail_op(MCInst *MI, int offset) \ |
244 | 8.93M | { \ |
245 | 8.93M | if (!MI->flat_insn->detail) \ |
246 | 8.93M | return NULL; \ |
247 | 8.93M | int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \ |
248 | 8.93M | assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \ |
249 | 8.93M | return &MI->flat_insn->detail->arch.operands[OpIdx]; \ |
250 | 8.93M | } Line | Count | Source | 244 | 8.51M | { \ | 245 | 8.51M | if (!MI->flat_insn->detail) \ | 246 | 8.51M | return NULL; \ | 247 | 8.51M | int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \ | 248 | 8.51M | assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \ | 249 | 8.51M | return &MI->flat_insn->detail->arch.operands[OpIdx]; \ | 250 | 8.51M | } |
Line | Count | Source | 244 | 416k | { \ | 245 | 416k | if (!MI->flat_insn->detail) \ | 246 | 416k | return NULL; \ | 247 | 416k | int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \ | 248 | 416k | assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \ | 249 | 416k | return &MI->flat_insn->detail->arch.operands[OpIdx]; \ | 250 | 416k | } |
Unexecuted instantiation: TriCore_get_detail_op |
251 | | |
252 | | DEFINE_get_detail_op(arm, ARM); |
253 | | DEFINE_get_detail_op(ppc, PPC); |
254 | | DEFINE_get_detail_op(tricore, TriCore); |