2018-02-04 18:08:20 -05:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
using ChocolArm64.State;
|
|
|
|
using System;
|
|
|
|
using System.Threading;
|
|
|
|
|
|
|
|
namespace ChocolArm64
|
|
|
|
{
|
2018-02-15 19:04:38 -05:00
|
|
|
public class AThread
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2018-02-19 14:37:13 -05:00
|
|
|
public AThreadState ThreadState { get; private set; }
|
|
|
|
public AMemory Memory { get; private set; }
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2018-03-09 21:12:57 -05:00
|
|
|
private long EntryPoint;
|
2018-02-13 21:43:08 -05:00
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
private ATranslator Translator;
|
2018-02-13 21:43:08 -05:00
|
|
|
|
|
|
|
private Thread Work;
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
|
|
public event EventHandler WorkFinished;
|
|
|
|
|
2018-02-18 14:28:07 -05:00
|
|
|
public int ThreadId => ThreadState.ThreadId;
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2018-03-12 00:04:52 -04:00
|
|
|
private int IsExecuting;
|
2018-02-13 21:43:08 -05:00
|
|
|
|
2018-03-12 00:04:52 -04:00
|
|
|
public AThread(ATranslator Translator, AMemory Memory, long EntryPoint)
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2018-02-25 20:14:58 -05:00
|
|
|
this.Translator = Translator;
|
2018-02-04 18:08:20 -05:00
|
|
|
this.Memory = Memory;
|
2018-02-13 21:43:08 -05:00
|
|
|
this.EntryPoint = EntryPoint;
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2018-02-18 14:28:07 -05:00
|
|
|
ThreadState = new AThreadState();
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2018-05-26 16:49:21 -04:00
|
|
|
ThreadState.ExecutionMode = AExecutionMode.AArch64;
|
|
|
|
|
2018-03-12 00:04:52 -04:00
|
|
|
ThreadState.Running = true;
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2018-02-13 21:43:08 -05:00
|
|
|
public bool Execute()
|
2018-02-04 18:08:20 -05:00
|
|
|
{
|
2018-03-12 00:04:52 -04:00
|
|
|
if (Interlocked.Exchange(ref IsExecuting, 1) == 1)
|
2018-02-13 21:43:08 -05:00
|
|
|
{
|
2018-03-12 00:04:52 -04:00
|
|
|
return false;
|
2018-02-13 21:43:08 -05:00
|
|
|
}
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
Work = new Thread(delegate()
|
|
|
|
{
|
2018-02-25 20:14:58 -05:00
|
|
|
Translator.ExecuteSubroutine(this, EntryPoint);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
2018-06-21 22:05:42 -04:00
|
|
|
Memory.RemoveMonitor(ThreadState);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
|
|
WorkFinished?.Invoke(this, EventArgs.Empty);
|
|
|
|
});
|
|
|
|
|
|
|
|
Work.Start();
|
2018-02-13 21:43:08 -05:00
|
|
|
|
|
|
|
return true;
|
2018-02-04 18:08:20 -05:00
|
|
|
}
|
2018-03-12 00:04:52 -04:00
|
|
|
|
2018-04-19 15:18:30 -04:00
|
|
|
public void StopExecution()
|
|
|
|
{
|
|
|
|
ThreadState.Running = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool IsCurrentThread()
|
|
|
|
{
|
|
|
|
return Thread.CurrentThread == Work;
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
}
|
|
|
|
}
|