|
enum | section_type {
SHT_NULL = 0
, SHT_PROGBITS = 1
, SHT_SYMTAB = 2
, SHT_STRTAB = 3
,
SHT_RELA = 4
, SHT_HASH = 5
, SHT_DYNAMIC = 6
, SHT_NOTE = 7
,
SHT_NOBITS = 8
, SHT_REL = 9
, SHT_SHLIB = 10
, SHT_DYNSYM = 11
,
SHT_INIT_ARRAY = 14
, SHT_FINI_ARRAY = 15
, SHT_PREINIT_ARRAY = 16
, SHT_GROUP = 17
,
SHT_SYMTAB_SHNDX = 18
, SHT_OS = 0x60000001
, SHT_IMPORTS = 0x60000002
, SHT_EXPORTS = 0x60000003
,
SHT_RES = 0x60000004
, SHT_OLD_OS = 12
, SHT_OLD_IMPORTS = 13
, SHT_OLD_EXPORTS = 14
,
SHT_OLD_RES = 15
, SHT_GNU_INCREMENTAL_INPUTS = 0x6FFF4700
, SHT_GNU_ATTRIBUTES = 0x6FFFFFF5
, SHT_GNU_HASH = 0x6FFFFFF6
,
SHT_GNU_LIBLIST = 0x6FFFFFF7
, SHT_SUNW_verdef = 0x6FFFFFFD
, SHT_SUNW_verneed = 0x6FFFFFFE
, SHT_SUNW_versym = 0x6FFFFFFF
} |
|
|
static std::shared_ptr< Linker::Section > | ReadProgBits (Linker::Reader &rd, offset_t file_offset, const std::string &name, offset_t size) |
|
static std::shared_ptr< Linker::Section > | ReadNoBits (const std::string &name, offset_t size) |
|
static std::shared_ptr< SymbolTable > | ReadSymbolTable (Linker::Reader &rd, offset_t file_offset, offset_t section_size, offset_t entsize, uint32_t section_link, size_t wordbytes) |
|
static std::shared_ptr< Relocations > | ReadRelocations (Linker::Reader &rd, Section::section_type type, offset_t file_offset, offset_t section_size, offset_t entsize, uint32_t section_link, uint32_t section_info, size_t wordbytes) |
|
static std::shared_ptr< StringTable > | ReadStringTable (Linker::Reader &rd, offset_t file_offset, offset_t section_size) |
|
static std::shared_ptr< Array > | ReadArray (Linker::Reader &rd, offset_t file_offset, offset_t section_size, offset_t entsize) |
|
static std::shared_ptr< SectionGroup > | ReadSectionGroup (Linker::Reader &rd, offset_t file_offset, offset_t section_size, offset_t entsize) |
|
static std::shared_ptr< IndexArray > | ReadIndexArray (Linker::Reader &rd, offset_t file_offset, offset_t section_size, offset_t entsize) |
|
static std::shared_ptr< HashTable > | ReadHashTable (Linker::Reader &rd, offset_t file_offset) |
|
static std::shared_ptr< DynamicSection > | ReadDynamic (Linker::Reader &rd, offset_t file_offset, offset_t section_size, offset_t entsize, size_t wordbytes) |
|
static std::shared_ptr< NotesSection > | ReadNote (Linker::Reader &rd, offset_t file_offset, offset_t section_size) |
|
static std::shared_ptr< VersionRequirements > | ReadVersionRequirements (Linker::Reader &rd, offset_t file_offset, offset_t section_link, offset_t section_info) |
|
static std::shared_ptr< IBMSystemInfo > | ReadIBMSystemInfo (Linker::Reader &rd, offset_t file_offset) |
|
static std::shared_ptr< IBMImportTable > | ReadIBMImportTable (Linker::Reader &rd, offset_t file_offset, offset_t section_size, offset_t entsize) |
|
static std::shared_ptr< IBMExportTable > | ReadIBMExportTable (Linker::Reader &rd, offset_t file_offset, offset_t section_size, offset_t entsize) |
|
static std::shared_ptr< IBMResourceCollection > | ReadIBMResourceCollection (Linker::Reader &rd, offset_t file_offset) |
|