Package com.kenai.jnr.x86asm
Class Label
- java.lang.Object
-
- com.kenai.jnr.x86asm.Operand
-
- com.kenai.jnr.x86asm.Label
-
@Deprecated public final class Label extends Operand
Deprecated.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) int
id
Deprecated.Label Id (0 means unknown).(package private) java.util.List<LinkData>
links
Deprecated.(package private) int
position
Deprecated.Position (always positive, information depends to @c state).(package private) LABEL_STATE
state
Deprecated.State of label, seeLABEL_STATE
.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description (package private) boolean
isBound()
Deprecated.Returns @c true if label is bound.(package private) boolean
isLinked()
Deprecated.Returns @c true if label is linked.(package private) boolean
isUnused()
Deprecated.Returns @c true if label is unused (not bound or linked).(package private) void
link(LinkData link)
Deprecated.(package private) int
position()
Deprecated.Returns the position of bound or linked labels, -1 if label is unused.
-
-
-
Field Detail
-
id
final int id
Deprecated.Label Id (0 means unknown).
-
state
LABEL_STATE state
Deprecated.State of label, seeLABEL_STATE
.
-
position
int position
Deprecated.Position (always positive, information depends to @c state).
-
links
final java.util.List<LinkData> links
Deprecated.
-
-
Method Detail
-
isUnused
final boolean isUnused()
Deprecated.Returns @c true if label is unused (not bound or linked).
-
isLinked
final boolean isLinked()
Deprecated.Returns @c true if label is linked.
-
isBound
final boolean isBound()
Deprecated.Returns @c true if label is bound.
-
position
final int position()
Deprecated.Returns the position of bound or linked labels, -1 if label is unused.
-
link
final void link(LinkData link)
Deprecated.
-
-