MeloNX/src/ARMeilleure/CodeGen/RegisterAllocators/IRegisterAllocator.cs
2025-01-30 16:45:30 +13:00

12 lines
274 B
C#
Executable file

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