Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp40 auto ChType = Extractor.getUnsigned(&Offset, Is64Bit ? sizeof(Elf64_Word) in consumeCompressedHeader() local
42 switch (ChType) { in consumeCompressedHeader()
50 return createError("unsupported compression type (" + Twine(ChType) + ")"); in consumeCompressedHeader()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp156 bool maybeWriteCompression(uint32_t ChType, uint64_t Size,
714 uint32_t ChType, uint64_t Size, in maybeWriteCompression() argument
723 write(static_cast<ELF::Elf64_Word>(ChType)); in maybeWriteCompression()
729 write(static_cast<ELF::Elf32_Word>(ChType)); in maybeWriteCompression()
757 uint32_t ChType; in writeSectionData() local
762 ChType = ELF::ELFCOMPRESS_ZLIB; in writeSectionData()
765 ChType = ELF::ELFCOMPRESS_ZSTD; in writeSectionData()
770 if (!maybeWriteCompression(ChType, UncompressedData.size(), Compressed, in writeSectionData()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h666 uint32_t ChType = 0; variable
675 CompressedSection(ArrayRef<uint8_t> CompressedData, uint32_t ChType,
680 uint64_t getChType() const { return ChType; } in getChType()
694 uint32_t ChType;
696 : SectionBase(Sec), ChType(Sec.getChType()) { in DecompressedSection()
H A DELFObject.cpp466 switch (Sec.ChType) { in visit()
476 Twine(Sec.ChType) + ") of section '" + in visit()
574 uint32_t ChType, uint64_t DecompressedSize, in CompressedSection() argument
576 : ChType(ChType), CompressionType(DebugCompressionType::None), in CompressedSection()