2020-12-09 23:20:05 +01:00
|
|
|
using Ryujinx.Common;
|
2018-12-18 06:33:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
2018-09-19 01:36:43 +02:00
|
|
|
using System;
|
2020-12-09 23:20:05 +01:00
|
|
|
using System.Numerics;
|
|
|
|
using System.Threading;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-18 06:33:36 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Threading
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
|
|
|
partial class KScheduler : IDisposable
|
|
|
|
{
|
|
|
|
public const int PrioritiesCount = 64;
|
|
|
|
public const int CpuCoresCount = 4;
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
private const int RoundRobinTimeQuantumMs = 10;
|
|
|
|
|
|
|
|
private static readonly int[] PreemptionPriorities = new int[] { 59, 59, 59, 63 };
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
private static readonly int[] _srcCoresHighestPrioThreads = new int[CpuCoresCount];
|
|
|
|
|
2020-05-04 05:41:29 +02:00
|
|
|
private readonly KernelContext _context;
|
2020-12-09 23:20:05 +01:00
|
|
|
private readonly int _coreId;
|
|
|
|
|
|
|
|
private struct SchedulingState
|
|
|
|
{
|
2021-05-11 18:18:50 +02:00
|
|
|
public volatile bool NeedsScheduling;
|
|
|
|
public volatile KThread SelectedThread;
|
2020-12-09 23:20:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private SchedulingState _state;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
private AutoResetEvent _idleInterruptEvent;
|
|
|
|
private readonly object _idleInterruptEventLock;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
private KThread _previousThread;
|
|
|
|
private KThread _currentThread;
|
|
|
|
private readonly KThread _idleThread;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
public KThread PreviousThread => _previousThread;
|
2021-12-30 10:55:06 +01:00
|
|
|
public KThread CurrentThread => _currentThread;
|
2020-12-09 23:20:05 +01:00
|
|
|
public long LastContextSwitchTime { get; private set; }
|
|
|
|
public long TotalIdleTimeTicks => _idleThread.TotalTimeRunning;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
public KScheduler(KernelContext context, int coreId)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-05-04 05:41:29 +02:00
|
|
|
_context = context;
|
2020-12-09 23:20:05 +01:00
|
|
|
_coreId = coreId;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
_idleInterruptEvent = new AutoResetEvent(false);
|
|
|
|
_idleInterruptEventLock = new object();
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
KThread idleThread = CreateIdleThread(context, coreId);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
_currentThread = idleThread;
|
|
|
|
_idleThread = idleThread;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
idleThread.StartHostThread();
|
|
|
|
idleThread.SchedulerWaitEvent.Set();
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
private KThread CreateIdleThread(KernelContext context, int cpuCore)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
KThread idleThread = new KThread(context);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
idleThread.Initialize(0UL, 0UL, 0UL, PrioritiesCount, cpuCore, null, ThreadType.Dummy, IdleThreadLoop);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
return idleThread;
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
public static ulong SelectThreads(KernelContext context)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
if (context.ThreadReselectionRequested)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
return SelectThreadsImpl(context);
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
2020-12-09 23:20:05 +01:00
|
|
|
else
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
return 0UL;
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
private static ulong SelectThreadsImpl(KernelContext context)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
context.ThreadReselectionRequested = false;
|
|
|
|
|
|
|
|
ulong scheduledCoresMask = 0UL;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
for (int core = 0; core < CpuCoresCount; core++)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2023-03-17 13:14:50 +01:00
|
|
|
KThread thread = context.PriorityQueue.ScheduledThreadsFirstOrDefault(core);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2021-12-30 10:55:06 +01:00
|
|
|
if (thread != null &&
|
|
|
|
thread.Owner != null &&
|
|
|
|
thread.Owner.PinnedThreads[core] != null &&
|
|
|
|
thread.Owner.PinnedThreads[core] != thread)
|
|
|
|
{
|
|
|
|
KThread candidate = thread.Owner.PinnedThreads[core];
|
|
|
|
|
|
|
|
if (candidate.KernelWaitersCount == 0 && !thread.Owner.IsExceptionUserThread(candidate))
|
|
|
|
{
|
|
|
|
if (candidate.SchedFlags == ThreadSchedState.Running)
|
|
|
|
{
|
|
|
|
thread = candidate;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
thread = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
scheduledCoresMask |= context.Schedulers[core].SelectThread(thread);
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
for (int core = 0; core < CpuCoresCount; core++)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2019-07-02 04:39:22 +02:00
|
|
|
// If the core is not idle (there's already a thread running on it),
|
|
|
|
// then we don't need to attempt load balancing.
|
2023-03-17 13:14:50 +01:00
|
|
|
if (context.PriorityQueue.HasScheduledThreads(core))
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
Array.Fill(_srcCoresHighestPrioThreads, 0);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
int srcCoresHighestPrioThreadsCount = 0;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
KThread dst = null;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2019-07-02 04:39:22 +02:00
|
|
|
// Select candidate threads that could run on this core.
|
|
|
|
// Give preference to threads that are not yet selected.
|
2020-12-09 23:20:05 +01:00
|
|
|
foreach (KThread suggested in context.PriorityQueue.SuggestedThreads(core))
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
if (suggested.ActiveCore < 0 || suggested != context.Schedulers[suggested.ActiveCore]._state.SelectedThread)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
dst = suggested;
|
2018-09-19 01:36:43 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
_srcCoresHighestPrioThreads[srcCoresHighestPrioThreadsCount++] = suggested.ActiveCore;
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 04:39:22 +02:00
|
|
|
// Not yet selected candidate found.
|
2018-12-06 12:16:24 +01:00
|
|
|
if (dst != null)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2019-07-02 04:39:22 +02:00
|
|
|
// Priorities < 2 are used for the kernel message dispatching
|
|
|
|
// threads, we should skip load balancing entirely.
|
2018-12-06 12:16:24 +01:00
|
|
|
if (dst.DynamicPriority >= 2)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
context.PriorityQueue.TransferToCore(dst.DynamicPriority, core, dst);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
scheduledCoresMask |= context.Schedulers[core].SelectThread(dst);
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-07-02 04:39:22 +02:00
|
|
|
// All candidates are already selected, choose the best one
|
|
|
|
// (the first one that doesn't make the source core idle if moved).
|
2018-12-06 12:16:24 +01:00
|
|
|
for (int index = 0; index < srcCoresHighestPrioThreadsCount; index++)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2023-03-17 13:14:50 +01:00
|
|
|
int srcCore = _srcCoresHighestPrioThreads[index];
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
KThread src = context.PriorityQueue.ScheduledThreadsElementAtOrDefault(srcCore, 1);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (src != null)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2019-07-02 04:39:22 +02:00
|
|
|
// Run the second thread on the queue on the source core,
|
|
|
|
// move the first one to the current core.
|
2020-12-09 23:20:05 +01:00
|
|
|
KThread origSelectedCoreSrc = context.Schedulers[srcCore]._state.SelectedThread;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
scheduledCoresMask |= context.Schedulers[srcCore].SelectThread(src);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
context.PriorityQueue.TransferToCore(origSelectedCoreSrc.DynamicPriority, core, origSelectedCoreSrc);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
scheduledCoresMask |= context.Schedulers[core].SelectThread(origSelectedCoreSrc);
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-09 23:20:05 +01:00
|
|
|
|
|
|
|
return scheduledCoresMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
private ulong SelectThread(KThread nextThread)
|
|
|
|
{
|
|
|
|
KThread previousThread = _state.SelectedThread;
|
|
|
|
|
|
|
|
if (previousThread != nextThread)
|
|
|
|
{
|
|
|
|
if (previousThread != null)
|
|
|
|
{
|
|
|
|
previousThread.LastScheduledTime = PerformanceCounter.ElapsedTicks;
|
|
|
|
}
|
|
|
|
|
|
|
|
_state.SelectedThread = nextThread;
|
|
|
|
_state.NeedsScheduling = true;
|
|
|
|
return 1UL << _coreId;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0UL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void EnableScheduling(KernelContext context, ulong scheduledCoresMask)
|
|
|
|
{
|
|
|
|
KScheduler currentScheduler = context.Schedulers[KernelStatic.GetCurrentThread().CurrentCore];
|
|
|
|
|
|
|
|
// Note that "RescheduleCurrentCore" will block, so "RescheduleOtherCores" must be done first.
|
|
|
|
currentScheduler.RescheduleOtherCores(scheduledCoresMask);
|
|
|
|
currentScheduler.RescheduleCurrentCore();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void EnableSchedulingFromForeignThread(KernelContext context, ulong scheduledCoresMask)
|
|
|
|
{
|
|
|
|
RescheduleOtherCores(context, scheduledCoresMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void RescheduleCurrentCore()
|
|
|
|
{
|
|
|
|
if (_state.NeedsScheduling)
|
|
|
|
{
|
|
|
|
Schedule();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void RescheduleOtherCores(ulong scheduledCoresMask)
|
|
|
|
{
|
|
|
|
RescheduleOtherCores(_context, scheduledCoresMask & ~(1UL << _coreId));
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void RescheduleOtherCores(KernelContext context, ulong scheduledCoresMask)
|
|
|
|
{
|
|
|
|
while (scheduledCoresMask != 0)
|
|
|
|
{
|
|
|
|
int coreToSignal = BitOperations.TrailingZeroCount(scheduledCoresMask);
|
|
|
|
|
|
|
|
KThread threadToSignal = context.Schedulers[coreToSignal]._currentThread;
|
|
|
|
|
|
|
|
// Request the thread running on that core to stop and reschedule, if we have one.
|
|
|
|
if (threadToSignal != context.Schedulers[coreToSignal]._idleThread)
|
|
|
|
{
|
|
|
|
threadToSignal.Context.RequestInterrupt();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the core is idle, ensure that the idle thread is awaken.
|
|
|
|
context.Schedulers[coreToSignal]._idleInterruptEvent.Set();
|
|
|
|
|
|
|
|
scheduledCoresMask &= ~(1UL << coreToSignal);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void IdleThreadLoop()
|
|
|
|
{
|
|
|
|
while (_context.Running)
|
|
|
|
{
|
|
|
|
_state.NeedsScheduling = false;
|
|
|
|
Thread.MemoryBarrier();
|
|
|
|
KThread nextThread = PickNextThread(_state.SelectedThread);
|
|
|
|
|
|
|
|
if (_idleThread != nextThread)
|
|
|
|
{
|
|
|
|
_idleThread.SchedulerWaitEvent.Reset();
|
|
|
|
WaitHandle.SignalAndWait(nextThread.SchedulerWaitEvent, _idleThread.SchedulerWaitEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
_idleInterruptEvent.WaitOne();
|
|
|
|
}
|
|
|
|
|
|
|
|
lock (_idleInterruptEventLock)
|
|
|
|
{
|
|
|
|
_idleInterruptEvent.Dispose();
|
|
|
|
_idleInterruptEvent = null;
|
|
|
|
}
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
public void Schedule()
|
2020-07-30 15:16:41 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
_state.NeedsScheduling = false;
|
|
|
|
Thread.MemoryBarrier();
|
|
|
|
KThread currentThread = KernelStatic.GetCurrentThread();
|
|
|
|
KThread selectedThread = _state.SelectedThread;
|
|
|
|
|
|
|
|
// If the thread is already scheduled and running on the core, we have nothing to do.
|
|
|
|
if (currentThread == selectedThread)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
currentThread.SchedulerWaitEvent.Reset();
|
|
|
|
currentThread.ThreadContext.Unlock();
|
|
|
|
|
|
|
|
// Wake all the threads that might be waiting until this thread context is unlocked.
|
|
|
|
for (int core = 0; core < CpuCoresCount; core++)
|
|
|
|
{
|
|
|
|
_context.Schedulers[core]._idleInterruptEvent.Set();
|
|
|
|
}
|
|
|
|
|
|
|
|
KThread nextThread = PickNextThread(selectedThread);
|
|
|
|
|
|
|
|
if (currentThread.Context.Running)
|
|
|
|
{
|
|
|
|
// Wait until this thread is scheduled again, and allow the next thread to run.
|
|
|
|
WaitHandle.SignalAndWait(nextThread.SchedulerWaitEvent, currentThread.SchedulerWaitEvent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Allow the next thread to run.
|
|
|
|
nextThread.SchedulerWaitEvent.Set();
|
|
|
|
|
|
|
|
// We don't need to wait since the thread is exiting, however we need to
|
|
|
|
// make sure this thread will never call the scheduler again, since it is
|
|
|
|
// no longer assigned to a core.
|
|
|
|
currentThread.MakeUnschedulable();
|
|
|
|
|
|
|
|
// Just to be sure, set the core to a invalid value.
|
|
|
|
// This will trigger a exception if it attempts to call schedule again,
|
|
|
|
// rather than leaving the scheduler in a invalid state.
|
|
|
|
currentThread.CurrentCore = -1;
|
|
|
|
}
|
2020-07-30 15:16:41 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
private KThread PickNextThread(KThread selectedThread)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
while (true)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
if (selectedThread != null)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
// Try to run the selected thread.
|
|
|
|
// We need to acquire the context lock to be sure the thread is not
|
|
|
|
// already running on another core. If it is, then we return here
|
|
|
|
// and the caller should try again once there is something available for scheduling.
|
|
|
|
// The thread currently running on the core should have been requested to
|
|
|
|
// interrupt so this is not expected to take long.
|
|
|
|
// The idle thread must also be paused if we are scheduling a thread
|
|
|
|
// on the core, as the scheduled thread will handle the next switch.
|
|
|
|
if (selectedThread.ThreadContext.Lock())
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
SwitchTo(selectedThread);
|
|
|
|
|
|
|
|
if (!_state.NeedsScheduling)
|
|
|
|
{
|
|
|
|
return selectedThread;
|
|
|
|
}
|
|
|
|
|
|
|
|
selectedThread.ThreadContext.Unlock();
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
2020-12-09 23:20:05 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return _idleThread;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The core is idle now, make sure that the idle thread can run
|
|
|
|
// and switch the core when a thread is available.
|
|
|
|
SwitchTo(null);
|
|
|
|
return _idleThread;
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
2020-12-09 23:20:05 +01:00
|
|
|
|
|
|
|
_state.NeedsScheduling = false;
|
|
|
|
Thread.MemoryBarrier();
|
|
|
|
selectedThread = _state.SelectedThread;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SwitchTo(KThread nextThread)
|
|
|
|
{
|
|
|
|
KProcess currentProcess = KernelStatic.GetCurrentProcess();
|
|
|
|
KThread currentThread = KernelStatic.GetCurrentThread();
|
|
|
|
|
|
|
|
nextThread ??= _idleThread;
|
|
|
|
|
2021-05-11 18:18:50 +02:00
|
|
|
if (currentThread != nextThread)
|
2020-12-09 23:20:05 +01:00
|
|
|
{
|
2021-05-11 18:18:50 +02:00
|
|
|
long previousTicks = LastContextSwitchTime;
|
|
|
|
long currentTicks = PerformanceCounter.ElapsedTicks;
|
|
|
|
long ticksDelta = currentTicks - previousTicks;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2021-05-11 18:18:50 +02:00
|
|
|
currentThread.AddCpuTime(ticksDelta);
|
2020-12-09 23:20:05 +01:00
|
|
|
|
2021-05-11 18:18:50 +02:00
|
|
|
if (currentProcess != null)
|
|
|
|
{
|
|
|
|
currentProcess.AddCpuTime(ticksDelta);
|
|
|
|
}
|
2020-12-09 23:20:05 +01:00
|
|
|
|
2021-05-11 18:18:50 +02:00
|
|
|
LastContextSwitchTime = currentTicks;
|
2020-12-09 23:20:05 +01:00
|
|
|
|
2021-05-11 18:18:50 +02:00
|
|
|
if (currentProcess != null)
|
|
|
|
{
|
|
|
|
_previousThread = !currentThread.TerminationRequested && currentThread.ActiveCore == _coreId ? currentThread : null;
|
|
|
|
}
|
|
|
|
else if (currentThread == _idleThread)
|
|
|
|
{
|
|
|
|
_previousThread = null;
|
|
|
|
}
|
2020-12-09 23:20:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nextThread.CurrentCore != _coreId)
|
|
|
|
{
|
|
|
|
nextThread.CurrentCore = _coreId;
|
|
|
|
}
|
|
|
|
|
|
|
|
_currentThread = nextThread;
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
public static void PreemptionThreadLoop(KernelContext context)
|
|
|
|
{
|
|
|
|
while (context.Running)
|
|
|
|
{
|
|
|
|
context.CriticalSection.Enter();
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
for (int core = 0; core < CpuCoresCount; core++)
|
|
|
|
{
|
|
|
|
RotateScheduledQueue(context, core, PreemptionPriorities[core]);
|
|
|
|
}
|
|
|
|
|
|
|
|
context.CriticalSection.Leave();
|
|
|
|
|
|
|
|
Thread.Sleep(RoundRobinTimeQuantumMs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void RotateScheduledQueue(KernelContext context, int core, int prio)
|
2019-01-18 23:26:39 +01:00
|
|
|
{
|
2023-03-17 13:14:50 +01:00
|
|
|
KThread selectedThread = context.PriorityQueue.ScheduledThreadsWithDynamicPriorityFirstOrDefault(core, prio);
|
2020-12-09 23:20:05 +01:00
|
|
|
KThread nextThread = null;
|
|
|
|
|
|
|
|
// Yield priority queue.
|
|
|
|
if (selectedThread != null)
|
|
|
|
{
|
|
|
|
nextThread = context.PriorityQueue.Reschedule(prio, core, selectedThread);
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
static KThread FirstSuitableCandidateOrDefault(KernelContext context, int core, KThread selectedThread, KThread nextThread, Predicate< KThread> predicate)
|
2019-01-18 23:26:39 +01:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
foreach (KThread suggested in context.PriorityQueue.SuggestedThreads(core))
|
|
|
|
{
|
|
|
|
int suggestedCore = suggested.ActiveCore;
|
|
|
|
if (suggestedCore >= 0)
|
|
|
|
{
|
2023-03-17 13:14:50 +01:00
|
|
|
KThread selectedSuggestedCore = context.PriorityQueue.ScheduledThreadsFirstOrDefault(suggestedCore);
|
2020-12-09 23:20:05 +01:00
|
|
|
|
|
|
|
if (selectedSuggestedCore == suggested || (selectedSuggestedCore != null && selectedSuggestedCore.DynamicPriority < 2))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the candidate was scheduled after the current thread, then it's not worth it.
|
|
|
|
if (nextThread == selectedThread ||
|
|
|
|
nextThread == null ||
|
|
|
|
nextThread.LastScheduledTime >= suggested.LastScheduledTime)
|
|
|
|
{
|
2023-03-17 13:14:50 +01:00
|
|
|
if (predicate(suggested))
|
|
|
|
{
|
|
|
|
return suggested;
|
|
|
|
}
|
2020-12-09 23:20:05 +01:00
|
|
|
}
|
|
|
|
}
|
2023-03-17 13:14:50 +01:00
|
|
|
|
|
|
|
return null;
|
2019-01-18 23:26:39 +01:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
// Select candidate threads that could run on this core.
|
|
|
|
// Only take into account threads that are not yet selected.
|
2023-03-17 13:14:50 +01:00
|
|
|
KThread dst = FirstSuitableCandidateOrDefault(context, core, selectedThread, nextThread, x => x.DynamicPriority == prio);
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
if (dst != null)
|
|
|
|
{
|
|
|
|
context.PriorityQueue.TransferToCore(prio, core, dst);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the priority of the currently selected thread is lower or same as the preemption priority,
|
|
|
|
// then try to migrate a thread with lower priority.
|
2023-03-17 13:14:50 +01:00
|
|
|
KThread bestCandidate = context.PriorityQueue.ScheduledThreadsFirstOrDefault(core);
|
2020-12-09 23:20:05 +01:00
|
|
|
|
|
|
|
if (bestCandidate != null && bestCandidate.DynamicPriority >= prio)
|
|
|
|
{
|
2023-03-17 13:14:50 +01:00
|
|
|
dst = FirstSuitableCandidateOrDefault(context, core, selectedThread, nextThread, x => x.DynamicPriority < bestCandidate.DynamicPriority);
|
2020-12-09 23:20:05 +01:00
|
|
|
|
|
|
|
if (dst != null)
|
|
|
|
{
|
|
|
|
context.PriorityQueue.TransferToCore(dst.DynamicPriority, core, dst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ThreadReselectionRequested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void Yield(KernelContext context)
|
|
|
|
{
|
|
|
|
KThread currentThread = KernelStatic.GetCurrentThread();
|
|
|
|
|
2021-05-11 18:18:50 +02:00
|
|
|
if (!currentThread.IsSchedulable)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
context.CriticalSection.Enter();
|
|
|
|
|
|
|
|
if (currentThread.SchedFlags != ThreadSchedState.Running)
|
|
|
|
{
|
|
|
|
context.CriticalSection.Leave();
|
|
|
|
return;
|
|
|
|
}
|
2020-12-02 00:23:43 +01:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
KThread nextThread = context.PriorityQueue.Reschedule(currentThread.DynamicPriority, currentThread.ActiveCore, currentThread);
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
if (nextThread != currentThread)
|
|
|
|
{
|
|
|
|
context.ThreadReselectionRequested = true;
|
|
|
|
}
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
context.CriticalSection.Leave();
|
2019-01-18 23:26:39 +01:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
public static void YieldWithLoadBalancing(KernelContext context)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
KThread currentThread = KernelStatic.GetCurrentThread();
|
|
|
|
|
2021-05-11 18:18:50 +02:00
|
|
|
if (!currentThread.IsSchedulable)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
context.CriticalSection.Enter();
|
|
|
|
|
|
|
|
if (currentThread.SchedFlags != ThreadSchedState.Running)
|
|
|
|
{
|
|
|
|
context.CriticalSection.Leave();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int prio = currentThread.DynamicPriority;
|
|
|
|
int core = currentThread.ActiveCore;
|
|
|
|
|
|
|
|
// Move current thread to the end of the queue.
|
|
|
|
KThread nextThread = context.PriorityQueue.Reschedule(prio, core, currentThread);
|
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
static KThread FirstSuitableCandidateOrDefault(KernelContext context, int core, KThread nextThread, int lessThanOrEqualPriority)
|
2020-12-09 23:20:05 +01:00
|
|
|
{
|
|
|
|
foreach (KThread suggested in context.PriorityQueue.SuggestedThreads(core))
|
|
|
|
{
|
|
|
|
int suggestedCore = suggested.ActiveCore;
|
|
|
|
if (suggestedCore >= 0)
|
|
|
|
{
|
|
|
|
KThread selectedSuggestedCore = context.Schedulers[suggestedCore]._state.SelectedThread;
|
|
|
|
|
|
|
|
if (selectedSuggestedCore == suggested || (selectedSuggestedCore != null && selectedSuggestedCore.DynamicPriority < 2))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the candidate was scheduled after the current thread, then it's not worth it,
|
|
|
|
// unless the priority is higher than the current one.
|
|
|
|
if (suggested.LastScheduledTime <= nextThread.LastScheduledTime ||
|
|
|
|
suggested.DynamicPriority < nextThread.DynamicPriority)
|
|
|
|
{
|
2023-03-17 13:14:50 +01:00
|
|
|
if (suggested.DynamicPriority <= lessThanOrEqualPriority)
|
|
|
|
{
|
|
|
|
return suggested;
|
|
|
|
}
|
2020-12-09 23:20:05 +01:00
|
|
|
}
|
|
|
|
}
|
2023-03-17 13:14:50 +01:00
|
|
|
|
|
|
|
return null;
|
2020-12-09 23:20:05 +01:00
|
|
|
}
|
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
KThread dst = FirstSuitableCandidateOrDefault(context, core, nextThread, prio);
|
2020-12-09 23:20:05 +01:00
|
|
|
|
|
|
|
if (dst != null)
|
|
|
|
{
|
|
|
|
context.PriorityQueue.TransferToCore(dst.DynamicPriority, core, dst);
|
|
|
|
|
|
|
|
context.ThreadReselectionRequested = true;
|
|
|
|
}
|
|
|
|
else if (currentThread != nextThread)
|
|
|
|
{
|
|
|
|
context.ThreadReselectionRequested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
context.CriticalSection.Leave();
|
2018-11-28 23:18:09 +01:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
public static void YieldToAnyThread(KernelContext context)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
KThread currentThread = KernelStatic.GetCurrentThread();
|
|
|
|
|
2021-05-11 18:18:50 +02:00
|
|
|
if (!currentThread.IsSchedulable)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
context.CriticalSection.Enter();
|
|
|
|
|
|
|
|
if (currentThread.SchedFlags != ThreadSchedState.Running)
|
|
|
|
{
|
|
|
|
context.CriticalSection.Leave();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int core = currentThread.ActiveCore;
|
|
|
|
|
|
|
|
context.PriorityQueue.TransferToCore(currentThread.DynamicPriority, -1, currentThread);
|
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
if (!context.PriorityQueue.HasScheduledThreads(core))
|
2020-12-09 23:20:05 +01:00
|
|
|
{
|
|
|
|
KThread selectedThread = null;
|
|
|
|
|
|
|
|
foreach (KThread suggested in context.PriorityQueue.SuggestedThreads(core))
|
|
|
|
{
|
|
|
|
int suggestedCore = suggested.ActiveCore;
|
|
|
|
|
|
|
|
if (suggestedCore < 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-03-17 13:14:50 +01:00
|
|
|
KThread firstCandidate = context.PriorityQueue.ScheduledThreadsFirstOrDefault(suggestedCore);
|
2020-12-09 23:20:05 +01:00
|
|
|
|
|
|
|
if (firstCandidate == suggested)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (firstCandidate == null || firstCandidate.DynamicPriority >= 2)
|
|
|
|
{
|
|
|
|
context.PriorityQueue.TransferToCore(suggested.DynamicPriority, core, suggested);
|
|
|
|
}
|
|
|
|
|
|
|
|
selectedThread = suggested;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (currentThread != selectedThread)
|
|
|
|
{
|
|
|
|
context.ThreadReselectionRequested = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
context.ThreadReselectionRequested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
context.CriticalSection.Leave();
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 23:20:05 +01:00
|
|
|
public void Dispose()
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
// Ensure that the idle thread is not blocked and can exit.
|
|
|
|
lock (_idleInterruptEventLock)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2020-12-09 23:20:05 +01:00
|
|
|
if (_idleInterruptEvent != null)
|
|
|
|
{
|
|
|
|
_idleInterruptEvent.Set();
|
|
|
|
}
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|