Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h207 SectionHeaderTable, enumerator
289 struct SectionHeaderTable : Chunk { struct
290 SectionHeaderTable(bool IsImplicit) in SectionHeaderTable() argument
291 : Chunk(ChunkKind::SectionHeaderTable, IsImplicit) {} in SectionHeaderTable()
294 return S->Kind == ChunkKind::SectionHeaderTable; in classof() argument
716 const SectionHeaderTable &getSectionHeaderTable() const { in getSectionHeaderTable()
718 if (auto *S = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) in getSectionHeaderTable()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp361 ELFYAML::SectionHeaderTable *SecHdrTable = nullptr; in ELFState()
366 if (auto S = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) { in ELFState()
452 std::make_unique<ELFYAML::SectionHeaderTable>(/*IsImplicit=*/true)); in ELFState()
506 const ELFYAML::SectionHeaderTable &SectionHeaders = in writeELFHeader()
596 const ELFYAML::SectionHeaderTable &SectionHeaders = in toSectionIndex()
772 if (ELFYAML::SectionHeaderTable *S = in initSectionHeaders()
773 dyn_cast<ELFYAML::SectionHeaderTable>(D.get())) { in initSectionHeaders()
1784 const ELFYAML::SectionHeaderTable &SectionHeaders = in buildSectionHeaderReorderMap()
1835 const ELFYAML::SectionHeaderTable &SectionHeaders = in buildSectionIndex()
1971 const ELFYAML::SectionHeaderTable &SHT = Doc.getSectionHeaderTable(); in writeELF()
H A DELFYAML.cpp38 constexpr StringRef SectionHeaderTable::TypeStr;
1378 ELFYAML::SectionHeaderTable &SHT) { in sectionHeaderTableMapping()
1453 else if (auto *SHT = dyn_cast<ELFYAML::SectionHeaderTable>(Section.get())) in mapping()
1470 if (TypeStr == ELFYAML::SectionHeaderTable::TypeStr) { in mapping()
1474 Section.reset(new ELFYAML::SectionHeaderTable(/*IsImplicit=*/false)); in mapping()
1477 IO, *cast<ELFYAML::SectionHeaderTable>(Section.get())); in mapping()
1611 if (const auto *SHT = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) { in validate()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp152 return static_cast<const XCOFFSectionHeader32 *>(SectionHeaderTable); in sectionHeaderTable32()
158 return static_cast<const XCOFFSectionHeader64 *>(SectionHeaderTable); in sectionHeaderTable64()
631 return reinterpret_cast<uintptr_t>(SectionHeaderTable); in getSectionHeaderTableAddress()
758 Obj->SectionHeaderTable = SecHeadersOrErr.get(); in create()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DXCOFFObjectFile.h268 const void *SectionHeaderTable = nullptr;