MemoryOperand

data class MemoryOperand(val base: Register? = null, val index: Register? = null, val scale: Int = 1, val displacement: Long = 0, val segment: Register? = null, val access: AccessType = AccessType.INVALID) : Operand(source)

Memory operand

Constructors

Link copied to clipboard
constructor(base: Register? = null, index: Register? = null, scale: Int = 1, displacement: Long = 0, segment: Register? = null, access: AccessType = AccessType.INVALID)

Properties

Link copied to clipboard
open override val access: AccessType

Access type for this operand (read, write, or both)

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val scale: Int
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String