| Modifier and Type | Field | Description |
|---|---|---|
java.util.Set<AbstractInsnNode> |
insns |
The instructions that can produce this value.
|
int |
size |
The size of this value, in 32 bits words.
|
| Constructor | Description |
|---|---|
SourceValue(int size) |
Constructs a new
SourceValue. |
SourceValue(int size,
java.util.Set<AbstractInsnNode> insnSet) |
Constructs a new
SourceValue. |
SourceValue(int size,
AbstractInsnNode insnNode) |
Constructs a new
SourceValue. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
equals(java.lang.Object value) |
|
int |
getSize() |
Returns the size of this value.
|
int |
hashCode() |
public final int size
public final java.util.Set<AbstractInsnNode> insns
1: i = 0;
2: if (...) {
3: i = 1;
4: }
5: return i;
public SourceValue(int size)
SourceValue.size - the size of this value, in 32 bits words. This size is 1 for byte, boolean, char,
short, int, float, object and array types, and 2 for long and double.public SourceValue(int size,
AbstractInsnNode insnNode)
SourceValue.size - the size of this value, in 32 bits words. This size is 1 for byte, boolean, char,
short, int, float, object and array types, and 2 for long and double.insnNode - an instruction that can produce this value.public SourceValue(int size,
java.util.Set<AbstractInsnNode> insnSet)
SourceValue.size - the size of this value, in 32 bits words. This size is 1 for byte, boolean, char,
short, int, float, object and array types, and 2 for long and double.insnSet - the instructions that can produce this value.