Structure
PowerPCInstruction.Operand
public struct Operand: InstructionOperand
Operand for PowerPC 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. -
condition
forcrx
operands.
Relationships
Member Of
PowerPCInstruction
PowerPC Instruction
Nested Types
PowerPCInstruction.Operand.Memory
Operand value referring to memory.
PowerPCInstruction.Operand.Condition
Condition value.
Conforms To
InstructionOperand
Protocol for instruction operands.
Properties
immediateValue
var immediateValue: Int64!
Immediate value for imm
operand.
nil
when not an appropriate operand.
memory
var memory: Memory!
Base/displacement for mem
operand.
nil
when not an appropriate operand.
condition
var condition: Condition!
Condition for crx
operand.
nil
when not an appropriate operand.