Uses of Class
serp.bytecode.SwitchInstruction
Packages that use SwitchInstruction
-
Uses of SwitchInstruction in serp.bytecode
Methods in serp.bytecode that return SwitchInstructionModifier and TypeMethodDescriptionSwitchInstruction.addCase
(int match, Instruction target) Add a case to this switch.abstract SwitchInstruction
SwitchInstruction.addMatch
(int match) SwitchInstruction.addTarget
(Instruction target) Add a target to this switch.SwitchInstruction.setCases
(int[] matches, Instruction[] targets) Set the match-jumppt pairs for this switch.SwitchInstruction.setDefaultOffset
(int offset) Synonymous withJumpInstruction.setOffset(int)
.SwitchInstruction.setDefaultTarget
(Instruction ins) Synonymous withJumpInstruction.setTarget(serp.bytecode.Instruction)
.SwitchInstruction.setMatches
(int[] matches) SwitchInstruction.setTargets
(Instruction[] targets) Set the jump points for this switch.