Returns the PC of the current instruction where `I` is the static type representing the current instruction.
(&self)
| 1039 | /// Returns the PC of the current instruction where `I` is the static type |
| 1040 | /// representing the current instruction. |
| 1041 | fn current_pc<I: Encode>(&self) -> NonNull<u8> { |
| 1042 | unsafe { self.pc.offset(-isize::from(I::WIDTH)).as_ptr() } |
| 1043 | } |
| 1044 | |
| 1045 | /// `sp -= size_of::<T>(); *sp = val;` |
| 1046 | /// |