Coverage Report

Created: 2025-07-18 06:43

/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
40.2k
{
10
  // NOTE: assume that the max id is always put at the end of insns array
11
40.2k
  unsigned short max_id = insns[size - 1].id;
12
40.2k
  unsigned int i;
13
14
40.2k
  unsigned short *cache =
15
40.2k
    (unsigned short *)cs_mem_calloc(max_id + 1, sizeof(*cache));
16
17
100M
  for (i = 1; i < size; i++)
18
100M
    cache[insns[i].id] = i;
19
20
40.2k
  return cache;
21
40.2k
}
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.43M
{
28
3.43M
  if (id > insns[max - 1].id)
29
0
    return 0;
30
31
3.43M
  if (*cache == NULL)
32
40.2k
    *cache = make_id2insn(insns, max);
33
34
3.43M
  return (*cache)[id];
35
3.43M
}
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
67.9k
{
41
67.9k
  int i;
42
43
12.0M
  for (i = 0; i < max; i++) {
44
12.0M
    if (!strcmp(map[i].name, name)) {
45
39.2k
      return map[i].id;
46
39.2k
    }
47
12.0M
  }
48
49
  // nothing match
50
28.6k
  return -1;
51
67.9k
}
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.34M
{
57
5.34M
  int i;
58
59
172M
  for (i = 0; i < max; i++) {
60
172M
    if (map[i].id == id) {
61
5.33M
      return map[i].name;
62
5.33M
    }
63
172M
  }
64
65
  // nothing match
66
9.00k
  return NULL;
67
5.34M
}
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
448k
{
73
448k
  if (!MI->flat_insn->detail)
74
0
    return;
75
76
448k
  uint16_t *regs_write = MI->flat_insn->detail->regs_write;
77
454k
  for (int i = 0; i < MAX_IMPL_W_REGS; ++i) {
78
454k
    if (i == MI->flat_insn->detail->regs_write_count) {
79
428k
      regs_write[i] = Reg;
80
428k
      MI->flat_insn->detail->regs_write_count++;
81
428k
      return;
82
428k
    }
83
26.2k
    if (regs_write[i] == Reg)
84
20.2k
      return;
85
26.2k
  }
86
448k
}
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
2.01M
{
142
2.01M
#ifndef CAPSTONE_DIET
143
2.01M
  if (!MI->flat_insn->detail)
144
0
    return;
145
146
2.01M
  cs_detail *detail = MI->flat_insn->detail;
147
2.01M
  unsigned Opcode = MCInst_getOpcode(MI);
148
2.01M
  unsigned i = 0;
149
2.01M
  uint16_t group = imap[Opcode].groups[i];
150
4.29M
  while (group != 0) {
151
2.28M
    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
2.28M
    detail->groups[detail->groups_count++] = group;
156
2.28M
    group = imap[Opcode].groups[++i];
157
2.28M
  }
158
2.01M
#endif // CAPSTONE_DIET
159
2.01M
}
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
2.01M
{
166
  // binary searching since the IDs are sorted in order
167
2.01M
  unsigned int left, right, m;
168
2.01M
  unsigned int max = imap_size;
169
170
2.01M
  right = max - 1;
171
172
2.01M
  if (MC_Opcode < imap[0].id || MC_Opcode > imap[right].id)
173
    // not found
174
0
    return -1;
175
176
2.01M
  left = 0;
177
178
22.6M
  while (left <= right) {
179
22.6M
    m = (left + right) / 2;
180
22.6M
    if (MC_Opcode == imap[m].id) {
181
2.01M
      return m;
182
2.01M
    }
183
184
20.6M
    if (MC_Opcode < imap[m].id)
185
7.29M
      right = m - 1;
186
13.3M
    else
187
13.3M
      left = m + 1;
188
20.6M
  }
189
190
0
  return -1;
191
2.01M
}
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
2.01M
{
197
2.01M
  unsigned int i = find_cs_id(MCInst_getOpcode(MI), imap, imap_size);
198
2.01M
  if (i != -1) {
199
2.01M
    MI->flat_insn->id = imap[i].mapid;
200
2.01M
    return;
201
2.01M
  }
202
0
  printf("ERROR: Could not find CS id for MCInst opcode: %d\n",
203
0
         MCInst_getOpcode(MI));
204
0
  return;
205
2.01M
}
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
7.61M
{
214
7.61M
  assert(MI);
215
7.61M
  assert(MI->Opcode < map_size);
216
7.61M
  assert(OpNum < sizeof(insn_ops_map[MI->Opcode].ops) /
217
7.61M
             sizeof(insn_ops_map[MI->Opcode].ops[0]));
218
219
7.61M
  return insn_ops_map[MI->Opcode].ops[OpNum].type;
220
7.61M
}
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
6.03M
{
229
6.03M
  assert(MI);
230
6.03M
  assert(MI->Opcode < map_size);
231
6.03M
  assert(OpNum < sizeof(insn_ops_map[MI->Opcode].ops) /
232
6.03M
             sizeof(insn_ops_map[MI->Opcode].ops[0]));
233
234
6.03M
  cs_ac_type access = insn_ops_map[MI->Opcode].ops[OpNum].access;
235
6.03M
  if (MCInst_opIsTied(MI, OpNum) || MCInst_opIsTying(MI, OpNum))
236
465k
    access |= (access == CS_AC_READ) ? CS_AC_WRITE : CS_AC_READ;
237
6.03M
  return access;
238
6.03M
}
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
14.1M
  { \
245
14.1M
    if (!MI->flat_insn->detail) \
246
14.1M
      return NULL; \
247
14.1M
    int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \
248
14.1M
    assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \
249
14.1M
    return &MI->flat_insn->detail->arch.operands[OpIdx]; \
250
14.1M
  }
ARM_get_detail_op
Line
Count
Source
244
13.5M
  { \
245
13.5M
    if (!MI->flat_insn->detail) \
246
13.5M
      return NULL; \
247
13.5M
    int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \
248
13.5M
    assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \
249
13.5M
    return &MI->flat_insn->detail->arch.operands[OpIdx]; \
250
13.5M
  }
PPC_get_detail_op
Line
Count
Source
244
653k
  { \
245
653k
    if (!MI->flat_insn->detail) \
246
653k
      return NULL; \
247
653k
    int OpIdx = MI->flat_insn->detail->arch.op_count + offset; \
248
653k
    assert(OpIdx >= 0 && OpIdx < MAX_MC_OPS); \
249
653k
    return &MI->flat_insn->detail->arch.operands[OpIdx]; \
250
653k
  }
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);