Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DELFTypes.h58 using Ehdr = Elf_Ehdr_Impl<ELFType<E, Is64>>; argument
59 using Shdr = Elf_Shdr_Impl<ELFType<E, Is64>>; argument
60 using Sym = Elf_Sym_Impl<ELFType<E, Is64>>; argument
61 using Dyn = Elf_Dyn_Impl<ELFType<E, Is64>>; argument
62 using Phdr = Elf_Phdr_Impl<ELFType<E, Is64>>; argument
71 using Hash = Elf_Hash_Impl<ELFType<E, Is64>>; argument
73 using Chdr = Elf_Chdr_Impl<ELFType<E, Is64>>; argument
74 using Nhdr = Elf_Nhdr_Impl<ELFType<E, Is64>>; argument
75 using Note = Elf_Note_Impl<ELFType<E, Is64>>; argument
96 using ELF32BE = ELFType<support::big, false>;
[all …]
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinarySection.h54 unsigned ELFType; // ELF section type variable
133 ELFType = NewELFType; in update()
158 ELFType = ELFSectionRef(Section).getType(); in BinarySection()
174 Address(0), Size(Size), Alignment(Alignment), ELFType(ELFType), in BinarySection()
195 operator bool() const { return ELFType != ELF::SHT_NULL; }
200 Alignment == Other.Alignment && ELFType == Other.ELFType &&
235 return (ELFType == ELF::SHT_PROGBITS && in isData()
240 return (ELFType == ELF::SHT_NOBITS && in isBSS()
246 bool isRela() const { return ELFType == ELF::SHT_RELA; } in isRela()
249 ELFType == ELF::SHT_PROGBITS); in isReadOnly()
[all …]
H A DBinaryContext.h950 BinarySection &registerOrUpdateSection(StringRef Name, unsigned ELFType,
963 unsigned ELFType = ELF::SHT_PROGBITS) {
964 return registerOrUpdateSection(Name, ELFType,
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryContext.cpp1955 BinaryContext::registerOrUpdateSection(StringRef Name, unsigned ELFType, in registerOrUpdateSection() argument
1967 Section->update(Data, Size, Alignment, ELFType, ELFFlags); in registerOrUpdateSection()
1977 new BinarySection(*this, Name, Data, Size, Alignment, ELFType, ELFFlags)); in registerOrUpdateSection()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DELFDumper.cpp5578 StringRef getNoteTypeName(const typename ELFT::Note &Note, unsigned ELFType) { in getNoteTypeName() argument
5591 if (ELFType == ELF::ET_CORE) { in getNoteTypeName()
5601 if (ELFType == ELF::ET_CORE && Name.startswith("NetBSD-CORE")) { in getNoteTypeName()
5607 if (ELFType == ELF::ET_CORE && Name.startswith("OpenBSD")) { in getNoteTypeName()
5623 if (ELFType == ELF::ET_CORE) in getNoteTypeName()