Class RelocData

java.lang.Object
com.kenai.jnr.x86asm.RelocData

@Deprecated class RelocData extends Object
Deprecated.
Reloc to absolute address data
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    (package private) static enum 
    Deprecated.
     
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (package private) final long
    Deprecated.
    Relative displacement or absolute address.
    (package private) final int
    Deprecated.
    Offset from code begin address (in the emitted code data stream).
    (package private) final int
    Deprecated.
    Size of relocation (4 or 8 bytes).
    (package private) final RelocData.Type
    Deprecated.
    Type of relocation.
  • Constructor Summary

    Constructors
    Constructor
    Description
    RelocData(RelocData.Type type, int size, int offset, long destination)
    Deprecated.
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • type

      final RelocData.Type type
      Deprecated.
      Type of relocation.
    • size

      final int size
      Deprecated.
      Size of relocation (4 or 8 bytes).
    • offset

      final int offset
      Deprecated.
      Offset from code begin address (in the emitted code data stream).
    • destination

      final long destination
      Deprecated.
      Relative displacement or absolute address.
  • Constructor Details

    • RelocData

      public RelocData(RelocData.Type type, int size, int offset, long destination)
      Deprecated.