Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DDecompressor.cpp39 auto ChType = Extractor.getUnsigned(&Offset, Is64Bit ? sizeof(Elf64_Word) in consumeCompressedHeader() local
41 switch (ChType) { in consumeCompressedHeader()
49 return createError("unsupported compression type (" + Twine(ChType) + ")"); in consumeCompressedHeader()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DELFObjectWriter.cpp147 bool maybeWriteCompression(uint32_t ChType, uint64_t Size,
842 uint32_t ChType, uint64_t Size, in maybeWriteCompression() argument
851 write(static_cast<ELF::Elf64_Word>(ChType)); in maybeWriteCompression()
857 write(static_cast<ELF::Elf32_Word>(ChType)); in maybeWriteCompression()
887 uint32_t ChType; in writeSectionData() local
892 ChType = ELF::ELFCOMPRESS_ZLIB; in writeSectionData()
895 ChType = ELF::ELFCOMPRESS_ZSTD; in writeSectionData()
900 if (!maybeWriteCompression(ChType, UncompressedData.size(), Compressed, in writeSectionData()
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.h539 uint32_t ChType = 0; variable
548 CompressedSection(ArrayRef<uint8_t> CompressedData, uint32_t ChType,
553 uint64_t getChType() const { return ChType; } in getChType()
567 uint32_t ChType;
569 : SectionBase(Sec), ChType(Sec.getChType()) { in DecompressedSection()
H A DELFObject.cpp443 switch (Sec.ChType) { in visit()
453 Twine(Sec.ChType) + ") of section '" + in visit()
550 uint32_t ChType, uint64_t DecompressedSize, in CompressedSection() argument
552 : ChType(ChType), CompressionType(DebugCompressionType::None), in CompressedSection()