Uses of Interface
org.norecess.citkit.lir.LIROperand

Packages that use LIROperand
org.norecess.citkit.lir.expressions   
org.norecess.citkit.lir.instructions   
org.norecess.citkit.lir.operands   
 

Uses of LIROperand in org.norecess.citkit.lir.expressions
 

Methods in org.norecess.citkit.lir.expressions that return LIROperand
 LIROperand LIRBinaryExpression.getLeft()
           
 LIROperand LIRUnaryExpression.getOperand()
           
 LIROperand LIROperandExpression.getOperand()
           
 LIROperand LIRBinaryExpression.getRight()
           
 

Constructors in org.norecess.citkit.lir.expressions with parameters of type LIROperand
LIRBinaryExpression(LIROperand left, LIRBinaryExpression.BinaryOperator operator, LIROperand right)
           
LIROperandExpression(LIROperand operand)
           
LIRUnaryExpression(LIRUnaryExpression.UnaryOperator operator, LIROperand operand)
           
 

Uses of LIROperand in org.norecess.citkit.lir.instructions
 

Methods in org.norecess.citkit.lir.instructions that return LIROperand
 LIROperand LIRConditionalAssignment.getOperand()
           
 LIROperand LIRStore.getOperand()
           
 LIROperand LIRReturn.getResult()
           
 

Constructors in org.norecess.citkit.lir.instructions with parameters of type LIROperand
LIRConditionalAssignment(LIRRegister target, LIRRegister condition, LIROperand operand)
           
LIRReturn(LIROperand result)
           
LIRStore(LIRMemoryAddress address, LIROperand operand)
           
 

Uses of LIROperand in org.norecess.citkit.lir.operands
 

Classes in org.norecess.citkit.lir.operands that implement LIROperand
 class LIRInteger
           
 class LIRRegisterOperand