PPC64: Constant initializers with dynamic relocations go in .data.rel.ro.
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>
Mon, 13 May 2013 19:34:37 +0000 (19:34 +0000)
committerBill Schmidt <wschmidt@linux.vnet.ibm.com>
Mon, 13 May 2013 19:34:37 +0000 (19:34 +0000)
commit22d40dcfe972d68289f722d16e0be2fd1a091434
tree90bcce38fe27870930512997058bcc84dab8a8c7
parent62502c6897678b1ad222ada15e0f42184fd44749
PPC64: Constant initializers with dynamic relocations go in .data.rel.ro.

This fixes warning messages observed in the oggenc application test in
projects/test-suite.  Special handling is needed for the 64-bit
PowerPC SVR4 ABI when a constant is initialized with a pointer to a
function in a shared library.  Because a function address is
implemented as the address of a function descriptor, the use of copy
relocations can lead to problems with initialization.  GNU ld
therefore replaces copy relocations with dynamic relocations to be
resolved by the dynamic linker.  This means the constant cannot reside
in the read-only data section, but instead belongs in .data.rel.ro,
which is designed for constants containing dynamic relocations.

The implementation creates a class PPC64LinuxTargetObjectFile
inheriting from TargetLoweringObjectFileELF, which behaves like its
parent except to place constants of this sort into .data.rel.ro.

The test case is reduced from the oggenc application.

llvm-svn: 181723
llvm/lib/Target/PowerPC/CMakeLists.txt
llvm/lib/Target/PowerPC/PPCISelLowering.cpp
llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp [new file with mode: 0644]
llvm/lib/Target/PowerPC/PPCTargetObjectFile.h [new file with mode: 0644]
llvm/test/CodeGen/PowerPC/addrfuncstr.ll [new file with mode: 0644]