rpcs3/Utilities/mutex.cpp

150 lines
2.5 KiB
C++
Raw Normal View History

#include "mutex.h"
#include "sync.h"
#include <climits>
void shared_mutex::imp_lock_shared(u32 val)
{
verify("shared_mutex underflow" HERE), val < c_err;
2017-02-15 15:07:42 +00:00
for (int i = 0; i < 10; i++)
{
2017-02-15 15:07:42 +00:00
busy_wait();
if (try_lock_shared())
{
2017-02-15 15:07:42 +00:00
return;
}
2017-02-15 15:07:42 +00:00
}
// Acquire writer lock and downgrade
const u32 old = m_value.fetch_add(c_one);
if (old == 0)
{
lock_downgrade();
return;
}
2018-03-11 16:28:32 +00:00
verify("shared_mutex overflow" HERE), (old % c_sig) + c_one < c_sig;
imp_wait();
lock_downgrade();
}
void shared_mutex::imp_unlock_shared(u32 old)
{
verify("shared_mutex underflow" HERE), old - 1 < c_err;
2017-02-15 15:07:42 +00:00
// Check reader count, notify the writer if necessary
if ((old - 1) % c_one == 0)
{
#ifdef _WIN32
NtReleaseKeyedEvent(nullptr, &m_value, false, nullptr);
#else
m_value += c_sig;
2017-02-24 15:48:53 +00:00
futex(reinterpret_cast<int*>(&m_value.raw()), FUTEX_WAKE_BITSET_PRIVATE, 1, nullptr, nullptr, c_sig);
#endif
}
}
void shared_mutex::imp_wait()
{
#ifdef _WIN32
NtWaitForKeyedEvent(nullptr, &m_value, false, nullptr);
#else
2017-02-24 15:48:53 +00:00
while (true)
{
2017-02-24 15:48:53 +00:00
// Load new value, try to acquire c_sig
auto [value, ok] = m_value.fetch_op([](u32& value)
2017-02-24 15:48:53 +00:00
{
if (value >= c_sig)
2017-02-24 15:48:53 +00:00
{
value -= c_sig;
return true;
2017-02-24 15:48:53 +00:00
}
return false;
2017-02-24 15:48:53 +00:00
});
2017-02-15 15:07:42 +00:00
if (ok)
{
2017-02-15 15:07:42 +00:00
return;
}
2017-02-15 15:07:42 +00:00
futex(reinterpret_cast<int*>(&m_value.raw()), FUTEX_WAIT_BITSET_PRIVATE, value, nullptr, nullptr, c_sig);
}
#endif
}
void shared_mutex::imp_lock(u32 val)
2017-02-15 15:07:42 +00:00
{
verify("shared_mutex underflow" HERE), val < c_err;
2017-02-15 15:07:42 +00:00
for (int i = 0; i < 10; i++)
{
busy_wait();
if (try_lock())
2017-02-15 15:07:42 +00:00
{
return;
}
}
const u32 old = m_value.fetch_add(c_one);
if (old == 0)
{
return;
}
verify("shared_mutex overflow" HERE), (old % c_sig) + c_one < c_sig;
imp_wait();
2017-02-15 15:07:42 +00:00
}
void shared_mutex::imp_unlock(u32 old)
{
verify("shared_mutex underflow" HERE), old - c_one < c_err;
2017-02-15 15:07:42 +00:00
// 1) Notify the next writer if necessary
// 2) Notify all readers otherwise if necessary (currently indistinguishable from writers)
2017-02-15 15:07:42 +00:00
#ifdef _WIN32
if (old - c_one)
{
NtReleaseKeyedEvent(nullptr, &m_value, false, nullptr);
}
#else
if (old - c_one)
2017-02-15 15:07:42 +00:00
{
m_value += c_sig;
2017-02-24 15:48:53 +00:00
futex(reinterpret_cast<int*>(&m_value.raw()), FUTEX_WAKE_BITSET_PRIVATE, 1, nullptr, nullptr, c_sig);
2017-02-15 15:07:42 +00:00
}
#endif
}
void shared_mutex::imp_lock_upgrade()
{
for (int i = 0; i < 10; i++)
{
busy_wait();
if (try_lock_upgrade())
{
return;
}
}
// Convert to writer lock
const u32 old = m_value.fetch_add(c_one - 1);
verify("shared_mutex overflow" HERE), (old % c_sig) + c_one - 1 < c_sig;
if (old % c_one == 1)
{
return;
}
imp_wait();
}