2014-05-10 02:11:18 +00: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 02:11:18 +00:00
|
|
|
|
2014-06-06 02:35:36 +00:00
|
|
|
#include <algorithm>
|
2018-02-14 05:33:15 +00:00
|
|
|
#include <cinttypes>
|
2014-08-18 03:03:22 +00:00
|
|
|
#include <list>
|
|
|
|
#include <vector>
|
2015-05-06 07:06:12 +00: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 22:27:08 +00:00
|
|
|
#include "common/thread_queue_list.h"
|
2014-12-22 06:30:09 +00:00
|
|
|
#include "core/arm/arm_interface.h"
|
2014-05-14 02:00:11 +00:00
|
|
|
#include "core/core.h"
|
2015-01-07 15:10:58 +00:00
|
|
|
#include "core/core_timing.h"
|
2017-05-21 07:11:36 +00:00
|
|
|
#include "core/hle/kernel/errors.h"
|
2017-05-29 23:45:42 +00:00
|
|
|
#include "core/hle/kernel/handle_table.h"
|
2014-05-10 02:11:18 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2015-11-27 03:00:16 +00:00
|
|
|
#include "core/hle/kernel/memory.h"
|
2014-12-07 20:44:21 +00:00
|
|
|
#include "core/hle/kernel/mutex.h"
|
2016-09-18 00:38:01 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2014-10-23 03:20:01 +00:00
|
|
|
#include "core/hle/result.h"
|
2015-05-13 01:38:29 +00:00
|
|
|
#include "core/memory.h"
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-20 23:37:46 +00:00
|
|
|
namespace Kernel {
|
2014-05-14 02:00:11 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
/// Event type for the thread wake up event
|
2017-11-25 13:56:57 +00:00
|
|
|
static CoreTiming::EventType* ThreadWakeupEventType = nullptr;
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
bool Thread::ShouldWait(Thread* thread) const {
|
2015-01-26 06:56:17 +00:00
|
|
|
return status != THREADSTATUS_DEAD;
|
2014-12-22 06:32:03 +00:00
|
|
|
}
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2017-01-01 21:53:22 +00:00
|
|
|
void Thread::Acquire(Thread* thread) {
|
|
|
|
ASSERT_MSG(!ShouldWait(thread), "object unavailable!");
|
2015-01-18 03:23:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-17 05:24:13 +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-26 06:56:17 +00:00
|
|
|
// The first available thread id at startup
|
2015-04-28 02:12:35 +00: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
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
Thread::Thread() {}
|
|
|
|
Thread::~Thread() {}
|
2015-01-31 21:22:40 +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() {
|
|
|
|
// Cancel any outstanding wakeup events for this thread
|
|
|
|
CoreTiming::UnscheduleEvent(ThreadWakeupEventType, callback_handle);
|
2015-07-17 05:24:13 +00:00
|
|
|
wakeup_callback_handle_table.Close(callback_handle);
|
|
|
|
callback_handle = 0;
|
2015-01-26 06:56:17 +00:00
|
|
|
|
|
|
|
// Clean up thread from ready queue
|
|
|
|
// This is only needed when the thread is termintated forcefully (SVC TerminateProcess)
|
2016-09-18 00:38:01 +00:00
|
|
|
if (status == THREADSTATUS_READY) {
|
2018-02-18 20:17:16 +00:00
|
|
|
Core::System::GetInstance().Scheduler().UnscheduleThread(this, current_priority);
|
2015-01-26 06:56:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
status = THREADSTATUS_DEAD;
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2015-01-20 23:20:47 +00:00
|
|
|
WakeupAllWaitingThreads();
|
2014-06-10 02:14:03 +00: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);
|
|
|
|
}
|
2015-07-17 05:24:13 +00:00
|
|
|
wait_objects.clear();
|
2015-05-11 04:19:54 +00:00
|
|
|
|
2017-01-03 00:38:08 +00:00
|
|
|
// Release all the mutexes that this thread holds
|
|
|
|
ReleaseThreadMutexes(this);
|
|
|
|
|
2016-04-19 22:12:48 +00:00
|
|
|
// Mark the TLS slot in the thread's page as free.
|
2017-12-29 18:27:58 +00:00
|
|
|
u64 tls_page = (tls_address - Memory::TLS_AREA_VADDR) / Memory::PAGE_SIZE;
|
|
|
|
u64 tls_slot =
|
2016-09-18 00:38:01 +00:00
|
|
|
((tls_address - Memory::TLS_AREA_VADDR) % Memory::PAGE_SIZE) / Memory::TLS_ENTRY_SIZE;
|
2016-04-19 22:12:48 +00:00
|
|
|
Kernel::g_current_process->tls_slots[tls_page].reset(tls_slot);
|
2014-05-14 02:00:11 +00: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-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
|
|
|
}
|
|
|
|
|
2016-12-17 11:08:38 +00:00
|
|
|
void ExitCurrentThread() {
|
|
|
|
Thread* thread = GetCurrentThread();
|
|
|
|
thread->Stop();
|
2018-02-18 20:17:16 +00:00
|
|
|
Core::System::GetInstance().Scheduler().RemoveThread(thread);
|
2016-12-17 11:08:38 +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;
|
|
|
|
}
|
|
|
|
|
2018-01-08 16:35:03 +00:00
|
|
|
bool resume = true;
|
|
|
|
|
2017-01-04 15:44:38 +00:00
|
|
|
if (thread->status == THREADSTATUS_WAIT_SYNCH_ANY ||
|
|
|
|
thread->status == THREADSTATUS_WAIT_SYNCH_ALL || thread->status == THREADSTATUS_WAIT_ARB) {
|
2017-09-28 16:53:32 +00:00
|
|
|
|
2016-12-10 18:29:31 +00:00
|
|
|
// Remove the thread from each of its waiting objects' waitlists
|
|
|
|
for (auto& object : thread->wait_objects)
|
|
|
|
object->RemoveWaitingThread(thread.get());
|
|
|
|
thread->wait_objects.clear();
|
2018-01-08 16:35:03 +00:00
|
|
|
|
|
|
|
// Invoke the wakeup callback before clearing the wait objects
|
|
|
|
if (thread->wakeup_callback)
|
|
|
|
resume = thread->wakeup_callback(ThreadWakeupReason::Timeout, thread, nullptr, 0);
|
2015-01-26 06:56:17 +00:00
|
|
|
}
|
2015-01-17 07:03:44 +00:00
|
|
|
|
2018-01-08 16:35:03 +00:00
|
|
|
if (resume)
|
|
|
|
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;
|
|
|
|
|
2017-11-25 13:56:57 +00:00
|
|
|
CoreTiming::ScheduleEvent(nsToCycles(nanoseconds), ThreadWakeupEventType, callback_handle);
|
2015-01-07 21:40:08 +00:00
|
|
|
}
|
|
|
|
|
2018-01-08 16:35:03 +00:00
|
|
|
void Thread::CancelWakeupTimer() {
|
|
|
|
CoreTiming::UnscheduleEvent(ThreadWakeupEventType, callback_handle);
|
|
|
|
}
|
|
|
|
|
2014-12-22 13:07:22 +00:00
|
|
|
void Thread::ResumeFromWait() {
|
2017-01-04 17:48:13 +00:00
|
|
|
ASSERT_MSG(wait_objects.empty(), "Thread is waking up while waiting for objects");
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
switch (status) {
|
2017-01-04 15:44:38 +00:00
|
|
|
case THREADSTATUS_WAIT_SYNCH_ALL:
|
|
|
|
case THREADSTATUS_WAIT_SYNCH_ANY:
|
2016-09-18 00:38:01 +00:00
|
|
|
case THREADSTATUS_WAIT_ARB:
|
|
|
|
case THREADSTATUS_WAIT_SLEEP:
|
2018-02-18 18:22:19 +00:00
|
|
|
case THREADSTATUS_WAIT_IPC:
|
2016-09-18 00:38:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case THREADSTATUS_READY:
|
2017-09-28 16:53:32 +00:00
|
|
|
// The thread's wakeup callback must have already been cleared when the thread was first
|
|
|
|
// awoken.
|
|
|
|
ASSERT(wakeup_callback == nullptr);
|
2016-09-18 00:38:01 +00:00
|
|
|
// If the thread is waiting on multiple wait objects, it might be awoken more than once
|
|
|
|
// before actually resuming. We can ignore subsequent wakeups if the thread status has
|
|
|
|
// already been set to THREADSTATUS_READY.
|
|
|
|
return;
|
|
|
|
|
|
|
|
case THREADSTATUS_RUNNING:
|
|
|
|
DEBUG_ASSERT_MSG(false, "Thread with object id %u has already resumed.", GetObjectId());
|
|
|
|
return;
|
|
|
|
case THREADSTATUS_DEAD:
|
|
|
|
// This should never happen, as threads must complete before being stopped.
|
|
|
|
DEBUG_ASSERT_MSG(false, "Thread with object id %u cannot be resumed because it's DEAD.",
|
|
|
|
GetObjectId());
|
|
|
|
return;
|
2014-05-20 23:37:46 +00:00
|
|
|
}
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2017-09-28 16:53:32 +00:00
|
|
|
wakeup_callback = nullptr;
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
status = THREADSTATUS_READY;
|
2018-02-18 20:17:16 +00:00
|
|
|
Core::System::GetInstance().Scheduler().ScheduleThread(this, current_priority);
|
2016-12-16 05:37:38 +00:00
|
|
|
Core::System::GetInstance().PrepareReschedule();
|
2014-05-20 23:37:46 +00:00
|
|
|
}
|
|
|
|
|
2016-04-19 22:12:48 +00:00
|
|
|
/**
|
|
|
|
* Finds a free location for the TLS section of a thread.
|
|
|
|
* @param tls_slots The TLS page array of the thread's owner process.
|
|
|
|
* Returns a tuple of (page, slot, alloc_needed) where:
|
|
|
|
* page: The index of the first allocated TLS page that has free slots.
|
|
|
|
* slot: The index of the first free slot in the indicated page.
|
|
|
|
* alloc_needed: Whether there's a need to allocate a new TLS page (All pages are full).
|
|
|
|
*/
|
|
|
|
std::tuple<u32, u32, bool> GetFreeThreadLocalSlot(std::vector<std::bitset<8>>& tls_slots) {
|
|
|
|
// Iterate over all the allocated pages, and try to find one where not all slots are used.
|
|
|
|
for (unsigned page = 0; page < tls_slots.size(); ++page) {
|
|
|
|
const auto& page_tls_slots = tls_slots[page];
|
|
|
|
if (!page_tls_slots.all()) {
|
|
|
|
// We found a page with at least one free slot, find which slot it is
|
|
|
|
for (unsigned slot = 0; slot < page_tls_slots.size(); ++slot) {
|
|
|
|
if (!page_tls_slots.test(slot)) {
|
|
|
|
return std::make_tuple(page, slot, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_tuple(0, 0, true);
|
|
|
|
}
|
|
|
|
|
2016-09-02 12:53:42 +00:00
|
|
|
/**
|
|
|
|
* Resets a thread context, making it ready to be scheduled and run by the CPU
|
|
|
|
* @param context Thread context to reset
|
|
|
|
* @param stack_top Address of the top of the stack
|
|
|
|
* @param entry_point Address of entry point for execution
|
|
|
|
* @param arg User argument for thread
|
|
|
|
*/
|
2017-09-21 03:14:06 +00:00
|
|
|
static void ResetThreadContext(ARM_Interface::ThreadContext& context, VAddr stack_top,
|
|
|
|
VAddr entry_point, u64 arg) {
|
2016-12-22 05:08:09 +00:00
|
|
|
memset(&context, 0, sizeof(ARM_Interface::ThreadContext));
|
2016-09-02 12:53:42 +00:00
|
|
|
|
|
|
|
context.cpu_registers[0] = arg;
|
|
|
|
context.pc = entry_point;
|
|
|
|
context.sp = stack_top;
|
2018-01-03 03:24:12 +00:00
|
|
|
context.cpsr = 0;
|
|
|
|
context.fpscr = 0;
|
2016-09-02 12:53:42 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 07:11:36 +00:00
|
|
|
ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point, u32 priority,
|
2017-12-29 18:27:58 +00:00
|
|
|
u64 arg, s32 processor_id, VAddr stack_top,
|
2017-09-26 22:40:49 +00:00
|
|
|
SharedPtr<Process> owner_process) {
|
2017-05-21 07:11:36 +00:00
|
|
|
// Check if priority is in ranged. Lowest priority -> highest priority id.
|
|
|
|
if (priority > THREADPRIO_LOWEST) {
|
2018-02-14 05:33:15 +00:00
|
|
|
LOG_ERROR(Kernel_SVC, "Invalid thread priority: %u", priority);
|
2017-05-21 07:11:36 +00:00
|
|
|
return ERR_OUT_OF_RANGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (processor_id > THREADPROCESSORID_MAX) {
|
|
|
|
LOG_ERROR(Kernel_SVC, "Invalid processor id: %d", processor_id);
|
|
|
|
return ERR_OUT_OF_RANGE_KERNEL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(yuriks): Other checks, returning 0xD9001BEA
|
2014-05-17 04:56:00 +00:00
|
|
|
|
2017-09-26 22:40:49 +00:00
|
|
|
if (!Memory::IsValidVirtualAddress(*owner_process, entry_point)) {
|
2018-02-14 05:33:15 +00:00
|
|
|
LOG_ERROR(Kernel_SVC, "(name=%s): invalid entry %016" PRIx64, name.c_str(), entry_point);
|
2017-10-31 23:26:11 +00:00
|
|
|
// TODO (bunnei): Find the correct error code to use here
|
|
|
|
return ResultCode(-1);
|
2014-12-22 13:07:22 +00:00
|
|
|
}
|
2014-05-21 01:02:35 +00:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Thread> thread(new Thread);
|
2014-06-06 02:35:36 +00:00
|
|
|
|
2018-02-18 20:17:16 +00:00
|
|
|
Core::System::GetInstance().Scheduler().AddThread(thread, priority);
|
2014-06-06 02:35:36 +00:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
thread->thread_id = NewThreadId();
|
2014-06-10 02:14:03 +00: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 02:14:03 +00:00
|
|
|
thread->processor_id = processor_id;
|
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);
|
2017-06-19 02:03:15 +00:00
|
|
|
thread->callback_handle = wakeup_callback_handle_table.Create(thread).Unwrap();
|
2017-09-26 22:40:49 +00:00
|
|
|
thread->owner_process = owner_process;
|
2015-05-11 04:19:54 +00:00
|
|
|
|
|
|
|
// Find the next available TLS index, and mark it as used
|
2017-09-26 22:40:49 +00:00
|
|
|
auto& tls_slots = owner_process->tls_slots;
|
2016-04-19 22:12:48 +00:00
|
|
|
bool needs_allocation = true;
|
|
|
|
u32 available_page; // Which allocated page has free space
|
|
|
|
u32 available_slot; // Which slot within the page is free
|
|
|
|
|
|
|
|
std::tie(available_page, available_slot, needs_allocation) = GetFreeThreadLocalSlot(tls_slots);
|
|
|
|
|
|
|
|
if (needs_allocation) {
|
|
|
|
// There are no already-allocated pages with free slots, lets allocate a new one.
|
|
|
|
// TLS pages are allocated from the BASE region in the linear heap.
|
|
|
|
MemoryRegionInfo* memory_region = GetMemoryRegion(MemoryRegion::BASE);
|
|
|
|
auto& linheap_memory = memory_region->linear_heap_memory;
|
|
|
|
|
|
|
|
if (linheap_memory->size() + Memory::PAGE_SIZE > memory_region->size) {
|
2016-09-18 00:38:01 +00:00
|
|
|
LOG_ERROR(Kernel_SVC,
|
|
|
|
"Not enough space in region to allocate a new TLS page for thread");
|
2017-05-21 07:11:36 +00:00
|
|
|
return ERR_OUT_OF_MEMORY;
|
2015-05-11 04:19:54 +00:00
|
|
|
}
|
2016-04-19 22:12:48 +00:00
|
|
|
|
2017-09-26 23:26:09 +00:00
|
|
|
size_t offset = linheap_memory->size();
|
2016-04-19 22:12:48 +00:00
|
|
|
|
|
|
|
// Allocate some memory from the end of the linear heap for this region.
|
|
|
|
linheap_memory->insert(linheap_memory->end(), Memory::PAGE_SIZE, 0);
|
|
|
|
memory_region->used += Memory::PAGE_SIZE;
|
2017-09-26 22:40:49 +00:00
|
|
|
owner_process->linear_heap_used += Memory::PAGE_SIZE;
|
2016-04-19 22:12:48 +00:00
|
|
|
|
|
|
|
tls_slots.emplace_back(0); // The page is completely available at the start
|
2017-09-26 23:26:09 +00:00
|
|
|
available_page = static_cast<u32>(tls_slots.size() - 1);
|
2016-04-19 22:12:48 +00:00
|
|
|
available_slot = 0; // Use the first slot in the new page
|
|
|
|
|
2017-09-26 22:40:49 +00:00
|
|
|
auto& vm_manager = owner_process->vm_manager;
|
2016-04-19 22:12:48 +00:00
|
|
|
vm_manager.RefreshMemoryBlockMappings(linheap_memory.get());
|
|
|
|
|
|
|
|
// Map the page to the current process' address space.
|
|
|
|
// TODO(Subv): Find the correct MemoryState for this region.
|
|
|
|
vm_manager.MapMemoryBlock(Memory::TLS_AREA_VADDR + available_page * Memory::PAGE_SIZE,
|
2018-01-08 16:35:03 +00:00
|
|
|
linheap_memory, offset, Memory::PAGE_SIZE,
|
|
|
|
MemoryState::ThreadLocalStorage);
|
2015-05-11 04:19:54 +00:00
|
|
|
}
|
2014-06-06 02:35:36 +00:00
|
|
|
|
2016-04-19 22:12:48 +00:00
|
|
|
// Mark the slot as used
|
|
|
|
tls_slots[available_page].set(available_slot);
|
2016-09-18 00:38:01 +00:00
|
|
|
thread->tls_address = Memory::TLS_AREA_VADDR + available_page * Memory::PAGE_SIZE +
|
|
|
|
available_slot * Memory::TLS_ENTRY_SIZE;
|
2015-05-10 23:43:59 +00: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
|
2016-09-02 12:53:42 +00:00
|
|
|
ResetThreadContext(thread->context, stack_top, entry_point, arg);
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
return MakeResult<SharedPtr<Thread>>(std::move(thread));
|
2014-06-02 02:12:54 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 23:26:09 +00:00
|
|
|
void Thread::SetPriority(u32 priority) {
|
2017-01-11 17:08:10 +00:00
|
|
|
ASSERT_MSG(priority <= THREADPRIO_LOWEST && priority >= THREADPRIO_HIGHEST,
|
|
|
|
"Invalid priority value.");
|
2018-02-18 20:17:16 +00:00
|
|
|
Core::System::GetInstance().Scheduler().SetThreadPriority(this, priority);
|
2015-03-24 03:55:21 +00:00
|
|
|
nominal_priority = current_priority = priority;
|
2014-06-02 02:12:54 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 00:38:08 +00:00
|
|
|
void Thread::UpdatePriority() {
|
2017-09-26 23:26:09 +00:00
|
|
|
u32 best_priority = nominal_priority;
|
2017-01-03 00:38:08 +00:00
|
|
|
for (auto& mutex : held_mutexes) {
|
|
|
|
if (mutex->priority < best_priority)
|
|
|
|
best_priority = mutex->priority;
|
|
|
|
}
|
|
|
|
BoostPriority(best_priority);
|
|
|
|
}
|
|
|
|
|
2017-09-26 23:26:09 +00:00
|
|
|
void Thread::BoostPriority(u32 priority) {
|
2018-02-18 20:17:16 +00:00
|
|
|
Core::System::GetInstance().Scheduler().SetThreadPriority(this, priority);
|
2015-04-03 22:40:16 +00:00
|
|
|
current_priority = priority;
|
|
|
|
}
|
|
|
|
|
2017-12-30 17:10:58 +00:00
|
|
|
SharedPtr<Thread> SetupMainThread(VAddr entry_point, u32 priority,
|
|
|
|
SharedPtr<Process> owner_process) {
|
2017-10-10 03:56:20 +00:00
|
|
|
// Setup page table so we can write to memory
|
|
|
|
SetCurrentPageTable(&Kernel::g_current_process->vm_manager.page_table);
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2014-05-15 22:27:08 +00:00
|
|
|
// Initialize new "main" thread
|
2016-09-18 00:38:01 +00:00
|
|
|
auto thread_res = Thread::Create("main", entry_point, priority, 0, THREADPROCESSORID_0,
|
2017-09-26 22:40:49 +00:00
|
|
|
Memory::HEAP_VADDR_END, owner_process);
|
2015-01-26 06:56:17 +00:00
|
|
|
|
2017-06-19 02:03:15 +00:00
|
|
|
SharedPtr<Thread> thread = std::move(thread_res).Unwrap();
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2017-12-30 17:10:58 +00:00
|
|
|
// Register 1 must be a handle to the main thread
|
2018-01-08 16:35:03 +00:00
|
|
|
thread->guest_handle = Kernel::g_handle_table.Create(thread).Unwrap();
|
|
|
|
|
2017-12-31 22:23:36 +00:00
|
|
|
thread->context.cpu_registers[1] = thread->guest_handle;
|
2016-05-14 13:45:04 +00:00
|
|
|
|
2017-12-30 17:05:10 +00:00
|
|
|
// Threads by default are dormant, wake up the main thread so it runs when the scheduler fires
|
|
|
|
thread->ResumeFromWait();
|
|
|
|
|
2014-12-22 13:07:22 +00:00
|
|
|
return thread;
|
2014-05-15 22:27:08 +00:00
|
|
|
}
|
2014-05-15 00:50:30 +00: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
|
|
|
}
|
|
|
|
|
2017-01-04 15:53:01 +00:00
|
|
|
s32 Thread::GetWaitObjectIndex(WaitObject* object) const {
|
2017-01-04 17:48:13 +00:00
|
|
|
ASSERT_MSG(!wait_objects.empty(), "Thread is not waiting for anything");
|
2017-01-04 15:53:01 +00:00
|
|
|
auto match = std::find(wait_objects.rbegin(), wait_objects.rend(), object);
|
2017-09-26 23:26:09 +00:00
|
|
|
return static_cast<s32>(std::distance(match, wait_objects.rend()) - 1);
|
2017-01-04 15:53:01 +00:00
|
|
|
}
|
|
|
|
|
2017-09-29 19:47:52 +00:00
|
|
|
VAddr Thread::GetCommandBufferAddress() const {
|
|
|
|
// Offset from the start of TLS at which the IPC command buffer begins.
|
|
|
|
static constexpr int CommandHeaderOffset = 0x80;
|
|
|
|
return GetTLSAddress() + CommandHeaderOffset;
|
2017-01-04 15:53:01 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 04:56:00 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-05-15 22:27:08 +00:00
|
|
|
|
2018-02-18 20:17:16 +00:00
|
|
|
/**
|
|
|
|
* Gets the current thread
|
|
|
|
*/
|
|
|
|
Thread* GetCurrentThread() {
|
|
|
|
return Core::System::GetInstance().Scheduler().GetCurrentThread();
|
|
|
|
}
|
|
|
|
|
2014-05-20 23:37:46 +00:00
|
|
|
void ThreadingInit() {
|
2015-01-07 21:40:08 +00:00
|
|
|
ThreadWakeupEventType = CoreTiming::RegisterEvent("ThreadWakeupCallback", ThreadWakeupCallback);
|
2015-04-28 02:12:35 +00:00
|
|
|
next_thread_id = 1;
|
2014-05-14 02:00:11 +00:00
|
|
|
}
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2018-02-18 20:17:16 +00:00
|
|
|
void ThreadingShutdown() {}
|
2016-04-08 16:28:54 +00:00
|
|
|
|
2018-01-08 16:35:03 +00:00
|
|
|
} // namespace Kernel
|