Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/
H A DCOFFObject.cpp95 DenseSet<ssize_t> RemovedSections; in removeSections() local
96 llvm::erase_if(Sections, [ToRemove, &RemovedSections](const Section &Sec) { in removeSections()
99 RemovedSections.insert(Sec.UniqueId); in removeSections()
105 Symbols, [&RemovedSections, &AssociatedSections](const Symbol &Sym) { in removeSections()
110 if (RemovedSections.contains(Sym.AssociativeComdatTargetSectionId)) in removeSections()
112 return RemovedSections.contains(Sym.TargetSectionId); in removeSections()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h1160 std::vector<SecPtr> RemovedSections; variable
1215 SectionTableRef removedSections() { return SectionTableRef(RemovedSections); } in removedSections()
H A DELFObject.cpp2246 std::move(Iter, Sections.end(), std::back_inserter(RemovedSections)); in removeSections()