| java.lang.Object com.tc.asm.tree.analysis.SourceValue
SourceValue | public class SourceValue implements Value(Code) | | A
Value that is represented by its type in a two types type system.
This type system distinguishes the ONEWORD and TWOWORDS types.
author: Eric Bruneton |
Field Summary | |
final public Set | insns The instructions that can produce this value. | final public int | size The size of this value. |
insns | final public Set insns(Code) | | The instructions that can produce this value. For example, for the Java
code below, the instructions that can produce the value of i
at line 5 are the txo ISTORE instructions at line 1 and 3:
1: i = 0;
2: if (...) {
3: i = 1;
4: }
5: return i;
This field is a set of
AbstractInsnNode objects.
|
size | final public int size(Code) | | The size of this value.
|
SourceValue | public SourceValue(int size)(Code) | | |
SourceValue | public SourceValue(int size, Set insns)(Code) | | |
getSize | public int getSize()(Code) | | |
hashCode | public int hashCode()(Code) | | |
|
|