| Frames | No Frames | |
Methods with parameter type org.apache.bcel.generic.CPInstruction | |
| void | Ensures the general preconditions of a CPInstruction instance. |
Methods with parameter type org.apache.bcel.generic.CPInstruction | |
| void | |
| void | |
Classes derived from org.apache.bcel.generic.CPInstruction | |
| class | ANEWARRAY - Create new array of references
Stack: ..., count -> ..., arrayref |
| class | CHECKCAST - Check whether object is of given type
Stack: ..., objectref -> ..., objectref |
| class | Super class for the GET/PUTxxx family of instructions. |
| class | Super class for InvokeInstruction and FieldInstruction, since they have
some methods in common!
|
| class | GETFIELD - Fetch field from object
Stack: ..., objectref -> ..., valueOR Stack: ..., objectref -> ..., value.word1, value.word2 |
| class | GETSTATIC - Fetch static field from class
Stack: ..., -> ..., valueOR Stack: ..., -> ..., value.word1, value.word2 |
| class | Super class for the INVOKExxx family of instructions. |
| class | INSTANCEOF - Determine if object is of given type
Stack: ..., objectref -> ..., result |
| class | INVOKEINTERFACE - Invoke interface method
Stack: ..., objectref, [arg1, [arg2 ...]] -> ... |
| class | INVOKESPECIAL - Invoke instance method; special handling for superclass, private
and instance initialization method invocations
Stack: ..., objectref, [arg1, [arg2 ...]] -> ... |
| class | INVOKESTATIC - Invoke a class (static) method
Stack: ..., [arg1, [arg2 ...]] -> ... |
| class | INVOKEVIRTUAL - Invoke instance method; dispatch based on class
Stack: ..., objectref, [arg1, [arg2 ...]] -> ... |
| class | LDC - Push item from constant pool. |
| class | LDC2_W - Push long or double from constant pool
Stack: ... |
| class | LDC_W - Push item from constant pool (wide index)
Stack: ... |
| class | MULTIANEWARRAY - Create new mutidimensional array of references
Stack: ..., count1, [count2, ...] -> ..., arrayref |
| class | NEW - Create new object
Stack: ... |
| class | PUTFIELD - Put field in object
Stack: ..., objectref, value -> ... |
| class | PUTSTATIC - Put static field in class
Stack: ..., value -> ... |