
1. The PR proceeds with a backend target hook to allow front-ends to determine what target features are available in a compilation based on the CPU name. 2. Fix a backend target feature bug that supports HTM for Power8/9/10/11. However, HTM is only supported on Power8/9 according to the ISA. 3. All target features that are hardcoded in PPC.cpp can be retrieved from the backend target feature. I have double-checked that the hardcoded logic for inferring target features from the CPU in the frontend(PPC.cpp) is the same as in PPC.td. The reland patch addressed the comment https://github.com/llvm/llvm-project/pull/137670#discussion_r2143541120
33 lines
1.4 KiB
C++
33 lines
1.4 KiB
C++
// RUN: %clang -target powerpc64-unknown-unknown -mcpu=pwr6 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK-PWR6
|
|
// RUN: %clang -target powerpc64-unknown-unknown -mcpu=a2 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK-A2
|
|
// RUN: %clang -target powerpc64-unknown-unknown -mcpu=pwr7 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK-PWR7
|
|
// RUN: %clang -target powerpc64le-unknown-unknown -mcpu=pwr8 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK-PWR8
|
|
// RUN: %clang -target powerpc64-unknown-aix -mcpu=pwr9 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK-PWR9
|
|
// RUN: %clang -target powerpc-unknown-aix -mcpu=pwr10 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK-PWR10
|
|
|
|
// CHECK-PWR6-NOT: isa-v206-instructions
|
|
// CHECK-PWR6-NOT: isa-v207-instructions
|
|
// CHECK-PWR6-NOT: isa-v30-instructions
|
|
|
|
// CHECK-A2: +isa-v206-instructions
|
|
// CHECK-A2-NOT: isa-v207-instructions
|
|
// CHECK-A2-NOT: isa-v30-instructions
|
|
|
|
// CHECK-PWR7: +isa-v206-instructions
|
|
// CHECK-PWR7-NOT: isa-v207-instructions
|
|
// CHECK-PWR7-NOT: isa-v30-instructions
|
|
|
|
// CHECK-PWR8: +isa-v207-instructions
|
|
// CHECK-PWR8-NOT: isa-v30-instructions
|
|
|
|
// CHECK-PWR9: +isa-v207-instructions
|
|
// CHECK-PWR9: +isa-v30-instructions
|
|
|
|
// CHECK-PWR10: +isa-v207-instructions
|
|
// CHECK-PWR10: +isa-v30-instructions
|
|
// CHECK-PWR10: +isa-v31-instructions
|
|
|
|
int main(int argc, char *argv[]) {
|
|
return 0;
|
|
}
|