2020-12-03 02:08:35 +00:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
2018-02-18 19:58:40 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2020-12-03 02:08:35 +00:00
|
|
|
// This file references various implementation details from Atmosphere, an open-source firmware for
|
|
|
|
// the Nintendo Switch. Copyright 2018-2020 Atmosphere-NX.
|
|
|
|
|
2018-02-18 19:58:40 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-12-08 03:09:20 +00:00
|
|
|
#include <atomic>
|
|
|
|
|
2018-02-18 19:58:40 +00:00
|
|
|
#include "common/common_types.h"
|
2020-02-25 02:04:12 +00:00
|
|
|
#include "common/spin_lock.h"
|
2020-12-04 00:43:18 +00:00
|
|
|
#include "core/hle/kernel/global_scheduler_context.h"
|
2020-12-03 02:08:35 +00:00
|
|
|
#include "core/hle/kernel/k_priority_queue.h"
|
|
|
|
#include "core/hle/kernel/k_scheduler_lock.h"
|
2018-02-18 19:58:40 +00:00
|
|
|
|
2020-03-06 13:52:24 +00:00
|
|
|
namespace Common {
|
2020-03-08 16:51:24 +00:00
|
|
|
class Fiber;
|
2020-03-06 13:52:24 +00:00
|
|
|
}
|
|
|
|
|
2018-08-25 01:43:32 +00:00
|
|
|
namespace Core {
|
2019-03-04 21:02:59 +00:00
|
|
|
class System;
|
2020-12-04 00:43:18 +00:00
|
|
|
}
|
2018-07-31 12:06:09 +00:00
|
|
|
|
2018-02-18 19:58:40 +00:00
|
|
|
namespace Kernel {
|
|
|
|
|
2020-02-14 02:04:10 +00:00
|
|
|
class KernelCore;
|
2018-10-25 22:42:50 +00:00
|
|
|
class Process;
|
2020-02-14 15:44:31 +00:00
|
|
|
class SchedulerLock;
|
2020-12-04 00:43:18 +00:00
|
|
|
class Thread;
|
2019-03-29 21:01:17 +00:00
|
|
|
|
2020-12-03 02:08:35 +00:00
|
|
|
class KScheduler final {
|
2019-03-29 21:01:17 +00:00
|
|
|
public:
|
2020-12-03 02:08:35 +00:00
|
|
|
explicit KScheduler(Core::System& system, std::size_t core_id);
|
|
|
|
~KScheduler();
|
2019-03-29 21:01:17 +00:00
|
|
|
|
|
|
|
/// Reschedules to the next available thread (call after current thread is suspended)
|
2020-12-03 02:08:35 +00:00
|
|
|
void RescheduleCurrentCore();
|
|
|
|
|
|
|
|
/// Reschedules cores pending reschedule, to be called on EnableScheduling.
|
|
|
|
static void RescheduleCores(KernelCore& kernel, u64 cores_pending_reschedule,
|
|
|
|
Core::EmuThreadHandle global_thread);
|
2019-03-29 21:01:17 +00:00
|
|
|
|
2020-03-10 15:50:33 +00:00
|
|
|
/// The next two are for SingleCore Only.
|
|
|
|
/// Unload current thread before preempting core.
|
2020-11-19 00:52:47 +00:00
|
|
|
void Unload(Thread* thread);
|
2020-12-03 02:08:35 +00:00
|
|
|
|
2020-03-10 15:50:33 +00:00
|
|
|
/// Reload current thread after core preemption.
|
2020-11-19 00:52:47 +00:00
|
|
|
void Reload(Thread* thread);
|
2020-03-10 15:50:33 +00:00
|
|
|
|
2019-03-29 21:01:17 +00:00
|
|
|
/// Gets the current running thread
|
|
|
|
Thread* GetCurrentThread() const;
|
|
|
|
|
|
|
|
/// Gets the timestamp for the last context switch in ticks.
|
|
|
|
u64 GetLastContextSwitchTicks() const;
|
|
|
|
|
|
|
|
bool ContextSwitchPending() const {
|
2020-12-03 02:08:35 +00:00
|
|
|
return this->state.needs_scheduling;
|
2019-03-29 21:01:17 +00:00
|
|
|
}
|
2018-02-18 19:58:40 +00:00
|
|
|
|
2020-02-25 02:04:12 +00:00
|
|
|
void Initialize();
|
|
|
|
|
|
|
|
void OnThreadStart();
|
|
|
|
|
2020-05-13 18:17:34 +00:00
|
|
|
std::shared_ptr<Common::Fiber>& ControlContext() {
|
2020-03-10 15:50:33 +00:00
|
|
|
return switch_fiber;
|
|
|
|
}
|
|
|
|
|
2020-06-27 22:20:06 +00:00
|
|
|
const std::shared_ptr<Common::Fiber>& ControlContext() const {
|
|
|
|
return switch_fiber;
|
|
|
|
}
|
|
|
|
|
2020-12-03 02:08:35 +00:00
|
|
|
std::size_t CurrentCoreId() const {
|
|
|
|
return core_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 UpdateHighestPriorityThread(Thread* highest_thread);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a thread and moves it to the back of the it's priority list.
|
|
|
|
*
|
|
|
|
* @note This operation can be redundant and no scheduling is changed if marked as so.
|
|
|
|
*/
|
|
|
|
void YieldWithoutCoreMigration();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a thread and moves it to the back of the it's priority list.
|
|
|
|
* Afterwards, tries to pick a suggested thread from the suggested queue that has worse time or
|
|
|
|
* a better priority than the next thread in the core.
|
|
|
|
*
|
|
|
|
* @note This operation can be redundant and no scheduling is changed if marked as so.
|
|
|
|
*/
|
|
|
|
void YieldWithCoreMigration();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a thread and moves it out of the scheduling queue.
|
|
|
|
* and into the suggested queue. If no thread can be scheduled afterwards in that core,
|
|
|
|
* a suggested thread is obtained instead.
|
|
|
|
*
|
|
|
|
* @note This operation can be redundant and no scheduling is changed if marked as so.
|
|
|
|
*/
|
|
|
|
void YieldToAnyThread();
|
|
|
|
|
|
|
|
/// Notify the scheduler a thread's status has changed.
|
|
|
|
static void OnThreadStateChanged(KernelCore& kernel, Thread* thread, u32 old_state);
|
|
|
|
|
|
|
|
/// Notify the scheduler a thread's priority has changed.
|
|
|
|
static void OnThreadPriorityChanged(KernelCore& kernel, Thread* thread, Thread* current_thread,
|
|
|
|
u32 old_priority);
|
|
|
|
|
|
|
|
/// Notify the scheduler a thread's core and/or affinity mask has changed.
|
|
|
|
static void OnThreadAffinityMaskChanged(KernelCore& kernel, Thread* thread,
|
|
|
|
const KAffinityMask& old_affinity, s32 old_core);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Takes care of selecting the new scheduled threads in three steps:
|
|
|
|
*
|
|
|
|
* 1. First a thread is selected from the top of the priority queue. If no thread
|
|
|
|
* is obtained then we move to step two, else we are done.
|
|
|
|
*
|
|
|
|
* 2. Second we try to get a suggested thread that's not assigned to any core or
|
|
|
|
* that is not the top thread in that core.
|
|
|
|
*
|
|
|
|
* 3. Third is no suggested thread is found, we do a second pass and pick a running
|
|
|
|
* thread in another core and swap it with its current thread.
|
|
|
|
*
|
|
|
|
* returns the cores needing scheduling.
|
|
|
|
*/
|
|
|
|
static u64 UpdateHighestPriorityThreadsImpl(KernelCore& kernel);
|
|
|
|
|
|
|
|
void RotateScheduledQueue(s32 core_id, s32 priority);
|
|
|
|
|
|
|
|
public:
|
|
|
|
static bool CanSchedule(KernelCore& kernel);
|
|
|
|
static bool IsSchedulerUpdateNeeded(const KernelCore& kernel);
|
|
|
|
static void SetSchedulerUpdateNeeded(KernelCore& kernel);
|
|
|
|
static void ClearSchedulerUpdateNeeded(KernelCore& kernel);
|
|
|
|
static void DisableScheduling(KernelCore& kernel);
|
|
|
|
static void EnableScheduling(KernelCore& kernel, u64 cores_needing_scheduling,
|
|
|
|
Core::EmuThreadHandle global_thread);
|
|
|
|
static u64 UpdateHighestPriorityThreads(KernelCore& kernel);
|
|
|
|
|
2019-03-29 21:01:17 +00:00
|
|
|
private:
|
2020-12-03 02:08:35 +00:00
|
|
|
friend class GlobalSchedulerContext;
|
|
|
|
|
|
|
|
static KSchedulerPriorityQueue& GetPriorityQueue(KernelCore& kernel);
|
|
|
|
|
|
|
|
void Schedule() {
|
|
|
|
ASSERT(GetCurrentThread()->GetDisableDispatchCount() == 1);
|
|
|
|
this->ScheduleImpl();
|
|
|
|
}
|
2019-10-28 02:01:45 +00:00
|
|
|
|
|
|
|
/// Switches the CPU's active thread context to that of the specified thread
|
2020-12-03 02:08:35 +00:00
|
|
|
void ScheduleImpl();
|
2018-02-18 19:58:40 +00:00
|
|
|
|
2020-02-25 02:04:12 +00:00
|
|
|
/// When a thread wakes up, it must run this through it's new scheduler
|
|
|
|
void SwitchContextStep2();
|
|
|
|
|
2018-10-25 22:42:50 +00:00
|
|
|
/**
|
|
|
|
* Called on every context switch to update the internal timestamp
|
|
|
|
* This also updates the running time ticks for the given thread and
|
|
|
|
* process using the following difference:
|
|
|
|
*
|
|
|
|
* ticks += most_recent_ticks - last_context_switch_ticks
|
|
|
|
*
|
|
|
|
* The internal tick timestamp for the scheduler is simply the
|
|
|
|
* most recent tick count retrieved. No special arithmetic is
|
|
|
|
* applied to it.
|
|
|
|
*/
|
|
|
|
void UpdateLastContextSwitchTime(Thread* thread, Process* process);
|
|
|
|
|
2020-03-06 13:52:24 +00:00
|
|
|
static void OnSwitch(void* this_scheduler);
|
|
|
|
void SwitchToCurrent();
|
|
|
|
|
2020-12-03 02:08:35 +00:00
|
|
|
private:
|
|
|
|
Thread* current_thread{};
|
|
|
|
Thread* idle_thread{};
|
|
|
|
|
|
|
|
std::shared_ptr<Common::Fiber> switch_fiber{};
|
2018-02-18 19:58:40 +00:00
|
|
|
|
2020-12-03 02:08:35 +00:00
|
|
|
struct SchedulingState {
|
|
|
|
std::atomic<bool> needs_scheduling;
|
|
|
|
bool interrupt_task_thread_runnable{};
|
|
|
|
bool should_count_idle{};
|
|
|
|
u64 idle_count{};
|
|
|
|
Thread* highest_priority_thread{};
|
|
|
|
void* idle_thread_stack{};
|
|
|
|
};
|
|
|
|
|
|
|
|
SchedulingState state;
|
2020-03-06 13:52:24 +00:00
|
|
|
|
2019-03-29 21:01:17 +00:00
|
|
|
Core::System& system;
|
2020-12-03 02:08:35 +00:00
|
|
|
u64 last_context_switch_time{};
|
2019-11-12 08:32:53 +00:00
|
|
|
const std::size_t core_id;
|
2018-05-08 02:12:45 +00:00
|
|
|
|
2020-02-25 02:04:12 +00:00
|
|
|
Common::SpinLock guard{};
|
2018-02-18 19:58:40 +00:00
|
|
|
};
|
|
|
|
|
2020-02-14 15:44:31 +00:00
|
|
|
class SchedulerLock {
|
|
|
|
public:
|
2020-08-03 00:15:20 +00:00
|
|
|
[[nodiscard]] explicit SchedulerLock(KernelCore& kernel);
|
2020-02-14 15:44:31 +00:00
|
|
|
~SchedulerLock();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
KernelCore& kernel;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SchedulerLockAndSleep : public SchedulerLock {
|
|
|
|
public:
|
2020-02-22 14:27:40 +00:00
|
|
|
explicit SchedulerLockAndSleep(KernelCore& kernel, Handle& event_handle, Thread* time_task,
|
|
|
|
s64 nanoseconds);
|
2020-02-14 15:44:31 +00:00
|
|
|
~SchedulerLockAndSleep();
|
|
|
|
|
|
|
|
void CancelSleep() {
|
|
|
|
sleep_cancelled = true;
|
|
|
|
}
|
|
|
|
|
2020-02-25 23:43:28 +00:00
|
|
|
void Release();
|
|
|
|
|
2020-02-14 15:44:31 +00:00
|
|
|
private:
|
|
|
|
Handle& event_handle;
|
|
|
|
Thread* time_task;
|
|
|
|
s64 nanoseconds;
|
|
|
|
bool sleep_cancelled{};
|
|
|
|
};
|
|
|
|
|
2018-02-18 19:58:40 +00:00
|
|
|
} // namespace Kernel
|