Add arbiter sleeping with timeout

Update threads.cpp
This commit is contained in:
wheremyfoodat 2025-02-11 19:02:14 +02:00
parent 54cdcacd5a
commit 456585a9e7
4 changed files with 51 additions and 13 deletions

View file

@ -95,6 +95,8 @@ public:
void signalArbiter(u32 waitingAddress, s32 threadCount); void signalArbiter(u32 waitingAddress, s32 threadCount);
void sleepThread(s64 ns); void sleepThread(s64 ns);
void sleepThreadOnArbiter(u32 waitingAddress); void sleepThreadOnArbiter(u32 waitingAddress);
void sleepThreadOnArbiterWithTimeout(u32 waitingAddress, s64 timeoutNs);
void switchThread(int newThreadIndex); void switchThread(int newThreadIndex);
void sortThreads(); void sortThreads();
std::optional<int> getNextThread(); std::optional<int> getNextThread();

View file

@ -98,16 +98,17 @@ struct Session {
}; };
enum class ThreadStatus { enum class ThreadStatus {
Running, // Currently running Running, // Currently running
Ready, // Ready to run Ready, // Ready to run
WaitArbiter, // Waiting on an address arbiter WaitArbiter, // Waiting on an address arbiter
WaitSleep, // Waiting due to a SleepThread SVC WaitArbiterTimeout, // Waiting on an address arbiter with timeout
WaitSync1, // Waiting for the single object in the wait list to be ready WaitSleep, // Waiting due to a SleepThread SVC
WaitSyncAny, // Wait for one object of the many that might be in the wait list to be ready WaitSync1, // Waiting for the single object in the wait list to be ready
WaitSyncAll, // Waiting for ALL sync objects in its wait list to be ready WaitSyncAny, // Wait for one object of the many that might be in the wait list to be ready
WaitIPC, // Waiting for the reply from an IPC request WaitSyncAll, // Waiting for ALL sync objects in its wait list to be ready
Dormant, // Created but not yet made ready WaitIPC, // Waiting for the reply from an IPC request
Dead // Run to completion, or forcefully terminated Dormant, // Created but not yet made ready
Dead // Run to completion, or forcefully terminated
}; };
struct Thread { struct Thread {

View file

@ -79,6 +79,14 @@ void Kernel::arbitrateAddress() {
break; break;
} }
case ArbitrationType::WaitIfLessTimeout: {
s32 word = static_cast<s32>(mem.read32(address)); // Yes this is meant to be signed
if (word < value) {
sleepThreadOnArbiterWithTimeout(address, ns);
}
break;
}
case ArbitrationType::Signal: case ArbitrationType::Signal:
signalArbiter(address, value); signalArbiter(address, value);
break; break;

View file

@ -52,8 +52,7 @@ void Kernel::sortThreads() {
bool Kernel::canThreadRun(const Thread& t) { bool Kernel::canThreadRun(const Thread& t) {
if (t.status == ThreadStatus::Ready) { if (t.status == ThreadStatus::Ready) {
return true; return true;
} else if (t.status == ThreadStatus::WaitSleep || t.status == ThreadStatus::WaitSync1 } else if (t.status == ThreadStatus::WaitSleep || t.status == ThreadStatus::WaitSync1 || t.status == ThreadStatus::WaitSyncAny || t.status == ThreadStatus::WaitSyncAll || t.status == ThreadStatus::WaitArbiterTimeout) {
|| t.status == ThreadStatus::WaitSyncAny || t.status == ThreadStatus::WaitSyncAll) {
// TODO: Set r0 to the correct error code on timeout for WaitSync{1/Any/All} // TODO: Set r0 to the correct error code on timeout for WaitSync{1/Any/All}
return cpu.getTicks() >= t.wakeupTick; return cpu.getTicks() >= t.wakeupTick;
} }
@ -218,6 +217,23 @@ void Kernel::sleepThreadOnArbiter(u32 waitingAddress) {
requireReschedule(); requireReschedule();
} }
void Kernel::sleepThreadOnArbiterWithTimeout(u32 waitingAddress, s64 timeoutNs) {
regs[0] = Result::OS::Timeout; // This will be overwritten with success if we don't timeout
// Timeout is 0, don't bother waiting, instantly timeout
if (timeoutNs == 0) {
return;
}
Thread& t = threads[currentThreadIndex];
t.status = ThreadStatus::WaitArbiterTimeout;
t.waitingAddress = waitingAddress;
t.wakeupTick = getWakeupTick(timeoutNs);
addWakeupEvent(t.wakeupTick);
requireReschedule();
}
// Acquires an object that is **ready to be acquired** without waiting on it // Acquires an object that is **ready to be acquired** without waiting on it
void Kernel::acquireSyncObject(KernelObject* object, const Thread& thread) { void Kernel::acquireSyncObject(KernelObject* object, const Thread& thread) {
switch (object->type) { switch (object->type) {
@ -311,6 +327,11 @@ int Kernel::wakeupOneThread(u64 waitlist, Handle handle) {
} }
break; break;
case ThreadStatus::WaitArbiterTimeout:
t.status = ThreadStatus::Ready;
t.gprs[0] = Result::Success; // The thread did not timeout, so write success to r0
break;
case ThreadStatus::WaitSyncAll: case ThreadStatus::WaitSyncAll:
Helpers::panic("WakeupOneThread: Thread on WaitSyncAll"); Helpers::panic("WakeupOneThread: Thread on WaitSyncAll");
break; break;
@ -345,6 +366,11 @@ void Kernel::wakeupAllThreads(u64 waitlist, Handle handle) {
} }
} }
break; break;
case ThreadStatus::WaitArbiterTimeout:
t.status = ThreadStatus::Ready;
t.gprs[0] = Result::Success; // The thread did not timeout, so write success to r0
break;
case ThreadStatus::WaitSyncAll: case ThreadStatus::WaitSyncAll:
Helpers::panic("WakeupAllThreads: Thread on WaitSyncAll"); Helpers::panic("WakeupAllThreads: Thread on WaitSyncAll");
@ -709,7 +735,8 @@ void Kernel::pollThreadWakeups() {
for (auto index : threadIndices) { for (auto index : threadIndices) {
const Thread& t = threads[index]; const Thread& t = threads[index];
if (t.status == ThreadStatus::WaitSleep || t.status == ThreadStatus::WaitSync1 || t.status == ThreadStatus::WaitSyncAny || t.status == ThreadStatus::WaitSyncAll) { if (t.status == ThreadStatus::WaitSleep || t.status == ThreadStatus::WaitSync1 || t.status == ThreadStatus::WaitSyncAny ||
t.status == ThreadStatus::WaitSyncAll || t.status == ThreadStatus::WaitArbiterTimeout) {
nextWakeupTick = std::min<u64>(nextWakeupTick, t.wakeupTick); nextWakeupTick = std::min<u64>(nextWakeupTick, t.wakeupTick);
haveSleepingThread = true; haveSleepingThread = true;
} }