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

Packages that use ReturnInstruction
edu.cmu.cs.crystal.analysis.constant   
edu.cmu.cs.crystal.analysis.live   
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 This package contains classes and interfaces for writing flow analyses based on three-address code (TAC). 
edu.cmu.cs.crystal.tac.eclipse An internal package for creating three address code nodes based on the Eclipse AST. 
 

Uses of ReturnInstruction in edu.cmu.cs.crystal.analysis.constant
 

Methods in edu.cmu.cs.crystal.analysis.constant with parameters of type ReturnInstruction
 IResult<TupleLatticeElement<Variable,BooleanConstantLE>> ConstantTransferFunction.transfer(ReturnInstruction instr, List<ILabel> labels, TupleLatticeElement<Variable,BooleanConstantLE> value)
           
 

Uses of ReturnInstruction in edu.cmu.cs.crystal.analysis.live
 

Methods in edu.cmu.cs.crystal.analysis.live with parameters of type ReturnInstruction
 TupleLatticeElement<Variable,LiveVariableLE> LiveVariableTransferFunction.transfer(ReturnInstruction instr, TupleLatticeElement<Variable,LiveVariableLE> value)
           
 

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

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

Uses of ReturnInstruction in edu.cmu.cs.crystal.tac
 

Methods in edu.cmu.cs.crystal.tac with parameters of type ReturnInstruction
 LE ITACTransferFunction.transfer(ReturnInstruction instr, LE value)
           
 IResult<LE> ITACBranchSensitiveTransferFunction.transfer(ReturnInstruction instr, List<ILabel> labels, LE value)
           
 IResult<LE> AbstractTACBranchSensitiveTransferFunction.transfer(ReturnInstruction instr, List<ILabel> labels, LE value)
           
 void SimpleInstructionVisitor.visit(ReturnInstruction instr)
           
 

Uses of ReturnInstruction in edu.cmu.cs.crystal.tac.eclipse
 

Classes in edu.cmu.cs.crystal.tac.eclipse that implement ReturnInstruction
 class ReturnInstructionImpl