1
0
forked from MeloNX/MeloNX
2023-12-24 12:34:01 -03:00

18 lines
378 B
C#

namespace Ryujinx.Cpu.LightningJit.Graph
{
interface IBlock
{
int Index { get; }
int PredecessorsCount { get; }
int SuccessorsCount { get; }
IBlock GetSuccessor(int index);
IBlock GetPredecessor(int index);
RegisterUse ComputeUseMasks();
bool EndsWithContextLoad();
bool EndsWithContextStore();
}
}