Direct access (caller must have called ensure_fused). */
(&self)
| 64 | |
| 65 | /* Direct access (caller must have called ensure_fused). */ |
| 66 | pub fn fused_ref(&self) -> &[Instruction] { |
| 67 | self.fused.as_ref().expect("fused code not compiled") |
| 68 | } |
| 69 | |
| 70 | /* Build the const pool: scalars inline, Str/LongInt heap-allocated once and shared. */ |
| 71 | pub fn ensure_const_vals(&mut self, chunk: &SSAChunk, heap: &mut HeapPool) -> Result<&[Val], VmErr> { |
no test coverage detected