Dwarf Interpret library
A wrapper around libdwarfpp
MemoryMap.hpp
1 #pragma once
2 
13 #include <exception>
14 #include <stdexcept>
15 #include <map>
16 #include <vector>
17 #include <string>
18 #include <cstdint>
19 
20 class MemoryMap {
21  public:
23  class ReadMapFailed: public std::exception {};
24 
25  struct MemoryRegion {
28  MemoryRegion() = default;
29  MemoryRegion(uintptr_t begin, uintptr_t end)
30  : begin(begin), end(end) {}
31 
32  uintptr_t begin;
33  uintptr_t end;
34 
35  bool operator==(const MemoryRegion& oth) const {
36  return begin == oth.begin && end == oth.end;
37  }
38 
39  bool operator<(const MemoryRegion& oth) const {
40  if(begin < oth.begin)
41  return true;
42  return (begin == oth.begin && end < oth.end);
43  }
44 
46  bool contains(uintptr_t addr) const {
47  return begin <= addr && addr < end;
48  }
49  };
50 
51  struct MapEntry {
52  std::string pathname;
53  MemoryRegion mem_region;
54  uintptr_t offset;
55 
57  void dump(std::ostream& os) const;
58  };
59 
61  typedef std::vector<MapEntry>::const_iterator iter_t;
62 
63  public:
67  MemoryMap();
68 
72  const MapEntry& get_entry(size_t id) const;
73 
75  const MapEntry& operator[](size_t id) const;
76 
80  size_t id_of_address(uintptr_t addr) const;
81 
83  iter_t begin() const;
84 
86  iter_t end() const;
87 
89  size_t size() const;
90 
91  private:
92  std::vector<MapEntry> map_entries;
93 
95  std::map<MemoryRegion, size_t> rev_addr_map;
96 };
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&#39;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