(instruction: &Instruction)
| 1670 | active.push(Reverse((range.last, candidate, range.width))); |
| 1671 | } |
| 1672 | |
| 1673 | slot_map |
| 1674 | } |
| 1675 | |
| 1676 | fn set_slot_occupancy(occupied: &mut Vec<bool>, slot: u16, width: u16, value: bool) { |
| 1677 | let start = usize::from(slot); |
| 1678 | let end = start + usize::from(width); |
| 1679 | if end > occupied.len() { |
| 1680 | occupied.resize(end, false); |
| 1681 | } |
no outgoing calls
no test coverage detected