2014-12-17 06:38:14 +01:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 02:17:46 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
2015-07-22 01:49:33 +02:00
|
|
|
// Detect the CPU, so we'll know which optimizations to use
|
2014-08-17 19:45:50 +02:00
|
|
|
#pragma once
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2015-07-22 01:49:33 +02:00
|
|
|
namespace Common {
|
|
|
|
|
2013-09-05 02:17:46 +02:00
|
|
|
enum CPUVendor
|
|
|
|
{
|
2014-04-02 00:20:08 +02:00
|
|
|
VENDOR_INTEL = 0,
|
|
|
|
VENDOR_AMD = 1,
|
|
|
|
VENDOR_ARM = 2,
|
|
|
|
VENDOR_OTHER = 3,
|
2013-09-05 02:17:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CPUInfo
|
|
|
|
{
|
2014-04-02 00:20:08 +02:00
|
|
|
CPUVendor vendor;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
char cpu_string[0x21];
|
|
|
|
char brand_string[0x41];
|
|
|
|
bool OS64bit;
|
|
|
|
bool CPU64bit;
|
|
|
|
bool Mode64bit;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
bool HTT;
|
|
|
|
int num_cores;
|
|
|
|
int logical_cpu_count;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
bool bSSE;
|
|
|
|
bool bSSE2;
|
|
|
|
bool bSSE3;
|
|
|
|
bool bSSSE3;
|
|
|
|
bool bPOPCNT;
|
|
|
|
bool bSSE4_1;
|
|
|
|
bool bSSE4_2;
|
|
|
|
bool bLZCNT;
|
|
|
|
bool bSSE4A;
|
|
|
|
bool bAVX;
|
2015-07-22 01:49:33 +02:00
|
|
|
bool bAVX2;
|
|
|
|
bool bBMI1;
|
|
|
|
bool bBMI2;
|
|
|
|
bool bFMA;
|
|
|
|
bool bFMA4;
|
2014-04-02 00:20:08 +02:00
|
|
|
bool bAES;
|
2015-07-22 01:49:33 +02:00
|
|
|
// FXSAVE/FXRSTOR
|
|
|
|
bool bFXSR;
|
|
|
|
bool bMOVBE;
|
|
|
|
// This flag indicates that the hardware supports some mode
|
|
|
|
// in which denormal inputs _and_ outputs are automatically set to (signed) zero.
|
|
|
|
bool bFlushToZero;
|
2014-04-02 00:20:08 +02:00
|
|
|
bool bLAHFSAHF64;
|
|
|
|
bool bLongMode;
|
2015-07-22 01:49:33 +02:00
|
|
|
bool bAtom;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
// ARMv8 specific
|
|
|
|
bool bFP;
|
|
|
|
bool bASIMD;
|
2015-07-22 01:49:33 +02:00
|
|
|
bool bCRC32;
|
|
|
|
bool bSHA1;
|
|
|
|
bool bSHA2;
|
2013-09-05 02:17:46 +02:00
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
// Call Detect()
|
|
|
|
explicit CPUInfo();
|
2013-09-05 02:17:46 +02:00
|
|
|
|
2014-04-02 00:20:08 +02:00
|
|
|
// Turn the cpu info into a string we can show
|
|
|
|
std::string Summarize();
|
2013-09-05 02:17:46 +02:00
|
|
|
|
|
|
|
private:
|
2014-04-02 00:20:08 +02:00
|
|
|
// Detects the various cpu features
|
|
|
|
void Detect();
|
2013-09-05 02:17:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern CPUInfo cpu_info;
|
2015-07-22 01:49:33 +02:00
|
|
|
|
|
|
|
} // namespace Common
|