dolphin/Source/Core/Common/ArmCPUDetect.cpp

89 lines
1.8 KiB
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2013-02-26 19:49:00 +00:00
2014-06-02 23:27:50 +00:00
#include <fstream>
#include <sstream>
#include <string>
#include <unistd.h>
#include <asm/hwcap.h>
#include <sys/auxv.h>
2014-06-02 23:27:50 +00:00
#include "Common/CommonTypes.h"
#include "Common/CPUDetect.h"
#include "Common/StringUtil.h"
2013-02-26 19:49:00 +00:00
const char procfile[] = "/proc/cpuinfo";
2014-09-22 21:45:42 +00:00
static std::string GetCPUString()
2013-02-26 19:49:00 +00:00
{
2014-06-02 23:27:50 +00:00
const std::string marker = "Hardware\t: ";
std::string cpu_string = "Unknown";
std::string line;
std::ifstream file(procfile);
if (!file)
return cpu_string;
2014-06-02 23:27:50 +00:00
while (std::getline(file, line))
2013-02-26 19:49:00 +00:00
{
2014-06-02 23:27:50 +00:00
if (line.find(marker) != std::string::npos)
{
cpu_string = line.substr(marker.length());
break;
}
2013-02-26 19:49:00 +00:00
}
2014-06-02 23:27:50 +00:00
return cpu_string;
2013-02-26 19:49:00 +00:00
}
2013-02-26 19:49:00 +00:00
CPUInfo cpu_info;
2014-06-02 23:27:50 +00:00
CPUInfo::CPUInfo()
{
2013-02-26 19:49:00 +00:00
Detect();
}
// Detects the various CPU features
2013-02-26 19:49:00 +00:00
void CPUInfo::Detect()
{
// Set some defaults here
// When ARMv8 CPUs come out, these need to be updated.
2013-02-26 19:49:00 +00:00
HTT = false;
OS64bit = true;
CPU64bit = true;
Mode64bit = true;
2013-02-26 19:49:00 +00:00
vendor = VENDOR_ARM;
// Get the information about the CPU
num_cores = sysconf(_SC_NPROCESSORS_CONF);
strncpy(cpu_string, GetCPUString().c_str(), sizeof(cpu_string));
unsigned long hwcaps = getauxval(AT_HWCAP);
bFP = hwcaps & HWCAP_FP;
bASIMD = hwcaps & HWCAP_ASIMD;
bAES = hwcaps & HWCAP_AES;
bCRC32 = hwcaps & HWCAP_CRC32;
bSHA1 = hwcaps & HWCAP_SHA1;
bSHA2 = hwcaps & HWCAP_SHA2;
2013-02-26 19:49:00 +00:00
}
// Turn the CPU info into a string we can show
2013-02-26 19:49:00 +00:00
std::string CPUInfo::Summarize()
{
std::string sum;
if (num_cores == 1)
sum = StringFromFormat("%s, %i core", cpu_string, num_cores);
else
sum = StringFromFormat("%s, %i cores", cpu_string, num_cores);
if (bAES) sum += ", AES";
if (bCRC32) sum += ", CRC32";
if (bSHA1) sum += ", SHA1";
if (bSHA2) sum += ", SHA2";
if (CPU64bit) sum += ", 64-bit";
2013-02-26 19:49:00 +00:00
return sum;
}