Files
Ryujinx/src/ARMeilleure/CodeGen/RegisterAllocators/IRegisterAllocator.cs
2023-04-27 23:51:14 +02:00

12 lines
273 B
C#

using ARMeilleure.Translation;
namespace ARMeilleure.CodeGen.RegisterAllocators
{
interface IRegisterAllocator
{
AllocationResult RunPass(
ControlFlowGraph cfg,
StackAllocator stackAlloc,
RegisterMasks regMasks);
}
}