()
| 24 | |
| 25 | impl Allocations { |
| 26 | pub fn new() -> Self { |
| 27 | Self { |
| 28 | allocations: vec![], |
| 29 | operands_offset: vec![], |
| 30 | remat_inputs: CompactListPool::new(), |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | /// Computes the offsets for each instruction's operands in the allocation |
| 35 | /// vector. |
nothing calls this directly
no outgoing calls
no test coverage detected