Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/
H A DELFObject.h44 class CompressedSection; variable
86 virtual Error visit(const CompressedSection &Sec) = 0;
103 virtual Error visit(CompressedSection &Sec) = 0;
123 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;
536 class CompressedSection : public SectionBase {
545 CompressedSection(const SectionBase &Sec,
547 CompressedSection(ArrayRef<uint8_t> CompressedData, uint64_t DecompressedSize,
[all …]
H A DELFObjcopy.cpp512 return &Obj.addSection<CompressedSection>( in replaceAndRemoveSections()
513 CompressedSection(*S, Config.CompressionType)); in replaceAndRemoveSections()
519 [](const SectionBase &S) { return isa<CompressedSection>(&S); }, in replaceAndRemoveSections()
521 const CompressedSection *CS = cast<CompressedSection>(S); in replaceAndRemoveSections()
H A DELFObject.cpp133 template <class ELFT> Error ELFSectionSizer<ELFT>::visit(CompressedSection &) { in visit() argument
484 Error BinarySectionWriter::visit(const CompressedSection &Sec) { in visit()
491 Error ELFSectionWriter<ELFT>::visit(const CompressedSection &Sec) { in visit()
511 CompressedSection::CompressedSection(const SectionBase &Sec, in CompressedSection() function in CompressedSection
528 CompressedSection::CompressedSection(ArrayRef<uint8_t> CompressedData, in CompressedSection() function in CompressedSection
536 Error CompressedSection::accept(SectionVisitor &Visitor) const { in accept()
540 Error CompressedSection::accept(MutableSectionVisitor &Visitor) { in accept()
1709 return Obj.addSection<CompressedSection>( in makeSection()
1710 CompressedSection(*Data, Chdr->ch_size, Chdr->ch_addralign)); in makeSection()