mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
90b9861043
SPURecompiler.h: SETcc bug fixed
41 lines
743 B
C++
41 lines
743 B
C++
#include <stdafx.h>
|
|
#include "Emu/ConLog.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/CPU/CPUThread.h"
|
|
|
|
#include "Utilities/SMutex.h"
|
|
|
|
__forceinline void SM_Sleep()
|
|
{
|
|
if (NamedThreadBase* t = GetCurrentNamedThread())
|
|
{
|
|
t->WaitForAnySignal();
|
|
}
|
|
else
|
|
{
|
|
Sleep(1);
|
|
}
|
|
}
|
|
|
|
thread_local size_t g_this_thread_id = 0;
|
|
|
|
__forceinline size_t SM_GetCurrentThreadId()
|
|
{
|
|
return g_this_thread_id ? g_this_thread_id : g_this_thread_id = std::hash<std::thread::id>()(std::this_thread::get_id());
|
|
}
|
|
|
|
__forceinline u32 SM_GetCurrentCPUThreadId()
|
|
{
|
|
if (CPUThread* t = GetCurrentCPUThread())
|
|
{
|
|
return t->GetId();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
__forceinline be_t<u32> SM_GetCurrentCPUThreadIdBE()
|
|
{
|
|
return SM_GetCurrentCPUThreadId();
|
|
}
|