2014-07-28 21:17:52 +08:00
|
|
|
// Check passing PowerPC ABI options to the backend.
|
|
|
|
|
|
|
|
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: | FileCheck -check-prefix=CHECK-ELFv1 %s
|
|
|
|
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=elfv1 | FileCheck -check-prefix=CHECK-ELFv1 %s
|
|
|
|
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
2015-03-12 03:14:15 +08:00
|
|
|
// RUN: -mabi=elfv1-qpx | FileCheck -check-prefix=CHECK-ELFv1-QPX %s
|
|
|
|
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mcpu=a2q | FileCheck -check-prefix=CHECK-ELFv1-QPX %s
|
|
|
|
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mcpu=a2 -mqpx | FileCheck -check-prefix=CHECK-ELFv1-QPX %s
|
|
|
|
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mcpu=a2q -mno-qpx | FileCheck -check-prefix=CHECK-ELFv1 %s
|
|
|
|
// RUN: %clang -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
2018-12-18 23:08:03 +08:00
|
|
|
// RUN: -mabi=elfv2 | FileCheck -check-prefix=CHECK-ELFv2-BE %s
|
2014-07-28 21:17:52 +08:00
|
|
|
|
|
|
|
// RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: | FileCheck -check-prefix=CHECK-ELFv2 %s
|
|
|
|
// RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
2018-12-18 23:08:03 +08:00
|
|
|
// RUN: -mabi=elfv1 | FileCheck -check-prefix=CHECK-ELFv1-LE %s
|
2014-07-28 21:17:52 +08:00
|
|
|
// RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=elfv2 | FileCheck -check-prefix=CHECK-ELFv2 %s
|
2015-07-11 02:25:54 +08:00
|
|
|
// RUN: %clang -target powerpc64le-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=altivec | FileCheck -check-prefix=CHECK-ELFv2 %s
|
2014-07-28 21:17:52 +08:00
|
|
|
|
2018-11-17 03:21:33 +08:00
|
|
|
// CHECK-ELFv1: "-mrelocation-model" "pic" "-pic-level" "2"
|
2014-07-28 21:17:52 +08:00
|
|
|
// CHECK-ELFv1: "-target-abi" "elfv1"
|
2018-12-18 23:08:03 +08:00
|
|
|
// CHECK-ELFv1-LE: "-mrelocation-model" "static"
|
|
|
|
// CHECK-ELFv1-LE: "-target-abi" "elfv1"
|
2018-11-17 03:21:33 +08:00
|
|
|
// CHECK-ELFv1-QPX: "-mrelocation-model" "pic" "-pic-level" "2"
|
2015-03-12 03:14:15 +08:00
|
|
|
// CHECK-ELFv1-QPX: "-target-abi" "elfv1-qpx"
|
2018-12-18 23:08:03 +08:00
|
|
|
// CHECK-ELFv2: "-mrelocation-model" "static"
|
2014-07-28 21:17:52 +08:00
|
|
|
// CHECK-ELFv2: "-target-abi" "elfv2"
|
2018-12-18 23:08:03 +08:00
|
|
|
// CHECK-ELFv2-BE: "-mrelocation-model" "pic" "-pic-level" "2"
|
|
|
|
// CHECK-ELFv2-BE: "-target-abi" "elfv2"
|
|
|
|
|
|
|
|
// RUN: %clang -fPIC -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: | FileCheck -check-prefix=CHECK-ELFv1-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=elfv1 | FileCheck -check-prefix=CHECK-ELFv1-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=elfv1-qpx | FileCheck -check-prefix=CHECK-ELFv1-QPX-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mcpu=a2q | FileCheck -check-prefix=CHECK-ELFv1-QPX-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mcpu=a2 -mqpx | FileCheck -check-prefix=CHECK-ELFv1-QPX-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mcpu=a2q -mno-qpx | FileCheck -check-prefix=CHECK-ELFv1-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=elfv2 | FileCheck -check-prefix=CHECK-ELFv2-PIC %s
|
|
|
|
|
|
|
|
// RUN: %clang -fPIC -target powerpc64le-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: | FileCheck -check-prefix=CHECK-ELFv2-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64le-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=elfv1 | FileCheck -check-prefix=CHECK-ELFv1-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64le-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=elfv2 | FileCheck -check-prefix=CHECK-ELFv2-PIC %s
|
|
|
|
// RUN: %clang -fPIC -target powerpc64le-unknown-linux-gnu %s -### -o %t.o 2>&1 \
|
|
|
|
// RUN: -mabi=altivec | FileCheck -check-prefix=CHECK-ELFv2-PIC %s
|
|
|
|
|
|
|
|
// CHECK-ELFv1-PIC: "-mrelocation-model" "pic" "-pic-level" "2"
|
|
|
|
// CHECK-ELFv1-PIC: "-target-abi" "elfv1"
|
|
|
|
// CHECK-ELFv1-QPX-PIC: "-mrelocation-model" "pic" "-pic-level" "2"
|
|
|
|
// CHECK-ELFv1-QPX-PIC: "-target-abi" "elfv1-qpx"
|
|
|
|
// CHECK-ELFv2-PIC: "-mrelocation-model" "pic" "-pic-level" "2"
|
|
|
|
// CHECK-ELFv2-PIC: "-target-abi" "elfv2"
|
|
|
|
|
2014-07-28 21:17:52 +08:00
|
|
|
|