mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-24 15:37:10 +02:00
12 lines
274 B
C#
Executable file
12 lines
274 B
C#
Executable file
using ARMeilleure.Translation;
|
|
|
|
namespace ARMeilleure.CodeGen.RegisterAllocators
|
|
{
|
|
interface IRegisterAllocator
|
|
{
|
|
AllocationResult RunPass(
|
|
ControlFlowGraph cfg,
|
|
StackAllocator stackAlloc,
|
|
RegisterMasks regMasks);
|
|
}
|
|
}
|