Home
last modified time | relevance | path

Searched refs:SectionHeaderTable (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h251 SectionHeaderTable, enumerator
333 struct SectionHeaderTable : Chunk { struct
334 SectionHeaderTable(bool IsImplicit) in SectionHeaderTable() function
335 : Chunk(ChunkKind::SectionHeaderTable, IsImplicit) {} in SectionHeaderTable()
338 return S->Kind == ChunkKind::SectionHeaderTable; in classof() argument
762 const SectionHeaderTable &getSectionHeaderTable() const { in getSectionHeaderTable()
764 if (auto *S = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) in getSectionHeaderTable()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp366 ELFYAML::SectionHeaderTable *SecHdrTable = nullptr; in ELFState()
371 if (auto S = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) { in ELFState()
457 std::make_unique<ELFYAML::SectionHeaderTable>(/*IsImplicit=*/true)); in ELFState()
511 const ELFYAML::SectionHeaderTable &SectionHeaders = in writeELFHeader()
597 const ELFYAML::SectionHeaderTable &SectionHeaders = in toSectionIndex()
772 if (ELFYAML::SectionHeaderTable *S = in initSectionHeaders()
773 dyn_cast<ELFYAML::SectionHeaderTable>(D.get())) { in initSectionHeaders()
1935 const ELFYAML::SectionHeaderTable &SectionHeaders = in buildSectionHeaderReorderMap()
1986 const ELFYAML::SectionHeaderTable &SectionHeaders = in buildSectionIndex()
2122 const ELFYAML::SectionHeaderTable &SHT = Doc.getSectionHeaderTable(); in writeELF()
H A DELFYAML.cpp41 constexpr StringRef SectionHeaderTable::TypeStr;
1532 ELFYAML::SectionHeaderTable &SHT) { in sectionHeaderTableMapping()
1607 else if (auto *SHT = dyn_cast<ELFYAML::SectionHeaderTable>(Section.get())) in mapping()
1624 if (TypeStr == ELFYAML::SectionHeaderTable::TypeStr) { in mapping()
1628 Section.reset(new ELFYAML::SectionHeaderTable(/*IsImplicit=*/false)); in mapping()
1631 IO, *cast<ELFYAML::SectionHeaderTable>(Section.get())); in mapping()
1768 if (const auto *SHT = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) { in validate()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp201 return static_cast<const T *>(SectionHeaderTable); in sectionHeaderTable()
207 return static_cast<const XCOFFSectionHeader32 *>(SectionHeaderTable); in sectionHeaderTable32()
213 return static_cast<const XCOFFSectionHeader64 *>(SectionHeaderTable); in sectionHeaderTable64()
973 return reinterpret_cast<uintptr_t>(SectionHeaderTable); in getSectionHeaderTableAddress()
1198 Obj->SectionHeaderTable = SecHeadersOrErr.get(); in create()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DXCOFFObjectFile.h542 const void *SectionHeaderTable = nullptr;