Files

316 lines
8.1 KiB
C++
Raw Permalink Normal View History

// SPDX-FileCopyrightText: 2002-2026 PCSX2 Dev Team
2024-07-30 13:42:36 +02:00
// SPDX-License-Identifier: GPL-3.0+
2022-05-05 23:01:14 +10:00
#include "common/Threading.h"
2022-05-07 21:07:22 +10:00
#include "common/Assertions.h"
#include "common/RedtapeWindows.h"
2024-01-07 19:36:40 +10:00
#include <memory>
#include <mmsystem.h>
2022-05-07 21:07:22 +10:00
#include <process.h>
#include <timeapi.h>
__fi void Threading::Timeslice()
{
::Sleep(0);
}
// For use in spin/wait loops, Acts as a hint to Intel CPUs and should, in theory
// improve performance and reduce cpu power consumption.
2010-08-09 04:10:38 +00:00
__fi void Threading::SpinWait()
{
2026-03-10 23:40:32 -05:00
#ifdef ARCH_X86
2021-09-06 14:28:26 -04:00
_mm_pause();
#else
YieldProcessor();
#endif
}
2010-08-09 04:10:38 +00:00
__fi void Threading::EnableHiresScheduler()
{
2021-09-06 14:28:26 -04:00
// This improves accuracy of Sleep() by some amount, and only adds a negligible amount of
// overhead on modern CPUs. Typically desktops are already set pretty low, but laptops in
// particular may have a scheduler Period of 15 or 20ms to extend battery life.
2021-09-06 14:28:26 -04:00
// (note: this same trick is used by most multimedia software and games)
2021-09-06 14:28:26 -04:00
timeBeginPeriod(1);
}
2010-08-09 04:10:38 +00:00
__fi void Threading::DisableHiresScheduler()
{
2021-09-06 14:28:26 -04:00
timeEndPeriod(1);
}
2022-05-02 16:01:44 +10:00
Threading::ThreadHandle::ThreadHandle() = default;
Threading::ThreadHandle::ThreadHandle(const ThreadHandle& handle)
{
if (handle.m_native_handle)
{
HANDLE new_handle;
if (DuplicateHandle(GetCurrentProcess(), (HANDLE)handle.m_native_handle,
GetCurrentProcess(), &new_handle, THREAD_QUERY_INFORMATION | THREAD_SET_LIMITED_INFORMATION, FALSE, 0))
{
m_native_handle = (void*)new_handle;
}
}
}
Threading::ThreadHandle::ThreadHandle(ThreadHandle&& handle)
: m_native_handle(handle.m_native_handle)
{
handle.m_native_handle = nullptr;
}
Threading::ThreadHandle::~ThreadHandle()
{
if (m_native_handle)
CloseHandle(m_native_handle);
}
Threading::ThreadHandle Threading::ThreadHandle::GetForCallingThread()
{
ThreadHandle ret;
ret.m_native_handle = (void*)OpenThread(THREAD_QUERY_INFORMATION | THREAD_SET_LIMITED_INFORMATION, FALSE, GetCurrentThreadId());
return ret;
}
Threading::ThreadHandle& Threading::ThreadHandle::operator=(ThreadHandle&& handle)
{
if (m_native_handle)
CloseHandle((HANDLE)m_native_handle);
m_native_handle = handle.m_native_handle;
handle.m_native_handle = nullptr;
return *this;
}
Threading::ThreadHandle& Threading::ThreadHandle::operator=(const ThreadHandle& handle)
{
if (m_native_handle)
{
CloseHandle((HANDLE)m_native_handle);
m_native_handle = nullptr;
}
HANDLE new_handle;
if (DuplicateHandle(GetCurrentProcess(), (HANDLE)handle.m_native_handle,
GetCurrentProcess(), &new_handle, THREAD_QUERY_INFORMATION | THREAD_SET_LIMITED_INFORMATION, FALSE, 0))
{
m_native_handle = (void*)new_handle;
}
return *this;
}
u64 Threading::ThreadHandle::GetCPUTime() const
{
2026-03-10 23:40:32 -05:00
#ifndef ARCH_ARM64
2022-05-02 16:01:44 +10:00
u64 ret = 0;
if (m_native_handle)
QueryThreadCycleTime((HANDLE)m_native_handle, &ret);
return ret;
2024-03-21 16:43:50 +10:00
#else
FILETIME user, kernel, unused;
if (!GetThreadTimes((HANDLE)m_native_handle, &unused, &unused, &kernel, &user))
return 0;
const u64 user_time = (static_cast<u64>(user.dwHighDateTime) << 32) | static_cast<u64>(user.dwLowDateTime);
const u64 kernel_time = (static_cast<u64>(kernel.dwHighDateTime) << 32) | static_cast<u64>(kernel.dwLowDateTime);
return user_time + kernel_time;
#endif
2022-05-02 16:01:44 +10:00
}
bool Threading::ThreadHandle::SetAffinity(u64 processor_mask) const
{
if (processor_mask == 0)
processor_mask = ~processor_mask;
return (SetThreadAffinityMask(GetCurrentThread(), (DWORD_PTR)processor_mask) != 0 || GetLastError() != ERROR_SUCCESS);
}
bool Threading::ThreadHandle::SetNicePriority(int nice) const
{
if (!m_native_handle)
return false;
int win_priority = THREAD_PRIORITY_NORMAL;
if (nice <= -15)
win_priority = THREAD_PRIORITY_HIGHEST;
else if (nice <= -5)
win_priority = THREAD_PRIORITY_ABOVE_NORMAL;
else if (nice >= 15)
win_priority = THREAD_PRIORITY_LOWEST;
else if (nice >= 5)
win_priority = THREAD_PRIORITY_BELOW_NORMAL;
return SetThreadPriority(static_cast<HANDLE>(m_native_handle), win_priority) != 0;
}
u64 Threading::ThreadHandle::GetAffinity() const
{
return 0;
}
int Threading::ThreadHandle::GetCurrentCpu() const
{
return static_cast<int>(GetCurrentProcessorNumber());
}
2022-05-07 21:07:22 +10:00
Threading::Thread::Thread() = default;
Threading::Thread::Thread(Thread&& thread)
: ThreadHandle(thread)
, m_stack_size(thread.m_stack_size)
{
thread.m_stack_size = 0;
}
Threading::Thread::Thread(EntryPoint func)
: ThreadHandle()
{
if (!Start(std::move(func)))
pxFailRel("Failed to start implicitly started thread.");
}
Threading::Thread::~Thread()
{
pxAssertRel(!m_native_handle, "Thread should be detached or joined at destruction");
}
void Threading::Thread::SetStackSize(u32 size)
{
pxAssertRel(!m_native_handle, "Can't change the stack size on a started thread");
m_stack_size = size;
}
unsigned Threading::Thread::ThreadProc(void* param)
{
std::unique_ptr<EntryPoint> entry(static_cast<EntryPoint*>(param));
(*entry.get())();
return 0;
}
bool Threading::Thread::Start(EntryPoint func)
{
pxAssertRel(!m_native_handle, "Can't start an already-started thread");
std::unique_ptr<EntryPoint> func_clone(std::make_unique<EntryPoint>(std::move(func)));
unsigned thread_id;
m_native_handle = reinterpret_cast<void*>(_beginthreadex(nullptr, m_stack_size, ThreadProc, func_clone.get(), 0, &thread_id));
if (!m_native_handle)
return false;
// thread started, it'll release the memory
func_clone.release();
return true;
}
void Threading::Thread::Detach()
{
pxAssertRel(m_native_handle, "Can't detach without a thread");
CloseHandle((HANDLE)m_native_handle);
m_native_handle = nullptr;
}
void Threading::Thread::Join()
{
pxAssertRel(m_native_handle, "Can't join without a thread");
const DWORD res = WaitForSingleObject((HANDLE)m_native_handle, INFINITE);
if (res != WAIT_OBJECT_0)
pxFailRel("WaitForSingleObject() for thread join failed");
CloseHandle((HANDLE)m_native_handle);
m_native_handle = nullptr;
}
Threading::ThreadHandle& Threading::Thread::operator=(Thread&& thread)
{
ThreadHandle::operator=(thread);
m_stack_size = thread.m_stack_size;
thread.m_stack_size = 0;
return *this;
}
u64 Threading::GetThreadCpuTime()
{
2026-03-10 23:40:32 -05:00
#ifndef ARCH_ARM64
u64 ret = 0;
QueryThreadCycleTime(GetCurrentThread(), &ret);
return ret;
2024-03-21 16:43:50 +10:00
#else
FILETIME user, kernel, unused;
if (!GetThreadTimes(GetCurrentThread(), &unused, &unused, &kernel, &user))
return 0;
const u64 user_time = (static_cast<u64>(user.dwHighDateTime) << 32) | static_cast<u64>(user.dwLowDateTime);
const u64 kernel_time = (static_cast<u64>(kernel.dwHighDateTime) << 32) | static_cast<u64>(kernel.dwLowDateTime);
return user_time + kernel_time;
#endif
}
u64 Threading::GetThreadTicksPerSecond()
{
2026-03-10 23:40:32 -05:00
#ifndef ARCH_ARM64
// On x86, despite what the MS documentation says, this basically appears to be rdtsc.
// So, the frequency is our base clock speed (and stable regardless of power management).
static u64 frequency = 0;
if (frequency == 0) [[unlikely]]
2023-06-15 01:25:48 +10:00
{
HKEY key;
LSTATUS res =
RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0", 0, KEY_READ, &key);
if (res == ERROR_SUCCESS)
{
DWORD mhz;
DWORD size = sizeof(mhz);
res = RegQueryValueExW(key, L"~MHz", nullptr, nullptr, reinterpret_cast<LPBYTE>(&mhz), &size);
if (res == ERROR_SUCCESS)
frequency = static_cast<u64>(mhz) * static_cast<u64>(1000000);
RegCloseKey(key);
}
}
return frequency;
2024-03-21 16:43:50 +10:00
#else
return 10000000;
#endif
}
2021-09-06 14:28:26 -04:00
void Threading::SetNameOfCurrentThread(const char* name)
{
2021-09-06 14:28:26 -04:00
// This feature needs Windows headers and MSVC's SEH support:
#if defined(_WIN32) && defined(_MSC_VER)
2021-09-06 14:28:26 -04:00
// This code sample was borrowed form some obscure MSDN article.
// In a rare bout of sanity, it's an actual Microsoft-published hack
// that actually works!
2021-09-06 14:28:26 -04:00
static const int MS_VC_EXCEPTION = 0x406D1388;
2016-11-12 16:28:37 +01:00
#pragma pack(push, 8)
2021-09-06 14:28:26 -04:00
struct THREADNAME_INFO
{
DWORD dwType; // Must be 0x1000.
LPCSTR szName; // Pointer to name (in user addr space).
DWORD dwThreadID; // Thread ID (-1=caller thread).
DWORD dwFlags; // Reserved for future use, must be zero.
};
2016-11-12 16:28:37 +01:00
#pragma pack(pop)
2021-09-06 14:28:26 -04:00
THREADNAME_INFO info;
info.dwType = 0x1000;
info.szName = name;
info.dwThreadID = GetCurrentThreadId();
info.dwFlags = 0;
2021-09-06 14:28:26 -04:00
__try
{
RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(ULONG_PTR), (ULONG_PTR*)&info);
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
}
#endif
}