Searched refs:ChType (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | Decompressor.cpp | 40 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 D | ELFObjectWriter.cpp | 145 bool maybeWriteCompression(uint32_t ChType, uint64_t Size, 711 uint32_t ChType, uint64_t Size, in maybeWriteCompression() argument 720 write(static_cast<ELF::Elf64_Word>(ChType)); in maybeWriteCompression() 726 write(static_cast<ELF::Elf32_Word>(ChType)); in maybeWriteCompression() 754 uint32_t ChType; in writeSectionData() local 759 ChType = ELF::ELFCOMPRESS_ZLIB; in writeSectionData() 762 ChType = ELF::ELFCOMPRESS_ZSTD; in writeSectionData() 767 if (!maybeWriteCompression(ChType, UncompressedData.size(), Compressed, in writeSectionData()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObject.h | 662 uint32_t ChType = 0; variable 671 CompressedSection(ArrayRef<uint8_t> CompressedData, uint32_t ChType, 676 uint64_t getChType() const { return ChType; } in getChType() 690 uint32_t ChType; 692 : SectionBase(Sec), ChType(Sec.getChType()) { in DecompressedSection()
|
H A D | ELFObject.cpp | 469 switch (Sec.ChType) { in visit() 479 Twine(Sec.ChType) + ") of section '" + in visit() 577 uint32_t ChType, uint64_t DecompressedSize, in CompressedSection() argument 579 : ChType(ChType), CompressionType(DebugCompressionType::None), in CompressedSection()
|