| 128 | } |
| 129 | |
| 130 | int64_t VirtualMemory::ReadInt64(uint64_t address) |
| 131 | { |
| 132 | uint64_t offset; |
| 133 | auto region = GetRegionAtAddress(address, offset); |
| 134 | if (!region.has_value()) |
| 135 | throw UnmappedRegionException(address); |
| 136 | return region->fileAccessor.lock()->ReadInt64(offset); |
| 137 | } |
| 138 | |
| 139 | BinaryNinja::DataBuffer VirtualMemory::ReadBuffer(uint64_t address, size_t length) |
| 140 | { |
no test coverage detected