From a445fddf828b0e8251fbdce91bc9372e7efd24f0 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 4 Feb 2008 05:43:05 +0000 Subject: Fully implement the SECTIONS clause. --- elfcpp/elfcpp_file.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'elfcpp') diff --git a/elfcpp/elfcpp_file.h b/elfcpp/elfcpp_file.h index 3228332..f9f28ef 100644 --- a/elfcpp/elfcpp_file.h +++ b/elfcpp/elfcpp_file.h @@ -131,6 +131,10 @@ class Elf_file typename File::Location section_contents(unsigned int shndx); + // Return the size of section SHNDX. + typename Elf_types::Elf_WXword + section_size(unsigned int shndx); + // Return the flags of section SHNDX. typename Elf_types::Elf_WXword section_flags(unsigned int shndx); @@ -147,6 +151,9 @@ class Elf_file Elf_Word section_info(unsigned int shndx); + // Return the addralign field of section SHNDX. + typename Elf_types::Elf_WXword + section_addralign(unsigned int shndx); private: // Shared constructor code. @@ -296,6 +303,25 @@ Elf_file::section_contents(unsigned int shndx) return typename File::Location(shdr.get_sh_offset(), shdr.get_sh_size()); } +// Get the size of section SHNDX. + +template +typename Elf_types::Elf_WXword +Elf_file::section_size(unsigned int shndx) +{ + File* const file = this->file_; + + if (shndx >= this->shnum()) + file->error(_("section_size: bad shndx %u >= %u"), + shndx, this->shnum()); + + typename File::View v(file->view(this->section_header_offset(shndx), + This::shdr_size)); + + Ef_shdr shdr(v.data()); + return shdr.get_sh_size(); +} + // Return the section flags of section SHNDX. template @@ -372,6 +398,25 @@ Elf_file::section_info(unsigned int shndx) return shdr.get_sh_info(); } +// Return the sh_addralign field of section SHNDX. + +template +typename Elf_types::Elf_WXword +Elf_file::section_addralign(unsigned int shndx) +{ + File* const file = this->file_; + + if (shndx >= this->shnum()) + file->error(_("section_addralign: bad shndx %u >= %u"), + shndx, this->shnum()); + + typename File::View v(file->view(this->section_header_offset(shndx), + This::shdr_size)); + + Ef_shdr shdr(v.data()); + return shdr.get_sh_addralign(); +} + } // End namespace elfcpp. #endif // !defined(ELFCPP_FILE_H) -- cgit v1.1