Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
z
Classes
Class List
Class Hierarchy
Class Members
All
:
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Properties
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
grpc
third_party
bloaty
third_party
capstone
arch
EVM
EVMModule.c
Go to the documentation of this file.
1
/* Capstone Disassembly Engine */
2
/* By Nguyen Anh Quynh, 2018 */
3
4
#ifdef CAPSTONE_HAS_EVM
5
6
#include "../../cs_priv.h"
7
#include "
EVMDisassembler.h
"
8
#include "
EVMInstPrinter.h
"
9
#include "
EVMMapping.h
"
10
#include "
EVMModule.h
"
11
12
cs_err
EVM_global_init
(
cs_struct
*ud)
13
{
14
// verify if requested mode is valid
15
if
(ud->
mode
)
16
return
CS_ERR_MODE
;
17
18
ud->
printer
=
EVM_printInst
;
19
ud->
printer_info
= NULL;
20
ud->
insn_id
=
EVM_get_insn_id
;
21
ud->
insn_name
=
EVM_insn_name
;
22
ud->
group_name
=
EVM_group_name
;
23
ud->
disasm
=
EVM_getInstruction
;
24
25
return
CS_ERR_OK
;
26
}
27
28
cs_err
EVM_option
(
cs_struct
*
handle
,
cs_opt_type
type
,
size_t
value
)
29
{
30
return
CS_ERR_OK
;
31
}
32
33
#endif
cs_struct::mode
cs_mode mode
Definition:
cs_priv.h:53
EVM_printInst
void EVM_printInst(MCInst *MI, struct SStream *O, void *PrinterInfo)
Definition:
EVMInstPrinter.c:8
cs_opt_type
cs_opt_type
Runtime option for the disassembled engine.
Definition:
capstone.h:169
cs_struct::disasm
Disasm_t disasm
Definition:
cs_priv.h:56
EVM_option
cs_err EVM_option(cs_struct *handle, cs_opt_type type, size_t value)
EVMInstPrinter.h
cs_struct
Definition:
cs_priv.h:51
EVM_insn_name
const char * EVM_insn_name(csh handle, unsigned int id)
EVM_get_insn_id
void EVM_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id)
cs_struct::printer_info
void * printer_info
Definition:
cs_priv.h:55
capstone.CS_ERR_OK
CS_ERR_OK
Definition:
third_party/bloaty/third_party/capstone/bindings/python/capstone/__init__.py:237
EVM_getInstruction
bool EVM_getInstruction(csh ud, const uint8_t *code, size_t code_len, MCInst *MI, uint16_t *size, uint64_t address, void *inst_info)
Definition:
EVMDisassembler.c:270
cs_struct::insn_name
GetName_t insn_name
Definition:
cs_priv.h:59
cs_struct::printer
Printer_t printer
Definition:
cs_priv.h:54
EVMDisassembler.h
EVM_global_init
cs_err EVM_global_init(cs_struct *ud)
value
const char * value
Definition:
hpack_parser_table.cc:165
capstone.CS_ERR_MODE
CS_ERR_MODE
Definition:
third_party/bloaty/third_party/capstone/bindings/python/capstone/__init__.py:242
EVMModule.h
EVMMapping.h
cs_struct::insn_id
GetID_t insn_id
Definition:
cs_priv.h:61
cs_struct::group_name
GetName_t group_name
Definition:
cs_priv.h:60
EVM_group_name
const char * EVM_group_name(csh handle, unsigned int id)
handle
static csh handle
Definition:
test_arm_regression.c:16
asyncio_get_stats.type
type
Definition:
asyncio_get_stats.py:37
grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:59:16