| 467 | }; |
| 468 | |
| 469 | struct ELFRelocEntry |
| 470 | { |
| 471 | uint64_t offset, sym, relocType, addend; |
| 472 | size_t sectionIdx; |
| 473 | bool implicit; |
| 474 | ELFRelocEntry(uint64_t o, uint64_t s, uint64_t r, uint64_t a, size_t idx, bool imp): offset(o), sym(s), relocType(r), |
| 475 | addend(a), sectionIdx(idx), implicit(imp) {} |
| 476 | }; |
| 477 | |
| 478 | class ElfView: public BinaryView |
| 479 | { |
no outgoing calls
no test coverage detected