Home
last modified time | relevance | path

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

/external/llvm-project/llvm/tools/llvm-objcopy/COFF/
DObject.cpp104 DenseSet<ssize_t> RemovedSections; in removeSections() local
107 [ToRemove, &RemovedSections](const Section &Sec) { in removeSections()
110 RemovedSections.insert(Sec.UniqueId); in removeSections()
119 [&RemovedSections, &AssociatedSections](const Symbol &Sym) { in removeSections()
124 if (RemovedSections.count(Sym.AssociativeComdatTargetSectionId) == in removeSections()
127 return RemovedSections.count(Sym.TargetSectionId) == 1; in removeSections()
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/
DObject.h1015 std::vector<SecPtr> RemovedSections; variable
1071 SectionTableRef removedSections() { return SectionTableRef(RemovedSections); } in removedSections()
DObject.cpp2146 std::move(Iter, Sections.end(), std::back_inserter(RemovedSections)); in removeSections()