Searched refs:CompressedSection (Results 1 – 3 of 3) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
| H A D | Object.h | 44 class CompressedSection; variable 86 virtual Error visit(const CompressedSection &Sec) = 0; 103 virtual Error visit(CompressedSection &Sec) = 0; 123 virtual Error visit(const CompressedSection &Sec) override = 0; 143 Error visit(const CompressedSection &Sec) override; 167 Error visit(CompressedSection &Sec) override; 187 Error visit(const CompressedSection &Sec) override; 526 class CompressedSection : public SectionBase { 535 static Expected<CompressedSection> 537 static Expected<CompressedSection> create(ArrayRef<uint8_t> CompressedData, [all …]
|
| H A D | ELFObjcopy.cpp | 481 Expected<CompressedSection> NewSection = in replaceAndRemoveSections() 482 CompressedSection::create(*S, Config.CompressionType); in replaceAndRemoveSections() 486 return &Obj.addSection<CompressedSection>(std::move(*NewSection)); in replaceAndRemoveSections() 492 [](const SectionBase &S) { return isa<CompressedSection>(&S); }, in replaceAndRemoveSections() 494 const CompressedSection *CS = cast<CompressedSection>(S); in replaceAndRemoveSections()
|
| H A D | Object.cpp | 135 template <class ELFT> Error ELFSectionSizer<ELFT>::visit(CompressedSection &) { in visit() argument 515 Error BinarySectionWriter::visit(const CompressedSection &Sec) { in visit() 522 Error ELFSectionWriter<ELFT>::visit(const CompressedSection &Sec) { in visit() 550 Expected<CompressedSection> 551 CompressedSection::create(const SectionBase &Sec, in create() 554 CompressedSection Section(Sec, CompressionType, Err); in create() 561 Expected<CompressedSection> 562 CompressedSection::create(ArrayRef<uint8_t> CompressedData, in create() 565 return CompressedSection(CompressedData, DecompressedSize, DecompressedAlign); in create() 568 CompressedSection::CompressedSection(const SectionBase &Sec, in CompressedSection() function in llvm::objcopy::elf::CompressedSection [all …]
|