You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
#pragma once
|
|
#include <obf/engine.hpp>
|
|
#include <recomp/symbol_table.hpp>
|
|
#include <decomp/decomp.hpp>
|
|
|
|
namespace theo::recomp {
|
|
using resolver_t = std::function<std::uintptr_t(std::string)>;
|
|
using copier_t = std::function<void(std::uintptr_t, void*, std::uint32_t)>;
|
|
using allocator_t =
|
|
std::function<std::uintptr_t(std::uint32_t,
|
|
coff::section_characteristics_t)>;
|
|
|
|
class recomp_t {
|
|
public:
|
|
explicit recomp_t(decomp::decomp_t* dcmp);
|
|
explicit recomp_t(decomp::decomp_t* dcmp,
|
|
allocator_t alloc,
|
|
copier_t copy,
|
|
resolver_t resolve);
|
|
|
|
void allocate();
|
|
void resolve();
|
|
void copy_syms();
|
|
|
|
void allocator(allocator_t alloc);
|
|
void copier(copier_t copy);
|
|
void resolver(resolver_t resolve);
|
|
std::uintptr_t resolve(const std::string&& sym);
|
|
|
|
private:
|
|
void gen_reloc_trans(decomp::symbol_t* sym);
|
|
decomp::decomp_t* m_dcmp;
|
|
resolver_t m_resolver;
|
|
copier_t m_copier;
|
|
allocator_t m_allocator;
|
|
};
|
|
} // namespace theo::comp
|