8#include "../linker/reader.h"
9#include "../linker/segment_manager.h"
10#include "../linker/writer.h"
11#include "../dumper/dumper.h"
63 virtual std::unique_ptr<Dumper::Region>
MakeRegion(std::string name, offset_t offset,
unsigned display_width)
const;
91 std::shared_ptr<Linker::Contents>
image;
97 std::unique_ptr<Dumper::Region>
MakeRegion(std::string name, offset_t offset,
unsigned display_width)
const override;
134 std::shared_ptr<Linker::Contents> image;
139 std::unique_ptr<Dumper::Region>
MakeRegion(std::string name, offset_t offset,
unsigned display_width)
const override;
161 uint16_t allocation_length;
163 std::vector<std::unique_ptr<MemoryBlock>>
blocks;
182 const LoadBlock * GetLoadBlockById(uint32_t block_id)
const;
183 LoadBlock * GetLoadBlockById(uint32_t block_id);
An abstract interface that separates structure and presentation of the data inside a file.
Definition dumper.h:828
A record that represents a region within the file.
Definition dumper.h:721
Encodes an object module file as a collection of sections, symbols and relocations.
Definition module.h:24
A helper class, encapsulating functionality needed to import binary data.
Definition reader.h:20
A helper class to collect sections into segments.
Definition segment_manager.h:32
A helper class, encapsulating functionality needed to export binary data.
Definition writer.h:15