Coverage Report

Created: 2026-08-14 06:51

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/capstonev5/MCInst.c
Line
Count
Source
1
/* Capstone Disassembly Engine */
2
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
3
4
#if defined(CAPSTONE_HAS_OSXKERNEL)
5
#include <Availability.h>
6
#include <libkern/libkern.h>
7
#else
8
#include <stdio.h>
9
#include <stdlib.h>
10
#endif
11
#include <string.h>
12
#include <assert.h>
13
14
#include "MCInst.h"
15
#include "utils.h"
16
17
2.76M
#define MCINST_CACHE (ARR_SIZE(mcInst->Operands) - 1)
18
19
void MCInst_Init(MCInst *inst)
20
2.57M
{
21
2.57M
  memset(inst, 0, sizeof(MCInst));
22
126M
  for (int i = 0; i < MAX_MC_OPS; ++i) {
23
123M
    inst->tied_op_idx[i] = -1;
24
123M
  }
25
2.57M
}
26
27
void MCInst_clear(MCInst *inst)
28
6.05M
{
29
6.05M
  inst->size = 0;
30
6.05M
}
31
32
// does not free @Op
33
void MCInst_insert0(MCInst *inst, int index, MCOperand *Op)
34
994k
{
35
994k
  assert(index < MAX_MC_OPS);
36
994k
  int i;
37
38
1.61M
  for(i = inst->size; i > index; i--)
39
    //memcpy(&(inst->Operands[i]), &(inst->Operands[i-1]), sizeof(MCOperand));
40
625k
    inst->Operands[i] = inst->Operands[i-1];
41
42
994k
  inst->Operands[index] = *Op;
43
994k
  inst->size++;
44
994k
}
45
46
void MCInst_setOpcode(MCInst *inst, unsigned Op)
47
5.84M
{
48
5.84M
  inst->Opcode = Op;
49
5.84M
}
50
51
void MCInst_setOpcodePub(MCInst *inst, unsigned Op)
52
158k
{
53
158k
  inst->OpcodePub = Op;
54
158k
}
55
56
unsigned MCInst_getOpcode(const MCInst *inst)
57
43.2M
{
58
43.2M
  return inst->Opcode;
59
43.2M
}
60
61
unsigned MCInst_getOpcodePub(const MCInst *inst)
62
6.04M
{
63
6.04M
  return inst->OpcodePub;
64
6.04M
}
65
66
MCOperand *MCInst_getOperand(MCInst *inst, unsigned i)
67
29.0M
{
68
29.0M
  assert(i < MAX_MC_OPS);
69
29.0M
  return &inst->Operands[i];
70
29.0M
}
71
72
unsigned MCInst_getNumOperands(const MCInst *inst)
73
11.0M
{
74
11.0M
  return inst->size;
75
11.0M
}
76
77
// This addOperand2 function doesnt free Op
78
void MCInst_addOperand2(MCInst *inst, MCOperand *Op)
79
1.82k
{
80
1.82k
  assert(inst->size < MAX_MC_OPS);
81
1.82k
  inst->Operands[inst->size] = *Op;
82
83
1.82k
  inst->size++;
84
1.82k
}
85
86
bool MCOperand_isValid(const MCOperand *op)
87
0
{
88
0
  return op->Kind != kInvalid;
89
0
}
90
91
bool MCOperand_isReg(const MCOperand *op)
92
4.40M
{
93
4.40M
  return op->Kind == kRegister;
94
4.40M
}
95
96
bool MCOperand_isImm(const MCOperand *op)
97
1.73M
{
98
1.73M
  return op->Kind == kImmediate;
99
1.73M
}
100
101
bool MCOperand_isFPImm(const MCOperand *op)
102
1.44k
{
103
1.44k
  return op->Kind == kFPImmediate;
104
1.44k
}
105
106
bool MCOperand_isDFPImm(const MCOperand *op)
107
1.47k
{
108
1.47k
  return op->Kind == kDFPImmediate;
109
1.47k
}
110
111
bool MCOperand_isExpr(const MCOperand *op)
112
153k
{
113
153k
  return op->Kind == kExpr;
114
153k
}
115
116
bool MCOperand_isInst(const MCOperand *op)
117
0
{
118
0
  return op->Kind == kInst;
119
0
}
120
121
/// getReg - Returns the register number.
122
unsigned MCOperand_getReg(const MCOperand *op)
123
19.4M
{
124
19.4M
  return op->RegVal;
125
19.4M
}
126
127
/// setReg - Set the register number.
128
void MCOperand_setReg(MCOperand *op, unsigned Reg)
129
19.8k
{
130
19.8k
  op->RegVal = Reg;
131
19.8k
}
132
133
int64_t MCOperand_getImm(MCOperand *op)
134
9.87M
{
135
9.87M
  return op->ImmVal;
136
9.87M
}
137
138
void MCOperand_setImm(MCOperand *op, int64_t Val)
139
26.5k
{
140
26.5k
  op->ImmVal = Val;
141
26.5k
}
142
143
double MCOperand_getFPImm(const MCOperand *op)
144
0
{
145
0
  return op->FPImmVal;
146
0
}
147
148
void MCOperand_setFPImm(MCOperand *op, double Val)
149
0
{
150
0
  op->FPImmVal = Val;
151
0
}
152
153
MCOperand *MCOperand_CreateReg1(MCInst *mcInst, unsigned Reg)
154
1.58M
{
155
1.58M
  MCOperand *op = &(mcInst->Operands[MCINST_CACHE]);
156
157
1.58M
  op->MachineOperandType = kRegister;
158
1.58M
  op->Kind = kRegister;
159
1.58M
  op->RegVal = Reg;
160
161
1.58M
  return op;
162
1.58M
}
163
164
void MCOperand_CreateReg0(MCInst *mcInst, unsigned Reg)
165
4.84M
{
166
4.84M
  MCOperand *op = &(mcInst->Operands[mcInst->size]);
167
4.84M
  mcInst->size++;
168
169
4.84M
  op->MachineOperandType = kRegister;
170
4.84M
  op->Kind = kRegister;
171
4.84M
  op->RegVal = Reg;
172
4.84M
}
173
174
MCOperand *MCOperand_CreateImm1(MCInst *mcInst, int64_t Val)
175
1.17M
{
176
1.17M
  MCOperand *op = &(mcInst->Operands[MCINST_CACHE]);
177
178
1.17M
  op->MachineOperandType = kImmediate;
179
1.17M
  op->Kind = kImmediate;
180
1.17M
  op->ImmVal = Val;
181
182
1.17M
  return op;
183
1.17M
}
184
185
void MCOperand_CreateImm0(MCInst *mcInst, int64_t Val)
186
2.24M
{
187
2.24M
  assert(mcInst->size < MAX_MC_OPS);
188
2.24M
  MCOperand *op = &(mcInst->Operands[mcInst->size]);
189
2.24M
  mcInst->size++;
190
191
2.24M
  op->MachineOperandType = kImmediate;
192
2.24M
  op->Kind = kImmediate;
193
2.24M
  op->ImmVal = Val;
194
2.24M
}
195
196
/// Check if any operand of the MCInstrDesc is predicable
197
bool MCInst_isPredicable(const MCInstrDesc *MIDesc)
198
900k
{
199
900k
  const MCOperandInfo *OpInfo = MIDesc->OpInfo;
200
900k
  unsigned NumOps = MIDesc->NumOperands;
201
3.94M
  for (unsigned i = 0; i < NumOps; ++i) {
202
3.88M
    if (MCOperandInfo_isPredicate(&OpInfo[i])) {
203
845k
      return true;
204
845k
    }
205
3.88M
  }
206
54.2k
  return false;
207
900k
}
208
209
/// Checks if tied operands exist in the instruction and sets
210
/// - The writeback flag in detail
211
/// - Saves the indices of the tied destination operands.
212
void MCInst_handleWriteback(MCInst *MI, const MCInstrDesc *InstDesc)
213
1.34M
{
214
1.34M
  const MCOperandInfo *OpInfo = InstDesc[MCInst_getOpcode(MI)].OpInfo;
215
1.34M
  unsigned short NumOps = InstDesc[MCInst_getOpcode(MI)].NumOperands;
216
217
1.34M
  unsigned i;
218
7.57M
  for (i = 0; i < NumOps; ++i) {
219
6.23M
    if (MCOperandInfo_isTiedToOp(&OpInfo[i])) {
220
297k
      int idx = MCOperandInfo_getOperandConstraint(
221
297k
        &InstDesc[MCInst_getOpcode(MI)], i,
222
297k
        MCOI_TIED_TO);
223
224
297k
      if (idx == -1)
225
0
        continue;
226
227
297k
      if (i >= MAX_MC_OPS) {
228
0
        assert(0 &&
229
0
               "Maximum number of MC operands reached.");
230
0
      }
231
297k
      MI->tied_op_idx[i] = idx;
232
233
297k
      if (MI->flat_insn->detail)
234
297k
        MI->flat_insn->detail->writeback = true;
235
297k
    }
236
6.23M
  }
237
1.34M
}
238
239
/// Check if operand with OpNum is tied by another operand
240
/// (operand is tying destination).
241
bool MCInst_opIsTied(const MCInst *MI, unsigned OpNum)
242
5.24M
{
243
5.24M
  assert(OpNum < MAX_MC_OPS && "Maximum number of MC operands exceeded.");
244
248M
  for (int i = 0; i < MAX_MC_OPS; ++i) {
245
243M
    if (MI->tied_op_idx[i] == OpNum)
246
186k
      return true;
247
243M
  }
248
5.05M
  return false;
249
5.24M
}
250
251
/// Check if operand with OpNum is tying another operand
252
/// (operand is tying src).
253
bool MCInst_opIsTying(const MCInst *MI, unsigned OpNum)
254
5.24M
{
255
5.24M
  assert(OpNum < MAX_MC_OPS && "Maximum number of MC operands exceeded.");
256
5.24M
  return MI->tied_op_idx[OpNum] != -1;
257
5.24M
}