[PATCH] D70279: [X86] Add AMD Matisse (znver2) model number to getHostCPUName
Alex James via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 18 10:06:01 PST 2019
al3xtjames updated this revision to Diff 229874.
al3xtjames added a comment.
Herald added a project: Sanitizers.
Herald added a subscriber: Sanitizers.
Added the getAMDProcessorTypeAndSubtype change to compiler-rt.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70279/new/
https://reviews.llvm.org/D70279
Files:
compiler-rt/lib/builtins/cpu_model.c
llvm/lib/Support/Host.cpp
Index: llvm/lib/Support/Host.cpp
===================================================================
--- llvm/lib/Support/Host.cpp
+++ llvm/lib/Support/Host.cpp
@@ -959,9 +959,9 @@
break; // "btver2"
case 23:
*Type = X86::AMDFAM17H;
- if (Model >= 0x30 && Model <= 0x3f) {
+ if ((Model >= 0x30 && Model <= 0x3f) || Model == 0x71) {
*Subtype = X86::AMDFAM17H_ZNVER2;
- break; // "znver2"; 30h-3fh: Zen2
+ break; // "znver2"; 30h-3fh, 71h: Zen2
}
if (Model <= 0x0f) {
*Subtype = X86::AMDFAM17H_ZNVER1;
@@ -1244,7 +1244,7 @@
return "swift";
default:;
}
-
+
return "generic";
}
#else
Index: compiler-rt/lib/builtins/cpu_model.c
===================================================================
--- compiler-rt/lib/builtins/cpu_model.c
+++ compiler-rt/lib/builtins/cpu_model.c
@@ -471,9 +471,9 @@
break; // "btver2"
case 23:
*Type = AMDFAM17H;
- if (Model >= 0x30 && Model <= 0x3f) {
+ if ((Model >= 0x30 && Model <= 0x3f) || Model == 0x71) {
*Subtype = AMDFAM17H_ZNVER2;
- break; // "znver2"; 30h-3fh: Zen2
+ break; // "znver2"; 30h-3fh, 71h: Zen2
}
if (Model <= 0x0f) {
*Subtype = AMDFAM17H_ZNVER1;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70279.229874.patch
Type: text/x-patch
Size: 1228 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191118/92c3b930/attachment.bin>
More information about the llvm-commits
mailing list