Get the constraint descriptor for this opcode. Panic if this is called on `NotAnOpcode`.
(self)
| 309 | /// Get the constraint descriptor for this opcode. |
| 310 | /// Panic if this is called on `NotAnOpcode`. |
| 311 | pub fn constraints(self) -> OpcodeConstraints { |
| 312 | OPCODE_CONSTRAINTS[self as usize - 1] |
| 313 | } |
| 314 | |
| 315 | /// Is this instruction a GC safepoint? |
| 316 | /// |
no outgoing calls