(mmio_ref: IoHandler, multiblock: bool, optimize_upper_bits: bool)
| 43 | |
| 44 | impl LoadResizeInjector { |
| 45 | pub fn new(mmio_ref: IoHandler, multiblock: bool, optimize_upper_bits: bool) -> Self { |
| 46 | Self { mmio_ref, optimize_upper_bits, resizer: LoadResizer::new(multiblock) } |
| 47 | } |
| 48 | |
| 49 | pub fn mark_as_temporary(&mut self, var: pcode::VarId) { |
| 50 | self.resizer.state.extra_temps.insert(var); |
nothing calls this directly
no outgoing calls
no test coverage detected