| 213 | }; |
| 214 | |
| 215 | struct ElfLoadSegment |
| 216 | { |
| 217 | GElf_Addr vaddr; |
| 218 | GElf_Off offset; |
| 219 | GElf_Xword size; |
| 220 | }; |
| 221 | // Cache for PT_LOAD segments |
| 222 | mutable std::unordered_map<std::string, std::vector<ElfLoadSegment>> d_elf_load_segments_cache; |
| 223 |
nothing calls this directly
no outgoing calls
no test coverage detected