enum reloc_type_x86_64 [src]
Fields
X86_64_RELOC_UNSIGNED = 0for absolute addresses
X86_64_RELOC_SIGNEDfor signed 32-bit displacement
X86_64_RELOC_BRANCHa CALL/JMP instruction with 32-bit displacement
X86_64_RELOC_GOT_LOADa MOVQ load of a GOT entry
X86_64_RELOC_GOTother GOT references
X86_64_RELOC_SUBTRACTORmust be followed by a X86_64_RELOC_UNSIGNED
X86_64_RELOC_SIGNED_1for signed 32-bit displacement with a -1 addend
X86_64_RELOC_SIGNED_2for signed 32-bit displacement with a -2 addend
X86_64_RELOC_SIGNED_4for signed 32-bit displacement with a -4 addend
X86_64_RELOC_TLVfor thread local variables
Source
pub const reloc_type_x86_64 = enum(u4) {
/// for absolute addresses
X86_64_RELOC_UNSIGNED = 0,
/// for signed 32-bit displacement
X86_64_RELOC_SIGNED,
/// a CALL/JMP instruction with 32-bit displacement
X86_64_RELOC_BRANCH,
/// a MOVQ load of a GOT entry
X86_64_RELOC_GOT_LOAD,
/// other GOT references
X86_64_RELOC_GOT,
/// must be followed by a X86_64_RELOC_UNSIGNED
X86_64_RELOC_SUBTRACTOR,
/// for signed 32-bit displacement with a -1 addend
X86_64_RELOC_SIGNED_1,
/// for signed 32-bit displacement with a -2 addend
X86_64_RELOC_SIGNED_2,
/// for signed 32-bit displacement with a -4 addend
X86_64_RELOC_SIGNED_4,
/// for thread local variables
X86_64_RELOC_TLV,
}