Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/ELF/
H A DSyntheticSections.cpp1245 DynamicSection<ELFT>::DynamicSection() in DynamicSection() function in DynamicSection
1290 DynamicSection<ELFT>::computeContents() { in computeContents()
1532 template <class ELFT> void DynamicSection<ELFT>::finalizeContents() { in finalizeContents()
1538 template <class ELFT> void DynamicSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
3923 template class elf::DynamicSection<ELF32LE>; member in elf
3924 template class elf::DynamicSection<ELF32BE>; member in elf
3925 template class elf::DynamicSection<ELF64LE>; member in elf
3926 template class elf::DynamicSection<ELF64BE>; member in elf
H A DSyntheticSections.h475 template <class ELFT> class DynamicSection final : public SyntheticSection {
479 DynamicSection();
H A DWriter.cpp346 part.dynamic = std::make_unique<DynamicSection<ELFT>>(); in createSyntheticSections()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h350 struct DynamicSection : Section { struct
353 DynamicSection() : Section(ChunkKind::Dynamic) {} in DynamicSection() argument
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.h855 class DynamicSection : public Section {
857 explicit DynamicSection(ArrayRef<uint8_t> Data) : Section(Data) {} in DynamicSection() function
H A DELFObject.cpp1703 return Obj.addSection<DynamicSection>(*Data); in makeSection()
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Delf2yaml.cpp79 Expected<ELFYAML::DynamicSection *> dumpDynamicSection(const Elf_Shdr *Shdr);
1078 Expected<ELFYAML::DynamicSection *>
1080 auto S = std::make_unique<ELFYAML::DynamicSection>(); in dumpDynamicSection()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1352 static void sectionMapping(IO &IO, ELFYAML::DynamicSection &Section) { in sectionMapping()
1586 Section.reset(new ELFYAML::DynamicSection()); in mapping()
1587 sectionMapping(IO, *cast<ELFYAML::DynamicSection>(Section.get())); in mapping()
H A DELFEmitter.cpp278 const ELFYAML::DynamicSection &Section,
871 } else if (auto S = dyn_cast<ELFYAML::DynamicSection>(Sec)) { in initSectionHeaders()
1651 const ELFYAML::DynamicSection &Section, in writeSectionContent()