2018-10-28 23:31:13 +01:00
|
|
|
using Ryujinx.Common;
|
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
|
|
|
{
|
|
|
|
class KCoreContext
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private KScheduler _scheduler;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private HleCoreManager _coreManager;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
|
|
|
public bool ContextSwitchNeeded { get; private set; }
|
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
public long LastContextSwitchTime { get; private set; }
|
|
|
|
|
|
|
|
public long TotalIdleTimeTicks { get; private set; } //TODO
|
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
public KThread CurrentThread { get; private set; }
|
|
|
|
public KThread SelectedThread { get; private set; }
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public KCoreContext(KScheduler scheduler, HleCoreManager coreManager)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_scheduler = scheduler;
|
|
|
|
_coreManager = coreManager;
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public void SelectThread(KThread thread)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
SelectedThread = thread;
|
2018-09-19 01:36:43 +02:00
|
|
|
|
2018-09-19 17:16:20 +02:00
|
|
|
if (SelectedThread != CurrentThread)
|
|
|
|
{
|
|
|
|
ContextSwitchNeeded = true;
|
|
|
|
}
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void UpdateCurrentThread()
|
|
|
|
{
|
|
|
|
ContextSwitchNeeded = false;
|
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
LastContextSwitchTime = PerformanceCounter.ElapsedMilliseconds;
|
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
CurrentThread = SelectedThread;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
if (CurrentThread != null)
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
long currentTime = PerformanceCounter.ElapsedMilliseconds;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
CurrentThread.TotalTimeRunning += currentTime - CurrentThread.LastScheduledTime;
|
|
|
|
CurrentThread.LastScheduledTime = currentTime;
|
2018-11-28 23:18:09 +01:00
|
|
|
}
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void ContextSwitch()
|
|
|
|
{
|
|
|
|
ContextSwitchNeeded = false;
|
|
|
|
|
2018-11-28 23:18:09 +01:00
|
|
|
LastContextSwitchTime = PerformanceCounter.ElapsedMilliseconds;
|
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
if (CurrentThread != null)
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_coreManager.Reset(CurrentThread.Context.Work);
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CurrentThread = SelectedThread;
|
|
|
|
|
|
|
|
if (CurrentThread != null)
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
long currentTime = PerformanceCounter.ElapsedMilliseconds;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
CurrentThread.TotalTimeRunning += currentTime - CurrentThread.LastScheduledTime;
|
|
|
|
CurrentThread.LastScheduledTime = currentTime;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_coreManager.Set(CurrentThread.Context.Work);
|
2018-09-19 01:36:43 +02:00
|
|
|
|
|
|
|
CurrentThread.Context.Execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|