Files
ARMSX2/common/HostSys.cpp
T
Brian Degenhardt 3e077eff9b Merge yaps2: arm64 JIT transplant + test/perf/libretro infrastructure
Merges yaps2/main (github.com/yaps2/yaps2, c16b88cb7) into ARMSX2,
replacing the arm64 recompiler family with the yaps2 JITs and importing
the yaps2 testing, perf, and libretro infrastructure. Common ancestor is
upstream PCSX2 342db5152 (2026-06-19); git auto-merged all but 38 files.

Replaced (deleted in this merge, recoverable from history):
- arm64/aR5900*, aR3000A*, aVU* -> arm64/iR5900*/iR3000A*/microVU*-arm64:
  EE static-pin register file with lazy dirty tracking, dual-residence
  allocator, IOP block linking, native COP2 macro ops, inline unaligned
  fastmem, persisted VU program cache, call-ret shadow ring, VU0 spin
  fast-forward.
- MVU_DIFF shadow-run hooks in shared VU interpreter TUs (superseded by
  the offline vurunner JIT-vs-interp oracle).

Imported from yaps2:
- tests/ctest/core/recompilers: ~80 gtest suites (EE/IOP/VU differential
  harnesses, fuzzers, ABI digest tripwire, capture format pins) plus the
  gs_vertex_tests kernel oracle.
- pcsx2-vurunner / pcsx2-eerunner headless capture-replay runners.
- tools/perf counter-based A/B rigs, perf jitdump productionization,
  PmuCounters, clang-perf/clang-handheld presets.
- pcsx2-libretro core (ENABLE_LIBRETRO, default OFF; rename pending).
- GS vertex-kick fast path (GV series): TBL-based packed parse,
  register-resident kick, scalar-outcode cull, fused draw-rect/FindMinMax.
- Null renderer, VK_KHR_display direct WSI, swapchain PresentStats.
- SPU2 NEON mixer vectorization, EE timer read clamp (NFL 2K5 hang),
  IOP ioman signed-compare fix, assorted UB fixes.

Kept from ARMSX2 in the both-touched files:
- iOS dual-map W^X and fastmem-unavailable resilience (Memory, HostSys,
  vtlb). The split data/code area model is retained; both areas now take
  fixed VA hints so cached VU JIT code stays deterministic on Linux.
- Android thread-affinity model, VMState shutdown early-outs, all
  platform frontends, branding, CI, RetroAchievements identity/policy.
- GSDeviceVK: ARMSX2's push-descriptor decision logic (Mali crash gate,
  proprietary-vs-turnip Adreno split) merged with yaps2's descriptor-pool
  exhaustion recovery (flush + render-pass restart instead of dropped
  binds). Vendor feature policy is the union: Mali fbfetch policy with
  MediaTek/G57/Xclipse gates from ARMSX2; Adreno stencil/ROV/
  test-and-sample-depth hang avoidance and no_ps2_z_quantization from
  yaps2.

Build-system notes:
- The Qt debugger is now gated behind ENABLE_QT_DEBUGGER (default off on
  arm64) so handheld builds drop the KDDockWidgets dependency.
- GSDeviceNone and remaining yaps2 GS code were ported to the newer
  upstream GSTexture Usage-flags API.

The replaced backend's interpreter-fallback glue (intExecuteOneInst,
AndroidEEOpHist) and the EEDiffVerify runtime differ are retained for
now; dead pieces will be removed in a follow-up commit.
2026-07-19 10:24:29 -07:00

293 lines
7.3 KiB
C++

// SPDX-FileCopyrightText: 2002-2026 PCSX2 Dev Team
// SPDX-License-Identifier: GPL-3.0+
#include "HostSys.h"
#include "Console.h"
#include "VectorIntrin.h"
#include "fmt/format.h"
#ifndef __APPLE__
#include "cpuinfo.h"
#endif
#if defined(__ANDROID__)
#include <sys/system_properties.h>
#endif
static u32 PAUSE_TIME = 0;
static void MultiPause()
{
#ifdef ARCH_X86
_mm_pause();
_mm_pause();
_mm_pause();
_mm_pause();
_mm_pause();
_mm_pause();
_mm_pause();
_mm_pause();
#elif defined(ARCH_ARM64) && defined(_MSC_VER)
__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);
#elif defined(ARCH_ARM64)
__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
}
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;
}
}
}
__noinline static void UpdatePauseTime()
{
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);
}
u32 ShortSpin()
{
u32 inc = PAUSE_TIME;
if (inc == 0) [[unlikely]]
{
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();
#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;
};
#define CRASH_ANNOTATION __attribute__((used, section("__DATA,__crash_info")))
#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();
}
#ifndef __APPLE__
// MacOS version is in DarwinMisc
#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
static CPUInfo CalcCPUInfo()
{
CPUInfo out;
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
#ifdef __aarch64__
// cpuinfo often returns empty/unknown on ARM Linux — use MIDR fallback
if (out.name.empty() || out.name.find("Unknown") != std::string::npos || out.name == "unknown")
{
std::string arm_name = DetectArmCPUName();
if (!arm_name.empty())
out.name = std::move(arm_name);
}
#endif
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