| 119 | } |
| 120 | |
| 121 | uint64_t VirtualMemory::ReadUInt64(uint64_t address) |
| 122 | { |
| 123 | uint64_t offset; |
| 124 | auto region = GetRegionAtAddress(address, offset); |
| 125 | if (!region.has_value()) |
| 126 | throw UnmappedRegionException(address); |
| 127 | return region->fileAccessor.lock()->ReadUInt64(offset); |
| 128 | } |
| 129 | |
| 130 | int64_t VirtualMemory::ReadInt64(uint64_t address) |
| 131 | { |
no test coverage detected