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