Coverage Report

Created: 2025-07-01 07:03

/src/capstonenext/arch/EVM/EVMInstPrinter.c
Line
Count
Source
1
/* Capstone Disassembly Engine */
2
/* By Nguyen Anh Quynh, 2018 */
3
4
#include "EVMInstPrinter.h"
5
#include "EVMMapping.h"
6
7
8
void EVM_printInst(MCInst *MI, struct SStream *O, void *PrinterInfo)
9
19.3k
{
10
19.3k
  SStream_concat0(O, EVM_insn_name((csh)MI->csh, MI->Opcode));
11
12
19.3k
  if (MI->Opcode >= EVM_INS_PUSH1 && MI->Opcode <= EVM_INS_PUSH32) {
13
616
    unsigned int i;
14
15
616
    SStream_concat0(O, "\t");
16
7.26k
    for (i = 0; i < MI->Opcode - EVM_INS_PUSH1 + 1; i++) {
17
6.64k
      SStream_concat(O, "%02x", MI->evm_data[i]);
18
6.64k
    }
19
616
  }
20
19.3k
}