1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

lib/Support: Add Tigerlake and Alderlake detection

This commit is contained in:
Ani 2021-11-02 16:39:40 +00:00
parent 6382230f0e
commit 18f153b33b

View File

@ -772,6 +772,20 @@ getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
*Subtype = X86::INTEL_COREI7_ICELAKE_CLIENT;
break;
// Tigerlake:
case 0x8c:
case 0x8d:
CPU = "tigerlake";
*Type = X86::INTEL_COREI7;
break;
// Alderlake:
case 0x97:
case 0x9a:
CPU = "alderlake";
*Type = X86::INTEL_COREI7;
break;
// Icelake Xeon:
case 0x6a:
case 0x6c: