16#ifndef LIEF_PE_RELOCATION_H
17#define LIEF_PE_RELOCATION_H
32struct pe_base_relocation_block;
42 using entries_t = std::vector<std::unique_ptr<RelocationEntry>>;
49 Relocation(
const details::pe_base_relocation_block& header);
56 return virtual_address_;
74 virtual_address_ = virtual_address;
77 block_size_ = block_size;
87 uint32_t block_size_ = 0;
88 uint32_t virtual_address_ = 0;
Class that is used to rebuild a raw PE binary from a PE::Binary object.
Definition PE/Builder.hpp:45
Main interface to parse PE binaries. In particular the static functions: Parser::parse should be used...
Definition PE/Parser.hpp:47
Class which represents an entry of the PE relocation table.
Definition RelocationEntry.hpp:36
Class which represents the Base Relocation Block We usually find this structure in the ....
Definition PE/Relocation.hpp:37
Relocation & operator=(Relocation other)
it_entries entries()
Definition PE/Relocation.hpp:69
void accept(Visitor &visitor) const override
uint32_t block_size() const
The total number of bytes in the base relocation block. block_size = sizeof(BaseRelocationBlock) + nb...
Definition PE/Relocation.hpp:61
void swap(Relocation &other)
uint32_t virtual_address() const
The RVA for which the offset of the relocation entries (RelocationEntry) is added.
Definition PE/Relocation.hpp:55
RelocationEntry & add_entry(const RelocationEntry &entry)
std::vector< std::unique_ptr< RelocationEntry > > entries_t
Definition PE/Relocation.hpp:42
void virtual_address(uint32_t virtual_address)
Definition PE/Relocation.hpp:73
~Relocation() override=default
it_const_entries entries() const
Iterator over the RelocationEntry.
Definition PE/Relocation.hpp:66
Relocation(const details::pe_base_relocation_block &header)
Relocation(const Relocation &other)
friend std::ostream & operator<<(std::ostream &os, const Relocation &relocation)
void block_size(uint32_t block_size)
Definition PE/Relocation.hpp:76
Definition Visitor.hpp:224
Iterator which returns reference on container's values.
Definition iterators.hpp:48
LIEF namespace.
Definition Abstract/Binary.hpp:32
#define LIEF_API
Definition visibility.h:41