rpcsx/rpcs3/Emu/Cell/lv2/sys_lwmutex.cpp

242 lines
4.3 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "sys_lwmutex.h"
2015-03-06 23:58:42 +01:00
#include "Emu/IdManager.h"
2014-08-23 16:51:51 +02:00
2016-04-14 00:23:53 +02:00
#include "Emu/Cell/ErrorCodes.h"
2014-08-23 16:51:51 +02:00
#include "Emu/Cell/PPUThread.h"
LOG_CHANNEL(sys_lwmutex);
2014-08-23 16:51:51 +02:00
2019-06-20 13:42:06 +02:00
error_code _sys_lwmutex_create(ppu_thread& ppu, vm::ptr<u32> lwmutex_id, u32 protocol, vm::ptr<sys_lwmutex_t> control, s32 has_name, u64 name)
{
2019-06-20 13:42:06 +02:00
vm::temporary_unlock(ppu);
sys_lwmutex.warning(u8"_sys_lwmutex_create(lwmutex_id=*0x%x, protocol=0x%x, control=*0x%x, has_name=0x%x, name=0x%llx (“%s”))", lwmutex_id, protocol, control, has_name, name, lv2_obj::name64(std::bit_cast<be_t<u64>>(name)));
2018-02-09 15:49:37 +01:00
2015-07-19 23:29:40 +02:00
if (protocol != SYS_SYNC_FIFO && protocol != SYS_SYNC_RETRY && protocol != SYS_SYNC_PRIORITY)
{
sys_lwmutex.error("_sys_lwmutex_create(): unknown protocol (0x%x)", protocol);
2015-07-19 23:29:40 +02:00
return CELL_EINVAL;
}
if (!(has_name < 0))
{
name = 0;
}
2017-02-03 00:16:09 +01:00
if (const u32 id = idm::make<lv2_obj, lv2_lwmutex>(protocol, control, name))
{
*lwmutex_id = id;
return CELL_OK;
}
2017-02-03 00:16:09 +01:00
return CELL_EAGAIN;
}
2019-06-20 13:42:06 +02:00
error_code _sys_lwmutex_destroy(ppu_thread& ppu, u32 lwmutex_id)
{
2019-06-20 13:42:06 +02:00
vm::temporary_unlock(ppu);
sys_lwmutex.warning("_sys_lwmutex_destroy(lwmutex_id=0x%x)", lwmutex_id);
2017-02-03 00:16:09 +01:00
const auto mutex = idm::withdraw<lv2_obj, lv2_lwmutex>(lwmutex_id, [&](lv2_lwmutex& mutex) -> CellError
{
std::lock_guard lock(mutex.mutex);
2017-02-03 00:16:09 +01:00
if (!mutex.sq.empty())
{
return CELL_EBUSY;
}
2017-02-03 00:16:09 +01:00
return {};
});
2015-03-11 16:30:50 +01:00
2015-04-12 03:36:25 +02:00
if (!mutex)
{
return CELL_ESRCH;
}
2017-02-03 00:16:09 +01:00
if (mutex.ret)
{
2017-02-03 00:16:09 +01:00
return mutex.ret;
}
return CELL_OK;
}
2017-02-03 00:16:09 +01:00
error_code _sys_lwmutex_lock(ppu_thread& ppu, u32 lwmutex_id, u64 timeout)
{
2019-06-20 13:42:06 +02:00
vm::temporary_unlock(ppu);
sys_lwmutex.trace("_sys_lwmutex_lock(lwmutex_id=0x%x, timeout=0x%llx)", lwmutex_id, timeout);
ppu.gpr[3] = CELL_OK;
2017-02-03 00:16:09 +01:00
const auto mutex = idm::get<lv2_obj, lv2_lwmutex>(lwmutex_id, [&](lv2_lwmutex& mutex)
{
if (mutex.signaled.try_dec(0))
2017-02-03 00:16:09 +01:00
{
2018-10-17 07:16:30 +02:00
return true;
2017-02-03 00:16:09 +01:00
}
std::lock_guard lock(mutex.mutex);
2017-02-03 00:16:09 +01:00
auto [old, _] = mutex.signaled.fetch_op([](s32& value)
2019-06-20 13:42:06 +02:00
{
if (value)
{
value = 0;
return true;
}
return false;
});
if (old)
2017-02-03 00:16:09 +01:00
{
if (old == (1 << 31))
{
ppu.gpr[3] = CELL_EBUSY;
}
2018-10-17 07:16:30 +02:00
return true;
2017-02-03 00:16:09 +01:00
}
2017-02-03 00:16:09 +01:00
mutex.sq.emplace_back(&ppu);
mutex.sleep(ppu, timeout);
2017-02-03 00:16:09 +01:00
return false;
});
2015-03-11 16:30:50 +01:00
2015-04-12 03:36:25 +02:00
if (!mutex)
{
return CELL_ESRCH;
}
2017-02-03 00:16:09 +01:00
if (mutex.ret)
{
return not_an_error(ppu.gpr[3]);
}
while (!ppu.state.test_and_reset(cpu_flag::signal))
{
if (ppu.is_stopped())
{
return 0;
}
if (timeout)
{
2019-07-14 05:55:11 +02:00
if (lv2_obj::wait_timeout(timeout, &ppu))
{
std::lock_guard lock(mutex->mutex);
2017-02-03 00:16:09 +01:00
if (!mutex->unqueue(mutex->sq, &ppu))
{
timeout = 0;
continue;
}
2017-02-06 19:36:46 +01:00
ppu.gpr[3] = CELL_ETIMEDOUT;
break;
}
}
else
{
2017-02-03 00:16:09 +01:00
thread_ctrl::wait();
}
}
2017-02-06 19:36:46 +01:00
return not_an_error(ppu.gpr[3]);
}
2019-06-20 13:42:06 +02:00
error_code _sys_lwmutex_trylock(ppu_thread& ppu, u32 lwmutex_id)
{
2019-06-20 13:42:06 +02:00
vm::temporary_unlock(ppu);
sys_lwmutex.trace("_sys_lwmutex_trylock(lwmutex_id=0x%x)", lwmutex_id);
2017-02-03 00:16:09 +01:00
const auto mutex = idm::check<lv2_obj, lv2_lwmutex>(lwmutex_id, [&](lv2_lwmutex& mutex)
{
auto [_, ok] = mutex.signaled.fetch_op([](s32& value)
2019-06-20 13:42:06 +02:00
{
if (value & 1)
{
value = 0;
return true;
}
return false;
});
return ok;
2017-02-03 00:16:09 +01:00
});
2015-03-11 16:30:50 +01:00
2015-04-12 03:36:25 +02:00
if (!mutex)
{
return CELL_ESRCH;
}
2017-02-03 00:16:09 +01:00
if (!mutex.ret)
{
2017-02-03 00:16:09 +01:00
return not_an_error(CELL_EBUSY);
}
return CELL_OK;
}
2017-02-06 19:36:46 +01:00
error_code _sys_lwmutex_unlock(ppu_thread& ppu, u32 lwmutex_id)
{
2019-06-20 13:42:06 +02:00
vm::temporary_unlock(ppu);
sys_lwmutex.trace("_sys_lwmutex_unlock(lwmutex_id=0x%x)", lwmutex_id);
2019-08-28 00:22:31 +02:00
const auto mutex = idm::check<lv2_obj, lv2_lwmutex>(lwmutex_id, [&](lv2_lwmutex& mutex)
2017-02-03 00:16:09 +01:00
{
std::lock_guard lock(mutex.mutex);
2017-02-03 00:16:09 +01:00
if (const auto cpu = mutex.schedule<ppu_thread>(mutex.sq, mutex.protocol))
{
2019-08-28 00:22:31 +02:00
mutex.awake(cpu);
return;
2017-02-03 00:16:09 +01:00
}
mutex.signaled |= 1;
});
if (!mutex)
{
return CELL_ESRCH;
}
return CELL_OK;
}
2019-06-20 13:42:06 +02:00
error_code _sys_lwmutex_unlock2(ppu_thread& ppu, u32 lwmutex_id)
{
2019-06-20 13:42:06 +02:00
vm::temporary_unlock(ppu);
sys_lwmutex.warning("_sys_lwmutex_unlock2(lwmutex_id=0x%x)", lwmutex_id);
2019-08-28 00:22:31 +02:00
const auto mutex = idm::check<lv2_obj, lv2_lwmutex>(lwmutex_id, [&](lv2_lwmutex& mutex)
{
std::lock_guard lock(mutex.mutex);
if (const auto cpu = mutex.schedule<ppu_thread>(mutex.sq, mutex.protocol))
{
static_cast<ppu_thread*>(cpu)->gpr[3] = CELL_EBUSY;
2019-08-28 00:22:31 +02:00
mutex.awake(cpu);
return;
}
mutex.signaled |= 1 << 31;
2017-02-03 00:16:09 +01:00
});
2015-03-11 16:30:50 +01:00
2015-04-12 03:36:25 +02:00
if (!mutex)
{
return CELL_ESRCH;
}
return CELL_OK;
}