Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Object/
H A DDecompressor.cpp88 return (Flags & ELF::SHF_COMPRESSED) || isGnuStyle(Name); in isCompressedELFSection()
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp214 (Section.Flags & ELF::SHF_COMPRESSED); in isCompressed()
489 const uint64_t PreserveMask = ELF::SHF_COMPRESSED | ELF::SHF_EXCLUDE | in handleArgs()
H A DObject.h382 return (S->Flags & ELF::SHF_COMPRESSED) || in classof()
395 Flags = (Flags & ~ELF::SHF_COMPRESSED); in DecompressedSection()
H A DObject.cpp275 Flags |= ELF::SHF_COMPRESSED; in CompressedSection()
1089 if (isDataGnuCompressed(Data) || (Shdr.sh_flags & ELF::SHF_COMPRESSED)) { in makeSection()
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DInputSection.cpp87 if ((Flags & SHF_COMPRESSED) || Name.startswith(".zdebug")) { in InputSectionBase()
234 assert(Flags & SHF_COMPRESSED); in parseCompressedHeader()
235 Flags &= ~(uint64_t)SHF_COMPRESSED; in parseCompressedHeader()
H A DOutputSections.cpp206 Flags |= SHF_COMPRESSED; in maybeCompress()
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DELF.h911 SHF_COMPRESSED = 0x800U, enumerator
/freebsd-12.1/sys/sys/
H A Delf_common.h506 #define SHF_COMPRESSED 0x800 /* Section contains compressed data. */ macro
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DELFYAML.cpp514 BCase(SHF_COMPRESSED); in bitset()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DELFObjectFile.h707 return getSection(Sec)->sh_flags & ELF::SHF_COMPRESSED; in isSectionCompressed()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3391 if (!section->Test(SHF_COMPRESSED)) in ReadSectionData()
3408 if (result == 0 || !section->Test(SHF_COMPRESSED)) in ReadSectionData()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DELFObjectWriter.cpp887 Section.setFlags(Section.getFlags() | ELF::SHF_COMPRESSED); in writeSectionData()
/freebsd-12.1/contrib/elftoolchain/common/
H A Delfdefinitions.h1007 _ELF_DEFINE_SHF(SHF_COMPRESSED, 0x800, \
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DELFDumper.cpp1141 ENUM_ENT_1(SHF_COMPRESSED),
/freebsd-12.1/contrib/elftoolchain/readelf/
H A Dreadelf.c1106 {"COMPRESSED", 'C', SHF_COMPRESSED},