// Copyright (c) 2022, _xeroxz // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // 2. Redistributions in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // 3. Neither the name of the copyright holder nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // #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