57 void dump(std::ostream& os)
const;
61 typedef std::vector<MapEntry>::const_iterator
iter_t;
92 std::vector<MapEntry> map_entries;
95 std::map<MemoryRegion, size_t> rev_addr_map;
MemoryMap()
Definition: MemoryMap.cpp:18
void dump(std::ostream &os) const
Debug feature: dumps the MapEntry on the given stream.
Definition: MemoryMap.cpp:9
Definition: MemoryMap.hpp:20
iter_t end() const
Get a constant iterator to a past-the-end iterator.
Definition: MemoryMap.cpp:105
bool contains(uintptr_t addr) const
Checks whether addr is in this region.
Definition: MemoryMap.hpp:46
const MapEntry & get_entry(size_t id) const
Definition: MemoryMap.cpp:59
Thrown when the constructor fails to read the map's data.
Definition: MemoryMap.hpp:23
Definition: MemoryMap.hpp:51
std::vector< MapEntry >::const_iterator iter_t
An iterator to the map entries. The underlying type might change.
Definition: MemoryMap.hpp:61
Definition: MemoryMap.hpp:25
size_t size() const
Get the number of entries in the map.
Definition: MemoryMap.cpp:109
const MapEntry & operator[](size_t id) const
Synonymous for get_entry.
Definition: MemoryMap.cpp:70
uintptr_t end
Past-the-end address for the region.
Definition: MemoryMap.hpp:33
uintptr_t begin
First address (incl.) in the region.
Definition: MemoryMap.hpp:32
size_t id_of_address(uintptr_t addr) const
Definition: MemoryMap.cpp:74
iter_t begin() const
Get a constant iterator to the first map entry.
Definition: MemoryMap.cpp:101