Home
last modified time | relevance | path

Searched refs:DynamicRelocationSection (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DObject.h41 class DynamicRelocationSection; variable
81 virtual void visit(const DynamicRelocationSection &Sec) = 0;
98 virtual void visit(DynamicRelocationSection &Sec) = 0;
116 void visit(const DynamicRelocationSection &Sec) override;
160 void visit(DynamicRelocationSection &Sec) override;
653 class DynamicRelocationSection
661 explicit DynamicRelocationSection(ArrayRef<uint8_t> Data) : Contents(Data) {} in DynamicRelocationSection() function
H A DObject.cpp83 void ELFSectionSizer<ELFT>::visit(DynamicRelocationSection &Sec) {} in visit()
625 void SectionWriter::visit(const DynamicRelocationSection &Sec) { in visit()
630 void DynamicRelocationSection::accept(SectionVisitor &Visitor) const { in accept()
634 void DynamicRelocationSection::accept(MutableSectionVisitor &Visitor) { in accept()
1047 return Obj.addSection<DynamicRelocationSection>(Data); in makeSection()