From 241a089c39c77345e8e0a0c8a04301ba2271e432 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 18 Oct 2020 21:20:00 -0400 Subject: document/standardize; add compile log to gui --- source/elf_load.cpp | 32 +++++++++++--------------------- 1 file changed, 11 insertions(+), 21 deletions(-) (limited to 'source/elf_load.cpp') diff --git a/source/elf_load.cpp b/source/elf_load.cpp index 3fd8a0f..79cd4fe 100644 --- a/source/elf_load.cpp +++ b/source/elf_load.cpp @@ -1,11 +1,20 @@ +/** + * @file elf_load.cpp + * @brief Loads ELF binary data into memory for execution. + * + * Copyright (C) 2020 Clyne Sullivan + * + * Distributed under the GNU GPL v3 or later. You should have received a copy of + * the GNU General Public License along with this program. + * If not, see . + */ + #include "elf_load.hpp" #include "elf_format.hpp" #include #include -//constexpr unsigned int ELF_LOAD_ADDR = 0x10000000; - static const unsigned char elf_header[] = { '\177', 'E', 'L', 'F' }; template @@ -14,8 +23,6 @@ constexpr static auto ptr_from_offset(void *base, uint32_t offset) return reinterpret_cast(reinterpret_cast(base) + offset); } -//static Elf32_Shdr *find_section(Elf32_Ehdr *ehdr, const char *name); - namespace elf { entry_t load(void *elf_data) @@ -52,20 +59,3 @@ entry_t load(void *elf_data) } // namespace elf -//Elf32_Shdr *find_section(Elf32_Ehdr *ehdr, const char *name) -//{ -// auto shdr = ptr_from_offset(ehdr, ehdr->e_shoff); -// auto shdr_str = ptr_from_offset(ehdr, -// ehdr->e_shoff + ehdr->e_shstrndx * ehdr->e_shentsize); -// -// for (Elf32_Half i = 0; i < ehdr->e_shnum; i++) { -// char *section = ptr_from_offset(ehdr, shdr_str->sh_offset) + shdr->sh_name; -// if (!strcmp(section, name)) -// return shdr; -// -// shdr = ptr_from_offset(shdr, ehdr->e_shentsize); -// } -// -// return 0; -//} - -- cgit v1.2.3