| Modifier and Type | Field | Description |
|---|---|---|
Set<AbstractInsnNode> |
insns |
The instructions that can produce this value.
|
int |
size |
The size of this value.
|
| Constructor | Description |
|---|---|
SourceValue(int size) |
|
SourceValue(int size,
Set<AbstractInsnNode> insns) |
|
SourceValue(int size,
AbstractInsnNode insn) |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
equals(Object value) |
|
int |
getSize() |
Returns the size of this value in words.
|
int |
hashCode() |
public final int size
public final Set<AbstractInsnNode> insns
1: i = 0;
2: if (...) {
3: i = 1;
4: }
5: return i;
This field is a set of AbstractInsnNode objects.public SourceValue(int size)
public SourceValue(int size,
AbstractInsnNode insn)
public SourceValue(int size,
Set<AbstractInsnNode> insns)
public int getSize()
Value