Home
last modified time | relevance | path

Searched refs:DynamicSection (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp1253 DynamicSection<ELFT>::DynamicSection() in DynamicSection() function in DynamicSection
1298 DynamicSection<ELFT>::computeContents() { in computeContents()
1557 template <class ELFT> void DynamicSection<ELFT>::finalizeContents() { in finalizeContents()
1563 template <class ELFT> void DynamicSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
4025 template class elf::DynamicSection<ELF32LE>; member in elf
4026 template class elf::DynamicSection<ELF32BE>; member in elf
4027 template class elf::DynamicSection<ELF64LE>; member in elf
4028 template class elf::DynamicSection<ELF64BE>; member in elf
H A DSyntheticSections.h477 template <class ELFT> class DynamicSection final : public SyntheticSection {
481 DynamicSection();
H A DWriter.cpp407 part.dynamic = std::make_unique<DynamicSection<ELFT>>(); in createSyntheticSections()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h364 struct DynamicSection : Section { struct
367 DynamicSection() : Section(ChunkKind::Dynamic) {} in DynamicSection() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h864 class DynamicSection : public Section {
866 explicit DynamicSection(ArrayRef<uint8_t> Data) : Section(Data) {} in DynamicSection() function
H A DELFObject.cpp1718 return Obj.addSection<DynamicSection>(*Data); in makeSection()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp279 const ELFYAML::DynamicSection &Section,
872 } else if (auto S = dyn_cast<ELFYAML::DynamicSection>(Sec)) { in initSectionHeaders()
1703 const ELFYAML::DynamicSection &Section, in writeSectionContent()
H A DELFYAML.cpp1368 static void sectionMapping(IO &IO, ELFYAML::DynamicSection &Section) { in sectionMapping()
1603 Section.reset(new ELFYAML::DynamicSection()); in mapping()
1604 sectionMapping(IO, *cast<ELFYAML::DynamicSection>(Section.get())); in mapping()