| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115 |
- // Copyright 2021 yuzu Emulator Project
- // Licensed under GPLv2 or any later version
- // Refer to the license.txt file included.
- #include <algorithm>
- #include <cinttypes>
- #include <optional>
- #include <vector>
- #include "common/assert.h"
- #include "common/bit_util.h"
- #include "common/common_funcs.h"
- #include "common/common_types.h"
- #include "common/fiber.h"
- #include "common/logging/log.h"
- #include "common/scope_exit.h"
- #include "common/settings.h"
- #include "common/thread_queue_list.h"
- #include "core/core.h"
- #include "core/cpu_manager.h"
- #include "core/hardware_properties.h"
- #include "core/hle/kernel/k_condition_variable.h"
- #include "core/hle/kernel/k_handle_table.h"
- #include "core/hle/kernel/k_memory_layout.h"
- #include "core/hle/kernel/k_process.h"
- #include "core/hle/kernel/k_resource_limit.h"
- #include "core/hle/kernel/k_scheduler.h"
- #include "core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h"
- #include "core/hle/kernel/k_thread.h"
- #include "core/hle/kernel/k_thread_queue.h"
- #include "core/hle/kernel/kernel.h"
- #include "core/hle/kernel/svc_results.h"
- #include "core/hle/kernel/time_manager.h"
- #include "core/hle/result.h"
- #ifdef ARCHITECTURE_x86_64
- #include "core/arm/dynarmic/arm_dynarmic_32.h"
- #endif
- namespace {
- static void ResetThreadContext32(Core::ARM_Interface::ThreadContext32& context, u32 stack_top,
- u32 entry_point, u32 arg) {
- context = {};
- context.cpu_registers[0] = arg;
- context.cpu_registers[15] = entry_point;
- context.cpu_registers[13] = stack_top;
- }
- static void ResetThreadContext64(Core::ARM_Interface::ThreadContext64& context, VAddr stack_top,
- VAddr entry_point, u64 arg) {
- context = {};
- context.cpu_registers[0] = arg;
- context.pc = entry_point;
- context.sp = stack_top;
- // TODO(merry): Perform a hardware test to determine the below value.
- context.fpcr = 0;
- }
- } // namespace
- namespace Kernel {
- namespace {
- class ThreadQueueImplForKThreadSleep final : public KThreadQueueWithoutEndWait {
- public:
- explicit ThreadQueueImplForKThreadSleep(KernelCore& kernel_)
- : KThreadQueueWithoutEndWait(kernel_) {}
- };
- class ThreadQueueImplForKThreadSetProperty final : public KThreadQueue {
- public:
- explicit ThreadQueueImplForKThreadSetProperty(KernelCore& kernel_, KThread::WaiterList* wl)
- : KThreadQueue(kernel_), m_wait_list(wl) {}
- void CancelWait(KThread* waiting_thread, ResultCode wait_result,
- bool cancel_timer_task) override {
- // Remove the thread from the wait list.
- m_wait_list->erase(m_wait_list->iterator_to(*waiting_thread));
- // Invoke the base cancel wait handler.
- KThreadQueue::CancelWait(waiting_thread, wait_result, cancel_timer_task);
- }
- private:
- KThread::WaiterList* m_wait_list;
- };
- } // namespace
- KThread::KThread(KernelCore& kernel_)
- : KAutoObjectWithSlabHeapAndContainer{kernel_}, activity_pause_lock{kernel_} {}
- KThread::~KThread() = default;
- ResultCode KThread::Initialize(KThreadFunction func, uintptr_t arg, VAddr user_stack_top, s32 prio,
- s32 virt_core, KProcess* owner, ThreadType type) {
- // Assert parameters are valid.
- ASSERT((type == ThreadType::Main) ||
- (Svc::HighestThreadPriority <= prio && prio <= Svc::LowestThreadPriority));
- ASSERT((owner != nullptr) || (type != ThreadType::User));
- ASSERT(0 <= virt_core && virt_core < static_cast<s32>(Common::BitSize<u64>()));
- // Convert the virtual core to a physical core.
- const s32 phys_core = Core::Hardware::VirtualToPhysicalCoreMap[virt_core];
- ASSERT(0 <= phys_core && phys_core < static_cast<s32>(Core::Hardware::NUM_CPU_CORES));
- // First, clear the TLS address.
- tls_address = {};
- // Next, assert things based on the type.
- switch (type) {
- case ThreadType::Main:
- ASSERT(arg == 0);
- [[fallthrough]];
- case ThreadType::HighPriority:
- [[fallthrough]];
- case ThreadType::Dummy:
- [[fallthrough]];
- case ThreadType::User:
- ASSERT(((owner == nullptr) ||
- (owner->GetCoreMask() | (1ULL << virt_core)) == owner->GetCoreMask()));
- ASSERT(((owner == nullptr) ||
- (owner->GetPriorityMask() | (1ULL << prio)) == owner->GetPriorityMask()));
- break;
- case ThreadType::Kernel:
- UNIMPLEMENTED();
- break;
- default:
- UNREACHABLE_MSG("KThread::Initialize: Unknown ThreadType {}", static_cast<u32>(type));
- break;
- }
- thread_type_for_debugging = type;
- // Set the ideal core ID and affinity mask.
- virtual_ideal_core_id = virt_core;
- physical_ideal_core_id = phys_core;
- virtual_affinity_mask = 1ULL << virt_core;
- physical_affinity_mask.SetAffinity(phys_core, true);
- // Set the thread state.
- thread_state = (type == ThreadType::Main) ? ThreadState::Runnable : ThreadState::Initialized;
- // Set TLS address.
- tls_address = 0;
- // Set parent and condvar tree.
- parent = nullptr;
- condvar_tree = nullptr;
- // Set sync booleans.
- signaled = false;
- termination_requested = false;
- wait_cancelled = false;
- cancellable = false;
- // Set core ID and wait result.
- core_id = phys_core;
- wait_result = ResultNoSynchronizationObject;
- // Set priorities.
- priority = prio;
- base_priority = prio;
- // Initialize sleeping queue.
- wait_queue = nullptr;
- // Set suspend flags.
- suspend_request_flags = 0;
- suspend_allowed_flags = static_cast<u32>(ThreadState::SuspendFlagMask);
- // We're neither debug attached, nor are we nesting our priority inheritance.
- debug_attached = false;
- priority_inheritance_count = 0;
- // We haven't been scheduled, and we have done no light IPC.
- schedule_count = -1;
- last_scheduled_tick = 0;
- light_ipc_data = nullptr;
- // We're not waiting for a lock, and we haven't disabled migration.
- lock_owner = nullptr;
- num_core_migration_disables = 0;
- // We have no waiters, but we do have an entrypoint.
- num_kernel_waiters = 0;
- // Set our current core id.
- current_core_id = phys_core;
- // We haven't released our resource limit hint, and we've spent no time on the cpu.
- resource_limit_release_hint = false;
- cpu_time = 0;
- // Clear our stack parameters.
- std::memset(static_cast<void*>(std::addressof(GetStackParameters())), 0,
- sizeof(StackParameters));
- // Set parent, if relevant.
- if (owner != nullptr) {
- // Setup the TLS, if needed.
- if (type == ThreadType::User) {
- tls_address = owner->CreateTLSRegion();
- }
- parent = owner;
- parent->Open();
- parent->IncrementThreadCount();
- }
- // Initialize thread context.
- ResetThreadContext64(thread_context_64, user_stack_top, func, arg);
- ResetThreadContext32(thread_context_32, static_cast<u32>(user_stack_top),
- static_cast<u32>(func), static_cast<u32>(arg));
- // Setup the stack parameters.
- StackParameters& sp = GetStackParameters();
- sp.cur_thread = this;
- sp.disable_count = 0;
- SetInExceptionHandler();
- // Set thread ID.
- thread_id = kernel.CreateNewThreadID();
- // We initialized!
- initialized = true;
- // Register ourselves with our parent process.
- if (parent != nullptr) {
- parent->RegisterThread(this);
- if (parent->IsSuspended()) {
- RequestSuspend(SuspendType::Process);
- }
- }
- return ResultSuccess;
- }
- ResultCode KThread::InitializeThread(KThread* thread, KThreadFunction func, uintptr_t arg,
- VAddr user_stack_top, s32 prio, s32 core, KProcess* owner,
- ThreadType type, std::function<void(void*)>&& init_func,
- void* init_func_parameter) {
- // Initialize the thread.
- R_TRY(thread->Initialize(func, arg, user_stack_top, prio, core, owner, type));
- // Initialize emulation parameters.
- thread->host_context =
- std::make_shared<Common::Fiber>(std::move(init_func), init_func_parameter);
- thread->is_single_core = !Settings::values.use_multi_core.GetValue();
- return ResultSuccess;
- }
- ResultCode KThread::InitializeDummyThread(KThread* thread) {
- return thread->Initialize({}, {}, {}, DefaultThreadPriority, 3, {}, ThreadType::Dummy);
- }
- ResultCode KThread::InitializeIdleThread(Core::System& system, KThread* thread, s32 virt_core) {
- return InitializeThread(thread, {}, {}, {}, IdleThreadPriority, virt_core, {}, ThreadType::Main,
- Core::CpuManager::GetIdleThreadStartFunc(),
- system.GetCpuManager().GetStartFuncParamater());
- }
- ResultCode KThread::InitializeHighPriorityThread(Core::System& system, KThread* thread,
- KThreadFunction func, uintptr_t arg,
- s32 virt_core) {
- return InitializeThread(thread, func, arg, {}, {}, virt_core, nullptr, ThreadType::HighPriority,
- Core::CpuManager::GetSuspendThreadStartFunc(),
- system.GetCpuManager().GetStartFuncParamater());
- }
- ResultCode KThread::InitializeUserThread(Core::System& system, KThread* thread,
- KThreadFunction func, uintptr_t arg, VAddr user_stack_top,
- s32 prio, s32 virt_core, KProcess* owner) {
- system.Kernel().GlobalSchedulerContext().AddThread(thread);
- return InitializeThread(thread, func, arg, user_stack_top, prio, virt_core, owner,
- ThreadType::User, Core::CpuManager::GetGuestThreadStartFunc(),
- system.GetCpuManager().GetStartFuncParamater());
- }
- void KThread::PostDestroy(uintptr_t arg) {
- KProcess* owner = reinterpret_cast<KProcess*>(arg & ~1ULL);
- const bool resource_limit_release_hint = (arg & 1);
- const s64 hint_value = (resource_limit_release_hint ? 0 : 1);
- if (owner != nullptr) {
- owner->GetResourceLimit()->Release(LimitableResource::Threads, 1, hint_value);
- owner->Close();
- }
- }
- void KThread::Finalize() {
- // If the thread has an owner process, unregister it.
- if (parent != nullptr) {
- parent->UnregisterThread(this);
- }
- // If the thread has a local region, delete it.
- if (tls_address != 0) {
- parent->FreeTLSRegion(tls_address);
- }
- // Release any waiters.
- {
- ASSERT(lock_owner == nullptr);
- KScopedSchedulerLock sl{kernel};
- auto it = waiter_list.begin();
- while (it != waiter_list.end()) {
- // Clear the lock owner
- it->SetLockOwner(nullptr);
- // Erase the waiter from our list.
- it = waiter_list.erase(it);
- // Cancel the thread's wait.
- it->CancelWait(ResultInvalidState, true);
- }
- }
- // Decrement the parent process's thread count.
- if (parent != nullptr) {
- parent->DecrementThreadCount();
- }
- // Perform inherited finalization.
- KAutoObjectWithSlabHeapAndContainer<KThread, KSynchronizationObject>::Finalize();
- }
- bool KThread::IsSignaled() const {
- return signaled;
- }
- void KThread::OnTimer() {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- // If we're waiting, cancel the wait.
- if (GetState() == ThreadState::Waiting) {
- wait_queue->CancelWait(this, ResultTimedOut, false);
- }
- }
- void KThread::StartTermination() {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- // Release user exception and unpin, if relevant.
- if (parent != nullptr) {
- parent->ReleaseUserException(this);
- if (parent->GetPinnedThread(GetCurrentCoreId(kernel)) == this) {
- parent->UnpinCurrentThread();
- }
- }
- // Set state to terminated.
- SetState(ThreadState::Terminated);
- // Clear the thread's status as running in parent.
- if (parent != nullptr) {
- parent->ClearRunningThread(this);
- }
- // Signal.
- signaled = true;
- KSynchronizationObject::NotifyAvailable();
- // Clear previous thread in KScheduler.
- KScheduler::ClearPreviousThread(kernel, this);
- // Register terminated dpc flag.
- RegisterDpc(DpcFlag::Terminated);
- // Close the thread.
- this->Close();
- }
- void KThread::Pin() {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- // Set ourselves as pinned.
- GetStackParameters().is_pinned = true;
- // Disable core migration.
- ASSERT(num_core_migration_disables == 0);
- {
- ++num_core_migration_disables;
- // Save our ideal state to restore when we're unpinned.
- original_physical_ideal_core_id = physical_ideal_core_id;
- original_physical_affinity_mask = physical_affinity_mask;
- // Bind ourselves to this core.
- const s32 active_core = GetActiveCore();
- const s32 current_core = GetCurrentCoreId(kernel);
- SetActiveCore(current_core);
- physical_ideal_core_id = current_core;
- physical_affinity_mask.SetAffinityMask(1ULL << current_core);
- if (active_core != current_core || physical_affinity_mask.GetAffinityMask() !=
- original_physical_affinity_mask.GetAffinityMask()) {
- KScheduler::OnThreadAffinityMaskChanged(kernel, this, original_physical_affinity_mask,
- active_core);
- }
- }
- // Disallow performing thread suspension.
- {
- // Update our allow flags.
- suspend_allowed_flags &= ~(1 << (static_cast<u32>(SuspendType::Thread) +
- static_cast<u32>(ThreadState::SuspendShift)));
- // Update our state.
- const ThreadState old_state = thread_state;
- thread_state = static_cast<ThreadState>(GetSuspendFlags() |
- static_cast<u32>(old_state & ThreadState::Mask));
- if (thread_state != old_state) {
- KScheduler::OnThreadStateChanged(kernel, this, old_state);
- }
- }
- // TODO(bunnei): Update our SVC access permissions.
- ASSERT(parent != nullptr);
- }
- void KThread::Unpin() {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- // Set ourselves as unpinned.
- GetStackParameters().is_pinned = false;
- // Enable core migration.
- ASSERT(num_core_migration_disables == 1);
- {
- num_core_migration_disables--;
- // Restore our original state.
- const KAffinityMask old_mask = physical_affinity_mask;
- physical_ideal_core_id = original_physical_ideal_core_id;
- physical_affinity_mask = original_physical_affinity_mask;
- if (physical_affinity_mask.GetAffinityMask() != old_mask.GetAffinityMask()) {
- const s32 active_core = GetActiveCore();
- if (!physical_affinity_mask.GetAffinity(active_core)) {
- if (physical_ideal_core_id >= 0) {
- SetActiveCore(physical_ideal_core_id);
- } else {
- SetActiveCore(static_cast<s32>(
- Common::BitSize<u64>() - 1 -
- std::countl_zero(physical_affinity_mask.GetAffinityMask())));
- }
- }
- KScheduler::OnThreadAffinityMaskChanged(kernel, this, old_mask, active_core);
- }
- }
- // Allow performing thread suspension (if termination hasn't been requested).
- {
- // Update our allow flags.
- if (!IsTerminationRequested()) {
- suspend_allowed_flags |= (1 << (static_cast<u32>(SuspendType::Thread) +
- static_cast<u32>(ThreadState::SuspendShift)));
- }
- // Update our state.
- const ThreadState old_state = thread_state;
- thread_state = static_cast<ThreadState>(GetSuspendFlags() |
- static_cast<u32>(old_state & ThreadState::Mask));
- if (thread_state != old_state) {
- KScheduler::OnThreadStateChanged(kernel, this, old_state);
- }
- }
- // TODO(bunnei): Update our SVC access permissions.
- ASSERT(parent != nullptr);
- // Resume any threads that began waiting on us while we were pinned.
- for (auto it = pinned_waiter_list.begin(); it != pinned_waiter_list.end(); ++it) {
- if (it->GetState() == ThreadState::Waiting) {
- it->SetState(ThreadState::Runnable);
- }
- }
- }
- ResultCode KThread::GetCoreMask(s32* out_ideal_core, u64* out_affinity_mask) {
- KScopedSchedulerLock sl{kernel};
- // Get the virtual mask.
- *out_ideal_core = virtual_ideal_core_id;
- *out_affinity_mask = virtual_affinity_mask;
- return ResultSuccess;
- }
- ResultCode KThread::GetPhysicalCoreMask(s32* out_ideal_core, u64* out_affinity_mask) {
- KScopedSchedulerLock sl{kernel};
- ASSERT(num_core_migration_disables >= 0);
- // Select between core mask and original core mask.
- if (num_core_migration_disables == 0) {
- *out_ideal_core = physical_ideal_core_id;
- *out_affinity_mask = physical_affinity_mask.GetAffinityMask();
- } else {
- *out_ideal_core = original_physical_ideal_core_id;
- *out_affinity_mask = original_physical_affinity_mask.GetAffinityMask();
- }
- return ResultSuccess;
- }
- ResultCode KThread::SetCoreMask(s32 core_id_, u64 v_affinity_mask) {
- ASSERT(parent != nullptr);
- ASSERT(v_affinity_mask != 0);
- KScopedLightLock lk(activity_pause_lock);
- // Set the core mask.
- u64 p_affinity_mask = 0;
- {
- KScopedSchedulerLock sl(kernel);
- ASSERT(num_core_migration_disables >= 0);
- // If we're updating, set our ideal virtual core.
- if (core_id_ != Svc::IdealCoreNoUpdate) {
- virtual_ideal_core_id = core_id_;
- } else {
- // Preserve our ideal core id.
- core_id_ = virtual_ideal_core_id;
- R_UNLESS(((1ULL << core_id_) & v_affinity_mask) != 0, ResultInvalidCombination);
- }
- // Set our affinity mask.
- virtual_affinity_mask = v_affinity_mask;
- // Translate the virtual core to a physical core.
- if (core_id_ >= 0) {
- core_id_ = Core::Hardware::VirtualToPhysicalCoreMap[core_id_];
- }
- // Translate the virtual affinity mask to a physical one.
- while (v_affinity_mask != 0) {
- const u64 next = std::countr_zero(v_affinity_mask);
- v_affinity_mask &= ~(1ULL << next);
- p_affinity_mask |= (1ULL << Core::Hardware::VirtualToPhysicalCoreMap[next]);
- }
- // If we haven't disabled migration, perform an affinity change.
- if (num_core_migration_disables == 0) {
- const KAffinityMask old_mask = physical_affinity_mask;
- // Set our new ideals.
- physical_ideal_core_id = core_id_;
- physical_affinity_mask.SetAffinityMask(p_affinity_mask);
- if (physical_affinity_mask.GetAffinityMask() != old_mask.GetAffinityMask()) {
- const s32 active_core = GetActiveCore();
- if (active_core >= 0 && !physical_affinity_mask.GetAffinity(active_core)) {
- const s32 new_core = static_cast<s32>(
- physical_ideal_core_id >= 0
- ? physical_ideal_core_id
- : Common::BitSize<u64>() - 1 -
- std::countl_zero(physical_affinity_mask.GetAffinityMask()));
- SetActiveCore(new_core);
- }
- KScheduler::OnThreadAffinityMaskChanged(kernel, this, old_mask, active_core);
- }
- } else {
- // Otherwise, we edit the original affinity for restoration later.
- original_physical_ideal_core_id = core_id_;
- original_physical_affinity_mask.SetAffinityMask(p_affinity_mask);
- }
- }
- // Update the pinned waiter list.
- ThreadQueueImplForKThreadSetProperty wait_queue_(kernel, std::addressof(pinned_waiter_list));
- {
- bool retry_update{};
- do {
- // Lock the scheduler.
- KScopedSchedulerLock sl(kernel);
- // Don't do any further management if our termination has been requested.
- R_SUCCEED_IF(IsTerminationRequested());
- // By default, we won't need to retry.
- retry_update = false;
- // Check if the thread is currently running.
- bool thread_is_current{};
- s32 thread_core;
- for (thread_core = 0; thread_core < static_cast<s32>(Core::Hardware::NUM_CPU_CORES);
- ++thread_core) {
- if (kernel.Scheduler(thread_core).GetCurrentThread() == this) {
- thread_is_current = true;
- break;
- }
- }
- // If the thread is currently running, check whether it's no longer allowed under the
- // new mask.
- if (thread_is_current && ((1ULL << thread_core) & p_affinity_mask) == 0) {
- // If the thread is pinned, we want to wait until it's not pinned.
- if (GetStackParameters().is_pinned) {
- // Verify that the current thread isn't terminating.
- R_UNLESS(!GetCurrentThread(kernel).IsTerminationRequested(),
- ResultTerminationRequested);
- // Wait until the thread isn't pinned any more.
- pinned_waiter_list.push_back(GetCurrentThread(kernel));
- GetCurrentThread(kernel).BeginWait(std::addressof(wait_queue_));
- } else {
- // If the thread isn't pinned, release the scheduler lock and retry until it's
- // not current.
- retry_update = true;
- }
- }
- } while (retry_update);
- }
- return ResultSuccess;
- }
- void KThread::SetBasePriority(s32 value) {
- ASSERT(Svc::HighestThreadPriority <= value && value <= Svc::LowestThreadPriority);
- KScopedSchedulerLock sl{kernel};
- // Change our base priority.
- base_priority = value;
- // Perform a priority restoration.
- RestorePriority(kernel, this);
- }
- void KThread::RequestSuspend(SuspendType type) {
- KScopedSchedulerLock sl{kernel};
- // Note the request in our flags.
- suspend_request_flags |=
- (1u << (static_cast<u32>(ThreadState::SuspendShift) + static_cast<u32>(type)));
- // Try to perform the suspend.
- TrySuspend();
- }
- void KThread::Resume(SuspendType type) {
- KScopedSchedulerLock sl{kernel};
- // Clear the request in our flags.
- suspend_request_flags &=
- ~(1u << (static_cast<u32>(ThreadState::SuspendShift) + static_cast<u32>(type)));
- // Update our state.
- const ThreadState old_state = thread_state;
- thread_state = static_cast<ThreadState>(GetSuspendFlags() |
- static_cast<u32>(old_state & ThreadState::Mask));
- if (thread_state != old_state) {
- KScheduler::OnThreadStateChanged(kernel, this, old_state);
- }
- }
- void KThread::WaitCancel() {
- KScopedSchedulerLock sl{kernel};
- // Check if we're waiting and cancellable.
- if (this->GetState() == ThreadState::Waiting && cancellable) {
- wait_cancelled = false;
- wait_queue->CancelWait(this, ResultCancelled, true);
- } else {
- // Otherwise, note that we cancelled a wait.
- wait_cancelled = true;
- }
- }
- void KThread::TrySuspend() {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- ASSERT(IsSuspendRequested());
- // Ensure that we have no waiters.
- if (GetNumKernelWaiters() > 0) {
- return;
- }
- ASSERT(GetNumKernelWaiters() == 0);
- // Perform the suspend.
- Suspend();
- }
- void KThread::Suspend() {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- ASSERT(IsSuspendRequested());
- // Set our suspend flags in state.
- const auto old_state = thread_state;
- thread_state = static_cast<ThreadState>(GetSuspendFlags()) | (old_state & ThreadState::Mask);
- // Note the state change in scheduler.
- KScheduler::OnThreadStateChanged(kernel, this, old_state);
- }
- void KThread::Continue() {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- // Clear our suspend flags in state.
- const auto old_state = thread_state;
- thread_state = old_state & ThreadState::Mask;
- // Note the state change in scheduler.
- KScheduler::OnThreadStateChanged(kernel, this, old_state);
- }
- ResultCode KThread::SetActivity(Svc::ThreadActivity activity) {
- // Lock ourselves.
- KScopedLightLock lk(activity_pause_lock);
- // Set the activity.
- {
- // Lock the scheduler.
- KScopedSchedulerLock sl(kernel);
- // Verify our state.
- const auto cur_state = this->GetState();
- R_UNLESS((cur_state == ThreadState::Waiting || cur_state == ThreadState::Runnable),
- ResultInvalidState);
- // Either pause or resume.
- if (activity == Svc::ThreadActivity::Paused) {
- // Verify that we're not suspended.
- R_UNLESS(!this->IsSuspendRequested(SuspendType::Thread), ResultInvalidState);
- // Suspend.
- this->RequestSuspend(SuspendType::Thread);
- } else {
- ASSERT(activity == Svc::ThreadActivity::Runnable);
- // Verify that we're suspended.
- R_UNLESS(this->IsSuspendRequested(SuspendType::Thread), ResultInvalidState);
- // Resume.
- this->Resume(SuspendType::Thread);
- }
- }
- // If the thread is now paused, update the pinned waiter list.
- if (activity == Svc::ThreadActivity::Paused) {
- ThreadQueueImplForKThreadSetProperty wait_queue_(kernel,
- std::addressof(pinned_waiter_list));
- bool thread_is_current;
- do {
- // Lock the scheduler.
- KScopedSchedulerLock sl(kernel);
- // Don't do any further management if our termination has been requested.
- R_SUCCEED_IF(this->IsTerminationRequested());
- // By default, treat the thread as not current.
- thread_is_current = false;
- // Check whether the thread is pinned.
- if (this->GetStackParameters().is_pinned) {
- // Verify that the current thread isn't terminating.
- R_UNLESS(!GetCurrentThread(kernel).IsTerminationRequested(),
- ResultTerminationRequested);
- // Wait until the thread isn't pinned any more.
- pinned_waiter_list.push_back(GetCurrentThread(kernel));
- GetCurrentThread(kernel).BeginWait(std::addressof(wait_queue_));
- } else {
- // Check if the thread is currently running.
- // If it is, we'll need to retry.
- for (auto i = 0; i < static_cast<s32>(Core::Hardware::NUM_CPU_CORES); ++i) {
- if (kernel.Scheduler(i).GetCurrentThread() == this) {
- thread_is_current = true;
- break;
- }
- }
- }
- } while (thread_is_current);
- }
- return ResultSuccess;
- }
- ResultCode KThread::GetThreadContext3(std::vector<u8>& out) {
- // Lock ourselves.
- KScopedLightLock lk{activity_pause_lock};
- // Get the context.
- {
- // Lock the scheduler.
- KScopedSchedulerLock sl{kernel};
- // Verify that we're suspended.
- R_UNLESS(IsSuspendRequested(SuspendType::Thread), ResultInvalidState);
- // If we're not terminating, get the thread's user context.
- if (!IsTerminationRequested()) {
- if (parent->Is64BitProcess()) {
- // Mask away mode bits, interrupt bits, IL bit, and other reserved bits.
- auto context = GetContext64();
- context.pstate &= 0xFF0FFE20;
- out.resize(sizeof(context));
- std::memcpy(out.data(), &context, sizeof(context));
- } else {
- // Mask away mode bits, interrupt bits, IL bit, and other reserved bits.
- auto context = GetContext32();
- context.cpsr &= 0xFF0FFE20;
- out.resize(sizeof(context));
- std::memcpy(out.data(), &context, sizeof(context));
- }
- }
- }
- return ResultSuccess;
- }
- void KThread::AddWaiterImpl(KThread* thread) {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- // Find the right spot to insert the waiter.
- auto it = waiter_list.begin();
- while (it != waiter_list.end()) {
- if (it->GetPriority() > thread->GetPriority()) {
- break;
- }
- it++;
- }
- // Keep track of how many kernel waiters we have.
- if (IsKernelAddressKey(thread->GetAddressKey())) {
- ASSERT((num_kernel_waiters++) >= 0);
- }
- // Insert the waiter.
- waiter_list.insert(it, *thread);
- thread->SetLockOwner(this);
- }
- void KThread::RemoveWaiterImpl(KThread* thread) {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- // Keep track of how many kernel waiters we have.
- if (IsKernelAddressKey(thread->GetAddressKey())) {
- ASSERT((num_kernel_waiters--) > 0);
- }
- // Remove the waiter.
- waiter_list.erase(waiter_list.iterator_to(*thread));
- thread->SetLockOwner(nullptr);
- }
- void KThread::RestorePriority(KernelCore& kernel_ctx, KThread* thread) {
- ASSERT(kernel_ctx.GlobalSchedulerContext().IsLocked());
- while (true) {
- // We want to inherit priority where possible.
- s32 new_priority = thread->GetBasePriority();
- if (thread->HasWaiters()) {
- new_priority = std::min(new_priority, thread->waiter_list.front().GetPriority());
- }
- // If the priority we would inherit is not different from ours, don't do anything.
- if (new_priority == thread->GetPriority()) {
- return;
- }
- // Ensure we don't violate condition variable red black tree invariants.
- if (auto* cv_tree = thread->GetConditionVariableTree(); cv_tree != nullptr) {
- BeforeUpdatePriority(kernel_ctx, cv_tree, thread);
- }
- // Change the priority.
- const s32 old_priority = thread->GetPriority();
- thread->SetPriority(new_priority);
- // Restore the condition variable, if relevant.
- if (auto* cv_tree = thread->GetConditionVariableTree(); cv_tree != nullptr) {
- AfterUpdatePriority(kernel_ctx, cv_tree, thread);
- }
- // Update the scheduler.
- KScheduler::OnThreadPriorityChanged(kernel_ctx, thread, old_priority);
- // Keep the lock owner up to date.
- KThread* lock_owner = thread->GetLockOwner();
- if (lock_owner == nullptr) {
- return;
- }
- // Update the thread in the lock owner's sorted list, and continue inheriting.
- lock_owner->RemoveWaiterImpl(thread);
- lock_owner->AddWaiterImpl(thread);
- thread = lock_owner;
- }
- }
- void KThread::AddWaiter(KThread* thread) {
- AddWaiterImpl(thread);
- RestorePriority(kernel, this);
- }
- void KThread::RemoveWaiter(KThread* thread) {
- RemoveWaiterImpl(thread);
- RestorePriority(kernel, this);
- }
- KThread* KThread::RemoveWaiterByKey(s32* out_num_waiters, VAddr key) {
- ASSERT(kernel.GlobalSchedulerContext().IsLocked());
- s32 num_waiters{};
- KThread* next_lock_owner{};
- auto it = waiter_list.begin();
- while (it != waiter_list.end()) {
- if (it->GetAddressKey() == key) {
- KThread* thread = std::addressof(*it);
- // Keep track of how many kernel waiters we have.
- if (IsKernelAddressKey(thread->GetAddressKey())) {
- ASSERT((num_kernel_waiters--) > 0);
- }
- it = waiter_list.erase(it);
- // Update the next lock owner.
- if (next_lock_owner == nullptr) {
- next_lock_owner = thread;
- next_lock_owner->SetLockOwner(nullptr);
- } else {
- next_lock_owner->AddWaiterImpl(thread);
- }
- num_waiters++;
- } else {
- it++;
- }
- }
- // Do priority updates, if we have a next owner.
- if (next_lock_owner) {
- RestorePriority(kernel, this);
- RestorePriority(kernel, next_lock_owner);
- }
- // Return output.
- *out_num_waiters = num_waiters;
- return next_lock_owner;
- }
- ResultCode KThread::Run() {
- while (true) {
- KScopedSchedulerLock lk{kernel};
- // If either this thread or the current thread are requesting termination, note it.
- R_UNLESS(!IsTerminationRequested(), ResultTerminationRequested);
- R_UNLESS(!GetCurrentThread(kernel).IsTerminationRequested(), ResultTerminationRequested);
- // Ensure our thread state is correct.
- R_UNLESS(GetState() == ThreadState::Initialized, ResultInvalidState);
- // If the current thread has been asked to suspend, suspend it and retry.
- if (GetCurrentThread(kernel).IsSuspended()) {
- GetCurrentThread(kernel).Suspend();
- continue;
- }
- // If we're not a kernel thread and we've been asked to suspend, suspend ourselves.
- if (IsUserThread() && IsSuspended()) {
- Suspend();
- }
- // Set our state and finish.
- SetState(ThreadState::Runnable);
- DisableDispatch();
- return ResultSuccess;
- }
- }
- void KThread::Exit() {
- ASSERT(this == GetCurrentThreadPointer(kernel));
- // Release the thread resource hint from parent.
- if (parent != nullptr) {
- parent->GetResourceLimit()->Release(Kernel::LimitableResource::Threads, 0, 1);
- resource_limit_release_hint = true;
- }
- // Perform termination.
- {
- KScopedSchedulerLock sl{kernel};
- // Disallow all suspension.
- suspend_allowed_flags = 0;
- // Start termination.
- StartTermination();
- }
- }
- ResultCode KThread::Sleep(s64 timeout) {
- ASSERT(!kernel.GlobalSchedulerContext().IsLocked());
- ASSERT(this == GetCurrentThreadPointer(kernel));
- ASSERT(timeout > 0);
- ThreadQueueImplForKThreadSleep wait_queue_(kernel);
- {
- // Setup the scheduling lock and sleep.
- KScopedSchedulerLockAndSleep slp(kernel, this, timeout);
- // Check if the thread should terminate.
- if (this->IsTerminationRequested()) {
- slp.CancelSleep();
- return ResultTerminationRequested;
- }
- // Wait for the sleep to end.
- this->BeginWait(std::addressof(wait_queue_));
- SetWaitReasonForDebugging(ThreadWaitReasonForDebugging::Sleep);
- }
- return ResultSuccess;
- }
- void KThread::BeginWait(KThreadQueue* queue) {
- // Set our state as waiting.
- SetState(ThreadState::Waiting);
- // Set our wait queue.
- wait_queue = queue;
- }
- void KThread::NotifyAvailable(KSynchronizationObject* signaled_object, ResultCode wait_result_) {
- // Lock the scheduler.
- KScopedSchedulerLock sl(kernel);
- // If we're waiting, notify our queue that we're available.
- if (GetState() == ThreadState::Waiting) {
- wait_queue->NotifyAvailable(this, signaled_object, wait_result_);
- }
- }
- void KThread::EndWait(ResultCode wait_result_) {
- // Lock the scheduler.
- KScopedSchedulerLock sl(kernel);
- // If we're waiting, notify our queue that we're available.
- if (GetState() == ThreadState::Waiting) {
- wait_queue->EndWait(this, wait_result_);
- }
- }
- void KThread::CancelWait(ResultCode wait_result_, bool cancel_timer_task) {
- // Lock the scheduler.
- KScopedSchedulerLock sl(kernel);
- // If we're waiting, notify our queue that we're available.
- if (GetState() == ThreadState::Waiting) {
- wait_queue->CancelWait(this, wait_result_, cancel_timer_task);
- }
- }
- void KThread::SetState(ThreadState state) {
- KScopedSchedulerLock sl{kernel};
- // Clear debugging state
- SetMutexWaitAddressForDebugging({});
- SetWaitReasonForDebugging({});
- const ThreadState old_state = thread_state;
- thread_state =
- static_cast<ThreadState>((old_state & ~ThreadState::Mask) | (state & ThreadState::Mask));
- if (thread_state != old_state) {
- KScheduler::OnThreadStateChanged(kernel, this, old_state);
- }
- }
- std::shared_ptr<Common::Fiber>& KThread::GetHostContext() {
- return host_context;
- }
- KThread* GetCurrentThreadPointer(KernelCore& kernel) {
- return kernel.GetCurrentEmuThread();
- }
- KThread& GetCurrentThread(KernelCore& kernel) {
- return *GetCurrentThreadPointer(kernel);
- }
- s32 GetCurrentCoreId(KernelCore& kernel) {
- return GetCurrentThread(kernel).GetCurrentCore();
- }
- KScopedDisableDispatch::~KScopedDisableDispatch() {
- // If we are shutting down the kernel, none of this is relevant anymore.
- if (kernel.IsShuttingDown()) {
- return;
- }
- // Skip the reschedule if single-core, as dispatch tracking is disabled here.
- if (!Settings::values.use_multi_core.GetValue()) {
- return;
- }
- if (GetCurrentThread(kernel).GetDisableDispatchCount() <= 1) {
- auto scheduler = kernel.CurrentScheduler();
- if (scheduler) {
- scheduler->RescheduleCurrentCore();
- }
- } else {
- GetCurrentThread(kernel).EnableDispatch();
- }
- }
- } // namespace Kernel
|