(&mut self)
| 1171 | } |
| 1172 | |
| 1173 | fn record_executing_pc_for_profiling(&mut self) { |
| 1174 | // Note that this is a no-op if `feature = "profile"` is disabled. |
| 1175 | self.executing_pc.record(self.pc.as_ptr().as_ptr() as usize); |
| 1176 | } |
| 1177 | } |
| 1178 | |
| 1179 | /// Helper trait to encompass the various addressing modes of Pulley. |
no test coverage detected