2026-01-12 05:18:12 -05:00
|
|
|
// SPDX-FileCopyrightText: 2002-2026 PCSX2 Dev Team
|
2024-07-30 13:42:36 +02:00
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2021-03-28 02:50:18 -05:00
|
|
|
|
2023-12-26 21:25:10 +10:00
|
|
|
#include "HostSys.h"
|
2021-10-28 02:40:44 -05:00
|
|
|
#include "Console.h"
|
2023-12-22 23:03:25 +10:00
|
|
|
#include "VectorIntrin.h"
|
2026-06-20 20:27:55 -07:00
|
|
|
#include "fmt/format.h"
|
2021-03-28 02:50:18 -05:00
|
|
|
|
2024-09-13 03:48:07 -05:00
|
|
|
#ifndef __APPLE__
|
|
|
|
|
#include "cpuinfo.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2026-07-10 11:07:24 -04:00
|
|
|
#if defined(__ANDROID__)
|
|
|
|
|
#include <sys/system_properties.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-03-28 02:50:18 -05:00
|
|
|
static u32 PAUSE_TIME = 0;
|
|
|
|
|
|
|
|
|
|
static void MultiPause()
|
|
|
|
|
{
|
2026-03-10 23:40:32 -05:00
|
|
|
#ifdef ARCH_X86
|
2021-03-28 02:50:18 -05:00
|
|
|
_mm_pause();
|
|
|
|
|
_mm_pause();
|
|
|
|
|
_mm_pause();
|
|
|
|
|
_mm_pause();
|
|
|
|
|
_mm_pause();
|
|
|
|
|
_mm_pause();
|
|
|
|
|
_mm_pause();
|
|
|
|
|
_mm_pause();
|
2026-03-10 23:40:32 -05:00
|
|
|
#elif defined(ARCH_ARM64) && defined(_MSC_VER)
|
2023-12-22 23:03:25 +10:00
|
|
|
__isb(_ARM64_BARRIER_SY);
|
|
|
|
|
__isb(_ARM64_BARRIER_SY);
|
|
|
|
|
__isb(_ARM64_BARRIER_SY);
|
|
|
|
|
__isb(_ARM64_BARRIER_SY);
|
|
|
|
|
__isb(_ARM64_BARRIER_SY);
|
|
|
|
|
__isb(_ARM64_BARRIER_SY);
|
|
|
|
|
__isb(_ARM64_BARRIER_SY);
|
|
|
|
|
__isb(_ARM64_BARRIER_SY);
|
2026-03-10 23:40:32 -05:00
|
|
|
#elif defined(ARCH_ARM64)
|
2023-12-22 23:03:25 +10:00
|
|
|
__asm__ __volatile__("isb");
|
|
|
|
|
__asm__ __volatile__("isb");
|
|
|
|
|
__asm__ __volatile__("isb");
|
|
|
|
|
__asm__ __volatile__("isb");
|
|
|
|
|
__asm__ __volatile__("isb");
|
|
|
|
|
__asm__ __volatile__("isb");
|
|
|
|
|
__asm__ __volatile__("isb");
|
|
|
|
|
__asm__ __volatile__("isb");
|
|
|
|
|
#else
|
|
|
|
|
#error Unknown architecture.
|
|
|
|
|
#endif
|
2021-03-28 02:50:18 -05:00
|
|
|
}
|
|
|
|
|
|
2021-10-28 02:40:44 -05:00
|
|
|
static u32 MeasurePauseTime()
|
|
|
|
|
{
|
|
|
|
|
// GetCPUTicks may have resolution as low as 1µs
|
|
|
|
|
// One call to MultiPause could take anywhere from 20ns (fast Haswell) to 400ns (slow Skylake)
|
|
|
|
|
// We want a measurement of reasonable resolution, but don't want to take too long
|
|
|
|
|
// So start at a fairly small number and increase it if it's too fast
|
|
|
|
|
for (int testcnt = 64; true; testcnt *= 2)
|
|
|
|
|
{
|
|
|
|
|
u64 start = GetCPUTicks();
|
|
|
|
|
for (int i = 0; i < testcnt; i++)
|
|
|
|
|
{
|
|
|
|
|
MultiPause();
|
|
|
|
|
}
|
|
|
|
|
u64 time = GetCPUTicks() - start;
|
|
|
|
|
if (time > 100)
|
|
|
|
|
{
|
|
|
|
|
u64 nanos = (time * 1000000000) / GetTickFrequency();
|
|
|
|
|
return (nanos / testcnt) + 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-28 02:50:18 -05:00
|
|
|
__noinline static void UpdatePauseTime()
|
|
|
|
|
{
|
2021-10-28 02:40:44 -05:00
|
|
|
u64 wait = GetCPUTicks() + GetTickFrequency() / 100; // Wake up processor (spin for 10ms)
|
|
|
|
|
while (GetCPUTicks() < wait)
|
|
|
|
|
;
|
|
|
|
|
u32 pause = MeasurePauseTime();
|
|
|
|
|
// Take a few measurements in case something weird happens during one
|
|
|
|
|
// (e.g. OS interrupt)
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
|
pause = std::min(pause, MeasurePauseTime());
|
|
|
|
|
PAUSE_TIME = pause;
|
|
|
|
|
DevCon.WriteLn("MultiPause time: %uns", pause);
|
2021-03-28 02:50:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
u32 ShortSpin()
|
|
|
|
|
{
|
|
|
|
|
u32 inc = PAUSE_TIME;
|
2023-12-22 19:27:44 +10:00
|
|
|
if (inc == 0) [[unlikely]]
|
2021-03-28 02:50:18 -05:00
|
|
|
{
|
|
|
|
|
UpdatePauseTime();
|
|
|
|
|
inc = PAUSE_TIME;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
u32 time = 0;
|
|
|
|
|
// Sleep for approximately 500ns
|
|
|
|
|
for (; time < 500; time += inc)
|
|
|
|
|
MultiPause();
|
|
|
|
|
|
|
|
|
|
return time;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static u32 GetSpinTime()
|
|
|
|
|
{
|
|
|
|
|
if (char* req = getenv("WAIT_SPIN_MICROSECONDS"))
|
|
|
|
|
{
|
|
|
|
|
return 1000 * atoi(req);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return 50 * 1000; // 50µs
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const u32 SPIN_TIME_NS = GetSpinTime();
|
2022-05-30 00:49:07 -05:00
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
|
// https://alastairs-place.net/blog/2013/01/10/interesting-os-x-crash-report-tidbits/
|
|
|
|
|
// https://opensource.apple.com/source/WebKit2/WebKit2-7608.3.10.0.3/Platform/spi/Cocoa/CrashReporterClientSPI.h.auto.html
|
|
|
|
|
struct crash_info_t
|
|
|
|
|
{
|
|
|
|
|
u64 version;
|
|
|
|
|
u64 message;
|
|
|
|
|
u64 signature;
|
|
|
|
|
u64 backtrace;
|
|
|
|
|
u64 message2;
|
|
|
|
|
u64 reserved;
|
|
|
|
|
u64 reserved2;
|
|
|
|
|
};
|
2023-08-08 18:41:06 -05:00
|
|
|
#define CRASH_ANNOTATION __attribute__((used, section("__DATA,__crash_info")))
|
2022-05-30 00:49:07 -05:00
|
|
|
#define CRASH_VERSION 4
|
|
|
|
|
extern "C" crash_info_t gCRAnnotations CRASH_ANNOTATION = { CRASH_VERSION };
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void AbortWithMessage(const char* msg)
|
|
|
|
|
{
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
|
gCRAnnotations.message = reinterpret_cast<size_t>(msg);
|
|
|
|
|
// Some macOS's seem to have issues displaying non-static `message`s, so throw it in here too
|
|
|
|
|
gCRAnnotations.backtrace = gCRAnnotations.message;
|
|
|
|
|
#endif
|
|
|
|
|
abort();
|
|
|
|
|
}
|
2024-09-13 03:48:07 -05:00
|
|
|
|
|
|
|
|
#ifndef __APPLE__
|
|
|
|
|
// MacOS version is in DarwinMisc
|
2026-06-20 20:27:55 -07:00
|
|
|
|
|
|
|
|
#ifdef __aarch64__
|
|
|
|
|
// cpuinfo library often returns empty/unknown names on ARM Linux.
|
|
|
|
|
// Fall back to reading MIDR fields from /proc/cpuinfo.
|
|
|
|
|
static std::string DetectArmCPUName()
|
|
|
|
|
{
|
|
|
|
|
FILE* f = fopen("/proc/cpuinfo", "r");
|
|
|
|
|
if (!f)
|
|
|
|
|
return {};
|
|
|
|
|
|
|
|
|
|
u32 implementer = 0, part = 0;
|
|
|
|
|
char line[256];
|
|
|
|
|
while (fgets(line, sizeof(line), f))
|
|
|
|
|
{
|
|
|
|
|
if (sscanf(line, "CPU implementer : %x", &implementer) == 1)
|
|
|
|
|
continue;
|
|
|
|
|
if (sscanf(line, "CPU part : %x", &part) == 1)
|
|
|
|
|
break; // got both from first core
|
|
|
|
|
}
|
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
|
|
// Map common implementer+part to names
|
|
|
|
|
if (implementer == 0x41) // ARM Ltd
|
|
|
|
|
{
|
|
|
|
|
switch (part)
|
|
|
|
|
{
|
|
|
|
|
case 0xd03: return "ARM Cortex-A53";
|
|
|
|
|
case 0xd04: return "ARM Cortex-A35";
|
|
|
|
|
case 0xd05: return "ARM Cortex-A55";
|
|
|
|
|
case 0xd07: return "ARM Cortex-A57";
|
|
|
|
|
case 0xd08: return "ARM Cortex-A72";
|
|
|
|
|
case 0xd09: return "ARM Cortex-A73";
|
|
|
|
|
case 0xd0a: return "ARM Cortex-A75";
|
|
|
|
|
case 0xd0b: return "ARM Cortex-A76";
|
|
|
|
|
case 0xd0c: return "ARM Neoverse N1";
|
|
|
|
|
case 0xd0d: return "ARM Cortex-A77";
|
|
|
|
|
case 0xd40: return "ARM Neoverse V1";
|
|
|
|
|
case 0xd41: return "ARM Cortex-A78";
|
|
|
|
|
case 0xd44: return "ARM Cortex-X1";
|
|
|
|
|
case 0xd46: return "ARM Cortex-A510";
|
|
|
|
|
case 0xd47: return "ARM Cortex-A710";
|
|
|
|
|
case 0xd48: return "ARM Cortex-X2";
|
|
|
|
|
case 0xd4d: return "ARM Cortex-A715";
|
|
|
|
|
case 0xd4e: return "ARM Cortex-X3";
|
|
|
|
|
case 0xd80: return "ARM Cortex-A520";
|
|
|
|
|
case 0xd81: return "ARM Cortex-A720";
|
|
|
|
|
case 0xd82: return "ARM Cortex-X4";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (implementer == 0x51) // Qualcomm
|
|
|
|
|
{
|
|
|
|
|
switch (part)
|
|
|
|
|
{
|
|
|
|
|
case 0x802: return "Qualcomm Kryo 385 Gold";
|
|
|
|
|
case 0x803: return "Qualcomm Kryo 385 Silver";
|
|
|
|
|
case 0xc00: return "Qualcomm Falkor";
|
|
|
|
|
case 0x001: return "Qualcomm Oryon";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (implementer == 0x61) // Apple
|
|
|
|
|
{
|
|
|
|
|
switch (part)
|
|
|
|
|
{
|
|
|
|
|
case 0x022: return "Apple M1 Icestorm";
|
|
|
|
|
case 0x023: return "Apple M1 Firestorm";
|
|
|
|
|
case 0x032: return "Apple M2 Blizzard";
|
|
|
|
|
case 0x033: return "Apple M2 Avalanche";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (implementer != 0 && part != 0)
|
|
|
|
|
return fmt::format("ARM (impl 0x{:02X} part 0x{:03X})", implementer, part);
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-09-13 03:48:07 -05:00
|
|
|
static CPUInfo CalcCPUInfo()
|
|
|
|
|
{
|
|
|
|
|
CPUInfo out;
|
2026-07-10 11:07:24 -04:00
|
|
|
const cpuinfo_package* pkg = cpuinfo_get_package(0);
|
|
|
|
|
out.name = (pkg && pkg->name[0] != '\0') ? pkg->name : "Unknown";
|
|
|
|
|
|
|
|
|
|
#if defined(__ANDROID__)
|
|
|
|
|
// cpuinfo's bundled SoC database may not recognise newer chips (e.g. QCS8550),
|
|
|
|
|
// leaving the package name empty or "Unknown". Fall back to the Android SoC build
|
|
|
|
|
// properties so the OSD shows a real name instead of "Unknown".
|
|
|
|
|
if (out.name.empty() || out.name.find("Unknown") != std::string::npos)
|
|
|
|
|
{
|
|
|
|
|
char model[PROP_VALUE_MAX] = {};
|
|
|
|
|
char manuf[PROP_VALUE_MAX] = {};
|
|
|
|
|
__system_property_get("ro.soc.model", model);
|
|
|
|
|
__system_property_get("ro.soc.manufacturer", manuf);
|
|
|
|
|
if (model[0] != '\0')
|
|
|
|
|
out.name = (manuf[0] != '\0') ? (std::string(manuf) + " " + model) : std::string(model);
|
|
|
|
|
else if (manuf[0] != '\0')
|
|
|
|
|
out.name = manuf;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2026-06-20 20:27:55 -07:00
|
|
|
#ifdef __aarch64__
|
|
|
|
|
// cpuinfo often returns empty/unknown on ARM Linux — use MIDR fallback
|
2026-07-19 10:24:29 -07:00
|
|
|
if (out.name.empty() || out.name.find("Unknown") != std::string::npos || out.name == "unknown")
|
2026-06-20 20:27:55 -07:00
|
|
|
{
|
|
|
|
|
std::string arm_name = DetectArmCPUName();
|
|
|
|
|
if (!arm_name.empty())
|
|
|
|
|
out.name = std::move(arm_name);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2026-07-19 10:24:29 -07:00
|
|
|
|
|
|
|
|
|
2024-09-13 03:48:07 -05:00
|
|
|
out.num_threads = cpuinfo_get_processors_count();
|
|
|
|
|
out.num_clusters = cpuinfo_get_clusters_count();
|
|
|
|
|
out.num_big_cores = 0;
|
|
|
|
|
out.num_small_cores = 0;
|
|
|
|
|
const cpuinfo_cluster* clusters = cpuinfo_get_clusters();
|
|
|
|
|
uint64_t big_freq = 0;
|
|
|
|
|
for (uint32_t i = 0; i < out.num_clusters; i++)
|
|
|
|
|
{
|
|
|
|
|
const cpuinfo_cluster& cluster = clusters[i];
|
|
|
|
|
if (cluster.frequency > big_freq)
|
|
|
|
|
{
|
|
|
|
|
out.num_small_cores += out.num_big_cores;
|
|
|
|
|
out.num_big_cores = cluster.core_count;
|
|
|
|
|
big_freq = cluster.frequency;
|
|
|
|
|
}
|
|
|
|
|
else if (cluster.frequency == big_freq)
|
|
|
|
|
{
|
|
|
|
|
out.num_big_cores += cluster.core_count;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
out.num_small_cores += cluster.core_count;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const CPUInfo& GetCPUInfo()
|
|
|
|
|
{
|
|
|
|
|
static const CPUInfo info = CalcCPUInfo();
|
|
|
|
|
return info;
|
|
|
|
|
}
|
|
|
|
|
#endif
|