Uses of Class
io.ebean.enhance.asm.Label
| Package | Description |
|---|---|
| io.ebean.enhance.asm |
Provides a small and fast bytecode manipulation framework.
|
| io.ebean.enhance.asm.commons |
Provides some useful class and method adapters.
|
-
Uses of Label in io.ebean.enhance.asm
Methods in io.ebean.enhance.asm with parameters of type Label Modifier and Type Method Description voidMethodVisitor. visitJumpInsn(int opcode, Label label)Visits a jump instruction.voidMethodVisitor. visitLabel(Label label)Visits a label.voidMethodVisitor. visitLineNumber(int line, Label start)Visits a line number declaration.voidMethodVisitor. visitLocalVariable(String name, String descriptor, String signature, Label start, Label end, int index)Visits a local variable declaration.AnnotationVisitorMethodVisitor. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, String descriptor, boolean visible)Visits an annotation on a local variable type.voidMethodVisitor. visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels)Visits a LOOKUPSWITCH instruction.voidMethodVisitor. visitTableSwitchInsn(int min, int max, Label dflt, Label... labels)Visits a TABLESWITCH instruction.voidMethodVisitor. visitTryCatchBlock(Label start, Label end, Label handler, String type)Visits a try catch block. -
Uses of Label in io.ebean.enhance.asm.commons
Methods in io.ebean.enhance.asm.commons that return Label Modifier and Type Method Description LabelGeneratorAdapter. mark()Marks the current code position with a new label.LabelGeneratorAdapter. newLabel()Constructs a newLabel.Methods in io.ebean.enhance.asm.commons with parameters of type Label Modifier and Type Method Description voidGeneratorAdapter. catchException(Label start, Label end, Type exception)Marks the start of an exception handler.voidTableSwitchGenerator. generateCase(int key, Label end)Generates the code for a switch case.voidGeneratorAdapter. goTo(Label label)Generates the instruction to jump to the given label.voidInstructionAdapter. goTo(Label label)voidInstructionAdapter. ifacmpeq(Label label)voidInstructionAdapter. ifacmpne(Label label)voidGeneratorAdapter. ifCmp(Type type, int mode, Label label)Generates the instructions to jump to a label based on the comparison of the top two stack values.voidInstructionAdapter. ifeq(Label label)voidInstructionAdapter. ifge(Label label)voidInstructionAdapter. ifgt(Label label)voidGeneratorAdapter. ifICmp(int mode, Label label)Generates the instructions to jump to a label based on the comparison of the top two integer stack values.voidInstructionAdapter. ificmpeq(Label label)voidInstructionAdapter. ificmpge(Label label)voidInstructionAdapter. ificmpgt(Label label)voidInstructionAdapter. ificmple(Label label)voidInstructionAdapter. ificmplt(Label label)voidInstructionAdapter. ificmpne(Label label)voidInstructionAdapter. ifle(Label label)voidInstructionAdapter. iflt(Label label)voidInstructionAdapter. ifne(Label label)voidInstructionAdapter. ifnonnull(Label label)voidGeneratorAdapter. ifNonNull(Label label)Generates the instruction to jump to the given label if the top stack value is not null.voidInstructionAdapter. ifnull(Label label)voidGeneratorAdapter. ifNull(Label label)Generates the instruction to jump to the given label if the top stack value is null.voidGeneratorAdapter. ifZCmp(int mode, Label label)Generates the instructions to jump to a label based on the comparison of the top integer stack value with zero.voidInstructionAdapter. jsr(Label label)voidInstructionAdapter. lookupswitch(Label dflt, int[] keys, Label[] labels)voidGeneratorAdapter. mark(Label label)Marks the current code position with the given label.voidInstructionAdapter. mark(Label label)voidInstructionAdapter. tableswitch(int min, int max, Label dflt, Label... labels)voidAdviceAdapter. visitJumpInsn(int opcode, Label label)voidInstructionAdapter. visitJumpInsn(int opcode, Label label)voidAdviceAdapter. visitLabel(Label label)voidInstructionAdapter. visitLabel(Label label)voidLocalVariablesSorter. visitLocalVariable(String name, String descriptor, String signature, Label start, Label end, int index)AnnotationVisitorLocalVariablesSorter. visitLocalVariableAnnotation(int typeRef, TypePath typePath, Label[] start, Label[] end, int[] index, String descriptor, boolean visible)voidAdviceAdapter. visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels)voidInstructionAdapter. visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels)voidAdviceAdapter. visitTableSwitchInsn(int min, int max, Label dflt, Label... labels)voidInstructionAdapter. visitTableSwitchInsn(int min, int max, Label dflt, Label... labels)voidAdviceAdapter. visitTryCatchBlock(Label start, Label end, Label handler, String type)