2015-11-17 17:30:20 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
|
|
|
* Copyright (C) 2002-2014 PCSX2 Dev Team
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-09-03 10:43:33 +00:00
|
|
|
#if defined(__APPLE__)
|
2015-11-17 17:30:20 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <mach/mach_init.h>
|
|
|
|
#include <mach/thread_act.h>
|
|
|
|
#include <mach/mach_port.h>
|
|
|
|
|
2021-09-03 10:43:33 +00:00
|
|
|
#include "common/PrecompiledHeader.h"
|
|
|
|
#include "common/PersistentThread.h"
|
|
|
|
|
2015-11-17 17:30:20 +00:00
|
|
|
// Note: assuming multicore is safer because it forces the interlocked routines to use
|
|
|
|
// the LOCK prefix. The prefix works on single core CPUs fine (but is slow), but not
|
|
|
|
// having the LOCK prefix is very bad indeed.
|
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
__forceinline void Threading::Sleep(int ms)
|
2015-11-17 17:30:20 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
usleep(1000 * ms);
|
2015-11-17 17:30:20 +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.
|
|
|
|
__forceinline void Threading::SpinWait()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
// If this doesn't compile you can just comment it out (it only serves as a
|
|
|
|
// performance hint and isn't required).
|
|
|
|
__asm__("pause");
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline void Threading::EnableHiresScheduler()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
// Darwin has customizable schedulers, see xnu/osfmk/man. Not
|
|
|
|
// implemented yet though (and not sure if useful for pcsx2).
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline void Threading::DisableHiresScheduler()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
// see EnableHiresScheduler()
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Just like on Windows, this is not really the number of ticks per second,
|
|
|
|
// but just a factor by which one has to divide GetThreadCpuTime() or
|
|
|
|
// pxThread::GetCpuTime() if one wants to receive a value in seconds. NOTE:
|
|
|
|
// doing this will of course yield precision loss.
|
|
|
|
u64 Threading::GetThreadTicksPerSecond()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
return 1000000; // the *CpuTime() functions return values in microseconds
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// gets the CPU time used by the current thread (both system and user), in
|
|
|
|
// microseconds, returns 0 on failure
|
2016-11-12 15:28:37 +00:00
|
|
|
static u64 getthreadtime(thread_port_t thread)
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
mach_msg_type_number_t count = THREAD_BASIC_INFO_COUNT;
|
|
|
|
thread_basic_info_data_t info;
|
|
|
|
|
|
|
|
kern_return_t kr = thread_info(thread, THREAD_BASIC_INFO,
|
|
|
|
(thread_info_t)&info, &count);
|
|
|
|
if (kr != KERN_SUCCESS)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add system and user time
|
|
|
|
return (u64)info.user_time.seconds * (u64)1e6 +
|
|
|
|
(u64)info.user_time.microseconds +
|
|
|
|
(u64)info.system_time.seconds * (u64)1e6 +
|
|
|
|
(u64)info.system_time.microseconds;
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 02:46:39 +00:00
|
|
|
// Returns the current timestamp (not relative to a real world clock) in microseconds
|
2015-11-17 17:30:20 +00:00
|
|
|
u64 Threading::GetThreadCpuTime()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
// we could also use mach_thread_self() and mach_port_deallocate(), but
|
|
|
|
// that calls upon mach traps (kinda like system calls). Unless I missed
|
|
|
|
// something in the COMMPAGE (like Linux vDSO) which makes overrides it
|
|
|
|
// to be user-space instead. In contract,
|
|
|
|
// pthread_mach_thread_np(pthread_self()) is entirely in user-space.
|
|
|
|
u64 us = getthreadtime(pthread_mach_thread_np(pthread_self()));
|
2021-11-05 02:46:39 +00:00
|
|
|
return us;
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
2022-05-02 06:01:44 +00:00
|
|
|
Threading::ThreadHandle::ThreadHandle() = default;
|
|
|
|
|
|
|
|
Threading::ThreadHandle::ThreadHandle(const ThreadHandle& handle)
|
|
|
|
: m_native_handle(handle.m_native_handle)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Threading::ThreadHandle::ThreadHandle(ThreadHandle&& handle)
|
|
|
|
: m_native_handle(handle.m_native_handle)
|
|
|
|
{
|
|
|
|
handle.m_native_handle = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
Threading::ThreadHandle::~ThreadHandle() = default;
|
|
|
|
|
|
|
|
Threading::ThreadHandle Threading::ThreadHandle::GetForCallingThread()
|
|
|
|
{
|
|
|
|
ThreadHandle ret;
|
|
|
|
ret.m_native_handle = pthread_self();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
Threading::ThreadHandle& Threading::ThreadHandle::operator=(ThreadHandle&& handle)
|
|
|
|
{
|
|
|
|
m_native_handle = handle.m_native_handle;
|
|
|
|
handle.m_native_handle = nullptr;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
Threading::ThreadHandle& Threading::ThreadHandle::operator=(const ThreadHandle& handle)
|
|
|
|
{
|
|
|
|
m_native_handle = handle.m_native_handle;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 Threading::ThreadHandle::GetCPUTime() const
|
|
|
|
{
|
|
|
|
return getthreadtime(pthread_mach_thread_np((pthread_t)m_native_handle));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Threading::ThreadHandle::SetAffinity(u64 processor_mask) const
|
|
|
|
{
|
|
|
|
// Doesn't appear to be possible to set affinity.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-17 17:30:20 +00:00
|
|
|
u64 Threading::pxThread::GetCpuTime() const
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
// Get the cpu time for the thread belonging to this object. Use m_native_id and/or
|
|
|
|
// m_native_handle to implement it. Return value should be a measure of total time the
|
|
|
|
// thread has used on the CPU (scaled by the value returned by GetThreadTicksPerSecond(),
|
|
|
|
// which typically would be an OS-provided scalar or some sort).
|
|
|
|
if (!m_native_id)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-11-05 02:46:39 +00:00
|
|
|
return getthreadtime((thread_port_t)m_native_id);
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Threading::pxThread::_platform_specific_OnStartInThread()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
m_native_id = (uptr)mach_thread_self();
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Threading::pxThread::_platform_specific_OnCleanupInThread()
|
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
// cleanup of handles that were upened in
|
|
|
|
// _platform_specific_OnStartInThread
|
|
|
|
mach_port_deallocate(mach_task_self(), (thread_port_t)m_native_id);
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// name can be up to 16 bytes
|
2021-09-06 18:28:26 +00:00
|
|
|
void Threading::SetNameOfCurrentThread(const char* name)
|
2015-11-17 17:30:20 +00:00
|
|
|
{
|
2021-09-06 18:28:26 +00:00
|
|
|
pthread_setname_np(name);
|
2015-11-17 17:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|