Get the class of this register.
(self)
| 111 | |
| 112 | /// Get the class of this register. |
| 113 | pub fn class(self) -> RegClass { |
| 114 | assert!(!self.to_spillslot().is_some()); |
| 115 | VReg::from(self.0).class() |
| 116 | } |
| 117 | |
| 118 | /// Is this a real (physical) reg? |
| 119 | pub fn is_real(self) -> bool { |
no test coverage detected