(&self)
| 59 | } |
| 60 | |
| 61 | pub(crate) const fn is_64bit(&self) -> bool { |
| 62 | matches!(self.kind.arch(), MemoryArch::I64) |
| 63 | } |
| 64 | |
| 65 | #[inline(always)] |
| 66 | pub(crate) fn load<const SIZE: usize>(&self, base: u64, offset: u64) -> Result<[u8; SIZE], Trap> { |
no outgoing calls
no test coverage detected