blob: 2e5d71322469dfd08b811575eefc424550885ee2 (
plain) (
tree)
|
|
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();
}
}
|