OpAccess¶
Operand, register and memory access
- iced_x86.OpAccess.COND_WRITE: int = 4¶
Conditional write, sometimes it’s written and sometimes it’s not modified
- iced_x86.OpAccess.NO_MEM_ACCESS: int = 7¶
The memory operand doesn’t refer to memory (eg.
LEAinstruction) or it’s an instruction that doesn’t read the data to a register or doesn’t write to the memory location, it just prefetches/invalidates it, eg.INVLPG,PREFETCHNTA,VGATHERPF0DPS, etc. Some of those instructions still check if the code can access the memory location.