2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-02-09 21:15:56 +00:00
|
|
|
*/
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2021-09-02 16:36:36 +00:00
|
|
|
#if defined(_WIN32)
|
|
|
|
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/RedtapeWindows.h"
|
2022-05-05 13:01:14 +00:00
|
|
|
#include "common/Threading.h"
|
2021-09-01 20:31:46 +00:00
|
|
|
#include "common/emitter/tools.h"
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
__fi void Threading::Sleep(int ms)
|
2009-10-20 19:34:57 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
::Sleep(ms);
|
2009-10-20 19:34:57 +00:00
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-10-20 19:34:57 +00:00
|
|
|
// 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()
|
2009-10-20 19:34:57 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
_mm_pause();
|
2009-10-20 19:34:57 +00:00
|
|
|
}
|
|
|
|
|
2010-08-09 04:10:38 +00:00
|
|
|
__fi void Threading::EnableHiresScheduler()
|
2009-10-20 19:34:57 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00: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.
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
// (note: this same trick is used by most multimedia software and games)
|
2009-10-19 23:13:22 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
timeBeginPeriod(1);
|
2009-10-20 19:34:57 +00:00
|
|
|
}
|
2009-10-19 23:13:22 +00:00
|
|
|
|
2010-08-09 04:10:38 +00:00
|
|
|
__fi void Threading::DisableHiresScheduler()
|
2009-10-20 19:34:57 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
timeEndPeriod(1);
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
2009-07-03 20:12:33 +00:00
|
|
|
|
2022-05-02 06:01:44 +00: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
|
|
|
|
{
|
|
|
|
u64 ret = 0;
|
|
|
|
if (m_native_handle)
|
|
|
|
QueryThreadCycleTime((HANDLE)m_native_handle, &ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2010-01-25 15:31:17 +00:00
|
|
|
u64 Threading::GetThreadCpuTime()
|
|
|
|
{
|
2022-05-02 05:15:47 +00:00
|
|
|
u64 ret = 0;
|
|
|
|
QueryThreadCycleTime(GetCurrentThread(), &ret);
|
|
|
|
return ret;
|
2010-01-25 15:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u64 Threading::GetThreadTicksPerSecond()
|
|
|
|
{
|
2022-05-02 05:15:47 +00:00
|
|
|
// 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 (unlikely(frequency == 0))
|
|
|
|
frequency = x86caps.CachedMHz() * u64(1000000);
|
|
|
|
return frequency;
|
2010-01-25 15:31:17 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
void Threading::SetNameOfCurrentThread(const char* name)
|
2010-01-25 15:31:17 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
// This feature needs Windows headers and MSVC's SEH support:
|
2010-01-25 15:31:17 +00:00
|
|
|
|
2016-01-27 20:11:22 +00:00
|
|
|
#if defined(_WIN32) && defined(_MSC_VER)
|
2010-01-25 15:31:17 +00:00
|
|
|
|
2021-09-06 18:28:26 +00: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!
|
2016-11-12 15:28:37 +00:00
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
static const int MS_VC_EXCEPTION = 0x406D1388;
|
2016-11-12 15:28:37 +00:00
|
|
|
|
|
|
|
#pragma pack(push, 8)
|
2021-09-06 18:28:26 +00: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 15:28:37 +00:00
|
|
|
#pragma pack(pop)
|
|
|
|
|
2021-09-06 18:28:26 +00:00
|
|
|
THREADNAME_INFO info;
|
|
|
|
info.dwType = 0x1000;
|
|
|
|
info.szName = name;
|
|
|
|
info.dwThreadID = GetCurrentThreadId();
|
|
|
|
info.dwFlags = 0;
|
|
|
|
|
|
|
|
__try
|
|
|
|
{
|
|
|
|
RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(ULONG_PTR), (ULONG_PTR*)&info);
|
|
|
|
}
|
|
|
|
__except (EXCEPTION_EXECUTE_HANDLER)
|
|
|
|
{
|
|
|
|
}
|
2010-01-25 15:31:17 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-11-26 03:37:10 +00:00
|
|
|
#endif
|