Uses of Class
serp.bytecode.JumpInstruction
-
Packages that use JumpInstruction Package Description serp.bytecode Bytecode Manipuationserp.bytecode.visitor Bytecode Visitor -
-
Uses of JumpInstruction in serp.bytecode
Subclasses of JumpInstruction in serp.bytecode Modifier and Type Class Description classGotoInstructionAn instruction that specifies a position in the code block to jump to.classIfInstructionAn if instruction such asifnull, ifeq, etc.classLookupSwitchInstructionThelookupswitchinstruction.classSwitchInstructionContains functionality common to the different switch types (TableSwitch and LookupSwitch).classTableSwitchInstructionThetableswitchinstruction.Methods in serp.bytecode that return JumpInstruction Modifier and Type Method Description JumpInstructionCode. go2()Thego2opcode.JumpInstructionCode. jsr()Thejsropcode used in implementingfinallyclauses.JumpInstructionJumpInstruction. setTarget(Instruction instruction)Set the instruction to jump to; the instruction must already be added to the code block. -
Uses of JumpInstruction in serp.bytecode.visitor
Methods in serp.bytecode.visitor with parameters of type JumpInstruction Modifier and Type Method Description voidBCVisitor. enterJumpInstruction(JumpInstruction obj)voidPrettyPrintVisitor. enterJumpInstruction(JumpInstruction obj)voidBCVisitor. exitJumpInstruction(JumpInstruction obj)
-