Uses of Class
org.apache.bcel.generic.LocalVariableInstruction
-
Packages that use LocalVariableInstruction Package Description org.apache.bcel.generic Generic part of the Apache Byte Code Engineering Library (BCEL), classes to dynamically modify class objects and byte code instructions.org.apache.bcel.util Utility classes for the Apache Byte Code Engineering Library (BCEL), namely: Collection classes for JavaClass objects A converter for class files to HTML A tool to find instructions patterns via regular expressions A class to find classes as defined in the CLASSPATH A class loader that allows to create classes at run timeorg.apache.bcel.verifier.structurals 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.generic Modifier and Type Class Description classALOADALOAD - Load reference from local variableclassASTOREASTORE - Store reference into local variableclassDLOADDLOAD - Load double from local variableclassDSTOREDSTORE - Store double into local variableclassFLOADFLOAD - Load float from local variableclassFSTOREFSTORE - Store float into local variableclassIINCIINC - Increment local variable by constantclassILOADILOAD - Load int from local variable onto stackclassISTOREISTORE - Store int from stack into local variableclassLLOADLLOAD - Load long from local variableclassLoadInstructionDenotes an unparameterized instruction to load a value from a local variable, for example ILOAD.classLSTORELSTORE - Store long into local variableclassStoreInstructionDenotes an unparameterized instruction to store a value into a local variable, for example ISTORE.Fields in org.apache.bcel.generic declared as LocalVariableInstruction Modifier and Type Field Description static LocalVariableInstructionInstructionConst. ALOAD_0ALOAD_0 instruction (same as THIS).static LocalVariableInstructionInstructionConstants. ALOAD_0Deprecated.static LocalVariableInstructionInstructionConst. ALOAD_1ALOAD_1 instruction.static LocalVariableInstructionInstructionConstants. ALOAD_1Deprecated.static LocalVariableInstructionInstructionConst. ALOAD_2ALOAD_2 instruction.static LocalVariableInstructionInstructionConstants. ALOAD_2Deprecated.static LocalVariableInstructionInstructionConst. ASTORE_0ASTORE_0 instruction.static LocalVariableInstructionInstructionConstants. ASTORE_0Deprecated.static LocalVariableInstructionInstructionConst. ASTORE_1ASTORE_1 instruction.static LocalVariableInstructionInstructionConstants. ASTORE_1Deprecated.static LocalVariableInstructionInstructionConst. ASTORE_2ASTORE_2 instruction.static LocalVariableInstructionInstructionConstants. ASTORE_2Deprecated.static LocalVariableInstructionInstructionConst. ILOAD_0ILOAD_0 instruction.static LocalVariableInstructionInstructionConstants. ILOAD_0Deprecated.static LocalVariableInstructionInstructionConst. ILOAD_1ILOAD_1 instruction.static LocalVariableInstructionInstructionConstants. ILOAD_1Deprecated.static LocalVariableInstructionInstructionConst. ILOAD_2ILOAD_2 instruction.static LocalVariableInstructionInstructionConstants. ILOAD_2Deprecated.static LocalVariableInstructionInstructionConst. ISTORE_0ISTORE_0 instruction.static LocalVariableInstructionInstructionConstants. ISTORE_0Deprecated.static LocalVariableInstructionInstructionConst. ISTORE_1ISTORE_1 instruction.static LocalVariableInstructionInstructionConstants. ISTORE_1Deprecated.static LocalVariableInstructionInstructionConst. ISTORE_2ISTORE_2 instruction.static LocalVariableInstructionInstructionConstants. ISTORE_2Deprecated.static 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 LocalVariableInstructionInstructionConstants. THISDeprecated.Methods in org.apache.bcel.generic that return LocalVariableInstruction Modifier and Type Method Description static 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 LocalVariableInstruction Modifier and Type Method Description voidEmptyVisitor. visitLocalVariableInstruction(LocalVariableInstruction obj)voidVisitor. visitLocalVariableInstruction(LocalVariableInstruction obj)Visits a LocalVariableInstruction. -
Uses of LocalVariableInstruction in org.apache.bcel.util
Methods in org.apache.bcel.util with parameters of type LocalVariableInstruction Modifier and Type Method Description voidBCELFactory. visitLocalVariableInstruction(LocalVariableInstruction i) -
Uses of LocalVariableInstruction in org.apache.bcel.verifier.structurals
Methods in org.apache.bcel.verifier.structurals with parameters of type LocalVariableInstruction Modifier and Type Method Description voidInstConstraintVisitor. visitLocalVariableInstruction(LocalVariableInstruction o)Assures the generic preconditions of a LocalVariableInstruction instance.
-