aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/LiveDebugVariables.cpp
diff options
context:
space:
mode:
authorFangrui Song <maskray@google.com>2019-05-18 03:16:00 +0000
committerFangrui Song <maskray@google.com>2019-05-18 03:16:00 +0000
commited2ad77ccb00d546dc3163d5a2722a3752972508 (patch)
tree2b210dd3bb1e95d8f04b2e6d408effcebb38d262 /llvm/lib/CodeGen/LiveDebugVariables.cpp
parent5f36a28556c381ea7d44c36340a053ca126f3e73 (diff)
downloadllvm-ed2ad77ccb00d546dc3163d5a2722a3752972508.zip
llvm-ed2ad77ccb00d546dc3163d5a2722a3752972508.tar.gz
llvm-ed2ad77ccb00d546dc3163d5a2722a3752972508.tar.bz2
[ARM][AArch64] Revert Android Bionic PT_TLS overaligning hack
This reverts D53906. D53906 increased p_align of PT_TLS on ARM/AArch64 to 32/64 to make the static TLS layout compatible with Android Bionic's ELF TLS. However, this may cause glibc ARM/AArch64 programs to crash (see PR41527). The faulty PT_TLS in the executable satisfies p_vaddr%p_align != 0. The remainder is normally 0 but may be non-zero with the hack in place. The problem is that we increase PT_TLS's p_align after OutputSections' addresses are fixed (assignAddress()). It is possible that p_vaddr%old_p_align = 0 while p_vaddr%new_p_align != 0. For a thread local variable defined in the executable, lld computed TLS offset (local exec) is different from glibc computed TLS offset from another module (initial exec/generic dynamic). Note: PR41527 said the bug affects initial exec but actually generic dynamic is affected as well. (glibc is correct in that it compute offsets that satisfy `offset%p_align == p_vaddr%p_align`, which is a basic ELF requirement. This hack appears to work on FreeBSD rtld, musl<=1.1.22, and Bionic, but that is just because they (and lld) incorrectly compute offsets that satisfy `offset%p_align = 0` instead.) Android developers are fine to revert this patch, carry this patch in their tree before figuring out a long-term solution (e.g. a dummy .tdata with sh_addralign=64 sh_size={0,1} in crtbegin*.o files. The overhead is now insignificant after D62059). Reviewed By: rprichard, srhines Differential Revision: https://reviews.llvm.org/D62055 llvm-svn: 361090
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.cpp')
0 files changed, 0 insertions, 0 deletions