Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp148 bool maybeWriteCompression(uint32_t ChType, uint64_t Size,
852 uint32_t ChType, uint64_t Size, in maybeWriteCompression() argument
861 write(static_cast<ELF::Elf64_Word>(ChType)); in maybeWriteCompression()
867 write(static_cast<ELF::Elf32_Word>(ChType)); in maybeWriteCompression()
897 uint32_t ChType; in writeSectionData() local
902 ChType = ELF::ELFCOMPRESS_ZLIB; in writeSectionData()
905 ChType = ELF::ELFCOMPRESS_ZSTD; in writeSectionData()
910 if (!maybeWriteCompression(ChType, UncompressedData.size(), Compressed, in writeSectionData()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h546 uint32_t ChType = 0; variable
555 CompressedSection(ArrayRef<uint8_t> CompressedData, uint32_t ChType,
560 uint64_t getChType() const { return ChType; } in getChType()
574 uint32_t ChType;
576 : SectionBase(Sec), ChType(Sec.getChType()) { in DecompressedSection()
H A DELFObject.cpp450 switch (Sec.ChType) { in visit()
460 Twine(Sec.ChType) + ") of section '" + in visit()
557 uint32_t ChType, uint64_t DecompressedSize, in CompressedSection() argument
559 : ChType(ChType), CompressionType(DebugCompressionType::None), in CompressedSection()