12 lines
273 B
C#
12 lines
273 B
C#
|
using ARMeilleure.Translation;
|
||
|
|
||
|
namespace ARMeilleure.CodeGen.RegisterAllocators
|
||
|
{
|
||
|
interface IRegisterAllocator
|
||
|
{
|
||
|
AllocationResult RunPass(
|
||
|
ControlFlowGraph cfg,
|
||
|
StackAllocator stackAlloc,
|
||
|
RegisterMasks regMasks);
|
||
|
}
|
||
|
}
|