[PATCH] [RuntimeDyldELF] Improve GOT support

Keno Fischer kfischer at college.harvard.edu
Thu Apr 2 18:44:52 PDT 2015


Hi lhames,

This is the first in a series of patches to eventually add support for TLS relocations to RuntimeDyld. This patch resolves an issue in the current GOT handling, where GOT entries would be reused between object files, which leads to the same situation that necessitates the GOT in the first place, i.e. that the 32-bit offset can not cover all of the address space. Thus this patch makes the GOT object-file-local. 
Unfortunately, this still isn't quite enough, because the MemoryManager does not yet guarantee that sections are allocated sufficiently close to each other, even if they belong to the same object file. To address this concern, this patch also adds a small API abstraction on top of the GOT allocation mechanism that will allow (temporarily, until the MemoryManager is improved) using the stub mechanism instead of allocating a different section. The actual switch from separate section to stub mechanism will be part of a follow-on commit, so that it can be easily reverted independently at the appropriate time.

REPOSITORY
  rL LLVM

http://reviews.llvm.org/D8813

Files:
  lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
  lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
  lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
  lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
  test/ExecutionEngine/MCJIT/cross-module-sm-pic-a.ll
  test/ExecutionEngine/RuntimeDyld/X86/ELF_x64-64_PIC_relocations.s
  test/ExecutionEngine/RuntimeDyld/X86/ExternalGlobal.ll

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D8813.23195.patch
Type: text/x-patch
Size: 16448 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150403/2d382240/attachment.bin>


More information about the llvm-commits mailing list