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

Class LiveRangePoint

src/internal/live_range.rs:72–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected