Package | Description |
---|---|
org.jboss.classfilewriter.code |
Modifier and Type | Field and Description |
---|---|
private java.util.List<StackEntry> |
StackState.contents
The contents of the stack
|
private java.util.List<StackEntry> |
LocalVariableState.contents
The contents, null is used to represent the additional spot taken up by a wide variable.
|
Modifier and Type | Method and Description |
---|---|
StackEntry |
LocalVariableState.get(int index) |
static StackEntry |
StackEntry.of(java.lang.String descriptor,
ConstPool pool) |
StackEntry |
StackState.top_1() |
StackEntry |
StackState.top_2() |
StackEntry |
StackState.top_3() |
StackEntry |
StackState.top() |
Modifier and Type | Method and Description |
---|---|
java.util.List<StackEntry> |
StackState.getContents() |
java.util.List<StackEntry> |
LocalVariableState.getContents() |
Modifier and Type | Method and Description |
---|---|
StackState |
StackState.constructorCall(int initializedValueStackPosition,
StackEntry entry) |
LocalVariableState |
LocalVariableState.constructorCall(StackEntry entry) |
private StackState |
StackState.newStack(StackEntry... pushValues) |
StackState |
StackState.push(StackEntry entry)
push a type on to the top of the stack
|
StackFrame |
StackFrame.push(StackEntry entry)
push an operand of the given type onto the stack.
|
LocalVariableState |
LocalVariableState.store(int index,
StackEntry entry) |
LocalVariableState |
LocalVariableState.storeWide(int index,
StackEntry entry) |
Constructor and Description |
---|
LocalVariableState(java.util.List<StackEntry> contents,
ConstPool constPool) |
StackState(java.util.List<StackEntry> contents,
ConstPool constPool) |