summaryrefslogtreecommitdiff
path: root/view/elf/elfview.h
diff options
context:
space:
mode:
authorclubby789 <jamie@hill-daniel.co.uk>2024-06-06 15:46:11 +0100
committerJosh F <negasora@users.noreply.github.com>2024-06-24 15:32:06 -0400
commit1ffd063fc7e0bad3ee60f257d0df2324fbe09a36 (patch)
treec6f8001e6a14d48b495e2d14cb1f65fecc1f8abc /view/elf/elfview.h
parent750c2ffd35c202fb4a16af1f5714fe61fc62153c (diff)
Add `Elf{32,64}_{Rel,Rela}` table to ELF view
Diffstat (limited to 'view/elf/elfview.h')
-rw-r--r--view/elf/elfview.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/view/elf/elfview.h b/view/elf/elfview.h
index db60fdb7..438dee4f 100644
--- a/view/elf/elfview.h
+++ b/view/elf/elfview.h
@@ -501,6 +501,8 @@ namespace BinaryNinja
std::vector<Elf64ProgramHeader> m_programHeaders;
Elf64SectionHeader m_symbolTableSection, m_dynamicSymbolTableSection;
Elf64SectionHeader m_auxSymbolTable, m_dynamicStringTable, m_sectionStringTable, m_sectionOpd;
+ Elf64SectionHeader m_relocSection;
+ Elf64SectionHeader m_relocaSection;
Elf64ProgramHeader m_dynamicTable;
Elf64ProgramHeader m_tlsSegment;
std::map<uint64_t, uint64_t> m_localGotEntries;