Ryujinx/ChocolArm64/AThread.cs

59 lines
1.3 KiB
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using ChocolArm64.Memory;
using ChocolArm64.State;
using System;
using System.Threading;
namespace ChocolArm64
{
public class AThread
2018-02-05 00:08:20 +01:00
{
2018-02-19 20:37:13 +01:00
public AThreadState ThreadState { get; private set; }
public AMemory Memory { get; private set; }
2018-02-05 00:08:20 +01:00
private long EntryPoint;
2018-02-05 00:08:20 +01:00
private ATranslator Translator;
private Thread Work;
2018-02-05 00:08:20 +01:00
public event EventHandler WorkFinished;
2018-02-18 20:28:07 +01:00
public int ThreadId => ThreadState.ThreadId;
2018-02-05 00:08:20 +01:00
private int IsExecuting;
public AThread(ATranslator Translator, AMemory Memory, long EntryPoint)
2018-02-05 00:08:20 +01:00
{
this.Translator = Translator;
2018-02-05 00:08:20 +01:00
this.Memory = Memory;
this.EntryPoint = EntryPoint;
2018-02-05 00:08:20 +01:00
2018-02-18 20:28:07 +01:00
ThreadState = new AThreadState();
2018-02-05 00:08:20 +01:00
ThreadState.Running = true;
}
2018-02-05 00:08:20 +01:00
public bool Execute()
2018-02-05 00:08:20 +01:00
{
if (Interlocked.Exchange(ref IsExecuting, 1) == 1)
{
return false;
}
2018-02-05 00:08:20 +01:00
Work = new Thread(delegate()
{
Translator.ExecuteSubroutine(this, EntryPoint);
2018-02-05 00:08:20 +01:00
Memory.RemoveMonitor(ThreadId);
WorkFinished?.Invoke(this, EventArgs.Empty);
});
Work.Start();
return true;
2018-02-05 00:08:20 +01:00
}
public void StopExecution() => ThreadState.Running = false;
2018-02-05 00:08:20 +01:00
}
}