Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h924 const Elf_Shdr *EShdr = getSection(Sec); in getSectionContents() local
925 if (EShdr->sh_type == ELF::SHT_NOBITS) in getSectionContents()
929 (uintptr_t)base() + EShdr->sh_offset, EShdr->sh_size)) in getSectionContents()
931 return ArrayRef((const uint8_t *)base() + EShdr->sh_offset, EShdr->sh_size); in getSectionContents()
951 const Elf_Shdr *EShdr = getSection(Sec); in isSectionData() local
952 return EShdr->sh_type == ELF::SHT_PROGBITS && in isSectionData()
953 EShdr->sh_flags & ELF::SHF_ALLOC && in isSectionData()
954 !(EShdr->sh_flags & ELF::SHF_EXECINSTR); in isSectionData()
959 const Elf_Shdr *EShdr = getSection(Sec); in isSectionBSS() local
960 return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) && in isSectionBSS()
[all …]