MCPcopy Create free account
hub / github.com/Amanieu/regalloc3 / AllocationQueue

Class AllocationQueue

src/internal/allocator/queue.rs:119–121  ·  view source on GitHub ↗

Priority queue of virtual registers and virtual register groups that need to be allocated.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected