Uses of Class
org.objectweb.asm.tree.LabelNode
Packages that use LabelNode
Package
Description
Provides some useful class and method adapters.
Provides an ASM visitor that constructs a tree representation of the
classes it visits.
Provides a framework for static code analysis based on the asm.tree package.
-
Uses of LabelNode in org.objectweb.asm.commons
Fields in org.objectweb.asm.commons declared as LabelNodeModifier and TypeFieldDescription(package private) final LabelNode
JSRInlinerAdapter.Instantiation.returnLabel
The return label for this instantiation, to which all original returns will be mapped.Fields in org.objectweb.asm.commons with type parameters of type LabelNodeModifier and TypeFieldDescriptionJSRInlinerAdapter.Instantiation.clonedLabels
A map from labels from the original code to labels pointing at code specific to this instantiation, for use in remapping try/catch blocks, as well as jumps.JSRInlinerAdapter.Instantiation.clonedLabels
A map from labels from the original code to labels pointing at code specific to this instantiation, for use in remapping try/catch blocks, as well as jumps.JSRInlinerAdapter.subroutinesInsns
The instructions that belong to each subroutine.Methods in org.objectweb.asm.commons that return LabelNodeModifier and TypeMethodDescription(package private) LabelNode
JSRInlinerAdapter.Instantiation.getClonedLabel
(LabelNode labelNode) Returns the clone of the given original label that is appropriate for use by a try/catch block or a variable annotation.(package private) LabelNode
JSRInlinerAdapter.Instantiation.getClonedLabelForJumpInsn
(LabelNode labelNode) Returns the clone of the given original label that is appropriate for use in a jump instruction.Methods in org.objectweb.asm.commons that return types with arguments of type LabelNodeModifier and TypeMethodDescriptionJSRInlinerAdapter.Instantiation.entrySet()
JSRInlinerAdapter.Instantiation.entrySet()
Methods in org.objectweb.asm.commons with parameters of type LabelNodeModifier and TypeMethodDescription(package private) LabelNode
JSRInlinerAdapter.Instantiation.getClonedLabel
(LabelNode labelNode) Returns the clone of the given original label that is appropriate for use by a try/catch block or a variable annotation.(package private) LabelNode
JSRInlinerAdapter.Instantiation.getClonedLabelForJumpInsn
(LabelNode labelNode) Returns the clone of the given original label that is appropriate for use in a jump instruction. -
Uses of LabelNode in org.objectweb.asm.tree
Fields in org.objectweb.asm.tree declared as LabelNodeModifier and TypeFieldDescriptionLookupSwitchInsnNode.dflt
Beginning of the default handler block.TableSwitchInsnNode.dflt
Beginning of the default handler block.LocalVariableNode.end
The last instruction corresponding to the scope of this local variable (exclusive).TryCatchBlockNode.end
The end of the exception handler's scope (exclusive).TryCatchBlockNode.handler
The beginning of the exception handler's code.JumpInsnNode.label
The operand of this instruction.LineNumberNode.start
The first instruction corresponding to this line number.LocalVariableNode.start
The first instruction corresponding to the scope of this local variable (inclusive).TryCatchBlockNode.start
The beginning of the exception handler's scope (inclusive).Fields in org.objectweb.asm.tree with type parameters of type LabelNodeModifier and TypeFieldDescriptionLocalVariableAnnotationNode.end
The last instructions corresponding to the continuous ranges that make the scope of this local variable (exclusive).LookupSwitchInsnNode.labels
Beginnings of the handler blocks.TableSwitchInsnNode.labels
Beginnings of the handler blocks.LocalVariableAnnotationNode.start
The fist instructions corresponding to the continuous ranges that make the scope of this local variable (inclusive).Methods in org.objectweb.asm.tree that return LabelNodeModifier and TypeMethodDescription(package private) static LabelNode[]
Returns the clones of the given labels.(package private) static LabelNode
Returns the clone of the given label.protected LabelNode
MethodNode.getLabelNode
(Label label) Returns the LabelNode corresponding to the given Label.private LabelNode[]
MethodNode.getLabelNodes
(Label[] labels) Methods in org.objectweb.asm.tree with parameters of type LabelNodeModifier and TypeMethodDescription(package private) static LabelNode
Returns the clone of the given label.Method parameters in org.objectweb.asm.tree with type arguments of type LabelNodeModifier and TypeMethodDescription(package private) static LabelNode[]
Returns the clones of the given labels.(package private) static LabelNode[]
Returns the clones of the given labels.(package private) static LabelNode[]
Returns the clones of the given labels.abstract AbstractInsnNode
Returns a copy of this instruction.abstract AbstractInsnNode
Returns a copy of this instruction.(package private) static LabelNode
Returns the clone of the given label.(package private) static LabelNode
Returns the clone of the given label.Constructors in org.objectweb.asm.tree with parameters of type LabelNodeModifierConstructorDescriptionJumpInsnNode
(int opcode, LabelNode label) Constructs a newJumpInsnNode
.LineNumberNode
(int line, LabelNode start) Constructs a newLineNumberNode
.LocalVariableAnnotationNode
(int api, int typeRef, TypePath typePath, LabelNode[] start, LabelNode[] end, int[] index, String descriptor) Constructs a newLocalVariableAnnotationNode
.LocalVariableAnnotationNode
(int typeRef, TypePath typePath, LabelNode[] start, LabelNode[] end, int[] index, String descriptor) Constructs a newLocalVariableAnnotationNode
.LocalVariableNode
(String name, String descriptor, String signature, LabelNode start, LabelNode end, int index) Constructs a newLocalVariableNode
.LookupSwitchInsnNode
(LabelNode dflt, int[] keys, LabelNode[] labels) Constructs a newLookupSwitchInsnNode
.TableSwitchInsnNode
(int min, int max, LabelNode dflt, LabelNode... labels) Constructs a newTableSwitchInsnNode
.TryCatchBlockNode
(LabelNode start, LabelNode end, LabelNode handler, String type) Constructs a newTryCatchBlockNode
. -
Uses of LabelNode in org.objectweb.asm.tree.analysis
Fields in org.objectweb.asm.tree.analysis declared as LabelNodeModifier and TypeFieldDescription(package private) final LabelNode
Subroutine.start
The start of this subroutine.Methods in org.objectweb.asm.tree.analysis with parameters of type LabelNodeModifier and TypeMethodDescriptionvoid
Frame.initJumpTarget
(int opcode, LabelNode target) Initializes a frame corresponding to the target or to the successor of a jump instruction.Constructors in org.objectweb.asm.tree.analysis with parameters of type LabelNodeModifierConstructorDescription(package private)
Subroutine
(LabelNode start, int maxLocals, JumpInsnNode caller) Constructs a newSubroutine
.