mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 03:38:35 +00:00
30 lines
673 B
C#
30 lines
673 B
C#
|
using System.Threading;
|
||
|
|
||
|
namespace ARMeilleure.Translation
|
||
|
{
|
||
|
class TranslatedFunction
|
||
|
{
|
||
|
private const int MinCallsForRejit = 100;
|
||
|
|
||
|
private GuestFunction _func;
|
||
|
|
||
|
private bool _rejit;
|
||
|
private int _callCount;
|
||
|
|
||
|
public TranslatedFunction(GuestFunction func, bool rejit)
|
||
|
{
|
||
|
_func = func;
|
||
|
_rejit = rejit;
|
||
|
}
|
||
|
|
||
|
public ulong Execute(State.ExecutionContext context)
|
||
|
{
|
||
|
return _func(context.NativeContextPtr);
|
||
|
}
|
||
|
|
||
|
public bool ShouldRejit()
|
||
|
{
|
||
|
return _rejit && Interlocked.Increment(ref _callCount) == MinCallsForRejit;
|
||
|
}
|
||
|
}
|
||
|
}
|