Handbook
Glossary
ZydisDecodedOperandValueUnion
Vocabulary
tools
.
disassembler
.
zydis
Definition
USING:
classes.struct
;
IN:
tools.disassembler.zydis
UNION-STRUCT:
ZydisDecodedOperandValueUnion
{
reg
ZydisDecodedOperandReg
initial:
S{
ZydisDecodedOperandReg
{
value 0
}
}
}
{
mem
ZydisDecodedOperandMem
initial:
S{
ZydisDecodedOperandMem
{
type 0
}
{
segment 0
}
{
base 0
}
{
index 0
}
{
scale 0
}
{
disp
S{
ZydisDecodedOperandMemDisp
{
has_displacement 0
}
{
value 0
}
}
}
}
}
{
ptr
ZydisDecodedOperandPtr
initial:
S{
ZydisDecodedOperandPtr
{
segment 0
}
{
offset 0
}
}
}
{
imm
ZydisDecodedOperandImm
initial:
S{
ZydisDecodedOperandImm
{
is_signed 0
}
{
is_relative 0
}
{
value
S{
ZydisDecodedOperandImmValue
{
u 0
}
{
s 0
}
}
}
}
}
;
Methods
USING:
classes.struct
classes.struct.private
kernel
tools.disassembler.zydis
;
M:
ZydisDecodedOperandValueUnion
clone
clone-underlying
\
ZydisDecodedOperandValueUnion
memory>struct
;
inline
USING:
accessors
classes.struct
combinators.smart
tools.disassembler.zydis
;
M:
ZydisDecodedOperandValueUnion
struct-slot-values
{
[
reg>>
]
[
mem>>
]
[
ptr>>
]
[
imm>>
]
}
cleave>array
;
inline