[PowerPC] Support ELFv1/ELFv2 ABI selection via -mabi= option
authorUlrich Weigand <ulrich.weigand@de.ibm.com>
Mon, 28 Jul 2014 13:17:52 +0000 (13:17 +0000)
committerUlrich Weigand <ulrich.weigand@de.ibm.com>
Mon, 28 Jul 2014 13:17:52 +0000 (13:17 +0000)
commit8afad61a9336e8f212ec551a38a1e30411d82ff4
treed184c0038b59dfd9a14bd8cf1a6da0a5b6a9bd3a
parent085a10c49e35f3c61234fee53ce7e69abc662441
[PowerPC] Support ELFv1/ELFv2 ABI selection via -mabi= option

While Clang now supports both ELFv1 and ELFv2 ABIs, their use is currently
hard-coded via the target triple: powerpc64-linux is always ELFv1, while
powerpc64le-linux is always ELFv2.

These are of course the most common scenarios, but in principle it is
possible to support the ELFv2 ABI on big-endian or the ELFv1 ABI on
little-endian systems (and GCC does support that), and there are some
special use cases for that (e.g. certain Linux kernel versions could
only be built using ELFv1 on LE).

This patch implements the Clang side of supporting this, based on the
LLVM commit 214072.  The command line options -mabi=elfv1 or -mabi=elfv2
select the desired ABI if present.  (If not, Clang uses the same default
rules as now.)

Specifically, the patch implements the following changes based on the
presence of the -mabi= option:

In the driver:
- Pass the appropiate -target-abi flag to the back-end
- Select the correct dynamic loader version (/lib64/ld64.so.[12])

In the preprocessor:
- Define _CALL_ELF to the appropriate value (1 or 2)

In the compiler back-end:
- Select the correct ABI in TargetInfo.cpp
- Select the desired ABI for LLVM via feature (elfv1/elfv2)

llvm-svn: 214074
clang/lib/Basic/Targets.cpp
clang/lib/CodeGen/TargetInfo.cpp
clang/lib/Driver/Tools.cpp
clang/lib/Driver/Tools.h
clang/test/CodeGen/ppc64-elf-abi.c [new file with mode: 0644]
clang/test/Driver/linux-ld.c
clang/test/Driver/ppc-abi.c [new file with mode: 0644]
clang/test/Preprocessor/init.c