Home
last modified time | relevance | path

Searched refs:CompressedSection (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h44 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>
553 CompressedSection(const SectionBase &Sec,
[all …]
H A DELFObjcopy.cpp481 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 DObject.cpp513 Error BinarySectionWriter::visit(const CompressedSection &Sec) { in visit()
548 Expected<CompressedSection>
549 CompressedSection::create(const SectionBase &Sec, in create()
552 CompressedSection Section(Sec, CompressionType, Err); in create()
559 Expected<CompressedSection>
560 CompressedSection::create(ArrayRef<uint8_t> CompressedData, in create()
566 CompressedSection::CompressedSection(const SectionBase &Sec, in CompressedSection() function in CompressedSection
598 CompressedSection::CompressedSection(ArrayRef<uint8_t> CompressedData, in CompressedSection() function in CompressedSection
606 Error CompressedSection::accept(SectionVisitor &Visitor) const { in accept()
610 Error CompressedSection::accept(MutableSectionVisitor &Visitor) { in accept()
[all …]