2018-02-14 02:43:08 +00:00
|
|
|
using System;
|
2018-02-19 19:37:13 +00:00
|
|
|
using System.Collections.Concurrent;
|
2018-02-14 02:43:08 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading;
|
|
|
|
|
2018-02-20 20:09:23 +00:00
|
|
|
namespace Ryujinx.Core.OsHle.Handles
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class KProcessScheduler : IDisposable
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
private const int LowestPriority = 0x40;
|
|
|
|
|
2018-02-14 02:43:08 +00:00
|
|
|
private class SchedulerThread : IDisposable
|
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
public KThread Thread { get; private set; }
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
public ManualResetEvent SyncWaitEvent { get; private set; }
|
|
|
|
public AutoResetEvent SchedWaitEvent { get; private set; }
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-19 19:18:30 +00:00
|
|
|
public bool Active { get; set; }
|
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
public int SyncTimeout { get; set; }
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public SchedulerThread(KThread Thread)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
|
|
|
this.Thread = Thread;
|
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
SyncWaitEvent = new ManualResetEvent(true);
|
|
|
|
SchedWaitEvent = new AutoResetEvent(false);
|
2018-04-19 19:18:30 +00:00
|
|
|
|
|
|
|
Active = true;
|
2018-04-21 19:07:16 +00:00
|
|
|
|
|
|
|
SyncTimeout = 0;
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
|
|
{
|
|
|
|
if (Disposing)
|
|
|
|
{
|
2018-04-21 19:07:16 +00:00
|
|
|
SyncWaitEvent.Dispose();
|
|
|
|
SchedWaitEvent.Dispose();
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
private class ThreadQueue
|
|
|
|
{
|
|
|
|
private List<SchedulerThread> Threads;
|
|
|
|
|
|
|
|
public ThreadQueue()
|
|
|
|
{
|
|
|
|
Threads = new List<SchedulerThread>();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Push(SchedulerThread Thread)
|
|
|
|
{
|
|
|
|
lock (Threads)
|
|
|
|
{
|
|
|
|
Threads.Add(Thread);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
public SchedulerThread Pop(int MinPriority = LowestPriority)
|
2018-02-19 19:37:13 +00:00
|
|
|
{
|
|
|
|
lock (Threads)
|
|
|
|
{
|
|
|
|
SchedulerThread SchedThread;
|
|
|
|
|
|
|
|
int HighestPriority = MinPriority;
|
|
|
|
|
|
|
|
int HighestPrioIndex = -1;
|
|
|
|
|
|
|
|
for (int Index = 0; Index < Threads.Count; Index++)
|
|
|
|
{
|
|
|
|
SchedThread = Threads[Index];
|
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
if (HighestPriority > SchedThread.Thread.ActualPriority)
|
2018-02-19 19:37:13 +00:00
|
|
|
{
|
2018-04-21 19:07:16 +00:00
|
|
|
HighestPriority = SchedThread.Thread.ActualPriority;
|
2018-02-19 19:37:13 +00:00
|
|
|
|
|
|
|
HighestPrioIndex = Index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (HighestPrioIndex == -1)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
SchedThread = Threads[HighestPrioIndex];
|
|
|
|
|
|
|
|
Threads.RemoveAt(HighestPrioIndex);
|
|
|
|
|
|
|
|
return SchedThread;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool HasThread(SchedulerThread SchedThread)
|
|
|
|
{
|
|
|
|
lock (Threads)
|
|
|
|
{
|
|
|
|
return Threads.Contains(SchedThread);
|
|
|
|
}
|
|
|
|
}
|
2018-04-19 03:19:22 +00:00
|
|
|
|
|
|
|
public bool Remove(SchedulerThread SchedThread)
|
|
|
|
{
|
2018-04-19 19:18:30 +00:00
|
|
|
lock (Threads)
|
|
|
|
{
|
|
|
|
return Threads.Remove(SchedThread);
|
|
|
|
}
|
2018-04-19 03:19:22 +00:00
|
|
|
}
|
2018-02-19 19:37:13 +00:00
|
|
|
}
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
private ConcurrentDictionary<KThread, SchedulerThread> AllThreads;
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
private ThreadQueue[] WaitingToRun;
|
2018-02-14 02:43:08 +00:00
|
|
|
|
|
|
|
private HashSet<int> ActiveProcessors;
|
|
|
|
|
|
|
|
private object SchedLock;
|
|
|
|
|
|
|
|
public KProcessScheduler()
|
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
AllThreads = new ConcurrentDictionary<KThread, SchedulerThread>();
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
WaitingToRun = new ThreadQueue[4];
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
for (int Index = 0; Index < 4; Index++)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-02-19 19:37:13 +00:00
|
|
|
WaitingToRun[Index] = new ThreadQueue();
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ActiveProcessors = new HashSet<int>();
|
|
|
|
|
|
|
|
SchedLock = new object();
|
|
|
|
}
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public void StartThread(KThread Thread)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
|
|
|
lock (SchedLock)
|
|
|
|
{
|
2018-02-19 19:37:13 +00:00
|
|
|
SchedulerThread SchedThread = new SchedulerThread(Thread);
|
|
|
|
|
|
|
|
if (!AllThreads.TryAdd(Thread, SchedThread))
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
if (ActiveProcessors.Add(Thread.ProcessorId))
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
|
|
|
Thread.Thread.Execute();
|
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
PrintDbgThreadInfo(Thread, "running.");
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-02-19 19:37:13 +00:00
|
|
|
WaitingToRun[Thread.ProcessorId].Push(SchedThread);
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
PrintDbgThreadInfo(Thread, "waiting to run.");
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
public void RemoveThread(KThread Thread)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
PrintDbgThreadInfo(Thread, "exited.");
|
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
lock (SchedLock)
|
|
|
|
{
|
2018-04-19 03:19:22 +00:00
|
|
|
if (AllThreads.TryRemove(Thread, out SchedulerThread SchedThread))
|
|
|
|
{
|
|
|
|
WaitingToRun[Thread.ProcessorId].Remove(SchedThread);
|
2018-04-19 04:01:03 +00:00
|
|
|
|
|
|
|
SchedThread.Dispose();
|
2018-04-19 03:19:22 +00:00
|
|
|
}
|
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
SchedulerThread NewThread = WaitingToRun[Thread.ProcessorId].Pop();
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
if (NewThread == null)
|
2018-02-19 19:37:13 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
Logging.Debug(LogClass.KernelScheduler, $"Nothing to run on core {Thread.ProcessorId}!");
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
ActiveProcessors.Remove(Thread.ProcessorId);
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
RunThread(NewThread);
|
|
|
|
}
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
|
2018-04-19 19:18:30 +00:00
|
|
|
public void SetThreadActivity(KThread Thread, bool Active)
|
|
|
|
{
|
|
|
|
if (!AllThreads.TryGetValue(Thread, out SchedulerThread SchedThread))
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException();
|
|
|
|
}
|
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
SchedThread.Active = Active;
|
|
|
|
|
|
|
|
UpdateSyncWaitEvent(SchedThread);
|
|
|
|
|
|
|
|
WaitIfNeeded(SchedThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool EnterWait(KThread Thread, int Timeout = -1)
|
|
|
|
{
|
|
|
|
if (!AllThreads.TryGetValue(Thread, out SchedulerThread SchedThread))
|
2018-04-19 19:18:30 +00:00
|
|
|
{
|
2018-04-21 19:07:16 +00:00
|
|
|
throw new InvalidOperationException();
|
|
|
|
}
|
2018-04-19 19:18:30 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
SchedThread.SyncTimeout = Timeout;
|
2018-04-19 19:18:30 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
UpdateSyncWaitEvent(SchedThread);
|
2018-04-19 19:18:30 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
return WaitIfNeeded(SchedThread);
|
|
|
|
}
|
2018-04-19 19:18:30 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
public void WakeUp(KThread Thread)
|
|
|
|
{
|
|
|
|
if (!AllThreads.TryGetValue(Thread, out SchedulerThread SchedThread))
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
SchedThread.SyncTimeout = 0;
|
|
|
|
|
|
|
|
UpdateSyncWaitEvent(SchedThread);
|
|
|
|
|
|
|
|
WaitIfNeeded(SchedThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void UpdateSyncWaitEvent(SchedulerThread SchedThread)
|
|
|
|
{
|
|
|
|
if (SchedThread.Active && SchedThread.SyncTimeout == 0)
|
|
|
|
{
|
|
|
|
SchedThread.SyncWaitEvent.Set();
|
2018-04-19 19:18:30 +00:00
|
|
|
}
|
2018-04-21 19:07:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
SchedThread.SyncWaitEvent.Reset();
|
|
|
|
}
|
|
|
|
}
|
2018-04-19 19:18:30 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
private bool WaitIfNeeded(SchedulerThread SchedThread)
|
|
|
|
{
|
|
|
|
KThread Thread = SchedThread.Thread;
|
|
|
|
|
|
|
|
if (!IsActive(SchedThread) && Thread.Thread.IsCurrentThread())
|
2018-04-19 19:18:30 +00:00
|
|
|
{
|
2018-04-21 19:07:16 +00:00
|
|
|
Suspend(Thread.ProcessorId);
|
2018-04-19 19:18:30 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
return Resume(Thread);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
2018-04-19 19:18:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
public void Suspend(int ProcessorId)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
|
|
|
lock (SchedLock)
|
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
SchedulerThread SchedThread = WaitingToRun[ProcessorId].Pop();
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
if (SchedThread != null)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-02-19 19:37:13 +00:00
|
|
|
RunThread(SchedThread);
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
2018-02-19 19:37:13 +00:00
|
|
|
else
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
Logging.Debug(LogClass.KernelScheduler, $"Nothing to run on core {ProcessorId}!");
|
2018-02-19 19:37:13 +00:00
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
ActiveProcessors.Remove(ProcessorId);
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
public void Yield(KThread Thread)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
PrintDbgThreadInfo(Thread, "yielded execution.");
|
2018-02-19 19:37:13 +00:00
|
|
|
|
2018-02-14 02:43:08 +00:00
|
|
|
lock (SchedLock)
|
|
|
|
{
|
2018-04-21 19:07:16 +00:00
|
|
|
SchedulerThread SchedThread = WaitingToRun[Thread.ProcessorId].Pop(Thread.ActualPriority);
|
2018-04-19 02:52:23 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
if (IsActive(Thread) && SchedThread == null)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
PrintDbgThreadInfo(Thread, "resumed because theres nothing better to run.");
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
return;
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
if (SchedThread != null)
|
|
|
|
{
|
|
|
|
RunThread(SchedThread);
|
|
|
|
}
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
2018-02-19 19:37:13 +00:00
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
Resume(Thread);
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
public bool Resume(KThread Thread)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 19:18:30 +00:00
|
|
|
if (!AllThreads.TryGetValue(Thread, out SchedulerThread SchedThread))
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
throw new InvalidOperationException();
|
|
|
|
}
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
return TryResumingExecution(SchedThread);
|
2018-04-19 02:52:23 +00:00
|
|
|
}
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
private bool TryResumingExecution(SchedulerThread SchedThread)
|
2018-04-19 02:52:23 +00:00
|
|
|
{
|
|
|
|
KThread Thread = SchedThread.Thread;
|
2018-02-19 19:37:13 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
if (!SchedThread.Active || SchedThread.SyncTimeout != 0)
|
2018-04-19 02:52:23 +00:00
|
|
|
{
|
2018-04-21 19:07:16 +00:00
|
|
|
PrintDbgThreadInfo(Thread, "entering inactive wait state...");
|
|
|
|
}
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
bool Result = false;
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
if (SchedThread.SyncTimeout != 0)
|
|
|
|
{
|
|
|
|
Result = SchedThread.SyncWaitEvent.WaitOne(SchedThread.SyncTimeout);
|
2018-04-19 02:52:23 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
SchedThread.SyncTimeout = 0;
|
2018-04-19 19:18:30 +00:00
|
|
|
}
|
2018-04-21 19:07:16 +00:00
|
|
|
|
|
|
|
lock (SchedLock)
|
2018-04-19 19:18:30 +00:00
|
|
|
{
|
2018-04-21 19:07:16 +00:00
|
|
|
if (ActiveProcessors.Add(Thread.ProcessorId))
|
|
|
|
{
|
|
|
|
PrintDbgThreadInfo(Thread, "resuming execution...");
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
WaitingToRun[Thread.ProcessorId].Push(SchedThread);
|
|
|
|
|
|
|
|
PrintDbgThreadInfo(Thread, "entering wait state...");
|
2018-02-19 19:37:13 +00:00
|
|
|
}
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
SchedThread.SchedWaitEvent.WaitOne();
|
2018-02-14 02:43:08 +00:00
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
PrintDbgThreadInfo(Thread, "resuming execution...");
|
2018-04-21 19:07:16 +00:00
|
|
|
|
|
|
|
return Result;
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 19:37:13 +00:00
|
|
|
private void RunThread(SchedulerThread SchedThread)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-02-19 19:37:13 +00:00
|
|
|
if (!SchedThread.Thread.Thread.Execute())
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-21 19:07:16 +00:00
|
|
|
SchedThread.SchedWaitEvent.Set();
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
2018-02-19 19:37:13 +00:00
|
|
|
else
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
PrintDbgThreadInfo(SchedThread.Thread, "running.");
|
2018-02-19 19:37:13 +00:00
|
|
|
}
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
|
2018-04-21 19:07:16 +00:00
|
|
|
private bool IsActive(KThread Thread)
|
|
|
|
{
|
|
|
|
if (!AllThreads.TryGetValue(Thread, out SchedulerThread SchedThread))
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
return IsActive(SchedThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
private bool IsActive(SchedulerThread SchedThread)
|
|
|
|
{
|
|
|
|
return SchedThread.Active && SchedThread.SyncTimeout == 0;
|
|
|
|
}
|
|
|
|
|
2018-04-19 02:52:23 +00:00
|
|
|
private void PrintDbgThreadInfo(KThread Thread, string Message)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-04-19 02:52:23 +00:00
|
|
|
Logging.Debug(LogClass.KernelScheduler, "(" +
|
2018-04-21 19:07:16 +00:00
|
|
|
"ThreadId: " + Thread.ThreadId + ", " +
|
|
|
|
"ProcessorId: " + Thread.ProcessorId + ", " +
|
|
|
|
"ActualPriority: " + Thread.ActualPriority + ", " +
|
|
|
|
"WantedPriority: " + Thread.WantedPriority + ") " + Message);
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
|
|
{
|
|
|
|
if (Disposing)
|
|
|
|
{
|
2018-02-19 19:37:13 +00:00
|
|
|
foreach (SchedulerThread SchedThread in AllThreads.Values)
|
2018-02-14 02:43:08 +00:00
|
|
|
{
|
2018-02-19 19:37:13 +00:00
|
|
|
SchedThread.Dispose();
|
2018-02-14 02:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|