2023-12-24 01:01:08 -03:00

17 lines
377 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();
}
}