mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
83aaf30207
CommonExtra is gone! Still need to fix CommonFake later though.
306 lines
7.2 KiB
C++
306 lines
7.2 KiB
C++
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
#if defined(__arm__) || defined(__aarch64__)
|
|
|
|
#include <ctype.h>
|
|
#include "Common.h"
|
|
#include "CPUDetect.h"
|
|
#include "StringUtils.h"
|
|
#include "FileUtil.h"
|
|
#ifdef BLACKBERRY
|
|
#include <bps/deviceinfo.h>
|
|
#endif
|
|
|
|
// Only Linux platforms have /proc/cpuinfo
|
|
#if defined(__linux__)
|
|
const char procfile[] = "/proc/cpuinfo";
|
|
// https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-devices-system-cpu
|
|
const char syscpupresentfile[] = "/sys/devices/system/cpu/present";
|
|
|
|
std::string GetCPUString() {
|
|
std::string cpu_string;
|
|
std::fstream file;
|
|
|
|
if (File::OpenCPPFile(file, procfile, std::ios::in)) {
|
|
std::string line, marker = "Hardware\t: ";
|
|
while (std::getline(file, line)) {
|
|
if (line.find(marker) != std::string::npos) {
|
|
cpu_string = line.substr(marker.length());
|
|
}
|
|
}
|
|
}
|
|
|
|
if (cpu_string.empty())
|
|
cpu_string = "Unknown";
|
|
else if (cpu_string.back() == '\n')
|
|
cpu_string.pop_back(); // Drop the new-line character
|
|
|
|
return cpu_string;
|
|
}
|
|
|
|
std::string GetCPUBrandString() {
|
|
std::string brand_string;
|
|
std::fstream file;
|
|
|
|
if (File::OpenCPPFile(file, procfile, std::ios::in)) {
|
|
std::string line, marker = "Processor\t: ";
|
|
while (std::getline(file, line)) {
|
|
if (line.find(marker) != std::string::npos) {
|
|
brand_string = line.substr(marker.length());
|
|
if (brand_string.length() != 0 && !isdigit(brand_string[0])) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (brand_string.empty())
|
|
brand_string = "Unknown";
|
|
else if (brand_string.back() == '\n')
|
|
brand_string.pop_back(); // Drop the new-line character
|
|
|
|
return brand_string;
|
|
}
|
|
|
|
unsigned char GetCPUImplementer()
|
|
{
|
|
std::string line, marker = "CPU implementer\t: ";
|
|
unsigned char implementer = 0;
|
|
std::fstream file;
|
|
|
|
if (!File::OpenCPPFile(file, procfile, std::ios::in))
|
|
return 0;
|
|
|
|
while (std::getline(file, line))
|
|
{
|
|
if (line.find(marker) != std::string::npos)
|
|
{
|
|
line = line.substr(marker.length());
|
|
sscanf(line.c_str(), "0x%02hhx", &implementer);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return implementer;
|
|
}
|
|
|
|
unsigned short GetCPUPart()
|
|
{
|
|
std::string line, marker = "CPU part\t: ";
|
|
unsigned short part = 0;
|
|
std::fstream file;
|
|
|
|
if (!File::OpenCPPFile(file, procfile, std::ios::in))
|
|
return 0;
|
|
|
|
while (std::getline(file, line))
|
|
{
|
|
if (line.find(marker) != std::string::npos)
|
|
{
|
|
line = line.substr(marker.length());
|
|
sscanf(line.c_str(), "0x%03hx", &part);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return part;
|
|
}
|
|
|
|
bool CheckCPUFeature(const std::string& feature)
|
|
{
|
|
std::string line, marker = "Features\t: ";
|
|
std::fstream file;
|
|
|
|
if (!File::OpenCPPFile(file, procfile, std::ios::in))
|
|
return 0;
|
|
|
|
while (std::getline(file, line))
|
|
{
|
|
if (line.find(marker) != std::string::npos)
|
|
{
|
|
std::stringstream line_stream(line);
|
|
std::string token;
|
|
while (std::getline(line_stream, token, ' '))
|
|
{
|
|
if (token == feature)
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
int GetCoreCount()
|
|
{
|
|
std::string line, marker = "processor\t: ";
|
|
int cores = 1;
|
|
std::fstream file;
|
|
|
|
if (File::OpenCPPFile(file, syscpupresentfile, std::ios::in))
|
|
{
|
|
int low, high, found;
|
|
std::getline(file, line);
|
|
found = sscanf(line.c_str(), "%d-%d", &low, &high);
|
|
if (found == 1)
|
|
return 1;
|
|
if (found == 2)
|
|
return high - low + 1;
|
|
}
|
|
|
|
if (!File::OpenCPPFile(file, procfile, std::ios::in))
|
|
return 1;
|
|
|
|
while (std::getline(file, line))
|
|
{
|
|
if (line.find(marker) != std::string::npos)
|
|
++cores;
|
|
}
|
|
|
|
return cores;
|
|
}
|
|
#endif
|
|
|
|
CPUInfo cpu_info;
|
|
|
|
CPUInfo::CPUInfo() {
|
|
Detect();
|
|
}
|
|
|
|
// Detects the various cpu features
|
|
void CPUInfo::Detect()
|
|
{
|
|
// Set some defaults here
|
|
HTT = false;
|
|
#ifdef ARM64
|
|
OS64bit = true;
|
|
CPU64bit = true;
|
|
Mode64bit = true;
|
|
#else
|
|
OS64bit = false;
|
|
CPU64bit = false;
|
|
Mode64bit = false;
|
|
#endif
|
|
vendor = VENDOR_ARM;
|
|
|
|
// Get the information about the CPU
|
|
#if !defined(__linux__)
|
|
bool isVFP3 = false;
|
|
bool isVFP4 = false;
|
|
#ifdef IOS
|
|
isVFP3 = true;
|
|
// Check for swift arch (VFP4)
|
|
#ifdef __ARM_ARCH_7S__
|
|
isVFP4 = true;
|
|
#endif
|
|
strcpy(brand_string, "Apple A");
|
|
num_cores = 2;
|
|
#elif defined(BLACKBERRY)
|
|
isVFP3 = true;
|
|
deviceinfo_details_t* details;
|
|
deviceinfo_get_details(&details);
|
|
num_cores = deviceinfo_details_get_processor_core_count(details);
|
|
strcpy(brand_string, deviceinfo_details_get_processor_name(details));
|
|
if (!strncmp(brand_string, "MSM", 3))
|
|
isVFP4 = true;
|
|
deviceinfo_free_details(&details);
|
|
#elif defined(__SYMBIAN32__)
|
|
strcpy(brand_string, "Samsung ARMv6");
|
|
num_cores = 1;
|
|
#else
|
|
strcpy(brand_string, "Unknown");
|
|
num_cores = 1;
|
|
#endif
|
|
strncpy(cpu_string, brand_string, sizeof(cpu_string));
|
|
// Hardcode this for now
|
|
bSwp = true;
|
|
bHalf = true;
|
|
bThumb = false;
|
|
bFastMult = true;
|
|
bVFP = true;
|
|
bEDSP = true;
|
|
bThumbEE = isVFP3;
|
|
bNEON = isVFP3;
|
|
bVFPv3 = isVFP3;
|
|
bTLS = true;
|
|
bVFPv4 = isVFP4;
|
|
bIDIVa = isVFP4;
|
|
bIDIVt = isVFP4;
|
|
bFP = false;
|
|
bASIMD = false;
|
|
#else // __linux__
|
|
strncpy(cpu_string, GetCPUString().c_str(), sizeof(cpu_string));
|
|
strncpy(brand_string, GetCPUBrandString().c_str(), sizeof(brand_string));
|
|
|
|
bSwp = CheckCPUFeature("swp");
|
|
bHalf = CheckCPUFeature("half");
|
|
bThumb = CheckCPUFeature("thumb");
|
|
bFastMult = CheckCPUFeature("fastmult");
|
|
bVFP = CheckCPUFeature("vfp");
|
|
bEDSP = CheckCPUFeature("edsp");
|
|
bThumbEE = CheckCPUFeature("thumbee");
|
|
bNEON = CheckCPUFeature("neon");
|
|
bVFPv3 = CheckCPUFeature("vfpv3");
|
|
bTLS = CheckCPUFeature("tls");
|
|
bVFPv4 = CheckCPUFeature("vfpv4");
|
|
bIDIVa = CheckCPUFeature("idiva");
|
|
bIDIVt = CheckCPUFeature("idivt");
|
|
// Qualcomm Krait supports IDIVA but it doesn't report it. Check for krait (0x4D = Plus, 0x6F = Pro).
|
|
unsigned short CPUPart = GetCPUPart();
|
|
if (GetCPUImplementer() == 0x51 && (CPUPart == 0x4D || CPUPart == 0x6F))
|
|
bIDIVa = bIDIVt = true;
|
|
// These two require ARMv8 or higher
|
|
bFP = CheckCPUFeature("fp");
|
|
bASIMD = CheckCPUFeature("asimd");
|
|
num_cores = GetCoreCount();
|
|
#endif
|
|
#ifdef ARM64
|
|
// Whether the above detection failed or not, on ARM64 we do have ASIMD/NEON.
|
|
bNEON = true;
|
|
bASIMD = true;
|
|
#endif
|
|
}
|
|
|
|
// Turn the cpu info into a string we can show
|
|
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 (bSwp) sum += ", SWP";
|
|
if (bHalf) sum += ", Half";
|
|
if (bThumb) sum += ", Thumb";
|
|
if (bFastMult) sum += ", FastMult";
|
|
if (bEDSP) sum += ", EDSP";
|
|
if (bThumbEE) sum += ", ThumbEE";
|
|
if (bTLS) sum += ", TLS";
|
|
if (bVFP) sum += ", VFP";
|
|
if (bVFPv3) sum += ", VFPv3";
|
|
if (bVFPv4) sum += ", VFPv4";
|
|
if (bNEON) sum += ", NEON";
|
|
if (bIDIVa) sum += ", IDIVa";
|
|
if (bIDIVt) sum += ", IDIVt";
|
|
if (CPU64bit) sum += ", 64-bit";
|
|
|
|
return sum;
|
|
}
|
|
|
|
#endif // defined(__arm__) || defined(__aarch64__)
|