IRegisterAllocator.cs 273 B

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