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

319 lines
6 KiB
C++
Raw Normal View History

#include "stdafx.h"
2018-07-27 21:07:34 +02:00
#include "Emu/Memory/vm.h"
#include "Emu/System.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"
#include "sys_lwmutex.h"
#include "sys_lwcond.h"
2018-02-09 15:49:37 +01:00
2016-05-13 15:55:34 +02:00
LOG_CHANNEL(sys_lwcond);
extern u64 get_system_time();
2017-02-03 00:16:09 +01:00
error_code _sys_lwcond_create(vm::ptr<u32> lwcond_id, u32 lwmutex_id, vm::ptr<sys_lwcond_t> control, u64 name, u32 arg5)
{
2017-02-03 00:16:09 +01:00
sys_lwcond.warning("_sys_lwcond_create(lwcond_id=*0x%x, lwmutex_id=0x%x, control=*0x%x, name=0x%llx, arg5=0x%x)", lwcond_id, lwmutex_id, control, name, arg5);
2017-02-03 00:16:09 +01:00
// Temporarily
if (!idm::check<lv2_obj, lv2_lwmutex>(lwmutex_id))
{
2017-02-03 00:16:09 +01:00
return CELL_ESRCH;
}
if (const u32 id = idm::make<lv2_obj, lv2_lwcond>(name, lwmutex_id, control))
2017-02-03 00:16:09 +01:00
{
*lwcond_id = id;
return CELL_OK;
}
2017-02-03 00:16:09 +01:00
return CELL_EAGAIN;
}
2017-02-03 00:16:09 +01:00
error_code _sys_lwcond_destroy(u32 lwcond_id)
{
sys_lwcond.warning("_sys_lwcond_destroy(lwcond_id=0x%x)", lwcond_id);
2017-02-03 00:16:09 +01:00
const auto cond = idm::withdraw<lv2_obj, lv2_lwcond>(lwcond_id, [&](lv2_lwcond& cond) -> CellError
{
if (cond.waiters)
{
return CELL_EBUSY;
}
2015-03-09 20:56:55 +01:00
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 (!cond)
{
return CELL_ESRCH;
}
2017-02-03 00:16:09 +01:00
if (cond.ret)
{
2017-02-03 00:16:09 +01:00
return cond.ret;
}
return CELL_OK;
}
2017-02-06 19:36:46 +01:00
error_code _sys_lwcond_signal(ppu_thread& ppu, u32 lwcond_id, u32 lwmutex_id, u32 ppu_thread_id, u32 mode)
{
sys_lwcond.trace("_sys_lwcond_signal(lwcond_id=0x%x, lwmutex_id=0x%x, ppu_thread_id=0x%x, mode=%d)", lwcond_id, lwmutex_id, ppu_thread_id, mode);
2015-03-10 15:42:08 +01:00
2017-02-03 00:16:09 +01:00
// Mode 1: lwmutex was initially owned by the calling thread
// Mode 2: lwmutex was not owned by the calling thread and waiter hasn't been increased
// Mode 3: lwmutex was forcefully owned by the calling thread
2015-03-10 15:42:08 +01:00
2017-02-03 00:16:09 +01:00
if (mode < 1 || mode > 3)
2015-03-10 15:42:08 +01:00
{
fmt::throw_exception("Unknown mode (%d)" HERE, mode);
2015-03-10 15:42:08 +01:00
}
2017-02-03 00:16:09 +01:00
lv2_lwmutex* mutex = nullptr;
2015-03-10 15:42:08 +01:00
2017-02-03 00:16:09 +01:00
const auto cond = idm::check<lv2_obj, lv2_lwcond>(lwcond_id, [&](lv2_lwcond& cond) -> cpu_thread*
2015-03-10 15:42:08 +01:00
{
2017-02-03 00:16:09 +01:00
mutex = idm::check_unlocked<lv2_obj, lv2_lwmutex>(lwmutex_id);
2015-03-10 15:42:08 +01:00
if (cond.waiters)
2015-03-10 15:42:08 +01:00
{
std::lock_guard lock(cond.mutex);
2017-02-03 00:16:09 +01:00
cpu_thread* result = nullptr;
if (ppu_thread_id != -1)
{
for (auto cpu : cond.sq)
{
if (cpu->id == ppu_thread_id)
{
verify(HERE), cond.unqueue(cond.sq, cpu);
result = cpu;
break;
}
}
}
else
{
result = cond.schedule<ppu_thread>(cond.sq, cond.control->lwmutex->attribute & SYS_SYNC_ATTR_PROTOCOL_MASK);
2017-02-03 00:16:09 +01:00
}
if (result)
{
cond.waiters--;
2017-02-06 19:36:46 +01:00
if (mode == 2)
{
static_cast<ppu_thread*>(result)->gpr[3] = CELL_EBUSY;
}
2017-02-03 00:16:09 +01:00
if (mode == 1)
2017-02-03 00:16:09 +01:00
{
verify(HERE), !mutex->signaled;
std::lock_guard lock(mutex->mutex);
2017-02-03 00:16:09 +01:00
mutex->sq.emplace_back(result);
result = nullptr;
mode = 2; // Enforce CELL_OK
}
return result;
}
2015-03-10 15:42:08 +01:00
}
2017-02-03 00:16:09 +01:00
return nullptr;
});
2018-02-09 15:49:37 +01:00
2017-02-03 00:16:09 +01:00
if ((lwmutex_id && !mutex) || !cond)
{
return CELL_ESRCH;
}
2017-02-03 00:16:09 +01:00
if (cond.ret)
{
2017-02-06 19:36:46 +01:00
cond->awake(*cond.ret);
2017-02-03 00:16:09 +01:00
}
else if (mode == 2)
{
return CELL_OK;
}
else if (mode == 1 || ppu_thread_id == -1)
{
return not_an_error(CELL_EPERM);
}
else
{
return not_an_error(CELL_ENOENT);
}
return CELL_OK;
}
2017-02-06 19:36:46 +01:00
error_code _sys_lwcond_signal_all(ppu_thread& ppu, u32 lwcond_id, u32 lwmutex_id, u32 mode)
{
sys_lwcond.trace("_sys_lwcond_signal_all(lwcond_id=0x%x, lwmutex_id=0x%x, mode=%d)", lwcond_id, lwmutex_id, mode);
2017-02-03 00:16:09 +01:00
// Mode 1: lwmutex was initially owned by the calling thread
// Mode 2: lwmutex was not owned by the calling thread and waiter hasn't been increased
2015-03-10 15:42:08 +01:00
2017-02-03 00:16:09 +01:00
if (mode < 1 || mode > 2)
2015-03-10 22:47:13 +01:00
{
2017-02-03 00:16:09 +01:00
fmt::throw_exception("Unknown mode (%d)" HERE, mode);
2015-03-10 22:47:13 +01:00
}
2015-03-10 15:42:08 +01:00
2017-02-03 00:16:09 +01:00
std::basic_string<cpu_thread*> threads;
lv2_lwmutex* mutex = nullptr;
const auto cond = idm::check<lv2_obj, lv2_lwcond>(lwcond_id, [&](lv2_lwcond& cond) -> u32
2015-03-10 15:42:08 +01:00
{
2017-02-03 00:16:09 +01:00
mutex = idm::check_unlocked<lv2_obj, lv2_lwmutex>(lwmutex_id);
if (cond.waiters)
2017-02-03 00:16:09 +01:00
{
std::lock_guard lock(cond.mutex);
2017-02-03 00:16:09 +01:00
u32 result = 0;
2015-03-10 15:42:08 +01:00
while (const auto cpu = cond.schedule<ppu_thread>(cond.sq, cond.control->lwmutex->attribute & SYS_SYNC_ATTR_PROTOCOL_MASK))
2017-02-03 00:16:09 +01:00
{
cond.waiters--;
2017-02-06 19:36:46 +01:00
if (mode == 2)
{
static_cast<ppu_thread*>(cpu)->gpr[3] = CELL_EBUSY;
}
2017-02-03 00:16:09 +01:00
if (mode == 1)
2017-02-03 00:16:09 +01:00
{
verify(HERE), !mutex->signaled;
std::lock_guard lock(mutex->mutex);
2017-02-03 00:16:09 +01:00
mutex->sq.emplace_back(cpu);
}
else
{
threads.push_back(cpu);
}
result++;
}
return result;
}
return 0;
});
2015-03-11 16:30:50 +01:00
2017-02-03 00:16:09 +01:00
if ((lwmutex_id && !mutex) || !cond)
2015-03-11 16:30:50 +01:00
{
2017-02-03 00:16:09 +01:00
return CELL_ESRCH;
2015-03-11 16:30:50 +01:00
}
2015-03-10 15:42:08 +01:00
2017-02-03 00:16:09 +01:00
for (auto cpu : threads)
{
2017-02-06 19:36:46 +01:00
cond->awake(*cpu);
}
2017-02-03 00:16:09 +01:00
if (mode == 1)
{
// Mode 1: return the amount of threads (TODO)
return not_an_error(cond.ret);
}
2015-03-10 15:42:08 +01:00
2017-02-03 00:16:09 +01:00
return CELL_OK;
}
2017-02-03 00:16:09 +01:00
error_code _sys_lwcond_queue_wait(ppu_thread& ppu, u32 lwcond_id, u32 lwmutex_id, u64 timeout)
{
sys_lwcond.trace("_sys_lwcond_queue_wait(lwcond_id=0x%x, lwmutex_id=0x%x, timeout=0x%llx)", lwcond_id, lwmutex_id, timeout);
2014-03-22 22:04:55 +01:00
2017-02-03 00:16:09 +01:00
std::shared_ptr<lv2_lwmutex> mutex;
const auto cond = idm::get<lv2_obj, lv2_lwcond>(lwcond_id, [&](lv2_lwcond& cond) -> cpu_thread*
{
mutex = idm::get_unlocked<lv2_obj, lv2_lwmutex>(lwmutex_id);
if (!mutex)
{
return nullptr;
}
2015-03-10 15:42:08 +01:00
std::lock_guard lock(cond.mutex);
2017-02-03 00:16:09 +01:00
// Add a waiter
cond.waiters++;
cond.sq.emplace_back(&ppu);
cond.sleep(ppu, timeout);
2017-02-03 00:16:09 +01:00
std::lock_guard lock2(mutex->mutex);
2017-02-03 00:16:09 +01:00
// Process lwmutex sleep queue
if (const auto cpu = mutex->schedule<ppu_thread>(mutex->sq, mutex->protocol))
{
return cpu;
}
mutex->signaled++;
return nullptr;
});
2015-03-11 16:30:50 +01:00
2015-04-12 03:36:25 +02:00
if (!cond || !mutex)
2015-03-10 22:47:13 +01:00
{
return CELL_ESRCH;
}
2017-02-03 00:16:09 +01:00
if (cond.ret)
{
2017-02-06 19:36:46 +01:00
cond->awake(*cond.ret);
2017-02-03 00:16:09 +01:00
}
2015-03-10 15:42:08 +01:00
2017-02-06 19:36:46 +01:00
ppu.gpr[3] = CELL_OK;
while (!ppu.state.test_and_reset(cpu_flag::signal))
2015-03-10 15:42:08 +01:00
{
if (ppu.is_stopped())
{
return 0;
}
2017-02-03 00:16:09 +01:00
if (timeout)
2015-03-10 15:42:08 +01:00
{
const u64 passed = get_system_time() - ppu.start_time;
if (passed >= timeout)
2015-04-12 03:36:25 +02:00
{
std::lock_guard lock(cond->mutex);
2017-02-03 00:16:09 +01:00
if (!cond->unqueue(cond->sq, &ppu))
{
timeout = 0;
continue;
2015-04-12 03:36:25 +02:00
}
2017-02-03 00:16:09 +01:00
cond->waiters--;
if (mutex->signaled.try_dec())
2015-04-12 03:36:25 +02:00
{
2017-02-06 19:36:46 +01:00
ppu.gpr[3] = CELL_EDEADLK;
break;
2015-04-12 03:36:25 +02:00
}
2017-02-03 00:16:09 +01:00
2017-02-06 19:36:46 +01:00
ppu.gpr[3] = CELL_ETIMEDOUT;
break;
2015-04-12 03:36:25 +02:00
}
2015-03-10 15:42:08 +01:00
2017-02-03 00:16:09 +01:00
thread_ctrl::wait_for(timeout - passed);
}
else
{
2017-02-03 00:16:09 +01:00
thread_ctrl::wait();
2015-03-10 15:42:08 +01:00
}
}
2017-02-03 00:16:09 +01:00
// Return cause
2017-02-06 19:36:46 +01:00
return not_an_error(ppu.gpr[3]);
}