forked from OSchip/llvm-project
Revert r321504 "[X86] Don't accidentally enable PKU on cannon lake and icelake or CLWB on cannonlake."
I based that commit on what was in Intel's public documentation here https://software.intel.com/sites/default/files/managed/c5/15/architecture-instruction-set-extensions-programming-reference.pdf Which specifically said CLWB wasn't until Icelake. But I've since cross checked with SDE and it thinks these features exist on CNL and ICL. So now I don't know what to believe. I've added test coverage of the current behavior as part of the revert so at least now have proof of what we're doing. llvm-svn: 321547
This commit is contained in:
parent
421b2d1d8e
commit
d2fe244a6a
|
@ -139,7 +139,6 @@ bool X86TargetInfo::initFeatureMap(
|
||||||
setFeatureEnabledImpl(Features, "avx512vnni", true);
|
setFeatureEnabledImpl(Features, "avx512vnni", true);
|
||||||
setFeatureEnabledImpl(Features, "avx512vbmi2", true);
|
setFeatureEnabledImpl(Features, "avx512vbmi2", true);
|
||||||
setFeatureEnabledImpl(Features, "avx512vpopcntdq", true);
|
setFeatureEnabledImpl(Features, "avx512vpopcntdq", true);
|
||||||
setFeatureEnabledImpl(Features, "clwb", true);
|
|
||||||
LLVM_FALLTHROUGH;
|
LLVM_FALLTHROUGH;
|
||||||
case CK_Cannonlake:
|
case CK_Cannonlake:
|
||||||
setFeatureEnabledImpl(Features, "avx512ifma", true);
|
setFeatureEnabledImpl(Features, "avx512ifma", true);
|
||||||
|
@ -152,10 +151,8 @@ bool X86TargetInfo::initFeatureMap(
|
||||||
setFeatureEnabledImpl(Features, "avx512dq", true);
|
setFeatureEnabledImpl(Features, "avx512dq", true);
|
||||||
setFeatureEnabledImpl(Features, "avx512bw", true);
|
setFeatureEnabledImpl(Features, "avx512bw", true);
|
||||||
setFeatureEnabledImpl(Features, "avx512vl", true);
|
setFeatureEnabledImpl(Features, "avx512vl", true);
|
||||||
if (Kind == CK_SkylakeServer) {
|
setFeatureEnabledImpl(Features, "pku", true);
|
||||||
setFeatureEnabledImpl(Features, "pku", true);
|
setFeatureEnabledImpl(Features, "clwb", true);
|
||||||
setFeatureEnabledImpl(Features, "clwb", true);
|
|
||||||
}
|
|
||||||
LLVM_FALLTHROUGH;
|
LLVM_FALLTHROUGH;
|
||||||
case CK_SkylakeClient:
|
case CK_SkylakeClient:
|
||||||
setFeatureEnabledImpl(Features, "xsavec", true);
|
setFeatureEnabledImpl(Features, "xsavec", true);
|
||||||
|
|
|
@ -972,14 +972,14 @@
|
||||||
// CHECK_CNL_M32: #define __BMI2__ 1
|
// CHECK_CNL_M32: #define __BMI2__ 1
|
||||||
// CHECK_CNL_M32: #define __BMI__ 1
|
// CHECK_CNL_M32: #define __BMI__ 1
|
||||||
// CHECK_CNL_M32: #define __CLFLUSHOPT__ 1
|
// CHECK_CNL_M32: #define __CLFLUSHOPT__ 1
|
||||||
// CHECK_CNL_M32-NOT: #define __CLWB__ 1
|
// CHECK_CNL_M32: #define __CLWB__ 1
|
||||||
// CHECK_CNL_M32: #define __F16C__ 1
|
// CHECK_CNL_M32: #define __F16C__ 1
|
||||||
// CHECK_CNL_M32: #define __FMA__ 1
|
// CHECK_CNL_M32: #define __FMA__ 1
|
||||||
// CHECK_CNL_M32: #define __LZCNT__ 1
|
// CHECK_CNL_M32: #define __LZCNT__ 1
|
||||||
// CHECK_CNL_M32: #define __MMX__ 1
|
// CHECK_CNL_M32: #define __MMX__ 1
|
||||||
// CHECK_CNL_M32: #define __MPX__ 1
|
// CHECK_CNL_M32: #define __MPX__ 1
|
||||||
// CHECK_CNL_M32: #define __PCLMUL__ 1
|
// CHECK_CNL_M32: #define __PCLMUL__ 1
|
||||||
// CHECK_CNL_M32-NOT: #define __PKU__ 1
|
// CHECK_CNL_M32: #define __PKU__ 1
|
||||||
// CHECK_CNL_M32: #define __POPCNT__ 1
|
// CHECK_CNL_M32: #define __POPCNT__ 1
|
||||||
// CHECK_CNL_M32: #define __PRFCHW__ 1
|
// CHECK_CNL_M32: #define __PRFCHW__ 1
|
||||||
// CHECK_CNL_M32: #define __RDRND__ 1
|
// CHECK_CNL_M32: #define __RDRND__ 1
|
||||||
|
@ -1019,14 +1019,14 @@
|
||||||
// CHECK_CNL_M64: #define __BMI2__ 1
|
// CHECK_CNL_M64: #define __BMI2__ 1
|
||||||
// CHECK_CNL_M64: #define __BMI__ 1
|
// CHECK_CNL_M64: #define __BMI__ 1
|
||||||
// CHECK_CNL_M64: #define __CLFLUSHOPT__ 1
|
// CHECK_CNL_M64: #define __CLFLUSHOPT__ 1
|
||||||
// CHECK_CNL_M64-NOT: #define __CLWB__ 1
|
// CHECK_CNL_M64: #define __CLWB__ 1
|
||||||
// CHECK_CNL_M64: #define __F16C__ 1
|
// CHECK_CNL_M64: #define __F16C__ 1
|
||||||
// CHECK_CNL_M64: #define __FMA__ 1
|
// CHECK_CNL_M64: #define __FMA__ 1
|
||||||
// CHECK_CNL_M64: #define __LZCNT__ 1
|
// CHECK_CNL_M64: #define __LZCNT__ 1
|
||||||
// CHECK_CNL_M64: #define __MMX__ 1
|
// CHECK_CNL_M64: #define __MMX__ 1
|
||||||
// CHECK_CNL_M64: #define __MPX__ 1
|
// CHECK_CNL_M64: #define __MPX__ 1
|
||||||
// CHECK_CNL_M64: #define __PCLMUL__ 1
|
// CHECK_CNL_M64: #define __PCLMUL__ 1
|
||||||
// CHECK_CNL_M64-NOT: #define __PKU__ 1
|
// CHECK_CNL_M64: #define __PKU__ 1
|
||||||
// CHECK_CNL_M64: #define __POPCNT__ 1
|
// CHECK_CNL_M64: #define __POPCNT__ 1
|
||||||
// CHECK_CNL_M64: #define __PRFCHW__ 1
|
// CHECK_CNL_M64: #define __PRFCHW__ 1
|
||||||
// CHECK_CNL_M64: #define __RDRND__ 1
|
// CHECK_CNL_M64: #define __RDRND__ 1
|
||||||
|
@ -1079,7 +1079,7 @@
|
||||||
// CHECK_ICL_M32: #define __MMX__ 1
|
// CHECK_ICL_M32: #define __MMX__ 1
|
||||||
// CHECK_ICL_M32: #define __MPX__ 1
|
// CHECK_ICL_M32: #define __MPX__ 1
|
||||||
// CHECK_ICL_M32: #define __PCLMUL__ 1
|
// CHECK_ICL_M32: #define __PCLMUL__ 1
|
||||||
// CHECK_ICL_M32-NOT: #define __PKU__ 1
|
// CHECK_ICL_M32: #define __PKU__ 1
|
||||||
// CHECK_ICL_M32: #define __POPCNT__ 1
|
// CHECK_ICL_M32: #define __POPCNT__ 1
|
||||||
// CHECK_ICL_M32: #define __PRFCHW__ 1
|
// CHECK_ICL_M32: #define __PRFCHW__ 1
|
||||||
// CHECK_ICL_M32: #define __RDRND__ 1
|
// CHECK_ICL_M32: #define __RDRND__ 1
|
||||||
|
@ -1133,7 +1133,7 @@
|
||||||
// CHECK_ICL_M64: #define __MMX__ 1
|
// CHECK_ICL_M64: #define __MMX__ 1
|
||||||
// CHECK_ICL_M64: #define __MPX__ 1
|
// CHECK_ICL_M64: #define __MPX__ 1
|
||||||
// CHECK_ICL_M64: #define __PCLMUL__ 1
|
// CHECK_ICL_M64: #define __PCLMUL__ 1
|
||||||
// CHECK_ICL_M64-NOT: #define __PKU__ 1
|
// CHECK_ICL_M64: #define __PKU__ 1
|
||||||
// CHECK_ICL_M64: #define __POPCNT__ 1
|
// CHECK_ICL_M64: #define __POPCNT__ 1
|
||||||
// CHECK_ICL_M64: #define __PRFCHW__ 1
|
// CHECK_ICL_M64: #define __PRFCHW__ 1
|
||||||
// CHECK_ICL_M64: #define __RDRND__ 1
|
// CHECK_ICL_M64: #define __RDRND__ 1
|
||||||
|
|
Loading…
Reference in New Issue