2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-11-14 03:28:27 +01:00
|
|
|
// Detect the CPU, so we'll know which optimizations to use
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2008-08-16 12:41:36 +02:00
|
|
|
#include <string>
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2018-04-01 23:43:40 +02:00
|
|
|
enum class CPUVendor
|
2008-07-12 19:40:22 +02:00
|
|
|
{
|
2018-04-01 23:43:40 +02:00
|
|
|
Intel,
|
|
|
|
AMD,
|
|
|
|
ARM,
|
|
|
|
Other,
|
2008-08-15 22:43:14 +02:00
|
|
|
};
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2008-08-15 22:43:14 +02:00
|
|
|
struct CPUInfo
|
|
|
|
{
|
2022-07-19 06:45:27 +02:00
|
|
|
CPUVendor vendor = CPUVendor::Other;
|
2013-03-20 02:51:12 +01:00
|
|
|
|
2022-07-19 06:45:27 +02:00
|
|
|
std::string cpu_id;
|
|
|
|
std::string model_name;
|
2013-03-20 02:51:12 +01:00
|
|
|
|
2015-07-29 05:39:38 +02:00
|
|
|
bool HTT = false;
|
|
|
|
int num_cores = 0;
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2015-07-29 05:39:38 +02:00
|
|
|
bool bSSE3 = false;
|
|
|
|
bool bSSSE3 = false;
|
|
|
|
bool bSSE4_1 = false;
|
|
|
|
bool bSSE4_2 = false;
|
|
|
|
bool bLZCNT = false;
|
|
|
|
bool bAVX = false;
|
|
|
|
bool bBMI1 = false;
|
|
|
|
bool bBMI2 = false;
|
2022-07-19 06:45:27 +02:00
|
|
|
// PDEP and PEXT are ridiculously slow on AMD Zen1, Zen1+ and Zen2 (Family 17h)
|
|
|
|
bool bBMI2FastParallelBitOps = false;
|
2015-07-29 05:39:38 +02:00
|
|
|
bool bFMA = false;
|
|
|
|
bool bFMA4 = false;
|
|
|
|
bool bAES = false;
|
|
|
|
bool bMOVBE = false;
|
2013-10-24 22:05:53 +02:00
|
|
|
// This flag indicates that the hardware supports some mode
|
|
|
|
// in which denormal inputs _and_ outputs are automatically set to (signed) zero.
|
2015-07-29 05:39:38 +02:00
|
|
|
bool bFlushToZero = false;
|
|
|
|
bool bAtom = false;
|
|
|
|
bool bCRC32 = false;
|
|
|
|
bool bSHA1 = false;
|
|
|
|
bool bSHA2 = false;
|
2022-07-19 06:45:27 +02:00
|
|
|
|
|
|
|
// ARMv8 specific
|
2021-05-26 14:38:29 +02:00
|
|
|
bool bAFP = false; // Alternate floating-point behavior
|
2009-02-28 02:26:56 +01:00
|
|
|
|
2010-02-24 11:10:48 +01:00
|
|
|
// Call Detect()
|
|
|
|
explicit CPUInfo();
|
2013-03-20 02:51:12 +01:00
|
|
|
|
2022-07-19 06:45:27 +02:00
|
|
|
// The returned string consists of "<model_name>,<cpu_id>,<flag...>"
|
|
|
|
// Where:
|
|
|
|
// model_name and cpud_id may be zero-length
|
|
|
|
// model_name is human-readable marketing name
|
|
|
|
// cpu_id is ':'-delimited string of id info
|
|
|
|
// flags are optionally included if the related feature is supported and reporting its enablement
|
|
|
|
// seems useful to report
|
2008-08-15 22:43:14 +02:00
|
|
|
std::string Summarize();
|
2010-02-24 11:10:48 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
void Detect();
|
2008-07-12 19:40:22 +02:00
|
|
|
};
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2008-08-15 22:43:14 +02:00
|
|
|
extern CPUInfo cpu_info;
|