Package com.kenai.jnr.x86asm
Class Immediate
- java.lang.Object
-
- com.kenai.jnr.x86asm.Operand
-
- com.kenai.jnr.x86asm.Immediate
-
@Deprecated public final class Immediate extends Operand
Deprecated.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
Immediate.Cache
Deprecated.Internal cache of common native long values
-
Field Summary
Fields Modifier and Type Field Description private boolean
isUnsigned
Deprecated.private RELOC_MODE
relocMode
Deprecated.private long
value
Deprecated.
-
Constructor Summary
Constructors Constructor Description Immediate(long value, boolean isUnsigned)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description byte
byteValue()
Deprecated.static Immediate
imm(long value)
Deprecated.int
intValue()
Deprecated.boolean
isUnsigned()
Deprecated.Return true if immediate is unsigned value.long
longValue()
Deprecated.(package private) RELOC_MODE
relocMode()
Deprecated.Return relocation mode.short
shortValue()
Deprecated.static Immediate
uimm(long value)
Deprecated.long
value()
Deprecated.
-
-
-
Field Detail
-
value
private final long value
Deprecated.
-
isUnsigned
private final boolean isUnsigned
Deprecated.
-
relocMode
private final RELOC_MODE relocMode
Deprecated.
-
-
Method Detail
-
value
public long value()
Deprecated.
-
byteValue
public final byte byteValue()
Deprecated.
-
shortValue
public final short shortValue()
Deprecated.
-
intValue
public final int intValue()
Deprecated.
-
longValue
public final long longValue()
Deprecated.
-
isUnsigned
public final boolean isUnsigned()
Deprecated.Return true if immediate is unsigned value.
-
relocMode
RELOC_MODE relocMode()
Deprecated.Return relocation mode.
-
imm
public static final Immediate imm(long value)
Deprecated.
-
uimm
public static final Immediate uimm(long value)
Deprecated.
-
-