Coverage Report

Created: 2026-01-09 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/capstonenext/MCInst.c
Line
Count
Source
1
/* Capstone Disassembly Engine */
2
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
3
#if defined(CAPSTONE_HAS_OSXKERNEL)
4
#include <Availability.h>
5
#include <libkern/libkern.h>
6
#else
7
#include <stdio.h>
8
#include <stdlib.h>
9
#endif
10
#include <string.h>
11
#include <assert.h>
12
13
#include "MCInstrDesc.h"
14
#include "MCInst.h"
15
#include "utils.h"
16
17
2.81M
#define MCINST_CACHE (ARR_SIZE(mcInst->Operands) - 1)
18
19
void MCInst_Init(MCInst *inst, cs_arch arch)
20
3.20M
{
21
3.20M
  memset(inst, 0, sizeof(MCInst));
22
  // unnecessary to initialize in loop . its expensive and inst->size should be honored
23
3.20M
  inst->Operands[0].Kind = kInvalid;
24
3.20M
  inst->Operands[0].ImmVal = 0;
25
26
3.20M
  inst->Opcode = 0;
27
3.20M
  inst->OpcodePub = 0;
28
3.20M
  inst->size = 0;
29
3.20M
  inst->has_imm = false;
30
3.20M
  inst->op1_size = 0;
31
3.20M
  inst->ac_idx = 0;
32
3.20M
  inst->popcode_adjust = 0;
33
3.20M
  inst->assembly[0] = '\0';
34
3.20M
  inst->wasm_data.type = WASM_OP_INVALID;
35
3.20M
  inst->xAcquireRelease = 0;
36
157M
  for (int i = 0; i < MAX_MC_OPS; ++i)
37
154M
    inst->tied_op_idx[i] = -1;
38
3.20M
  inst->isAliasInstr = false;
39
3.20M
  inst->fillDetailOps = false;
40
3.20M
  memset(&inst->hppa_ext, 0, sizeof(inst->hppa_ext));
41
42
  // Set default assembly dialect.
43
3.20M
  switch (arch) {
44
3.06M
  default:
45
3.06M
    break;
46
3.06M
  case CS_ARCH_SYSTEMZ:
47
144k
    inst->MAI.assemblerDialect = SYSTEMZASMDIALECT_AD_HLASM;
48
144k
    break;
49
3.20M
  }
50
3.20M
}
51
52
void MCInst_clear(MCInst *inst)
53
6.67M
{
54
6.67M
  inst->size = 0;
55
6.67M
}
56
57
// does not free @Op
58
void MCInst_insert0(MCInst *inst, int index, MCOperand *Op)
59
1.79M
{
60
1.79M
  CS_ASSERT_RET(index < MAX_MC_OPS);
61
1.79M
  int i;
62
63
3.11M
  for (i = inst->size; i > index; i--)
64
    //memcpy(&(inst->Operands[i]), &(inst->Operands[i-1]), sizeof(MCOperand));
65
1.31M
    inst->Operands[i] = inst->Operands[i - 1];
66
67
1.79M
  inst->Operands[index] = *Op;
68
1.79M
  inst->size++;
69
1.79M
}
70
71
void MCInst_setOpcode(MCInst *inst, unsigned Op)
72
6.19M
{
73
6.19M
  inst->Opcode = Op;
74
6.19M
}
75
76
void MCInst_setOpcodePub(MCInst *inst, unsigned Op)
77
240k
{
78
240k
  inst->OpcodePub = Op;
79
240k
}
80
81
unsigned MCInst_getOpcode(const MCInst *inst)
82
47.2M
{
83
47.2M
  return inst->Opcode;
84
47.2M
}
85
86
unsigned MCInst_getOpcodePub(const MCInst *inst)
87
6.41M
{
88
6.41M
  return inst->OpcodePub;
89
6.41M
}
90
91
MCOperand *MCInst_getOperand(MCInst *inst, unsigned i)
92
34.7M
{
93
34.7M
  assert(i < MAX_MC_OPS);
94
34.7M
  return &inst->Operands[i];
95
34.7M
}
96
97
unsigned MCInst_getNumOperands(const MCInst *inst)
98
12.4M
{
99
12.4M
  return inst->size;
100
12.4M
}
101
102
// This addOperand2 function doesn't free Op
103
void MCInst_addOperand2(MCInst *inst, MCOperand *Op)
104
3.16k
{
105
3.16k
  CS_ASSERT_RET(inst->size < MAX_MC_OPS);
106
3.16k
  inst->Operands[inst->size] = *Op;
107
108
3.16k
  inst->size++;
109
3.16k
}
110
111
bool MCOperand_isValid(const MCOperand *op)
112
0
{
113
0
  return op->Kind != kInvalid;
114
0
}
115
116
bool MCOperand_isReg(const MCOperand *op)
117
11.0M
{
118
11.0M
  return op->Kind == kRegister || op->MachineOperandType == kRegister;
119
11.0M
}
120
121
bool MCOperand_isImm(const MCOperand *op)
122
3.29M
{
123
3.29M
  return op->Kind == kImmediate || op->MachineOperandType == kImmediate;
124
3.29M
}
125
126
bool MCOperand_isFPImm(const MCOperand *op)
127
2.35k
{
128
2.35k
  return op->Kind == kFPImmediate;
129
2.35k
}
130
131
bool MCOperand_isDFPImm(const MCOperand *op)
132
394
{
133
394
  return op->Kind == kDFPImmediate;
134
394
}
135
136
bool MCOperand_isExpr(const MCOperand *op)
137
168k
{
138
168k
  return op->Kind == kExpr;
139
168k
}
140
141
bool MCOperand_isInst(const MCOperand *op)
142
0
{
143
0
  return op->Kind == kInst;
144
0
}
145
146
/// getReg - Returns the register number.
147
unsigned MCOperand_getReg(const MCOperand *op)
148
21.7M
{
149
21.7M
  return op->RegVal;
150
21.7M
}
151
152
/// setReg - Set the register number.
153
void MCOperand_setReg(MCOperand *op, unsigned Reg)
154
26.7k
{
155
26.7k
  op->RegVal = Reg;
156
26.7k
}
157
158
int64_t MCOperand_getImm(const MCOperand *op)
159
11.4M
{
160
11.4M
  return op->ImmVal;
161
11.4M
}
162
163
int64_t MCOperand_getExpr(const MCOperand *op)
164
0
{
165
0
  return op->ImmVal;
166
0
}
167
168
void MCOperand_setImm(MCOperand *op, int64_t Val)
169
37.9k
{
170
37.9k
  op->ImmVal = Val;
171
37.9k
}
172
173
double MCOperand_getFPImm(const MCOperand *op)
174
0
{
175
0
  return op->FPImmVal;
176
0
}
177
178
void MCOperand_setFPImm(MCOperand *op, double Val)
179
0
{
180
0
  op->FPImmVal = Val;
181
0
}
182
183
MCOperand *MCOperand_CreateReg1(MCInst *mcInst, unsigned Reg)
184
1.61M
{
185
1.61M
  MCOperand *op = &(mcInst->Operands[MCINST_CACHE]);
186
187
1.61M
  op->MachineOperandType = kRegister;
188
1.61M
  op->Kind = kRegister;
189
1.61M
  op->RegVal = Reg;
190
191
1.61M
  return op;
192
1.61M
}
193
194
void MCOperand_CreateReg0(MCInst *mcInst, unsigned Reg)
195
11.9M
{
196
11.9M
  MCOperand *op = &(mcInst->Operands[mcInst->size]);
197
11.9M
  mcInst->size++;
198
199
11.9M
  op->MachineOperandType = kRegister;
200
11.9M
  op->Kind = kRegister;
201
11.9M
  op->RegVal = Reg;
202
11.9M
}
203
204
MCOperand *MCOperand_CreateImm1(MCInst *mcInst, int64_t Val)
205
1.20M
{
206
1.20M
  MCOperand *op = &(mcInst->Operands[MCINST_CACHE]);
207
208
1.20M
  op->MachineOperandType = kImmediate;
209
1.20M
  op->Kind = kImmediate;
210
1.20M
  op->ImmVal = Val;
211
212
1.20M
  return op;
213
1.20M
}
214
215
void MCOperand_CreateImm0(MCInst *mcInst, int64_t Val)
216
5.44M
{
217
5.44M
  assert(mcInst->size < MAX_MC_OPS);
218
5.44M
  MCOperand *op = &(mcInst->Operands[mcInst->size]);
219
5.44M
  mcInst->size++;
220
221
5.44M
  op->MachineOperandType = kImmediate;
222
5.44M
  op->Kind = kImmediate;
223
5.44M
  op->ImmVal = Val;
224
5.44M
}
225
226
/// Check if any operand of the MCInstrDesc is predicable
227
bool MCInst_isPredicable(const MCInstrDesc *MIDesc)
228
897k
{
229
897k
  const MCOperandInfo *OpInfo = MIDesc->OpInfo;
230
897k
  unsigned NumOps = MIDesc->NumOperands;
231
4.03M
  for (unsigned i = 0; i < NumOps; ++i) {
232
3.97M
    if (MCOperandInfo_isPredicate(&OpInfo[i])) {
233
829k
      return true;
234
829k
    }
235
3.97M
  }
236
68.0k
  return false;
237
897k
}
238
239
/// Checks if tied operands exist in the instruction and sets
240
/// - The writeback flag in detail
241
/// - Saves the indices of the tied destination operands.
242
void MCInst_handleWriteback(MCInst *MI, const MCInstrDesc *InstDescTable,
243
          unsigned tbl_size)
