Coverage Report

Created: 2023-12-08 06:05

/src/capstonenext/arch/WASM/WASMInstPrinter.c
Line
Count
Source (jump to first uncovered line)
1
/* Capstone Disassembly Engine */
2
/* By Spike, xwings  2019 */
3
4
#include "WASMInstPrinter.h"
5
#include "WASMMapping.h"
6
7
8
void WASM_printInst(MCInst *MI, struct SStream *O, void *PrinterInfo)
9
75.1k
{
10
75.1k
  SStream_concat(O, WASM_insn_name((csh)MI->csh, MI->Opcode));
11
12
75.1k
  switch (MI->wasm_data.type) {
13
58.6k
    default:
14
58.6k
      break;
15
16
58.6k
    case WASM_OP_VARUINT32:
17
3.71k
      SStream_concat(O, "\t0x%x", MI->wasm_data.varuint32);
18
3.71k
      break;
19
20
445
    case WASM_OP_VARUINT64:
21
445
      SStream_concat(O, "\t0x%lx", MI->wasm_data.varuint64);
22
445
      break;
23
24
219
    case WASM_OP_UINT32:
25
219
      SStream_concat(O, "\t0x%2" PRIx32, MI->wasm_data.uint32);
26
219
      break;
27
28
312
    case WASM_OP_UINT64:
29
312
      SStream_concat(O, "\t0x%2" PRIx64, MI->wasm_data.uint64);
30
312
      break;
31
32
9.83k
    case WASM_OP_IMM:
33
9.83k
      SStream_concat(O, "\t0x%x, 0x%x", MI->wasm_data.immediate[0], MI->wasm_data.immediate[1]);
34
9.83k
      break;
35
36
1.19k
    case WASM_OP_INT7:
37
1.19k
      SStream_concat(O, "\t%d", MI->wasm_data.int7);
38
1.19k
      break;
39
40
721
    case WASM_OP_BRTABLE:
41
721
      SStream_concat(O, "\t0x%x, [", MI->wasm_data.brtable.length);
42
721
      SStream_concat(O, "0x%x", MI->wasm_data.brtable.address);
43
721
      SStream_concat(O, "], 0x%x", MI->wasm_data.brtable.default_target);
44
45
721
      break;
46
75.1k
  }
47
75.1k
}