cpu_patches: Remove CPU patches for macOS and bump minimum OS version to 15.4 (#2743)

* cpu_patches: Remove CPU patches for macOS and bump minimum OS version to 15.4

* cpu_patches: Remove BMI1 patches

These are now only good for very old Intel CPUs that:
* Still do not currently function due to other CPU instruction issues.
* Will probably be too slow to run shadPS4 well.
This commit is contained in:
squidbus 2025-04-03 12:39:08 -07:00 committed by GitHub
parent afd0251dd2
commit 806b2ddc89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 8 additions and 587 deletions

View file

@ -7,12 +7,6 @@
namespace Core {
/// Initializes a stack for the current thread for use by patch implementations.
void InitializeThreadPatchStack();
/// Cleans up the patch stack for the current thread.
void CleanupThreadPatchStack();
/// Registers a module for patching, providing an area to generate trampoline code.
void RegisterPatchModule(void* module_ptr, u64 module_size, void* trampoline_area_ptr,
u64 trampoline_area_size);