244
1.36M
{
245
1.36M
  const MCInstrDesc *InstDesc = NULL;
246
1.36M
  const MCOperandInfo *OpInfo = NULL;
247
1.36M
  unsigned short NumOps = 0;
248
1.36M
  InstDesc =
249
1.36M
    MCInstrDesc_get(MCInst_getOpcode(MI), InstDescTable, tbl_size);
250
1.36M
  OpInfo = InstDesc->OpInfo;
251
1.36M
  NumOps = InstDesc->NumOperands;
252
253
7.79M
  for (unsigned i = 0; i < NumOps; ++i) {
254
6.43M
    if (MCOperandInfo_isTiedToOp(&OpInfo[i])) {
255
336k
      int idx = MCOperandInfo_getOperandConstraint(
256
336k
        InstDesc, i, MCOI_TIED_TO);
257
258
336k
      if (idx == -1)
259
0
        continue;
260
261
336k
      if (i >= MAX_MC_OPS) {
262
0
        assert(0 &&
263
0
               "Maximum number of MC operands reached.");
264
0
      }
265
336k
      MI->tied_op_idx[i] = idx;
266
267
336k
      if (MI->flat_insn->detail)
268
336k
        MI->flat_insn->detail->writeback = true;
269
336k
    }
270
6.43M
  }
271
1.36M
}
272
273
/// Check if operand with OpNum is tied by another operand
274
/// (operand is tying destination).
275
bool MCInst_opIsTied(const MCInst *MI, unsigned OpNum)
276
5.68M
{
277
5.68M
  assert(OpNum < MAX_MC_OPS && "Maximum number of MC operands exceeded.");
278
268M
  for (int i = 0; i < MAX_MC_OPS; ++i) {
279
263M
    if (MI->tied_op_idx[i] == OpNum)
280
219k
      return true;
281
263M
  }
282
5.47M
  return false;
283
5.68M
}
284
285
/// Check if operand with OpNum is tying another operand
286
/// (operand is tying src).
287
bool MCInst_opIsTying(const MCInst *MI, unsigned OpNum)
288
5.70M
{
289
5.70M
  assert(OpNum < MAX_MC_OPS && "Maximum number of MC operands exceeded.");
290
5.70M
  return MI->tied_op_idx[OpNum] != -1;
291
5.70M
}
292
293
/// Returns the value of the @MCInst operand at index @OpNum.
294
uint64_t MCInst_getOpVal(MCInst *MI, unsigned OpNum)
295
5.41M
{
296
5.41M
  assert(OpNum < MAX_MC_OPS);
297
5.41M
  MCOperand *op = MCInst_getOperand(MI, OpNum);
298
5.41M
  if (MCOperand_isReg(op))
299
3.86M
    return MCOperand_getReg(op);
300
1.54M
  else if (MCOperand_isImm(op))
301
1.54M
    return MCOperand_getImm(op);
302
0
  else
303
1.54M
    assert(0 && "Operand type not handled in this getter.");
304
0
  return MCOperand_getImm(op);
305
5.41M
}
306
307
void MCInst_setIsAlias(MCInst *MI, bool Flag)
308
1.45M
{
309
1.45M
  assert(MI);
310
1.45M
  MI->isAliasInstr = Flag;
311
1.45M
  MI->flat_insn->is_alias = Flag;
312
1.45M
}
313
314
/// @brief Copies the relevant members of a temporary MCInst to
315
/// the main MCInst. This is used if TryDecode was run on a temporary MCInst.
316
/// @param MI The main MCInst
317
/// @param TmpMI The temporary MCInst.
318
void MCInst_updateWithTmpMI(MCInst *MI, MCInst *TmpMI)
319
0
{
320
0
  MI->size = TmpMI->size;
321
0
  MI->Opcode = TmpMI->Opcode;
322
0
  assert(MI->size < MAX_MC_OPS);
323
0
  memcpy(MI->Operands, TmpMI->Operands,
324
0
         sizeof(MI->Operands[0]) * MI->size);
325
0
}
326
327
/// @brief Sets the softfail/illegal flag in the cs_insn.
328
/// Setting it indicates the instruction can be decoded, but is invalid
329
/// due to not allowed operands or an illegal context.
330
///
331
/// @param MI The MCInst holding the cs_insn currently decoded.
332
void MCInst_setSoftFail(MCInst *MI)
333
106k
{
334
106k
  assert(MI && MI->flat_insn);
335
106k
  MI->flat_insn->illegal = true;
336
106k
}