Structure
SparcInstruction.Operand
public struct Operand: InstructionOperand
Operand for SPARC instructions.
The operand's value can be accessed by the value
property, or by a property corresponding to the operand's type:
-
register
orregisters
forreg
operands. -
immediateValue
forimm
operands. -
memory
formem
operands.
Relationships
Member Of
SparcInstruction
SPARC Instruction
Nested Types
SparcInstruction.Operand.Memory
Operand value referring to memory.
Conforms To
InstructionOperand
Protocol for instruction operands.
Properties
register
var register: SparcReg!
Register value for reg
operand.
nil
when not an appropriate operand.
immediateValue
var immediateValue: Int64!
Immediate value for imm
operand.
nil
when not an appropriate operand.
memory
var memory: Memory!
Base/index/displacement value for mem
operand.
nil
when not an appropriate operand.