Priority queue of virtual registers and virtual register groups that need to be allocated.
| 117 | /// Priority queue of virtual registers and virtual register groups that need |
| 118 | /// to be allocated. |
| 119 | pub struct AllocationQueue { |
| 120 | queue: BinaryHeap<Entry>, |
| 121 | } |
| 122 | |
| 123 | impl AllocationQueue { |
| 124 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected