mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
From Craig Silverstein: Implement section_info.
This commit is contained in:
parent
4c50553d98
commit
f2f3f78338
@ -143,6 +143,11 @@ class Elf_file
|
||||
Elf_Word
|
||||
section_link(unsigned int shndx);
|
||||
|
||||
// Return the info field of section SHNDX.
|
||||
Elf_Word
|
||||
section_info(unsigned int shndx);
|
||||
|
||||
|
||||
private:
|
||||
// Shared constructor code.
|
||||
void
|
||||
@ -348,6 +353,25 @@ Elf_file<size, big_endian, File>::section_link(unsigned int shndx)
|
||||
return shdr.get_sh_link();
|
||||
}
|
||||
|
||||
// Return the sh_info field of section SHNDX.
|
||||
|
||||
template<int size, bool big_endian, typename File>
|
||||
Elf_Word
|
||||
Elf_file<size, big_endian, File>::section_info(unsigned int shndx)
|
||||
{
|
||||
File* const file = this->file_;
|
||||
|
||||
if (shndx >= this->shnum())
|
||||
file->error(_("section_info: 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_info();
|
||||
}
|
||||
|
||||
} // End namespace elfcpp.
|
||||
|
||||
#endif // !defined(ELFCPP_FILE_H)
|
||||
|
Loading…
Reference in New Issue
Block a user