(&self, vm: &mut icicle_vm::Vm)
| 142 | |
| 143 | impl PathTracerRef { |
| 144 | pub fn get_last_blocks(&self, vm: &mut icicle_vm::Vm) -> Vec<TraceEntry> { |
| 145 | let path_tracer = vm.cpu.get_hook_mut(self.0); |
| 146 | path_tracer.data_mut::<PathTracer>().unwrap().blocks.clone() |
| 147 | } |
| 148 | |
| 149 | pub fn get_mmio_reads(&self, vm: &mut icicle_vm::Vm) -> Vec<(StreamKey, u64, u8)> { |
| 150 | let path_tracer = vm.cpu.get_hook_mut(self.0); |