MemoryCopy
public struct MemoryCopy : Instruction
Copies the memory representation of the value stored source to target.
-
The operands of the instruction.
Declaration
Swift
public private(set) var operands: [Operand] { get } -
The site of the code corresponding to that instruction.
Declaration
Swift
public let site: SourceRange -
Creates an instance with the given properties.
-
The storage from which bytes are read.
Declaration
Swift
public var source: Operand { get } -
The storage to which bytes are written.
Declaration
Swift
public var target: Operand { get } -
Declaration
Swift
public mutating func replaceOperand(at i: Int, with new: Operand)
View on GitHub