Uses of Class
org.apache.bcel.generic.StackInstruction
-
Packages that use StackInstruction 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.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 StackInstruction in org.apache.bcel.generic
Subclasses of StackInstruction in org.apache.bcel.generic Modifier and Type Class Description classDUPDUP - Duplicate top operand stack wordclassDUP_X1DUP_X1 - Duplicate top operand stack word and put two downclassDUP_X2DUP_X2 - Duplicate top operand stack word and put three downclassDUP2DUP2 - Duplicate two top operand stack wordsclassDUP2_X1DUP2_X1 - Duplicate two top operand stack words and put three downclassDUP2_X2DUP2_X2 - Duplicate two top operand stack words and put four downclassPOPPOP - Pop top operand stack wordclassPOP2POP2 - Pop two top operand stack wordsclassSWAPSWAP - Swa top operand stack wordFields in org.apache.bcel.generic declared as StackInstruction Modifier and Type Field Description static StackInstructionInstructionConst. DUPDUP instruction.static StackInstructionInstructionConstants. DUPDeprecated.UseInstructionConst.DUP.static StackInstructionInstructionConst. DUP_X1DUP_X1 instruction.static StackInstructionInstructionConstants. DUP_X1Deprecated.static StackInstructionInstructionConst. DUP_X2DUP_X2 instruction.static StackInstructionInstructionConstants. DUP_X2Deprecated.static StackInstructionInstructionConst. DUP2DUP2 instruction.static StackInstructionInstructionConstants. DUP2Deprecated.static StackInstructionInstructionConst. DUP2_X1DUP2_X1 instruction.static StackInstructionInstructionConstants. DUP2_X1Deprecated.static StackInstructionInstructionConst. DUP2_X2DUP2_X2 instruction.static StackInstructionInstructionConstants. DUP2_X2Deprecated.static StackInstructionInstructionConst. POPPOP instruction.static StackInstructionInstructionConstants. POPDeprecated.UseInstructionConst.POP.static StackInstructionInstructionConst. POP2POP2 instruction.static StackInstructionInstructionConstants. POP2Deprecated.static StackInstructionInstructionConst. SWAPSWAP instruction.static StackInstructionInstructionConstants. SWAPDeprecated.Methods in org.apache.bcel.generic that return StackInstruction Modifier and Type Method Description static StackInstructionInstructionFactory. createDup(int size)Creates a DUP instruction.static StackInstructionInstructionFactory. createDup_1(int size)Creates a DUP_X1 instruction.static StackInstructionInstructionFactory. createDup_2(int size)Creates a DUP_X2 instruction.static StackInstructionInstructionFactory. createPop(int size)Creates a pop instruction.Methods in org.apache.bcel.generic with parameters of type StackInstruction Modifier and Type Method Description voidEmptyVisitor. visitStackInstruction(StackInstruction obj)voidVisitor. visitStackInstruction(StackInstruction obj)Visits a StackInstruction. -
Uses of StackInstruction in org.apache.bcel.verifier.structurals
Methods in org.apache.bcel.verifier.structurals with parameters of type StackInstruction Modifier and Type Method Description voidInstConstraintVisitor. visitStackInstruction(StackInstruction o)Ensures the general preconditions of a StackInstruction instance.
-