reloc.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. #define LDSO_ARCH "x32"
  2. /* FIXME: x32 is very strange in its use of 64-bit relocation types in
  3. * a 32-bit environment. As long as the memory at reloc_addr is
  4. * zero-filled prior to relocations, just treating 64-bit relocations
  5. * as operating on 32-bit slots should be fine, but this should be
  6. * checked. In particular, R_X86_64_64, R_X86_64_DTPOFF64, and
  7. * R_X86_64_TPOFF64 may need checking. */
  8. /* The R_X86_64_64, R_X86_64_DTPOFF32, and R_X86_64_TPOFF32 reloc types
  9. * were previously mapped in the switch table form of this file; however,
  10. * they do not seem to be used/usable for anything. If needed, new
  11. * mappings will have to be added. */
  12. #define REL_SYMBOLIC R_X86_64_32
  13. #define REL_OFFSET R_X86_64_PC32
  14. #define REL_GOT R_X86_64_GLOB_DAT
  15. #define REL_PLT R_X86_64_JUMP_SLOT
  16. #define REL_RELATIVE R_X86_64_RELATIVE
  17. #define REL_COPY R_X86_64_COPY
  18. #define REL_DTPMOD R_X86_64_DTPMOD64
  19. #define REL_DTPOFF R_X86_64_DTPOFF64
  20. #define REL_TPOFF R_X86_64_TPOFF64
  21. #define CRTJMP(pc,sp) __asm__ __volatile__( \
  22. "mov %1,%%esp ; jmp *%0" : : "r"((uint64_t)(uintptr_t)pc), "r"(sp) : "memory" )
  23. #define GETFUNCSYM(fp, sym, got) __asm__ ( \
  24. ".hidden " #sym "\n" \
  25. " lea " #sym "(%%rip),%0\n" \
  26. : "=r"(*fp) : : "memory" )