Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DObject.h45 class CompressedSection; variable
85 virtual void visit(const CompressedSection &Sec) = 0;
102 virtual void visit(CompressedSection &Sec) = 0;
122 virtual void visit(const CompressedSection &Sec) override = 0;
142 void visit(const CompressedSection &Sec) override;
166 void visit(CompressedSection &Sec) override;
184 void visit(const CompressedSection &Sec) override;
361 class CompressedSection : public SectionBase {
370 CompressedSection(const SectionBase &Sec,
372 CompressedSection(ArrayRef<uint8_t> CompressedData, uint64_t DecompressedSize,
[all …]
H A DObject.cpp110 void ELFSectionSizer<ELFT>::visit(CompressedSection &Sec) {} in visit()
220 void BinarySectionWriter::visit(const CompressedSection &Sec) { in visit()
225 void ELFSectionWriter<ELFT>::visit(const CompressedSection &Sec) { in visit()
254 CompressedSection::CompressedSection(const SectionBase &Sec, in CompressedSection() function in llvm::objcopy::elf::CompressedSection
286 CompressedSection::CompressedSection(ArrayRef<uint8_t> CompressedData, in CompressedSection() function in llvm::objcopy::elf::CompressedSection
294 void CompressedSection::accept(SectionVisitor &Visitor) const { in accept()
298 void CompressedSection::accept(MutableSectionVisitor &Visitor) { in accept()
1093 return Obj.addSection<CompressedSection>(Data, DecompressedSize, in makeSection()
H A DELFObjcopy.cpp466 return &Obj.addSection<CompressedSection>( in handleArgs()
472 [](const SectionBase &S) { return isa<CompressedSection>(&S); }, in handleArgs()
474 auto CS = cast<CompressedSection>(S); in handleArgs()