Uses of Class
org.objectweb.asm.tree.analysis.SourceValue

Packages that use SourceValue
org.objectweb.asm.tree.analysis Provides a framework for static code analysis based on the asm.tree package. 
 

Uses of SourceValue in org.objectweb.asm.tree.analysis
 

Methods in org.objectweb.asm.tree.analysis that return SourceValue
 SourceValue SourceInterpreter.binaryOperation(AbstractInsnNode insn, SourceValue value1, SourceValue value2)
           
 SourceValue SourceInterpreter.copyOperation(AbstractInsnNode insn, SourceValue value)
           
 SourceValue SourceInterpreter.merge(SourceValue d, SourceValue w)
           
 SourceValue SourceInterpreter.naryOperation(AbstractInsnNode insn, List<? extends SourceValue> values)
           
 SourceValue SourceInterpreter.newOperation(AbstractInsnNode insn)
           
 SourceValue SourceInterpreter.newValue(Type type)
           
 SourceValue SourceInterpreter.ternaryOperation(AbstractInsnNode insn, SourceValue value1, SourceValue value2, SourceValue value3)
           
 SourceValue SourceInterpreter.unaryOperation(AbstractInsnNode insn, SourceValue value)
           
 

Methods in org.objectweb.asm.tree.analysis with parameters of type SourceValue
 SourceValue SourceInterpreter.binaryOperation(AbstractInsnNode insn, SourceValue value1, SourceValue value2)
           
 SourceValue SourceInterpreter.copyOperation(AbstractInsnNode insn, SourceValue value)
           
 SourceValue SourceInterpreter.merge(SourceValue d, SourceValue w)
           
 void SourceInterpreter.returnOperation(AbstractInsnNode insn, SourceValue value, SourceValue expected)
           
 SourceValue SourceInterpreter.ternaryOperation(AbstractInsnNode insn, SourceValue value1, SourceValue value2, SourceValue value3)
           
 SourceValue SourceInterpreter.unaryOperation(AbstractInsnNode insn, SourceValue value)
           
 

Method parameters in org.objectweb.asm.tree.analysis with type arguments of type SourceValue
 SourceValue SourceInterpreter.naryOperation(AbstractInsnNode insn, List<? extends SourceValue> values)