| 70 | /// in 32 bits for memory efficiency and to allow for fast comparisons. |
| 71 | #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] |
| 72 | pub struct LiveRangePoint { |
| 73 | /// Bit-pack in 32 bits. |
| 74 | /// |
| 75 | /// inst:30 slot:2 |
| 76 | pub bits: u32, |
| 77 | } |
| 78 | |
| 79 | impl LiveRangePoint { |
| 80 | /// Returns a new `LiveRangePoint` at the given slot in an instruction. |
nothing calls this directly
no outgoing calls
no test coverage detected