Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DSyntheticSections.cpp1189 DynamicSection<ELFT>::DynamicSection() in DynamicSection() function in DynamicSection
1227 void DynamicSection<ELFT>::addInt(int32_t Tag, uint64_t Val) { in addInt()
1232 void DynamicSection<ELFT>::addInSec(int32_t Tag, InputSection *Sec) { in addInSec()
1244 void DynamicSection<ELFT>::addOutSec(int32_t Tag, OutputSection *Sec) { in addOutSec()
1249 void DynamicSection<ELFT>::addSize(int32_t Tag, OutputSection *Sec) { in addSize()
1254 void DynamicSection<ELFT>::addSym(int32_t Tag, Symbol *Sym) { in addSym()
1271 template <class ELFT> void DynamicSection<ELFT>::finalizeContents() { in finalizeContents()
3200 template class elf::DynamicSection<ELF32LE>; member in elf
3201 template class elf::DynamicSection<ELF32BE>; member in elf
3202 template class elf::DynamicSection<ELF64LE>; member in elf
[all …]
H A DSyntheticSections.h443 template <class ELFT> class DynamicSection final : public SyntheticSection {
455 DynamicSection();
H A DWriter.cpp279 In.Dynamic = make<DynamicSection<ELFT>>(); in createSyntheticSections()
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DObject.h644 class DynamicSection : public Section {
646 explicit DynamicSection(ArrayRef<uint8_t> Data) : Section(Data) {} in DynamicSection() function
H A DObject.cpp1073 return Obj.addSection<DynamicSection>(Data); in makeSection()