| Frames | No Frames | |
Methods with parameter type org.apache.bcel.generic.StackInstruction | |
| void | Ensures the general preconditions of a StackInstruction instance. |
Fields of type org.apache.bcel.generic.StackInstruction | |
| StackInstruction | |
| StackInstruction | |
| StackInstruction | |
| StackInstruction | |
| StackInstruction | |
| StackInstruction | |
| StackInstruction | |
| StackInstruction | |
| StackInstruction | |
Methods with return type org.apache.bcel.generic.StackInstruction | |
| StackInstruction | InstructionFactory.createDup(int size) |
| StackInstruction | InstructionFactory.createDup_1(int size) |
| StackInstruction | InstructionFactory.createDup_2(int size) |
| StackInstruction | InstructionFactory.createPop(int size) |
Methods with parameter type org.apache.bcel.generic.StackInstruction | |
| void | |
| void | |
Classes derived from org.apache.bcel.generic.StackInstruction | |
| class | DUP - Duplicate top operand stack word
Stack: ..., word -> ..., word, word |
| class | DUP2 - Duplicate two top operand stack words
Stack: ..., word2, word1 -> ..., word2, word1, word2, word1 |
| class | DUP2_X1 - Duplicate two top operand stack words and put three down
Stack: ..., word3, word2, word1 -> ..., word2, word1, word3, word2, word1 |
| class | DUP2_X2 - Duplicate two top operand stack words and put four down
Stack: ..., word4, word3, word2, word1 -> ..., word2, word1, word4, word3, word2, word1 |
| class | DUP_X1 - Duplicate top operand stack word and put two down
Stack: ..., word2, word1 -> ..., word1, word2, word1 |
| class | DUP_X2 - Duplicate top operand stack word and put three down
Stack: ..., word3, word2, word1 -> ..., word1, word3, word2, word1 |
| class | POP - Pop top operand stack word
Stack: ..., word -> ... |
| class | POP2 - Pop two top operand stack words
Stack: ..., word2, word1 -> ... |
| class | SWAP - Swa top operand stack word
Stack: ..., word2, word1 -> ..., word1, word2 |