Uses of Class
serp.bytecode.TypedInstruction
-
Packages that use TypedInstruction Package Description serp.bytecode Bytecode Manipuation -
-
Uses of TypedInstruction in serp.bytecode
Subclasses of TypedInstruction in serp.bytecode Modifier and Type Class Description classArrayInstructionAny array load or store instruction.classArrayLoadInstructionLoads a value from an array onto the stack.classArrayStoreInstructionStore a value from the stack into an array.classClassInstructionAn instruction that takes as an argument a class to operate on.classCmpInstructionAn instruction comparing two stack values.classConstantInstructionAn instruction that that loads a constant onto the stack.classConvertInstructionA conversion opcode such asi2l, f2i, etc.classIIncInstructionTheiincinstruction.classLoadInstructionLoads a value from the locals table to the stack.classLocalVariableInstructionAn instruction that has an argument of an index into the local variable table of the current frame.classMathInstructionOne of the math operations defined in theConstantsinterface.classMultiANewArrayInstructionThemultianewarrayinstruction, which creates a new multi-dimensional array.classNewArrayInstructionThenewarrayinstruction, which is used to create new arrays of primitive types.classRetInstructionTheretinstruction is used in the implementation of finally.classReturnInstructionReturns a value (or void) from a method.classStackInstructionRepresents an instruction that manipulates the stack of the current frame.classStoreInstructionAn instruction to store a value from a local variable onto the stack.classWideInstructionThewideinstruction, which is used to allow other instructions to index values beyond what they can normally index baed on the length of their arguments.Methods in serp.bytecode that return TypedInstruction Modifier and Type Method Description TypedInstructionArrayLoadInstruction. setType(java.lang.String type)TypedInstructionArrayStoreInstruction. setType(java.lang.String type)TypedInstructionClassInstruction. setType(java.lang.String type)TypedInstructionCmpInstruction. setType(java.lang.String type)TypedInstructionConstantInstruction. setType(java.lang.String type)TypedInstructionConvertInstruction. setType(java.lang.String type)TypedInstructionLoadInstruction. setType(java.lang.String type)TypedInstructionLocalVariableInstruction. setType(java.lang.String type)TypedInstructionMathInstruction. setType(java.lang.String type)TypedInstructionNewArrayInstruction. setType(java.lang.String type)TypedInstructionReturnInstruction. setType(java.lang.String type)TypedInstructionStackInstruction. setType(java.lang.String type)TypedInstructionStoreInstruction. setType(java.lang.String type)TypedInstructionTypedInstruction. setType(java.lang.Class type)Set the type of this instruction.abstract TypedInstructionTypedInstruction. setType(java.lang.String type)Set the type of this instruction.TypedInstructionTypedInstruction. setType(BCClass type)Set the type of this instruction.TypedInstructionWideInstruction. setType(java.lang.String type)
-