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
ARM
ARMMapping.h
Go to the documentation of this file.
1
/* Capstone Disassembly Engine */
2
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
3
4
#ifndef CS_ARM_MAP_H
5
#define CS_ARM_MAP_H
6
7
#include "../../include/capstone/capstone.h"
8
#include "../../utils.h"
9
10
// return name of regiser in friendly string
11
const
char
*
ARM_reg_name
(
csh
handle
,
unsigned
int
reg);
12
const
char
*
ARM_reg_name2
(
csh
handle
,
unsigned
int
reg);
13
14
// given internal insn id, return public instruction ID
15
void
ARM_get_insn_id
(
cs_struct
*h, cs_insn *insn,
unsigned
int
id
);
16
17
const
char
*
ARM_insn_name
(
csh
handle
,
unsigned
int
id
);
18
19
const
char
*
ARM_group_name
(
csh
handle
,
unsigned
int
id
);
20
21
// check if this insn is relative branch
22
bool
ARM_rel_branch
(
cs_struct
*h,
unsigned
int
insn_id);
23
24
bool
ARM_blx_to_arm_mode
(
cs_struct
*h,
unsigned
int
insn_id);
25
26
uint8_t
*
ARM_get_op_access
(
cs_struct
*h,
unsigned
int
id
);
27
28
void
ARM_reg_access
(
const
cs_insn *insn,
29
cs_regs regs_read,
uint8_t
*regs_read_count,
30
cs_regs regs_write,
uint8_t
*regs_write_count);
31
32
#endif
ARM_get_op_access
uint8_t * ARM_get_op_access(cs_struct *h, unsigned int id)
ARM_rel_branch
bool ARM_rel_branch(cs_struct *h, unsigned int insn_id)
ARM_group_name
const char * ARM_group_name(csh handle, unsigned int id)
uint8_t
unsigned char uint8_t
Definition:
stdint-msvc2008.h:78
cs_struct
Definition:
cs_priv.h:51
ARM_reg_access
void ARM_reg_access(const cs_insn *insn, cs_regs regs_read, uint8_t *regs_read_count, cs_regs regs_write, uint8_t *regs_write_count)
ARM_get_insn_id
void ARM_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id)
csh
size_t csh
Definition:
capstone.h:71
ARM_blx_to_arm_mode
bool ARM_blx_to_arm_mode(cs_struct *h, unsigned int insn_id)
ARM_insn_name
const char * ARM_insn_name(csh handle, unsigned int id)
ARM_reg_name
const char * ARM_reg_name(csh handle, unsigned int reg)
handle
static csh handle
Definition:
test_arm_regression.c:16
ARM_reg_name2
const char * ARM_reg_name2(csh handle, unsigned int reg)
grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:58:34