Package jnr.x86asm
Class RelocData
- java.lang.Object
-
- jnr.x86asm.RelocData
-
class RelocData extends java.lang.ObjectReloc to absolute address data
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classRelocData.Type
-
Field Summary
Fields Modifier and Type Field Description (package private) longdestinationRelative displacement or absolute address.(package private) intoffsetOffset from code begin address (in the emitted code data stream).(package private) intsizeSize of relocation (4 or 8 bytes).(package private) RelocData.TypetypeType of relocation.
-
Constructor Summary
Constructors Constructor Description RelocData(RelocData.Type type, int size, int offset, long destination)
-
-
-
Field Detail
-
type
final RelocData.Type type
Type of relocation.
-
size
final int size
Size of relocation (4 or 8 bytes).
-
offset
final int offset
Offset from code begin address (in the emitted code data stream).
-
destination
final long destination
Relative displacement or absolute address.
-
-
Constructor Detail
-
RelocData
public RelocData(RelocData.Type type, int size, int offset, long destination)
-
-