#pragma once #include #include #include namespace theo::recomp { /// /// meta data about a relocation for a symbol /// class reloc_t { public: /// /// explicit constructor for this class. /// /// offset into the symbol data where the relocation is /// at. all relocations are assumed to be linear virtual addresses of the /// symbol. /// hash of the symbol to which the relocation is /// of. the name of the symbol to which the /// relocation is of. explicit reloc_t(std::uint32_t offset, std::size_t hash, const std::string&& sym_name) : m_offset(offset), m_hash(hash), m_sym_name(sym_name) {} /// /// returns the hash of the relocation symbol. /// /// hash of the relocation symbol std::size_t hash() { return m_hash; } /// /// returns the name of the relocation symbol. /// /// returns the name of the relocation symbol. std::string name() { return m_sym_name; } /// /// returns the offset into the symbol to which the relocation will be /// applied. the offset is in bytes. zero based. /// /// returns the offset into the symbol to which the relocation will /// be applied. the offset is in bytes. zero based. std::uint32_t offset() { return m_offset; } /// /// sets the offset to which the relocation gets applied too. /// /// offset to which the relocation gets applied /// too. void offset(std::uint32_t offset) { m_offset = offset; } /// /// adds a transformation to be applied to the relocation prior to writing it /// into the symbol. /// /// a pair containing a lambda function that when executed /// transforms a relocation. the second value in the pair is a random value /// which is passed to the lambda. void add_transform( std::pair entry) { m_transforms.push_back(entry); } /// /// gets the vector of transformation. /// /// returns the vector of transformations. std::vector>& get_transforms() { return m_transforms; } private: std::vector> m_transforms; std::string m_sym_name; std::size_t m_hash; std::uint32_t m_offset; }; } // namespace theo::recomp