blob: 7d4ce2ea6ff47c749661199306e597be849395df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using ARMeilleure.Translation;
namespace ARMeilleure.CodeGen.RegisterAllocators
{
interface IRegisterAllocator
{
AllocationResult RunPass(
ControlFlowGraph cfg,
StackAllocator stackAlloc,
RegisterMasks regMasks);
}
}
|