Coverage Report

Created: 2023-12-08 06:05

/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
45.8k
{
10
  // NOTE: assume that the max id is always put at the end of insns array
11
45.8k
  unsigned short max_id = insns[size - 1].id;
12
45.8k
  unsigned short i;
13
14
45.8k
  unsigned short *cache =
15
45.8k
    (unsigned short *)cs_mem_calloc(max_id + 1, sizeof(*cache));
16
17
111M
  for (i = 1; i < size; i++)
18
111M
    cache[insns[i].id] = i;
19
20
45.8k
  return cache;
21
45.8k
}
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
3.56M
{
28
3.56M
  if (id > insns[max - 1].id)
29
0
    return 0;
30
31
3.56M
  if (*cache == NULL)
32
45.8k
    *cache = make_id2insn(insns, max);
33
34
3.56M
  return (*cache)[id];
35
3.56M
}
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
158k
{
41
158k
  int i;
42
43
28.2M
  for (i = 0; i < max; i++) {
44
28.2M
    if (!strcmp(map[i].name, name)) {
45
109k
      return map[i].id;
46
109k
    }
47
28.2M
  }
48
49
  // nothing match
50
48.7k
  return -1;
51
158k
}
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
5.25M
{
57
5.25M
  int i;
58
59
109M
  for (i = 0; i < max; i++) {
60
109M
    if (map[i].id == id) {
61
5.25M
      return map[i].name;
62
5.25M
    }
63
109M
  }
64
65
  // nothing match
66
0
  return NULL;
67
5.25M
}
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
385k
{
73
385k
  if (!MI->flat_insn->detail)
74
0
    return;
75
76
385k
  uint16_t *regs_write = MI->flat_insn->detail->regs_write;
77
387k
  for (int i = 0; i < MAX_IMPL_W_REGS; ++i) {
78
387k
    if (i == MI->flat_insn->detail->regs_write_count) {
79
368k
      regs_write[i] = Reg;
80
368k
      MI->flat_insn->detail->regs_write_count++;
81
368k
      return;
82
368k
    }
83
18.1k
    if (regs_write[i] == Reg)
84
16.9k
      return;
85
18.1k
  }
86
385k
}
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
1.44M
{
92
1.44M
#ifndef CAPSTONE_DIET
93
1.44M
  if (!MI->flat_insn->detail)
94
0
    return;
95
96
1.44M
  cs_detail *detail = MI->flat_insn->detail;
97
1.44M
  unsigned Opcode = MCInst_getOpcode(MI);
98
1.44M
  unsigned i = 0;
99
1.44M
  uint16_t reg = imap[Opcode].regs_use[i];
100
1.51M
  while (reg != 0) {
101
71.3k
    if (i >= MAX_IMPL_R_REGS ||
102
71.3k
        detail->regs_read_count >= MAX_IMPL_R_REGS) {
103
0
      printf("ERROR: Too many implicit read register defined in "
104
0
             "instruction mapping.\n");
105
0
      return;
106
0
    }
107
71.3k
    detail->regs_read[detail->regs_read_count++] = reg;
108
71.3k
    reg = imap[Opcode].regs_use[++i];
109
71.3k
  }
110
1.44M
#endif // CAPSTONE_DIET
111
1.44M
}
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
1.44M
{
117
1.44M
#ifndef CAPSTONE_DIET
118
1.44M
  if (!MI->flat_insn->detail)
119
0
    return;
120
121
1.44M
  cs_detail *detail = MI->flat_insn->detail;
122
1.44M
  unsigned Opcode = MCInst_getOpcode(MI);
123
1.44M
  unsigned i = 0;
124
1.44M
  uint16_t reg = imap[Opcode].regs_mod[i];
125
1.69M
  while (reg != 0) {
126
246k
    if (i >= MAX_IMPL_W_REGS ||
127
246k
        detail->regs_write_count >= MAX_IMPL_W_REGS) {
128
0
      printf("ERROR: Too many implicit write register defined in "
129
0
             "instruction mapping.\n");
130
0
      return;
131
0
    }
132
246k
    detail->regs_write[detail->regs_write_count++] = reg;
133
246k
    reg = imap[Opcode].regs_mod[++i];
134
246k
  }
135
1.44M
#endif // CAPSTONE_DIET
136
1.44M
}
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.44M
{
142
1.44M
#ifndef CAPSTONE_DIET
143
1.44M
  if (!MI->flat_insn->detail)
144
0
    return;
145
146
1.44M
  cs_detail *detail = MI->flat_insn->detail;
147
1.44M
  unsigned Opcode = MCInst_getOpcode(MI);
148
1.44M
  unsigned i = 0;
149
1.44M
  uint16_t group = imap[Opcode].groups[i];
150
3.00M
  while (group != 0) {
151
1.55M
    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.55M
    detail->groups[detail->groups_count++] = group;
156
1.55M
    group = imap[Opcode].groups[++i];
157
1.55M
  }
158
1.44M
#endif // CAPSTONE_DIET
159
1.44M
}
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.44M
{
166
  // binary searching since the IDs are sorted in order
167
1.44M
  unsigned int left, right, m;
168
1.44M
  unsigned int max = imap_size;
169
170
1.44M
  right = max - 1;
171
172
1.44M
  if (MC_Opcode < imap[0].id || MC_Opcode > imap[right].id)
173
    // not found
174
0
    return -1;
175
176
1.44M
  left = 0;
177
178
16.4M
  while (left <= right) {
179
16.4M
    m = (left + right) / 2;
180
16.4M
    if (MC_Opcode == imap[m].id) {
181
1.44M
      return m;
182
1.44M
    }
183
184
14.9M
    if (MC_Opcode < imap[m].id)
185
4.53M
      right = m - 1;
186
10.4M
    else
187
10.4M
      left = m + 1;
188
14.9M
  }
189
190
0
  return -1;
191
1.44M
}
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.44M
{
197
1.44M
  unsigned int i = find_cs_id(MCInst_getOpcode(MI), imap, imap_size);
198
1.44M
  if (i != -1) {
199
1.44M
    MI->flat_insn->id = imap[i].mapid;
200
1.44M
    return;
201
1.44M
  }
202
0
  printf("ERROR: Could not find CS id for MCInst opcode: %d\n",
203
0
         MCInst_getOpcode(MI));
204
0
  return;
205
1.44M
}
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
12.6M
{
214
12.6M
  assert(MI);
215
12.6M
  assert(MI->Opcode < map_size);
216
12.6M
  assert(OpNum < sizeof(insn_ops_map[MI->Opcode].ops) /
217
12.6M
             sizeof(insn_ops_map[MI->Opcode].ops[0]));
218
219
12.6M
  return insn_ops_map[MI->Opcode].ops[OpNum].type;
220
12.6M
}
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
4.21M
{
229
4.21M
  assert(MI);
230
4.21M
  assert(MI->Opcode < map_size);
231
4.21M
  assert(OpNum < sizeof(insn_ops_map[MI->Opcode].ops) /
232
4.21M
             sizeof(insn_ops_map[MI->Opcode].ops[0]));
233
234
4.21M
  cs_ac_type access = insn_ops_map[MI->Opcode].ops[OpNum].access;
235
4.21M
  if (MCInst_opIsTied(MI, OpNum) || MCInst_opIsTying(MI, OpNum))
236
338k
    access |= (access == CS_AC_READ) ? CS_AC_WRITE : CS_AC_READ;
237
4.21M
  return access;
238
4.21M
}
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
13.7M
  { \
245
13.7M
    if (!MI->flat_insn->detail) \
246
13.7M
      return NULL; \
247
13.7M
    int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \
248
13.7M
    assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \
249
13.7M
    return &MI->flat_insn->detail->arch.operands[OpIdx]; \
250
13.7M
  }
ARM_get_detail_op
Line
Count
Source
244
13.1M
  { \
245
13.1M
    if (!MI->flat_insn->detail) \
246
13.1M
      return NULL; \
247
13.1M
    int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \
248
13.1M
    assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \
249
13.1M
    return &MI->flat_insn->detail->arch.operands[OpIdx]; \
250
13.1M
  }
PPC_get_detail_op
Line
Count
Source
244
557k
  { \
245
557k
    if (!MI->flat_insn->detail) \
246
557k
      return NULL; \
247
557k
    int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \
248
557k
    assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \
249
557k
    return &MI->flat_insn->detail->arch.operands[OpIdx]; \
250
557k
  }
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);