Coverage Report

Created: 2025-08-29 06:29

/src/capstonev5/utils.c
Line
Count
Source (jump to first uncovered line)
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 <stdlib.h>
9
#endif
10
#include <string.h>
11
12
#include "utils.h"
13
14
// count number of positive members in a list.
15
// NOTE: list must be guaranteed to end in 0
16
unsigned int count_positive(const uint16_t *list)
17
3.40M
{
18
3.40M
  unsigned int c;
19
20
4.32M
  for (c = 0; list[c] > 0; c++);
21
22
3.40M
  return c;
23
3.40M
}
24
25
// count number of positive members in a list.
26
// NOTE: list must be guaranteed to end in 0
27
unsigned int count_positive8(const unsigned char *list)
28
1.70M
{
29
1.70M
  unsigned int c;
30
31
3.13M
  for (c = 0; list[c] > 0; c++);
32
33
1.70M
  return c;
34
1.70M
}
35
36
char *cs_strdup(const char *str)
37
121k
{
38
121k
  size_t len = strlen(str) + 1;
39
121k
  void *new = cs_mem_malloc(len);
40
41
121k
  if (new == NULL)
42
0
    return NULL;
43
44
121k
  return (char *)memmove(new, str, len);
45
121k
}
46
47
// we need this since Windows doesn't have snprintf()
48
int cs_snprintf(char *buffer, size_t size, const char *fmt, ...)
49
69.1k
{
50
69.1k
  int ret;
51
52
69.1k
  va_list ap;
53
69.1k
  va_start(ap, fmt);
54
69.1k
  ret = cs_vsnprintf(buffer, size, fmt, ap);
55
69.1k
  va_end(ap);
56
57
69.1k
  return ret;
58
69.1k
}
59
60
bool arr_exist8(unsigned char *arr, unsigned char max, unsigned int id)
61
0
{
62
0
  int i;
63
64
0
  for (i = 0; i < max; i++) {
65
0
    if (arr[i] == id)
66
0
      return true;
67
0
  }
68
69
0
  return false;
70
0
}
71
72
bool arr_exist(uint16_t *arr, unsigned char max, unsigned int id)
73
828k
{
74
828k
  int i;
75
76
882k
  for (i = 0; i < max; i++) {
77
123k
    if (arr[i] == id)
78
68.9k
      return true;
79
123k
  }
80
81
759k
  return false;
82
828k
}
83
84
// binary search for encoding in IndexType array
85
// return -1 if not found, or index if found
86
unsigned int binsearch_IndexTypeEncoding(const struct IndexType *index, size_t size, uint16_t encoding)
87
26.8k
{
88
  // binary searching since the index is sorted in encoding order
89
26.8k
  size_t left, right, m;
90
91
26.8k
  right = size - 1;
92
93
26.8k
  if (encoding < index[0].encoding || encoding > index[right].encoding)
94
    // not found
95
6.52k
    return -1;
96
97
20.3k
  left = 0;
98
99
99.1k
  while(left <= right) {
100
93.0k
    m = (left + right) / 2;
101
93.0k
    if (encoding == index[m].encoding) {
102
14.2k
      return m;
103
14.2k
    }
104
105
78.8k
    if (encoding < index[m].encoding)
106
35.3k
      right = m - 1;
107
43.4k
    else
108
43.4k
      left = m + 1;
109
78.8k
  }
110
111
  // not found
112
6.10k
  return -1;
113
20.3k
}
114
115
/// Reads 4 bytes in the endian order specified in MI->cs->mode.
116
uint32_t readBytes32(MCInst *MI, const uint8_t *Bytes)
117
26.6k
{
118
26.6k
  assert(MI && Bytes);
119
26.6k
  uint32_t Insn;
120
26.6k
  if (MODE_IS_BIG_ENDIAN(MI->csh->mode))
121
26.6k
    Insn = (Bytes[3] << 0) | (Bytes[2] << 8) | (Bytes[1] << 16) |
122
26.6k
           ((uint32_t)Bytes[0] << 24);
123
0
  else
124
0
    Insn = ((uint32_t)Bytes[3] << 24) | (Bytes[2] << 16) |
125
0
           (Bytes[1] << 8) | (Bytes[0] << 0);
126
26.6k
  return Insn;
127
26.6k
}
128
129
/// Reads 2 bytes in the endian order specified in MI->cs->mode.
130
uint16_t readBytes16(MCInst *MI, const uint8_t *Bytes)
131
0
{
132
0
  assert(MI && Bytes);
133
0
  uint16_t Insn;
134
0
  if (MODE_IS_BIG_ENDIAN(MI->csh->mode))
135
0
    Insn = (Bytes[0] << 8) | Bytes[1];
136
0
  else
137
0
    Insn = (Bytes[1] << 8) | Bytes[0];
138
139
0
  return Insn;
140
0
}