org.apache.bcel.generic |
This package contains the "generic" part of the
Byte Code Engineering
Library, i.e., classes to dynamically modify class objects and
byte code instructions.
|
Java Source File Name | Type | Comment |
AALOAD.java | Class | AALOAD - Load reference from array
Stack: ..., arrayref, index -> value
version: $Id: AALOAD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
AASTORE.java | Class | AASTORE - Store into reference array
Stack: ..., arrayref, index, value -> ...
version: $Id: AASTORE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ACONST_NULL.java | Class | ACONST_NULL - Push null reference
Stack: ... |
AllocationInstruction.java | Interface | Denote family of instructions that allocates space in the heap.
version: $Id: AllocationInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ALOAD.java | Class | ALOAD - Load reference from local variable
Stack: ... |
ANEWARRAY.java | Class | ANEWARRAY - Create new array of references
Stack: ..., count -> ..., arrayref
version: $Id: ANEWARRAY.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ARETURN.java | Class | ARETURN - Return reference from method
Stack: ..., objectref -> <empty>
version: $Id: ARETURN.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ArithmeticInstruction.java | Class | Super class for the family of arithmetic instructions.
version: $Id: ArithmeticInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ArrayInstruction.java | Class | Super class for instructions dealing with array access such as IALOAD.
version: $Id: ArrayInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ARRAYLENGTH.java | Class | ARRAYLENGTH - Get length of array
Stack: ..., arrayref -> ..., length
version: $Id: ARRAYLENGTH.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ArrayType.java | Class | Denotes array type, such as int[][]
version: $Id: ArrayType.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ASTORE.java | Class | ASTORE - Store reference into local variable
Stack ..., objectref -> ... |
ATHROW.java | Class | ATHROW - Throw exception
Stack: ..., objectref -> objectref
version: $Id: ATHROW.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
BALOAD.java | Class | BALOAD - Load byte or boolean from array
Stack: ..., arrayref, index -> ..., value
version: $Id: BALOAD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
BasicType.java | Class | Denotes basic type such as int.
version: $Id: BasicType.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
BASTORE.java | Class | BASTORE - Store into byte or boolean array
Stack: ..., arrayref, index, value -> ...
version: $Id: BASTORE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
BIPUSH.java | Class | BIPUSH - Push byte on stack
Stack: ... |
BranchHandle.java | Class | BranchHandle is returned by specialized InstructionList.append() whenever a
BranchInstruction is appended. |
BranchInstruction.java | Class | Abstract super class for branching instructions like GOTO, IFEQ, etc..
Branch instructions may have a variable length, namely GOTO, JSR,
LOOKUPSWITCH and TABLESWITCH.
See Also: InstructionList version: $Id: BranchInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
BREAKPOINT.java | Class | BREAKPOINT, JVM dependent, ignored by default
version: $Id: BREAKPOINT.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
CALOAD.java | Class | CALOAD - Load char from array
Stack: ..., arrayref, index -> ..., value
version: $Id: CALOAD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
CASTORE.java | Class | CASTORE - Store into char array
Stack: ..., arrayref, index, value -> ...
version: $Id: CASTORE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
CHECKCAST.java | Class | CHECKCAST - Check whether object is of given type
Stack: ..., objectref -> ..., objectref
version: $Id: CHECKCAST.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ClassGen.java | Class | Template class for building up a java class. |
ClassGenException.java | Class | Thrown on internal errors. |
ClassObserver.java | Interface | Implement this interface if you're interested in changes to a ClassGen object
and register yourself with addObserver().
version: $Id: ClassObserver.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
CodeExceptionGen.java | Class | This class represents an exception handler, i.e., specifies the region where
a handler is active and an instruction where the actual handling is done.
pool as parameters. |
CompoundInstruction.java | Interface | Wrapper class for `compound' operations, virtual instructions that
don't exist as byte code, but give a useful meaning. |
ConstantPoolGen.java | Class | This class is used to build up a constant pool. |
ConstantPushInstruction.java | Interface | Denotes a push instruction that produces a literal on the stack
such as SIPUSH, BIPUSH, ICONST, etc.
version: $Id: ConstantPushInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ConversionInstruction.java | Class | Super class for the x2y family of instructions.
version: $Id: ConversionInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
CPInstruction.java | Class | Abstract super class for instructions that use an index into the
constant pool such as LDC, INVOKEVIRTUAL, etc.
See Also: ConstantPoolGen See Also: LDC See Also: INVOKEVIRTUAL version: $Id: CPInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
D2F.java | Class | D2F - Convert double to float
Stack: ..., value.word1, value.word2 -> ..., result
version: $Id: D2F.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
D2I.java | Class | D2I - Convert double to int
Stack: ..., value.word1, value.word2 -> ..., result
version: $Id: D2I.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
D2L.java | Class | D2L - Convert double to long
Stack: ..., value.word1, value.word2 -> ..., result.word1, result.word2
version: $Id: D2L.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DADD.java | Class | DADD - Add doubles
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result1.word2
version: $Id: DADD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DALOAD.java | Class | DALOAD - Load double from array
Stack: ..., arrayref, index -> ..., result.word1, result.word2
version: $Id: DALOAD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DASTORE.java | Class | DASTORE - Store into double array
Stack: ..., arrayref, index, value.word1, value.word2 -> ...
version: $Id: DASTORE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DCMPG.java | Class | DCMPG - Compare doubles: value1 > value2
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result
version: $Id: DCMPG.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DCMPL.java | Class | DCMPL - Compare doubles: value1 < value2
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result
version: $Id: DCMPL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DCONST.java | Class | DCONST - Push 0.0 or 1.0, other values cause an exception
Stack: ... |
DDIV.java | Class | DDIV - Divide doubles
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: DDIV.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DLOAD.java | Class | DLOAD - Load double from local variable
Stack ... |
DMUL.java | Class | DMUL - Multiply doubles
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: DMUL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DNEG.java | Class | DNEG - Negate double
Stack: ..., value.word1, value.word2 -> ..., result.word1, result.word2
version: $Id: DNEG.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DREM.java | Class | DREM - Remainder of doubles
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: DREM.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DRETURN.java | Class | DRETURN - Return double from method
Stack: ..., value.word1, value.word2 -> <empty>
version: $Id: DRETURN.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DSTORE.java | Class | DSTORE - Store double into local variable
Stack: ..., value.word1, value.word2 -> ... |
DSUB.java | Class | DSUB - Substract doubles
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: DSUB.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DUP.java | Class | DUP - Duplicate top operand stack word
Stack: ..., word -> ..., word, word
version: $Id: DUP.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DUP2.java | Class | DUP2 - Duplicate two top operand stack words
Stack: ..., word2, word1 -> ..., word2, word1, word2, word1
version: $Id: DUP2.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DUP2_X1.java | Class | DUP2_X1 - Duplicate two top operand stack words and put three down
Stack: ..., word3, word2, word1 -> ..., word2, word1, word3, word2, word1
version: $Id: DUP2_X1.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DUP2_X2.java | Class | DUP2_X2 - Duplicate two top operand stack words and put four down
Stack: ..., word4, word3, word2, word1 -> ..., word2, word1, word4, word3, word2, word1
version: $Id: DUP2_X2.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DUP_X1.java | Class | DUP_X1 - Duplicate top operand stack word and put two down
Stack: ..., word2, word1 -> ..., word1, word2, word1
version: $Id: DUP_X1.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
DUP_X2.java | Class | DUP_X2 - Duplicate top operand stack word and put three down
Stack: ..., word3, word2, word1 -> ..., word1, word3, word2, word1
version: $Id: DUP_X2.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
EmptyVisitor.java | Class | Supplies empty method bodies to be overridden by subclasses.
version: $Id: EmptyVisitor.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ExceptionThrower.java | Interface | Denote an instruction that may throw a run-time or a linking
exception (or both) during execution. |
F2D.java | Class | F2D - Convert float to double
Stack: ..., value -> ..., result.word1, result.word2
version: $Id: F2D.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
F2I.java | Class | F2I - Convert float to int
Stack: ..., value -> ..., result
version: $Id: F2I.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
F2L.java | Class | F2L - Convert float to long
Stack: ..., value -> ..., result.word1, result.word2
version: $Id: F2L.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FADD.java | Class | FADD - Add floats
Stack: ..., value1, value2 -> result
version: $Id: FADD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FALOAD.java | Class | FALOAD - Load float from array
Stack: ..., arrayref, index -> ..., value
version: $Id: FALOAD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FASTORE.java | Class | FASTORE - Store into float array
Stack: ..., arrayref, index, value -> ...
version: $Id: FASTORE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FCMPG.java | Class | FCMPG - Compare floats: value1 > value2
Stack: ..., value1, value2 -> ..., result
version: $Id: FCMPG.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FCMPL.java | Class | FCMPL - Compare floats: value1 < value2
Stack: ..., value1, value2 -> ..., result
version: $Id: FCMPL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FCONST.java | Class | FCONST - Push 0.0, 1.0 or 2.0, other values cause an exception
Stack: ... |
FDIV.java | Class | FDIV - Divide floats
Stack: ..., value1, value2 -> result
version: $Id: FDIV.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FieldGen.java | Class | Template class for building up a field. |
FieldGenOrMethodGen.java | Class | Super class for FieldGen and MethodGen objects, since they have
some methods in common!
version: $Id: FieldGenOrMethodGen.java 410087 2006-05-29 12:12:19Z tcurdt $ author: M. |
FieldInstruction.java | Class | Super class for the GET/PUTxxx family of instructions.
version: $Id: FieldInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FieldObserver.java | Interface | Imnplement this interface if you're interested in changes to a FieldGen object
and register yourself with addObserver().
version: $Id: FieldObserver.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FieldOrMethod.java | Class | Super class for InvokeInstruction and FieldInstruction, since they have
some methods in common!
version: $Id: FieldOrMethod.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FLOAD.java | Class | FLOAD - Load float from local variable
Stack ... |
FMUL.java | Class | FMUL - Multiply floats
Stack: ..., value1, value2 -> result
version: $Id: FMUL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FNEG.java | Class | FNEG - Negate float
Stack: ..., value -> ..., result
version: $Id: FNEG.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FREM.java | Class | FREM - Remainder of floats
Stack: ..., value1, value2 -> result
version: $Id: FREM.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FRETURN.java | Class | FRETURN - Return float from method
Stack: ..., value -> <empty>
version: $Id: FRETURN.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
FSTORE.java | Class | FSTORE - Store float into local variable
Stack: ..., value -> ... |
FSUB.java | Class | FSUB - Substract floats
Stack: ..., value1, value2 -> result
version: $Id: FSUB.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
GETFIELD.java | Class | GETFIELD - Fetch field from object
Stack: ..., objectref -> ..., value
OR
Stack: ..., objectref -> ..., value.word1, value.word2
version: $Id: GETFIELD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
GETSTATIC.java | Class | GETSTATIC - Fetch static field from class
Stack: ..., -> ..., value
OR
Stack: ..., -> ..., value.word1, value.word2
version: $Id: GETSTATIC.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
GOTO.java | Class | GOTO - Branch always (to relative offset, not absolute address)
version: $Id: GOTO.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
GotoInstruction.java | Class | Super class for GOTO
version: $Id: GotoInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
GOTO_W.java | Class | GOTO_W - Branch always (to relative offset, not absolute address)
version: $Id: GOTO_W.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
I2B.java | Class | I2B - Convert int to byte
Stack: ..., value -> ..., result
version: $Id: I2B.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
I2C.java | Class | I2C - Convert int to char
Stack: ..., value -> ..., result
version: $Id: I2C.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
I2D.java | Class | I2D - Convert int to double
Stack: ..., value -> ..., result.word1, result.word2
version: $Id: I2D.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
I2F.java | Class | I2F - Convert int to float
Stack: ..., value -> ..., result
version: $Id: I2F.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
I2L.java | Class | I2L - Convert int to long
Stack: ..., value -> ..., result.word1, result.word2
version: $Id: I2L.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
I2S.java | Class | I2S - Convert int to short
Stack: ..., value -> ..., result
version: $Id: I2S.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IADD.java | Class | IADD - Add ints
Stack: ..., value1, value2 -> result
version: $Id: IADD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IALOAD.java | Class | IALOAD - Load int from array
Stack: ..., arrayref, index -> ..., value
version: $Id: IALOAD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IAND.java | Class | IAND - Bitwise AND int
Stack: ..., value1, value2 -> ..., result
version: $Id: IAND.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IASTORE.java | Class | IASTORE - Store into int array
Stack: ..., arrayref, index, value -> ...
version: $Id: IASTORE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ICONST.java | Class | ICONST - Push value between -1, ..., 5, other values cause an exception
Stack: ... |
IDIV.java | Class | IDIV - Divide ints
Stack: ..., value1, value2 -> result
version: $Id: IDIV.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IFEQ.java | Class | IFEQ - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
version: $Id: IFEQ.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IFGE.java | Class | IFGE - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
version: $Id: IFGE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IFGT.java | Class | IFGT - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
version: $Id: IFGT.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IfInstruction.java | Class | Super class for the IFxxx family of instructions.
version: $Id: IfInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IFLE.java | Class | IFLE - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
version: $Id: IFLE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IFLT.java | Class | IFLT - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
version: $Id: IFLT.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IFNE.java | Class | IFNE - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
version: $Id: IFNE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IFNONNULL.java | Class | IFNONNULL - Branch if reference is not null
Stack: ..., reference -> ...
version: $Id: IFNONNULL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IFNULL.java | Class | IFNULL - Branch if reference is not null
Stack: ..., reference -> ...
version: $Id: IFNULL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IF_ACMPEQ.java | Class | IF_ACMPEQ - Branch if reference comparison succeeds
Stack: ..., value1, value2 -> ...
version: $Id: IF_ACMPEQ.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IF_ACMPNE.java | Class | IF_ACMPNE - Branch if reference comparison doesn't succeed
Stack: ..., value1, value2 -> ...
version: $Id: IF_ACMPNE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IF_ICMPEQ.java | Class | IF_ICMPEQ - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
version: $Id: IF_ICMPEQ.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IF_ICMPGE.java | Class | IF_ICMPGE - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
version: $Id: IF_ICMPGE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IF_ICMPGT.java | Class | IF_ICMPGT - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
version: $Id: IF_ICMPGT.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IF_ICMPLE.java | Class | IF_ICMPLE - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
version: $Id: IF_ICMPLE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IF_ICMPLT.java | Class | IF_ICMPLT - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
version: $Id: IF_ICMPLT.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IF_ICMPNE.java | Class | IF_ICMPNE - Branch if int comparison doesn't succeed
Stack: ..., value1, value2 -> ...
version: $Id: IF_ICMPNE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IINC.java | Class | IINC - Increment local variable by constant
version: $Id: IINC.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ILOAD.java | Class | ILOAD - Load int from local variable onto stack
Stack: ... |
IMPDEP1.java | Class | IMPDEP1 - Implementation dependent
version: $Id: IMPDEP1.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IMPDEP2.java | Class | IMPDEP2 - Implementation dependent
version: $Id: IMPDEP2.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IMUL.java | Class | IMUL - Multiply ints
Stack: ..., value1, value2 -> result
version: $Id: IMUL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IndexedInstruction.java | Interface | Denote entity that refers to an index, e.g. |
INEG.java | Class | INEG - Negate int
Stack: ..., value -> ..., result
version: $Id: INEG.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
INSTANCEOF.java | Class | INSTANCEOF - Determine if object is of given type
Stack: ..., objectref -> ..., result
version: $Id: INSTANCEOF.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
Instruction.java | Class | Abstract super class for all Java byte codes.
version: $Id: Instruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
InstructionComparator.java | Interface | Equality of instructions isn't clearly to be defined. |
InstructionConstants.java | Interface | This interface contains shareable instruction objects.
In order to save memory you can use some instructions multiply,
since they have an immutable state and are directly derived from
Instruction. |
InstructionFactory.java | Class | Instances of this class may be used, e.g., to generate typed
versions of instructions. |
InstructionHandle.java | Class | Instances of this class give users a handle to the instructions contained in
an InstructionList. |
InstructionList.java | Class | This class is a container for a list of Instruction objects. |
InstructionListObserver.java | Interface | Implement this interface if you're interested in changes to an InstructionList object
and register yourself with addObserver().
version: $Id: InstructionListObserver.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
InstructionTargeter.java | Interface | Denote that a class targets InstructionHandles within an InstructionList. |
InvokeInstruction.java | Class | Super class for the INVOKExxx family of instructions.
version: $Id: InvokeInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
INVOKEINTERFACE.java | Class | INVOKEINTERFACE - Invoke interface method
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...
version: $Id: INVOKEINTERFACE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
INVOKESPECIAL.java | Class | INVOKESPECIAL - Invoke instance method; special handling for superclass, private
and instance initialization method invocations
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...
version: $Id: INVOKESPECIAL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
INVOKESTATIC.java | Class | INVOKESTATIC - Invoke a class (static) method
Stack: ..., [arg1, [arg2 ...]] -> ...
version: $Id: INVOKESTATIC.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
INVOKEVIRTUAL.java | Class | INVOKEVIRTUAL - Invoke instance method; dispatch based on class
Stack: ..., objectref, [arg1, [arg2 ...]] -> ...
version: $Id: INVOKEVIRTUAL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IOR.java | Class | IOR - Bitwise OR int
Stack: ..., value1, value2 -> ..., result
version: $Id: IOR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IREM.java | Class | IREM - Remainder of int
Stack: ..., value1, value2 -> result
version: $Id: IREM.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IRETURN.java | Class | IRETURN - Return int from method
Stack: ..., value -> <empty>
version: $Id: IRETURN.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ISHL.java | Class | ISHL - Arithmetic shift left int
Stack: ..., value1, value2 -> ..., result
version: $Id: ISHL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ISHR.java | Class | ISHR - Arithmetic shift right int
Stack: ..., value1, value2 -> ..., result
version: $Id: ISHR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ISTORE.java | Class | ISTORE - Store int from stack into local variable
Stack: ..., value -> ... |
ISUB.java | Class | ISUB - Substract ints
Stack: ..., value1, value2 -> result
version: $Id: ISUB.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IUSHR.java | Class | IUSHR - Logical shift right int
Stack: ..., value1, value2 -> ..., result
version: $Id: IUSHR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
IXOR.java | Class | IXOR - Bitwise XOR int
Stack: ..., value1, value2 -> ..., result
version: $Id: IXOR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
JSR.java | Class | JSR - Jump to subroutine
version: $Id: JSR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
JsrInstruction.java | Class | Super class for JSR - Jump to subroutine
version: $Id: JsrInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
JSR_W.java | Class | JSR_W - Jump to subroutine
version: $Id: JSR_W.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
L2D.java | Class | L2D - Convert long to double
Stack: ..., value.word1, value.word2 -> ..., result.word1, result.word2
version: $Id: L2D.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
L2F.java | Class | L2F - Convert long to float
Stack: ..., value.word1, value.word2 -> ..., result
version: $Id: L2F.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
L2I.java | Class | L2I - Convert long to int
Stack: ..., value.word1, value.word2 -> ..., result
version: $Id: L2I.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LADD.java | Class | LADD - Add longs
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: LADD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LALOAD.java | Class | LALOAD - Load long from array
Stack: ..., arrayref, index -> ..., value1, value2
version: $Id: LALOAD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LAND.java | Class | LAND - Bitwise AND longs
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: LAND.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LASTORE.java | Class | LASTORE - Store into long array
Stack: ..., arrayref, index, value.word1, value.word2 -> ...
version: $Id: LASTORE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LCMP.java | Class | LCMP - Compare longs:
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result <= -1, 0, 1>
version: $Id: LCMP.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LCONST.java | Class | LCONST - Push 0 or 1, other values cause an exception
Stack: ... |
LDC.java | Class | LDC - Push item from constant pool.
Stack: ... |
LDC2_W.java | Class | LDC2_W - Push long or double from constant pool
Stack: ... |
LDC_W.java | Class | LDC_W - Push item from constant pool (wide index)
Stack: ... |
LDIV.java | Class | LDIV - Divide longs
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: LDIV.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LineNumberGen.java | Class | This class represents a line number within a method, i.e., give an instruction
a line number corresponding to the source code line.
version: $Id: LineNumberGen.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LLOAD.java | Class | LLOAD - Load long from local variable
Stack ... |
LMUL.java | Class | LMUL - Multiply longs
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: LMUL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LNEG.java | Class | LNEG - Negate long
Stack: ..., value.word1, value.word2 -> ..., result.word1, result.word2
version: $Id: LNEG.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LoadClass.java | Interface | Denotes that an instruction may start the process of loading and resolving
the referenced class in the Virtual Machine.
version: $Id: LoadClass.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LoadInstruction.java | Class | Denotes an unparameterized instruction to load a value from a local
variable, e.g. |
LocalVariableGen.java | Class | This class represents a local variable within a method. |
LocalVariableInstruction.java | Class | Abstract super class for instructions dealing with local variables.
version: $Id: LocalVariableInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LOOKUPSWITCH.java | Class | LOOKUPSWITCH - Switch with unordered set of values
version: $Id: LOOKUPSWITCH.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LOR.java | Class | LOR - Bitwise OR long
Stack: ..., value1, value2 -> ..., result
version: $Id: LOR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LREM.java | Class | LREM - Remainder of long
Stack: ..., value1, value2 -> result
version: $Id: LREM.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LRETURN.java | Class | LRETURN - Return long from method
Stack: ..., value.word1, value.word2 -> <empty>
version: $Id: LRETURN.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LSHL.java | Class | LSHL - Arithmetic shift left long
Stack: ..., value1.word1, value1.word2, value2 -> ..., result.word1, result.word2
version: $Id: LSHL.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LSHR.java | Class | LSHR - Arithmetic shift right long
Stack: ..., value1.word1, value1.word2, value2 -> ..., result.word1, result.word2
version: $Id: LSHR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LSTORE.java | Class | LSTORE - Store long into local variable
Stack: ..., value.word1, value.word2 -> ... |
LSUB.java | Class | LSUB - Substract longs
Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 ->
..., result.word1, result.word2
version: $Id: LSUB.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LUSHR.java | Class | LUSHR - Logical shift right long
Stack: ..., value1, value2 -> ..., result
version: $Id: LUSHR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
LXOR.java | Class | LXOR - Bitwise XOR long
Stack: ..., value1, value2 -> ..., result
version: $Id: LXOR.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
MethodGen.java | Class | Template class for building up a method. |
MethodObserver.java | Interface | Implement this interface if you're interested in changes to a MethodGen object
and register yourself with addObserver().
version: $Id: MethodObserver.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
MONITORENTER.java | Class | MONITORENTER - Enter monitor for object
Stack: ..., objectref -> ...
version: $Id: MONITORENTER.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
MONITOREXIT.java | Class | MONITOREXIT - Exit monitor for object
Stack: ..., objectref -> ...
version: $Id: MONITOREXIT.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
MULTIANEWARRAY.java | Class | MULTIANEWARRAY - Create new mutidimensional array of references
Stack: ..., count1, [count2, ...] -> ..., arrayref
version: $Id: MULTIANEWARRAY.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
NamedAndTyped.java | Interface | Denote entity that has both name and type. |
NEW.java | Class | NEW - Create new object
Stack: ... |
NEWARRAY.java | Class | NEWARRAY - Create new array of basic type (int, short, ...)
Stack: ..., count -> ..., arrayref
type must be one of T_INT, T_SHORT, ...
version: $Id: NEWARRAY.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
NOP.java | Class | NOP - Do nothing
version: $Id: NOP.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ObjectType.java | Class | Denotes reference such as java.lang.String.
version: $Id: ObjectType.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
POP.java | Class | POP - Pop top operand stack word
Stack: ..., word -> ...
version: $Id: POP.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
POP2.java | Class | POP2 - Pop two top operand stack words
Stack: ..., word2, word1 -> ...
version: $Id: POP2.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
PopInstruction.java | Interface | Denotes an unparameterized instruction to pop a value on top from the stack,
such as ISTORE, POP, PUTSTATIC.
version: $Id: PopInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
PUSH.java | Class | Wrapper class for push operations, which are implemented either as BIPUSH,
LDC or xCONST_n instructions.
version: $Id: PUSH.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
PushInstruction.java | Interface | Denotes an unparameterized instruction to produce a value on top of the stack,
such as ILOAD, LDC, SIPUSH, DUP, ICONST, etc.
version: $Id: PushInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
PUTFIELD.java | Class | PUTFIELD - Put field in object
Stack: ..., objectref, value -> ...
OR
Stack: ..., objectref, value.word1, value.word2 -> ...
version: $Id: PUTFIELD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
PUTSTATIC.java | Class | PUTSTATIC - Put static field in class
Stack: ..., value -> ...
OR
Stack: ..., value.word1, value.word2 -> ...
version: $Id: PUTSTATIC.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
ReferenceType.java | Class | Super class for object and array types.
version: $Id: ReferenceType.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
RET.java | Class | RET - Return from subroutine
Stack: ... |
RETURN.java | Class | RETURN - Return from void method
Stack: ... |
ReturnaddressType.java | Class | Returnaddress, the type JSR or JSR_W instructions push upon the stack. |
ReturnInstruction.java | Class | Super class for the xRETURN family of instructions.
version: $Id: ReturnInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
SALOAD.java | Class | SALOAD - Load short from array
Stack: ..., arrayref, index -> ..., value
version: $Id: SALOAD.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
SASTORE.java | Class | SASTORE - Store into short array
Stack: ..., arrayref, index, value -> ...
version: $Id: SASTORE.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
Select.java | Class | Select - Abstract super class for LOOKUPSWITCH and TABLESWITCH instructions.
We use our super's target property as the default target.
version: $Id: Select.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
SIPUSH.java | Class | SIPUSH - Push short
Stack: ... |
StackConsumer.java | Interface | Denote an instruction that may consume a value from the stack.
version: $Id: StackConsumer.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
StackInstruction.java | Class | Super class for stack operations like DUP and POP.
version: $Id: StackInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
StackProducer.java | Interface | Denote an instruction that may produce a value on top of the stack
(this excludes DUP_X1, e.g.)
version: $Id: StackProducer.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
StoreInstruction.java | Class | Denotes an unparameterized instruction to store a value into a local variable,
e.g. |
SWAP.java | Class | SWAP - Swa top operand stack word
Stack: ..., word2, word1 -> ..., word1, word2
version: $Id: SWAP.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
SWITCH.java | Class | SWITCH - Branch depending on int value, generates either LOOKUPSWITCH or
TABLESWITCH instruction, depending on whether the match values (int[]) can be
sorted with no gaps between the numbers.
version: $Id: SWITCH.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
TABLESWITCH.java | Class | TABLESWITCH - Switch within given range of values, i.e., low..high
version: $Id: TABLESWITCH.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
TargetLostException.java | Class | Thrown by InstructionList.remove() when one or multiple disposed instruction
are still being referenced by a InstructionTargeter object. |
Type.java | Class | Abstract super class for all possible java types, namely basic types
such as int, object types like String and array types, e.g. |
TypedInstruction.java | Interface | Get the type associated with an instruction, int for ILOAD, or the type
of the field of a PUTFIELD instruction, e.g..
version: $Id: TypedInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
UnconditionalBranch.java | Interface | Denotes an instruction to perform an unconditional branch, i.e., GOTO, JSR.
version: $Id: UnconditionalBranch.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
VariableLengthInstruction.java | Interface | Denotes an instruction to be a variable length instruction, such as
GOTO, JSR, LOOKUPSWITCH and TABLESWITCH.
version: $Id: VariableLengthInstruction.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |
Visitor.java | Interface | Interface implementing the Visitor pattern programming style.
I.e., a class that implements this interface can handle all types of
instructions with the properly typed methods just by calling the accept()
method.
version: $Id: Visitor.java 386056 2006-03-15 11:31:56Z tcurdt $ author: M. |