summaryrefslogtreecommitdiffstats
path: root/src/core/loader/elf.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-07 23:56:23 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-08 00:33:07 +0200
commit6577bbc3c5c47d8e3868f1205284337c6c672744 (patch)
tree7837aa8fc199b519ac45fd1b8312f5fb0e02afa3 /src/core/loader/elf.cpp
parentcitra-qt: Remove callstack widget (diff)
downloadyuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.gz
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.bz2
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.lz
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.xz
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.tar.zst
yuzu-6577bbc3c5c47d8e3868f1205284337c6c672744.zip
Diffstat (limited to 'src/core/loader/elf.cpp')
-rw-r--r--src/core/loader/elf.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp
index 8eb5200ab..cfcde9167 100644
--- a/src/core/loader/elf.cpp
+++ b/src/core/loader/elf.cpp
@@ -8,7 +8,6 @@
#include "common/common_types.h"
#include "common/file_util.h"
#include "common/logging/log.h"
-#include "common/symbols.h"
#include "core/hle/kernel/process.h"
#include "core/hle/kernel/resource_limit.h"
#include "core/loader/elf.h"
@@ -210,7 +209,6 @@ public:
return (u32)(header->e_flags);
}
SharedPtr<CodeSet> LoadInto(u32 vaddr);
- bool LoadSymbols();
int GetNumSegments() const {
return (int)(header->e_phnum);
@@ -258,8 +256,6 @@ ElfReader::ElfReader(void* ptr) {
sections = (Elf32_Shdr*)(base + header->e_shoff);
entryPoint = header->e_entry;
-
- LoadSymbols();
}
const char* ElfReader::GetSectionName(int section) const {
@@ -362,34 +358,6 @@ SectionID ElfReader::GetSectionByName(const char* name, int firstSection) const
return -1;
}
-bool ElfReader::LoadSymbols() {
- bool hasSymbols = false;
- SectionID sec = GetSectionByName(".symtab");
- if (sec != -1) {
- int stringSection = sections[sec].sh_link;
- const char* stringBase = reinterpret_cast<const char*>(GetSectionDataPtr(stringSection));
-
- // We have a symbol table!
- const Elf32_Sym* symtab = reinterpret_cast<const Elf32_Sym*>(GetSectionDataPtr(sec));
- unsigned int numSymbols = sections[sec].sh_size / sizeof(Elf32_Sym);
- for (unsigned sym = 0; sym < numSymbols; sym++) {
- int size = symtab[sym].st_size;
- if (size == 0)
- continue;
-
- int type = symtab[sym].st_info & 0xF;
-
- const char* name = stringBase + symtab[sym].st_name;
-
- Symbols::Add(symtab[sym].st_value, name, size, type);
-
- hasSymbols = true;
- }
- }
-
- return hasSymbols;
-}
-
////////////////////////////////////////////////////////////////////////////////////////////////////
// Loader namespace