2015-08-12 23:42:13 +02:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2015 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 02:17:46 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 19:45:50 +02:00
|
|
|
#pragma once
|
2013-09-05 02:17:46 +02:00
|
|
|
|
2015-07-22 01:49:33 +02:00
|
|
|
namespace Common {
|
|
|
|
|
2015-08-12 23:42:13 +02:00
|
|
|
/// x86/x64 CPU capabilities that may be detected by this module
|
|
|
|
struct CPUCaps {
|
2014-04-02 00:20:08 +02:00
|
|
|
char cpu_string[0x21];
|
|
|
|
char brand_string[0x41];
|
2015-08-12 23:42:13 +02: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 02:17:46 +02:00
|
|
|
};
|
|
|
|
|
2015-08-12 23:42:13 +02:00
|
|
|
/**
|
|
|
|
* Gets the supported capabilities of the host CPU
|
|
|
|
* @return Reference to a CPUCaps struct with the detected host CPU capabilities
|
|
|
|
*/
|
|
|
|
const CPUCaps& GetCPUCaps();
|
|
|
|
|
2015-07-22 01:49:33 +02:00
|
|
|
} // namespace Common
|