mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-17 21:57:52 +00:00
[core/core_timing] better MWAITX and WAITPKG delays (#3984)
This implements MWAITX and WAITPKG extensions (umonitor, mwait) for CPUs that support them. Reduces wait times and bypasses the timing stuff from the OS that is slow (windows notably). generally it should answer within 0.2 to 0.5 microsecs (since most requests wait for that long). Also does a general rework of static ctors and stuff Signed-off-by: lizzie <lizzie@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3984 Reviewed-by: MaranBr <maranbr@eden-emu.dev> Reviewed-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
@@ -124,7 +124,7 @@ static FileSys::VirtualFile VfsDirectoryCreateFileWrapper(const FileSys::Virtual
|
||||
#include "common/string_util.h"
|
||||
|
||||
#ifdef ARCHITECTURE_x86_64
|
||||
#include "common/x64/cpu_detect.h"
|
||||
#include "common/cpu_features.h"
|
||||
#endif
|
||||
|
||||
// Core //
|
||||
@@ -3119,7 +3119,7 @@ void MainWindow::OnMenuReportCompatibility() {
|
||||
tr("Compatibility list reporting is currently disabled. Check back later!"));
|
||||
|
||||
// #if defined(ARCHITECTURE_x86_64) && !defined(__APPLE__)
|
||||
// const auto& caps = Common::GetCPUCaps();
|
||||
// const auto& caps = g_cpu_caps;
|
||||
// const bool has_fma = caps.fma;
|
||||
// const auto processor_count = std::thread::hardware_concurrency();
|
||||
// const bool has_4threads = processor_count == 0 || processor_count >= 4;
|
||||
|
||||
Reference in New Issue
Block a user