2018-02-04 16:08:20 -07:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
using ChocolArm64.State;
|
2019-02-04 14:26:05 -07:00
|
|
|
using ChocolArm64.Translation;
|
2018-02-04 16:08:20 -07:00
|
|
|
using System;
|
|
|
|
using System.Threading;
|
|
|
|
|
|
|
|
namespace ChocolArm64
|
|
|
|
{
|
2018-10-30 19:43:02 -06:00
|
|
|
public class CpuThread
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
2018-10-30 19:43:02 -06:00
|
|
|
public CpuThreadState ThreadState { get; private set; }
|
|
|
|
public MemoryManager Memory { get; private set; }
|
2018-02-04 16:08:20 -07:00
|
|
|
|
2018-10-30 19:43:02 -06:00
|
|
|
private Translator _translator;
|
2018-02-13 19:43:08 -07:00
|
|
|
|
2018-09-18 17:36:43 -06:00
|
|
|
public Thread Work;
|
2018-02-04 16:08:20 -07:00
|
|
|
|
|
|
|
public event EventHandler WorkFinished;
|
|
|
|
|
2018-10-30 19:43:02 -06:00
|
|
|
private int _isExecuting;
|
2018-02-13 19:43:08 -07:00
|
|
|
|
2018-11-28 15:18:09 -07:00
|
|
|
public CpuThread(Translator translator, MemoryManager memory, long entrypoint)
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
2018-10-30 19:43:02 -06:00
|
|
|
_translator = translator;
|
|
|
|
Memory = memory;
|
2018-02-04 16:08:20 -07:00
|
|
|
|
2018-10-30 19:43:02 -06:00
|
|
|
ThreadState = new CpuThreadState();
|
2018-02-04 16:08:20 -07:00
|
|
|
|
2018-03-11 22:04:52 -06:00
|
|
|
ThreadState.Running = true;
|
2018-09-18 17:36:43 -06:00
|
|
|
|
|
|
|
Work = new Thread(delegate()
|
|
|
|
{
|
2018-11-28 15:18:09 -07:00
|
|
|
translator.ExecuteSubroutine(this, entrypoint);
|
2018-09-18 17:36:43 -06:00
|
|
|
|
|
|
|
WorkFinished?.Invoke(this, EventArgs.Empty);
|
|
|
|
});
|
2018-03-11 22:04:52 -06:00
|
|
|
}
|
2018-02-04 16:08:20 -07:00
|
|
|
|
2018-02-13 19:43:08 -07:00
|
|
|
public bool Execute()
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
2018-10-30 19:43:02 -06:00
|
|
|
if (Interlocked.Exchange(ref _isExecuting, 1) == 1)
|
2018-02-13 19:43:08 -07:00
|
|
|
{
|
2018-03-11 22:04:52 -06:00
|
|
|
return false;
|
2018-02-13 19:43:08 -07:00
|
|
|
}
|
|
|
|
|
2018-02-04 16:08:20 -07:00
|
|
|
Work.Start();
|
2018-02-13 19:43:08 -07:00
|
|
|
|
|
|
|
return true;
|
2018-02-04 16:08:20 -07:00
|
|
|
}
|
2018-03-11 22:04:52 -06:00
|
|
|
|
2018-04-19 13:18:30 -06:00
|
|
|
public void StopExecution()
|
|
|
|
{
|
|
|
|
ThreadState.Running = false;
|
|
|
|
}
|
|
|
|
|
2018-09-18 17:36:43 -06:00
|
|
|
public void RequestInterrupt()
|
|
|
|
{
|
|
|
|
ThreadState.RequestInterrupt();
|
|
|
|
}
|
|
|
|
|
2018-04-19 13:18:30 -06:00
|
|
|
public bool IsCurrentThread()
|
|
|
|
{
|
|
|
|
return Thread.CurrentThread == Work;
|
|
|
|
}
|
2018-02-04 16:08:20 -07:00
|
|
|
}
|
|
|
|
}
|