| 55 | } |
| 56 | |
| 57 | AnalyzerBase::AnalyzerBase(BinaryNinja::BinaryView& bv, Binary& elf, |
| 58 | TypeBuilder& type_builder) : |
| 59 | analysis_plugin::AnalyzerBase(bv), elf_(elf), type_builder_(type_builder), |
| 60 | default_image_base_(elf_.imagebase()), default_virtual_size(elf_.virtual_size()) |
| 61 | {} |
| 62 | |
| 63 | uint64_t AnalyzerBase::translate_addr(uint64_t addr, bool revert) const { |
| 64 | if (!revert) { |
nothing calls this directly
no test coverage detected