Uses of Class
org.apache.bcel.generic.LocalVariableInstruction
Packages that use LocalVariableInstruction
Package
Description
Generic part of the Apache Byte Code Engineering Library (BCEL), classes to dynamically modify class objects
and byte code instructions.
A PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as a nice side effect.
-
Uses of LocalVariableInstruction in org.apache.bcel.generic
Subclasses of LocalVariableInstruction in org.apache.bcel.genericModifier and TypeClassDescriptionclassALOAD - Load reference from local variableclassASTORE - Store reference into local variableclassDLOAD - Load double from local variableclassDSTORE - Store double into local variableclassFLOAD - Load float from local variableclassFSTORE - Store float into local variableclassIINC - Increment local variable by constantclassILOAD - Load int from local variable onto stackclassISTORE - Store int from stack into local variableclassLLOAD - Load long from local variableclassDenotes an unparameterized instruction to load a value from a local variable, for example ILOAD.classLSTORE - Store long into local variableclassDenotes an unparameterized instruction to store a value into a local variable, for example ISTORE.Fields in org.apache.bcel.generic declared as LocalVariableInstructionModifier and TypeFieldDescriptionstatic final LocalVariableInstructionInstructionConst.ALOAD_0ALOAD_0 instruction (same as THIS).static final LocalVariableInstructionInstructionConstants.ALOAD_0Deprecated.static final LocalVariableInstructionInstructionConst.ALOAD_1ALOAD_1 instruction.static final LocalVariableInstructionInstructionConstants.ALOAD_1Deprecated.static final LocalVariableInstructionInstructionConst.ALOAD_2ALOAD_2 instruction.static final LocalVariableInstructionInstructionConstants.ALOAD_2Deprecated.static final LocalVariableInstructionInstructionConst.ASTORE_0ASTORE_0 instruction.static final LocalVariableInstructionInstructionConstants.ASTORE_0Deprecated.static final LocalVariableInstructionInstructionConst.ASTORE_1ASTORE_1 instruction.static final LocalVariableInstructionInstructionConstants.ASTORE_1Deprecated.static final LocalVariableInstructionInstructionConst.ASTORE_2ASTORE_2 instruction.static final LocalVariableInstructionInstructionConstants.ASTORE_2Deprecated.static final LocalVariableInstructionInstructionConst.ILOAD_0ILOAD_0 instruction.static final LocalVariableInstructionInstructionConstants.ILOAD_0Deprecated.static final LocalVariableInstructionInstructionConst.ILOAD_1ILOAD_1 instruction.static final LocalVariableInstructionInstructionConstants.ILOAD_1Deprecated.static final LocalVariableInstructionInstructionConst.ILOAD_2ILOAD_2 instruction.static final LocalVariableInstructionInstructionConstants.ILOAD_2Deprecated.static final LocalVariableInstructionInstructionConst.ISTORE_0ISTORE_0 instruction.static final LocalVariableInstructionInstructionConstants.ISTORE_0Deprecated.static final LocalVariableInstructionInstructionConst.ISTORE_1ISTORE_1 instruction.static final LocalVariableInstructionInstructionConstants.ISTORE_1Deprecated.static final LocalVariableInstructionInstructionConst.ISTORE_2ISTORE_2 instruction.static final LocalVariableInstructionInstructionConstants.ISTORE_2Deprecated.static final LocalVariableInstructionInstructionConst.THISYou can use these constants in multiple places safely, if you can guarantee that you will never alter their internal values, for example call setIndex().static final LocalVariableInstructionInstructionConstants.THISDeprecated.Methods in org.apache.bcel.generic that return LocalVariableInstructionModifier and TypeMethodDescriptionstatic LocalVariableInstructionInstructionFactory.createLoad(Type type, int index) Creates a load instruction for the given type.static LocalVariableInstructionInstructionFactory.createStore(Type type, int index) Creates a store instruction.Methods in org.apache.bcel.generic with parameters of type LocalVariableInstructionModifier and TypeMethodDescriptionvoidEmptyVisitor.visitLocalVariableInstruction(LocalVariableInstruction obj) voidVisitor.visitLocalVariableInstruction(LocalVariableInstruction obj) Visits a LocalVariableInstruction. -
Uses of LocalVariableInstruction in org.apache.bcel.verifier.structurals
Methods in org.apache.bcel.verifier.structurals with parameters of type LocalVariableInstructionModifier and TypeMethodDescriptionvoidInstConstraintVisitor.visitLocalVariableInstruction(LocalVariableInstruction o) Assures the generic preconditions of a LocalVariableInstruction instance.
InstructionConst.ALOAD_0.