2014-05-10 03:11:18 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project / PPSSPP Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-06-06 03:35:36 +01:00
|
|
|
#include <algorithm>
|
2014-08-18 04:03:22 +01:00
|
|
|
#include <list>
|
|
|
|
#include <vector>
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2015-05-06 08:06:12 +01:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/logging/log.h"
|
2015-02-19 06:46:21 +00:00
|
|
|
#include "common/math_util.h"
|
2014-05-15 23:27:08 +01:00
|
|
|
#include "common/thread_queue_list.h"
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-12-22 06:30:09 +00:00
|
|
|
#include "core/arm/arm_interface.h"
|
2014-05-14 03:00:11 +01:00
|
|
|
#include "core/core.h"
|
2015-01-07 15:10:58 +00:00
|
|
|
#include "core/core_timing.h"
|
2014-05-15 01:50:30 +01:00
|
|
|
#include "core/hle/hle.h"
|
2014-05-10 03:11:18 +01:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
#include "core/hle/kernel/thread.h"
|
2014-12-07 20:44:21 +00:00
|
|
|
#include "core/hle/kernel/mutex.h"
|
2014-10-23 04:20:01 +01:00
|
|
|
#include "core/hle/result.h"
|
|
|
|
#include "core/mem_map.h"
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-05-21 00:37:46 +01:00
|
|
|
namespace Kernel {
|
2014-05-14 03:00:11 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
/// Event type for the thread wake up event
|
2015-04-28 03:12:35 +01:00
|
|
|
static int ThreadWakeupEventType;
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2015-01-20 23:16:45 +00:00
|
|
|
bool Thread::ShouldWait() {
|
2015-01-26 06:56:17 +00:00
|
|
|
return status != THREADSTATUS_DEAD;
|
2014-12-22 06:32:03 +00:00
|
|
|
}
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2015-01-20 23:16:45 +00:00
|
|
|
void Thread::Acquire() {
|
2015-01-21 01:16:47 +00:00
|
|
|
ASSERT_MSG(!ShouldWait(), "object unavailable!");
|
2015-01-18 03:23:49 +00:00
|
|
|
}
|
|
|
|
|
2014-05-14 03:00:11 +01:00
|
|
|
// Lists all thread ids that aren't deleted/etc.
|
2014-12-29 12:55:30 +00:00
|
|
|
static std::vector<SharedPtr<Thread>> thread_list;
|
2014-05-14 03:00:11 +01:00
|
|
|
|
2014-05-15 23:27:08 +01:00
|
|
|
// Lists only ready thread ids.
|
2015-01-26 06:56:17 +00:00
|
|
|
static Common::ThreadQueueList<Thread*, THREADPRIO_LOWEST+1> ready_queue;
|
2014-05-14 03:00:11 +01:00
|
|
|
|
2014-11-18 13:48:11 +00:00
|
|
|
static Thread* current_thread;
|
2014-05-14 03:00:11 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
// The first available thread id at startup
|
2015-04-28 03:12:35 +01:00
|
|
|
static u32 next_thread_id;
|
2015-01-26 06:56:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new thread ID
|
|
|
|
* @return The new thread ID
|
|
|
|
*/
|
|
|
|
inline static u32 const NewThreadId() {
|
|
|
|
return next_thread_id++;
|
|
|
|
}
|
2014-12-04 13:13:53 +00:00
|
|
|
|
2015-02-01 00:56:59 +00:00
|
|
|
Thread::Thread() {}
|
|
|
|
Thread::~Thread() {}
|
2015-01-31 21:22:40 +00:00
|
|
|
|
2014-12-20 05:04:36 +00:00
|
|
|
Thread* GetCurrentThread() {
|
2014-11-18 13:48:11 +00:00
|
|
|
return current_thread;
|
2014-05-15 23:27:08 +01:00
|
|
|
}
|
2014-05-14 03:00:11 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
/**
|
|
|
|
* Check if a thread is waiting on the specified wait object
|
|
|
|
* @param thread The thread to test
|
|
|
|
* @param wait_object The object to test against
|
|
|
|
* @return True if the thread is waiting, false otherwise
|
|
|
|
*/
|
2015-01-18 18:56:40 +00:00
|
|
|
static bool CheckWait_WaitObject(const Thread* thread, WaitObject* wait_object) {
|
2015-01-26 06:56:17 +00:00
|
|
|
if (thread->status != THREADSTATUS_WAIT_SYNCH)
|
|
|
|
return false;
|
2015-01-20 23:40:01 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
auto itr = std::find(thread->wait_objects.begin(), thread->wait_objects.end(), wait_object);
|
|
|
|
return itr != thread->wait_objects.end();
|
2014-12-20 07:32:19 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
/**
|
|
|
|
* Check if the specified thread is waiting on the specified address to be arbitrated
|
|
|
|
* @param thread The thread to test
|
|
|
|
* @param wait_address The address to test against
|
|
|
|
* @return True if the thread is waiting, false otherwise
|
|
|
|
*/
|
2015-01-18 18:56:40 +00:00
|
|
|
static bool CheckWait_AddressArbiter(const Thread* thread, VAddr wait_address) {
|
2015-01-26 06:56:17 +00:00
|
|
|
return thread->status == THREADSTATUS_WAIT_ARB && wait_address == thread->wait_address;
|
2014-12-03 05:46:34 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
void Thread::Stop() {
|
2014-12-07 20:44:21 +00:00
|
|
|
// Release all the mutexes that this thread holds
|
2015-01-20 23:33:23 +00:00
|
|
|
ReleaseThreadMutexes(this);
|
2014-12-20 07:32:19 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
// Cancel any outstanding wakeup events for this thread
|
|
|
|
CoreTiming::UnscheduleEvent(ThreadWakeupEventType, callback_handle);
|
|
|
|
|
|
|
|
// Clean up thread from ready queue
|
|
|
|
// This is only needed when the thread is termintated forcefully (SVC TerminateProcess)
|
|
|
|
if (status == THREADSTATUS_READY){
|
|
|
|
ready_queue.remove(current_priority, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
status = THREADSTATUS_DEAD;
|
|
|
|
|
2015-01-20 23:20:47 +00:00
|
|
|
WakeupAllWaitingThreads();
|
2014-06-10 03:14:03 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
// Clean up any dangling references in objects that this thread was waiting for
|
2015-02-01 01:26:16 +00:00
|
|
|
for (auto& wait_object : wait_objects) {
|
|
|
|
wait_object->RemoveWaitingThread(this);
|
|
|
|
}
|
2014-05-14 03:00:11 +01:00
|
|
|
}
|
|
|
|
|
2015-01-18 18:56:40 +00:00
|
|
|
Thread* ArbitrateHighestPriorityThread(u32 address) {
|
2014-12-22 13:07:22 +00:00
|
|
|
Thread* highest_priority_thread = nullptr;
|
2014-07-07 03:48:19 +01:00
|
|
|
s32 priority = THREADPRIO_LOWEST;
|
|
|
|
|
|
|
|
// Iterate through threads, find highest priority thread that is waiting to be arbitrated...
|
2014-12-29 12:55:30 +00:00
|
|
|
for (auto& thread : thread_list) {
|
2015-01-18 18:56:40 +00:00
|
|
|
if (!CheckWait_AddressArbiter(thread.get(), address))
|
2014-07-07 03:48:19 +01:00
|
|
|
continue;
|
|
|
|
|
2014-10-23 04:20:01 +01:00
|
|
|
if (thread == nullptr)
|
2015-01-18 18:56:40 +00:00
|
|
|
continue;
|
2014-12-03 05:46:34 +00:00
|
|
|
|
2014-07-07 03:48:19 +01:00
|
|
|
if(thread->current_priority <= priority) {
|
2014-12-29 12:55:30 +00:00
|
|
|
highest_priority_thread = thread.get();
|
2014-07-07 03:48:19 +01:00
|
|
|
priority = thread->current_priority;
|
|
|
|
}
|
|
|
|
}
|
2014-12-22 13:07:22 +00:00
|
|
|
|
2014-07-07 03:48:19 +01:00
|
|
|
// If a thread was arbitrated, resume it
|
2014-12-22 13:07:22 +00:00
|
|
|
if (nullptr != highest_priority_thread) {
|
2015-01-18 18:56:40 +00:00
|
|
|
highest_priority_thread->ResumeFromWait();
|
2014-12-22 13:07:22 +00:00
|
|
|
}
|
2014-07-07 03:48:19 +01:00
|
|
|
|
|
|
|
return highest_priority_thread;
|
|
|
|
}
|
|
|
|
|
2015-01-18 18:56:40 +00:00
|
|
|
void ArbitrateAllThreads(u32 address) {
|
2015-01-26 06:56:17 +00:00
|
|
|
// Resume all threads found to be waiting on the address
|
2014-12-29 12:55:30 +00:00
|
|
|
for (auto& thread : thread_list) {
|
2015-01-18 18:56:40 +00:00
|
|
|
if (CheckWait_AddressArbiter(thread.get(), address))
|
|
|
|
thread->ResumeFromWait();
|
2014-07-07 03:48:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-24 03:55:21 +00:00
|
|
|
/// Boost low priority threads (temporarily) that have been starved
|
|
|
|
static void PriorityBoostStarvedThreads() {
|
|
|
|
u64 current_ticks = CoreTiming::GetTicks();
|
|
|
|
|
|
|
|
for (auto& thread : thread_list) {
|
|
|
|
// TODO(bunnei): Threads that have been waiting to be scheduled for `boost_ticks` (or
|
|
|
|
// longer) will have their priority temporarily adjusted to 1 higher than the highest
|
|
|
|
// priority thread to prevent thread starvation. This general behavior has been verified
|
|
|
|
// on hardware. However, this is almost certainly not perfect, and the real CTR OS scheduler
|
|
|
|
// should probably be reversed to verify this.
|
|
|
|
|
|
|
|
const u64 boost_timeout = 2000000; // Boost threads that have been ready for > this long
|
|
|
|
|
|
|
|
u64 delta = current_ticks - thread->last_running_ticks;
|
|
|
|
|
|
|
|
if (thread->status == THREADSTATUS_READY && delta > boost_timeout && !thread->idle) {
|
2015-04-03 23:40:16 +01:00
|
|
|
const s32 priority = std::max(ready_queue.get_first()->current_priority - 1, 0);
|
|
|
|
thread->BoostPriority(priority);
|
2015-03-24 03:55:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
/**
|
|
|
|
* Switches the CPU's active thread context to that of the specified thread
|
|
|
|
* @param new_thread The thread to switch to
|
|
|
|
*/
|
|
|
|
static void SwitchContext(Thread* new_thread) {
|
2015-01-21 01:16:47 +00:00
|
|
|
DEBUG_ASSERT_MSG(new_thread->status == THREADSTATUS_READY, "Thread must be ready to become running.");
|
2014-05-21 00:37:46 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
Thread* previous_thread = GetCurrentThread();
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
// Save context for previous thread
|
|
|
|
if (previous_thread) {
|
2015-03-24 03:55:21 +00:00
|
|
|
previous_thread->last_running_ticks = CoreTiming::GetTicks();
|
2015-01-26 06:56:17 +00:00
|
|
|
Core::g_app_core->SaveContext(previous_thread->context);
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
if (previous_thread->status == THREADSTATUS_RUNNING) {
|
|
|
|
// This is only the case when a reschedule is triggered without the current thread
|
|
|
|
// yielding execution (i.e. an event triggered, system core time-sliced, etc)
|
|
|
|
ready_queue.push_front(previous_thread->current_priority, previous_thread);
|
|
|
|
previous_thread->status = THREADSTATUS_READY;
|
2014-05-21 00:37:46 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2014-05-21 00:37:46 +01:00
|
|
|
// Load context of new thread
|
2015-01-26 06:56:17 +00:00
|
|
|
if (new_thread) {
|
|
|
|
current_thread = new_thread;
|
|
|
|
|
|
|
|
ready_queue.remove(new_thread->current_priority, new_thread);
|
|
|
|
new_thread->status = THREADSTATUS_RUNNING;
|
|
|
|
|
2015-03-24 03:55:21 +00:00
|
|
|
// Restores thread to its nominal priority if it has been temporarily changed
|
|
|
|
new_thread->current_priority = new_thread->nominal_priority;
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
Core::g_app_core->LoadContext(new_thread->context);
|
2014-05-21 00:37:46 +01:00
|
|
|
} else {
|
2014-12-22 13:07:22 +00:00
|
|
|
current_thread = nullptr;
|
2014-05-21 00:37:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
/**
|
|
|
|
* Pops and returns the next thread from the thread queue
|
|
|
|
* @return A pointer to the next ready thread
|
|
|
|
*/
|
|
|
|
static Thread* PopNextReadyThread() {
|
2014-12-22 13:07:22 +00:00
|
|
|
Thread* next;
|
2015-01-26 06:56:17 +00:00
|
|
|
Thread* thread = GetCurrentThread();
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
if (thread && thread->status == THREADSTATUS_RUNNING) {
|
|
|
|
// We have to do better than the current thread.
|
|
|
|
// This call returns null when that's not possible.
|
|
|
|
next = ready_queue.pop_first_better(thread->current_priority);
|
2014-05-21 00:37:46 +01:00
|
|
|
} else {
|
2015-01-26 06:56:17 +00:00
|
|
|
next = ready_queue.pop_first();
|
2014-05-21 00:37:46 +01:00
|
|
|
}
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2014-12-22 13:07:22 +00:00
|
|
|
return next;
|
2014-05-21 00:37:46 +01:00
|
|
|
}
|
|
|
|
|
2015-01-18 18:56:40 +00:00
|
|
|
void WaitCurrentThread_Sleep() {
|
2015-01-17 07:03:44 +00:00
|
|
|
Thread* thread = GetCurrentThread();
|
2015-01-26 06:56:17 +00:00
|
|
|
thread->status = THREADSTATUS_WAIT_SLEEP;
|
2015-01-17 07:03:44 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
void WaitCurrentThread_WaitSynchronization(std::vector<SharedPtr<WaitObject>> wait_objects, bool wait_set_output, bool wait_all) {
|
2014-06-10 03:14:03 +01:00
|
|
|
Thread* thread = GetCurrentThread();
|
2015-01-21 01:53:52 +00:00
|
|
|
thread->wait_set_output = wait_set_output;
|
2015-01-18 18:25:51 +00:00
|
|
|
thread->wait_all = wait_all;
|
2015-01-26 06:56:17 +00:00
|
|
|
thread->wait_objects = std::move(wait_objects);
|
|
|
|
thread->status = THREADSTATUS_WAIT_SYNCH;
|
2014-05-21 02:00:10 +01:00
|
|
|
}
|
|
|
|
|
2015-01-18 18:56:40 +00:00
|
|
|
void WaitCurrentThread_ArbitrateAddress(VAddr wait_address) {
|
|
|
|
Thread* thread = GetCurrentThread();
|
|
|
|
thread->wait_address = wait_address;
|
2015-01-26 06:56:17 +00:00
|
|
|
thread->status = THREADSTATUS_WAIT_ARB;
|
2014-12-03 05:46:34 +00:00
|
|
|
}
|
|
|
|
|
2015-01-31 16:23:09 +00:00
|
|
|
// TODO(yuriks): This can be removed if Thread objects are explicitly pooled in the future, allowing
|
|
|
|
// us to simply use a pool index or similar.
|
|
|
|
static Kernel::HandleTable wakeup_callback_handle_table;
|
2015-01-07 21:40:08 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
/**
|
|
|
|
* Callback that will wake up the thread it was scheduled for
|
|
|
|
* @param thread_handle The handle of the thread that's been awoken
|
|
|
|
* @param cycles_late The number of CPU cycles that have passed since the desired wakeup time
|
|
|
|
*/
|
2015-01-31 16:23:09 +00:00
|
|
|
static void ThreadWakeupCallback(u64 thread_handle, int cycles_late) {
|
|
|
|
SharedPtr<Thread> thread = wakeup_callback_handle_table.Get<Thread>((Handle)thread_handle);
|
2015-01-07 21:40:08 +00:00
|
|
|
if (thread == nullptr) {
|
2015-01-26 06:56:17 +00:00
|
|
|
LOG_CRITICAL(Kernel, "Callback fired for invalid thread %08X", (Handle)thread_handle);
|
2015-01-07 21:40:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
if (thread->status == THREADSTATUS_WAIT_SYNCH) {
|
|
|
|
thread->SetWaitSynchronizationResult(ResultCode(ErrorDescription::Timeout, ErrorModule::OS,
|
|
|
|
ErrorSummary::StatusChanged, ErrorLevel::Info));
|
2015-01-21 01:53:52 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
if (thread->wait_set_output)
|
|
|
|
thread->SetWaitSynchronizationOutput(-1);
|
|
|
|
}
|
2015-01-17 07:03:44 +00:00
|
|
|
|
2014-12-22 13:07:22 +00:00
|
|
|
thread->ResumeFromWait();
|
2015-01-07 21:40:08 +00:00
|
|
|
}
|
|
|
|
|
2015-01-31 01:07:54 +00:00
|
|
|
void Thread::WakeAfterDelay(s64 nanoseconds) {
|
2015-01-07 21:40:08 +00:00
|
|
|
// Don't schedule a wakeup if the thread wants to wait forever
|
|
|
|
if (nanoseconds == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
u64 microseconds = nanoseconds / 1000;
|
2015-01-31 16:23:09 +00:00
|
|
|
CoreTiming::ScheduleEvent(usToCycles(microseconds), ThreadWakeupEventType, callback_handle);
|
2015-01-07 21:40:08 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 18:56:40 +00:00
|
|
|
void Thread::ReleaseWaitObject(WaitObject* wait_object) {
|
2015-01-26 06:56:17 +00:00
|
|
|
if (status != THREADSTATUS_WAIT_SYNCH || wait_objects.empty()) {
|
2015-01-17 07:03:44 +00:00
|
|
|
LOG_CRITICAL(Kernel, "thread is not waiting on any objects!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-18 06:27:46 +00:00
|
|
|
// Remove this thread from the waiting object's thread list
|
2015-01-17 07:03:44 +00:00
|
|
|
wait_object->RemoveWaitingThread(this);
|
|
|
|
|
2015-01-18 06:27:46 +00:00
|
|
|
unsigned index = 0;
|
|
|
|
bool wait_all_failed = false; // Will be set to true if any object is unavailable
|
2015-01-17 07:03:44 +00:00
|
|
|
|
2015-01-18 06:27:46 +00:00
|
|
|
// Iterate through all waiting objects to check availability...
|
|
|
|
for (auto itr = wait_objects.begin(); itr != wait_objects.end(); ++itr) {
|
2015-01-20 23:16:45 +00:00
|
|
|
if ((*itr)->ShouldWait())
|
2015-01-18 06:27:46 +00:00
|
|
|
wait_all_failed = true;
|
|
|
|
|
|
|
|
// The output should be the last index of wait_object
|
|
|
|
if (*itr == wait_object)
|
|
|
|
index = itr - wait_objects.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are waiting on all objects...
|
|
|
|
if (wait_all) {
|
|
|
|
// Resume the thread only if all are available...
|
|
|
|
if (!wait_all_failed) {
|
2015-01-21 01:53:52 +00:00
|
|
|
SetWaitSynchronizationResult(RESULT_SUCCESS);
|
|
|
|
SetWaitSynchronizationOutput(-1);
|
|
|
|
|
2015-01-17 07:03:44 +00:00
|
|
|
ResumeFromWait();
|
|
|
|
}
|
2015-01-18 06:27:46 +00:00
|
|
|
} else {
|
|
|
|
// Otherwise, resume
|
2015-01-21 01:53:52 +00:00
|
|
|
SetWaitSynchronizationResult(RESULT_SUCCESS);
|
|
|
|
|
|
|
|
if (wait_set_output)
|
|
|
|
SetWaitSynchronizationOutput(index);
|
|
|
|
|
2015-01-18 06:27:46 +00:00
|
|
|
ResumeFromWait();
|
2015-01-17 07:03:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 13:07:22 +00:00
|
|
|
void Thread::ResumeFromWait() {
|
2015-01-26 06:56:17 +00:00
|
|
|
// Cancel any outstanding wakeup events for this thread
|
2015-01-31 16:23:09 +00:00
|
|
|
CoreTiming::UnscheduleEvent(ThreadWakeupEventType, callback_handle);
|
2015-01-11 18:18:52 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
switch (status) {
|
|
|
|
case THREADSTATUS_WAIT_SYNCH:
|
|
|
|
// Remove this thread from all other WaitObjects
|
|
|
|
for (auto wait_object : wait_objects)
|
|
|
|
wait_object->RemoveWaitingThread(this);
|
|
|
|
break;
|
|
|
|
case THREADSTATUS_WAIT_ARB:
|
|
|
|
case THREADSTATUS_WAIT_SLEEP:
|
|
|
|
break;
|
|
|
|
case THREADSTATUS_RUNNING:
|
|
|
|
case THREADSTATUS_READY:
|
2015-01-21 01:16:47 +00:00
|
|
|
DEBUG_ASSERT_MSG(false, "Thread with object id %u has already resumed.", GetObjectId());
|
2015-01-26 06:56:17 +00:00
|
|
|
return;
|
|
|
|
case THREADSTATUS_DEAD:
|
|
|
|
// This should never happen, as threads must complete before being stopped.
|
2015-01-21 01:16:47 +00:00
|
|
|
DEBUG_ASSERT_MSG(false, "Thread with object id %u cannot be resumed because it's DEAD.",
|
2015-01-26 06:56:17 +00:00
|
|
|
GetObjectId());
|
|
|
|
return;
|
2014-05-21 00:37:46 +01:00
|
|
|
}
|
2015-01-26 06:56:17 +00:00
|
|
|
|
|
|
|
ready_queue.push_back(current_priority, this);
|
|
|
|
status = THREADSTATUS_READY;
|
2014-05-21 00:37:46 +01:00
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
/**
|
|
|
|
* Prints the thread queue for debugging purposes
|
|
|
|
*/
|
2014-12-22 13:07:22 +00:00
|
|
|
static void DebugThreadQueue() {
|
2014-06-06 03:35:36 +01:00
|
|
|
Thread* thread = GetCurrentThread();
|
|
|
|
if (!thread) {
|
2015-01-26 06:56:17 +00:00
|
|
|
LOG_DEBUG(Kernel, "Current: NO CURRENT THREAD");
|
|
|
|
} else {
|
|
|
|
LOG_DEBUG(Kernel, "0x%02X %u (current)", thread->current_priority, GetCurrentThread()->GetObjectId());
|
2014-06-06 03:35:36 +01:00
|
|
|
}
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
for (auto& t : thread_list) {
|
2015-01-26 06:56:17 +00:00
|
|
|
s32 priority = ready_queue.contains(t.get());
|
2014-06-06 03:35:36 +01:00
|
|
|
if (priority != -1) {
|
2015-01-31 16:55:40 +00:00
|
|
|
LOG_DEBUG(Kernel, "0x%02X %u", priority, t->GetObjectId());
|
2014-06-06 03:35:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, s32 priority,
|
2015-01-26 06:56:17 +00:00
|
|
|
u32 arg, s32 processor_id, VAddr stack_top) {
|
2014-12-22 13:07:22 +00:00
|
|
|
if (priority < THREADPRIO_HIGHEST || priority > THREADPRIO_LOWEST) {
|
2015-02-19 06:46:21 +00:00
|
|
|
s32 new_priority = MathUtil::Clamp<s32>(priority, THREADPRIO_HIGHEST, THREADPRIO_LOWEST);
|
2014-12-22 13:07:22 +00:00
|
|
|
LOG_WARNING(Kernel_SVC, "(name=%s): invalid priority=%d, clamping to %d",
|
2014-12-29 12:55:30 +00:00
|
|
|
name.c_str(), priority, new_priority);
|
2014-12-22 13:07:22 +00:00
|
|
|
// TODO(bunnei): Clamping to a valid priority is not necessarily correct behavior... Confirm
|
|
|
|
// validity of this
|
|
|
|
priority = new_priority;
|
|
|
|
}
|
2014-05-17 05:56:00 +01:00
|
|
|
|
2014-12-22 13:07:22 +00:00
|
|
|
if (!Memory::GetPointer(entry_point)) {
|
2014-12-29 12:55:30 +00:00
|
|
|
LOG_ERROR(Kernel_SVC, "(name=%s): invalid entry %08x", name.c_str(), entry_point);
|
2014-12-22 13:07:22 +00:00
|
|
|
// TODO: Verify error
|
|
|
|
return ResultCode(ErrorDescription::InvalidAddress, ErrorModule::Kernel,
|
|
|
|
ErrorSummary::InvalidArgument, ErrorLevel::Permanent);
|
|
|
|
}
|
2014-05-21 02:02:35 +01:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Thread> thread(new Thread);
|
2014-06-06 03:35:36 +01:00
|
|
|
|
2014-12-29 13:32:05 +00:00
|
|
|
thread_list.push_back(thread);
|
2015-01-26 06:56:17 +00:00
|
|
|
ready_queue.prepare(priority);
|
2014-06-06 03:35:36 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
thread->thread_id = NewThreadId();
|
2014-06-10 03:14:03 +01:00
|
|
|
thread->status = THREADSTATUS_DORMANT;
|
|
|
|
thread->entry_point = entry_point;
|
|
|
|
thread->stack_top = stack_top;
|
2015-03-24 03:55:21 +00:00
|
|
|
thread->nominal_priority = thread->current_priority = priority;
|
|
|
|
thread->last_running_ticks = CoreTiming::GetTicks();
|
2014-06-10 03:14:03 +01:00
|
|
|
thread->processor_id = processor_id;
|
2015-01-21 01:53:52 +00:00
|
|
|
thread->wait_set_output = false;
|
2015-01-17 07:03:44 +00:00
|
|
|
thread->wait_all = false;
|
2015-01-15 04:41:33 +00:00
|
|
|
thread->wait_objects.clear();
|
2014-12-03 05:46:34 +00:00
|
|
|
thread->wait_address = 0;
|
2014-12-29 12:55:30 +00:00
|
|
|
thread->name = std::move(name);
|
2015-01-31 16:23:09 +00:00
|
|
|
thread->callback_handle = wakeup_callback_handle_table.Create(thread).MoveFrom();
|
2014-06-06 03:35:36 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
// TODO(peachum): move to ScheduleThread() when scheduler is added so selected core is used
|
|
|
|
// to initialize the context
|
|
|
|
Core::g_app_core->ResetContext(thread->context, stack_top, entry_point, arg);
|
|
|
|
|
|
|
|
ready_queue.push_back(thread->current_priority, thread.get());
|
|
|
|
thread->status = THREADSTATUS_READY;
|
2014-06-02 02:42:50 +01:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
return MakeResult<SharedPtr<Thread>>(std::move(thread));
|
2014-06-02 03:12:54 +01:00
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
// TODO(peachum): Remove this. Range checking should be done, and an appropriate error should be returned.
|
|
|
|
static void ClampPriority(const Thread* thread, s32* priority) {
|
|
|
|
if (*priority < THREADPRIO_HIGHEST || *priority > THREADPRIO_LOWEST) {
|
2015-01-21 01:16:47 +00:00
|
|
|
DEBUG_ASSERT_MSG(false, "Application passed an out of range priority. An error should be returned.");
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2015-02-19 06:46:21 +00:00
|
|
|
s32 new_priority = MathUtil::Clamp<s32>(*priority, THREADPRIO_HIGHEST, THREADPRIO_LOWEST);
|
2015-01-26 06:56:17 +00:00
|
|
|
LOG_WARNING(Kernel_SVC, "(name=%s): invalid priority=%d, clamping to %d",
|
|
|
|
thread->name.c_str(), *priority, new_priority);
|
2014-06-02 03:12:54 +01:00
|
|
|
// TODO(bunnei): Clamping to a valid priority is not necessarily correct behavior... Confirm
|
|
|
|
// validity of this
|
2015-01-26 06:56:17 +00:00
|
|
|
*priority = new_priority;
|
2014-06-02 03:12:54 +01:00
|
|
|
}
|
2015-01-26 06:56:17 +00:00
|
|
|
}
|
2014-06-02 03:12:54 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
void Thread::SetPriority(s32 priority) {
|
|
|
|
ClampPriority(this, &priority);
|
2014-06-02 03:12:54 +01:00
|
|
|
|
2015-03-24 03:55:21 +00:00
|
|
|
// If thread was ready, adjust queues
|
|
|
|
if (status == THREADSTATUS_READY)
|
|
|
|
ready_queue.move(this, current_priority, priority);
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2015-03-24 03:55:21 +00:00
|
|
|
nominal_priority = current_priority = priority;
|
2014-06-02 03:12:54 +01:00
|
|
|
}
|
|
|
|
|
2015-04-03 23:40:16 +01:00
|
|
|
void Thread::BoostPriority(s32 priority) {
|
|
|
|
ready_queue.move(this, current_priority, priority);
|
|
|
|
current_priority = priority;
|
|
|
|
}
|
|
|
|
|
2015-01-31 01:07:54 +00:00
|
|
|
SharedPtr<Thread> SetupIdleThread() {
|
2014-12-22 13:07:22 +00:00
|
|
|
// We need to pass a few valid values to get around parameter checking in Thread::Create.
|
2015-05-09 04:39:56 +01:00
|
|
|
// TODO(yuriks): Figure out a way to avoid passing the bogus VAddr parameter
|
|
|
|
auto thread = Thread::Create("idle", Memory::TLS_AREA_VADDR, THREADPRIO_LOWEST, 0,
|
2015-01-26 06:56:17 +00:00
|
|
|
THREADPROCESSORID_0, 0).MoveFrom();
|
2014-12-22 13:07:22 +00:00
|
|
|
|
2015-01-07 15:10:58 +00:00
|
|
|
thread->idle = true;
|
2015-01-31 01:07:54 +00:00
|
|
|
return thread;
|
2015-01-07 15:10:58 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
SharedPtr<Thread> SetupMainThread(u32 stack_size, u32 entry_point, s32 priority) {
|
2015-01-21 01:16:47 +00:00
|
|
|
DEBUG_ASSERT(!GetCurrentThread());
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2014-05-15 23:27:08 +01:00
|
|
|
// Initialize new "main" thread
|
2015-01-26 06:56:17 +00:00
|
|
|
auto thread_res = Thread::Create("main", entry_point, priority, 0,
|
2015-05-09 04:39:56 +01:00
|
|
|
THREADPROCESSORID_0, Memory::HEAP_VADDR_END - stack_size);
|
2015-01-26 06:56:17 +00:00
|
|
|
|
|
|
|
SharedPtr<Thread> thread = thread_res.MoveFrom();
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2014-05-15 23:27:08 +01:00
|
|
|
// Run new "main" thread
|
2015-01-26 06:56:17 +00:00
|
|
|
SwitchContext(thread.get());
|
2014-05-15 01:50:30 +01:00
|
|
|
|
2014-12-22 13:07:22 +00:00
|
|
|
return thread;
|
2014-05-15 23:27:08 +01:00
|
|
|
}
|
2014-05-15 01:50:30 +01:00
|
|
|
|
2014-05-23 00:32:45 +01:00
|
|
|
void Reschedule() {
|
2014-05-23 00:06:12 +01:00
|
|
|
Thread* prev = GetCurrentThread();
|
2015-03-24 03:55:21 +00:00
|
|
|
|
|
|
|
PriorityBoostStarvedThreads();
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
Thread* next = PopNextReadyThread();
|
2014-06-06 03:35:36 +01:00
|
|
|
HLE::g_reschedule = false;
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2014-12-20 07:32:19 +00:00
|
|
|
if (next != nullptr) {
|
2015-01-31 16:55:40 +00:00
|
|
|
LOG_TRACE(Kernel, "context switch %u -> %u", prev->GetObjectId(), next->GetObjectId());
|
2014-05-23 00:32:45 +01:00
|
|
|
SwitchContext(next);
|
2014-12-20 07:32:19 +00:00
|
|
|
} else {
|
2015-01-31 16:55:40 +00:00
|
|
|
LOG_TRACE(Kernel, "cannot context switch from %u, no higher priority thread!", prev->GetObjectId());
|
2014-05-15 23:27:08 +01:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
for (auto& thread : thread_list) {
|
2015-01-31 16:55:40 +00:00
|
|
|
LOG_TRACE(Kernel, "\tid=%u prio=0x%02X, status=0x%08X", thread->GetObjectId(),
|
2015-01-18 18:25:51 +00:00
|
|
|
thread->current_priority, thread->status);
|
2014-06-06 03:35:36 +01:00
|
|
|
}
|
2014-05-22 23:50:36 +01:00
|
|
|
}
|
2014-05-17 05:56:00 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 01:53:52 +00:00
|
|
|
void Thread::SetWaitSynchronizationResult(ResultCode result) {
|
|
|
|
context.cpu_registers[0] = result.raw;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Thread::SetWaitSynchronizationOutput(s32 output) {
|
|
|
|
context.cpu_registers[1] = output;
|
2015-01-17 07:03:44 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 05:56:00 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-05-15 23:27:08 +01:00
|
|
|
|
2014-05-21 00:37:46 +01:00
|
|
|
void ThreadingInit() {
|
2015-01-07 21:40:08 +00:00
|
|
|
ThreadWakeupEventType = CoreTiming::RegisterEvent("ThreadWakeupCallback", ThreadWakeupCallback);
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2015-04-28 03:12:35 +01:00
|
|
|
current_thread = nullptr;
|
|
|
|
next_thread_id = 1;
|
|
|
|
|
|
|
|
thread_list.clear();
|
|
|
|
ready_queue.clear();
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
// Setup the idle thread
|
|
|
|
SetupIdleThread();
|
2014-05-14 03:00:11 +01:00
|
|
|
}
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-05-21 00:37:46 +01:00
|
|
|
void ThreadingShutdown() {
|
2014-05-14 03:00:11 +01:00
|
|
|
}
|
2014-05-21 00:37:46 +01:00
|
|
|
|
|
|
|
} // namespace
|