Uses of Interface
edu.cmu.cs.crystal.tac.model.OneOperandInstruction

Packages that use OneOperandInstruction
edu.cmu.cs.crystal.simple This package is for creating very simple flow analyses; if you're new to flow analyses, start here. 
edu.cmu.cs.crystal.tac.model The interfaces for the three-address code (TAC) instructions and variables. 
 

Uses of OneOperandInstruction in edu.cmu.cs.crystal.simple
 

Methods in edu.cmu.cs.crystal.simple with parameters of type OneOperandInstruction
 LE AbstractingTransferFunction.transfer(OneOperandInstruction instr, LE value)
           
 

Uses of OneOperandInstruction in edu.cmu.cs.crystal.tac.model
 

Subinterfaces of OneOperandInstruction in edu.cmu.cs.crystal.tac.model
 interface CastInstruction
          x = (T) y.
 interface CopyInstruction
          x = y.
 interface InstanceofInstruction
          x = y instanceof T.
 interface UnaryOperation
          x = unop y; this class represents unary operations.