jak-project/goalc/regalloc/Allocator_v2.h
water111 aa58d146c2
[goalc] register allocator v2 (#731)
* clean up allocator interface to be simpler

* working on functions without spills

* working for all

* fix missing includes for windows

* more windows includes

* initialize regs to zero so printing value unintiailized by game code is repeatable
2021-08-01 17:46:55 -04:00

7 lines
161 B
C

#pragma once
#include "goalc/regalloc/allocator_interface.h"
// Allocator v2's interface
AllocationResult allocate_registers_v2(const AllocationInput& input);