2015-08-12 21:42:13 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2015 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 00:17:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 17:45:50 +00:00
|
|
|
#pragma once
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2015-07-21 23:49:33 +00:00
|
|
|
namespace Common {
|
|
|
|
|
2015-08-12 21:42:13 +00:00
|
|
|
/// x86/x64 CPU vendors that may be detected by this module
|
|
|
|
enum class CPUVendor {
|
|
|
|
INTEL,
|
|
|
|
AMD,
|
|
|
|
OTHER,
|
2013-09-05 00:17:46 +00:00
|
|
|
};
|
|
|
|
|
2015-08-12 21:42:13 +00:00
|
|
|
/// x86/x64 CPU capabilities that may be detected by this module
|
|
|
|
struct CPUCaps {
|
2014-04-01 22:20:08 +00:00
|
|
|
CPUVendor vendor;
|
|
|
|
char cpu_string[0x21];
|
|
|
|
char brand_string[0x41];
|
|
|
|
int num_cores;
|
2015-08-12 21:42:13 +00:00
|
|
|
bool sse;
|
|
|
|
bool sse2;
|
|
|
|
bool sse3;
|
|
|
|
bool ssse3;
|
|
|
|
bool sse4_1;
|
|
|
|
bool sse4_2;
|
|
|
|
bool lzcnt;
|
|
|
|
bool avx;
|
|
|
|
bool avx2;
|
|
|
|
bool bmi1;
|
|
|
|
bool bmi2;
|
|
|
|
bool fma;
|
|
|
|
bool fma4;
|
|
|
|
bool aes;
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2015-08-12 21:42:13 +00:00
|
|
|
// Support for the FXSAVE and FXRSTOR instructions
|
|
|
|
bool fxsave_fxrstor;
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2015-08-12 21:42:13 +00:00
|
|
|
bool movbe;
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2015-08-12 21:42:13 +00:00
|
|
|
// This flag indicates that the hardware supports some mode in which denormal inputs and outputs
|
|
|
|
// are automatically set to (signed) zero.
|
|
|
|
bool flush_to_zero;
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2015-08-12 21:42:13 +00:00
|
|
|
// Support for LAHF and SAHF instructions in 64-bit mode
|
|
|
|
bool lahf_sahf_64;
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2015-08-12 21:42:13 +00:00
|
|
|
bool long_mode;
|
2013-09-05 00:17:46 +00:00
|
|
|
};
|
|
|
|
|
2015-08-12 21:42:13 +00:00
|
|
|
/**
|
|
|
|
* Gets the supported capabilities of the host CPU
|
|
|
|
* @return Reference to a CPUCaps struct with the detected host CPU capabilities
|
|
|
|
*/
|
|
|
|
const CPUCaps& GetCPUCaps();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a string summary of the name and supported capabilities of the host CPU
|
|
|
|
* @return String summary
|
|
|
|
*/
|
|
|
|
std::string GetCPUCapsString();
|
2015-07-21 23:49:33 +00:00
|
|
|
|
|
|
|
} // namespace Common
|