Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/include/lld/Common/
H A DBPSectionOrdererBase.inc300 SetVector<const Section *> orderedSections;
304 if (orderedSections.insert(isec)) {
312 if (orderedSections.insert(isec)) {
321 if (orderedSections.insert(dupIsec)) {
330 if (orderedSections.insert(isec)) {
339 if (orderedSections.insert(dupIsec)) {
372 for (const auto *isec : orderedSections) {
416 int prio = -orderedSections.size();
417 for (const auto *isec : orderedSections)
/freebsd/contrib/llvm-project/lld/ELF/
H A DWriter.cpp1164 SmallVector<std::pair<InputSection *, int>, 0> orderedSections; in sortISDBySectionOrder() local
1177 orderedSections.push_back({isec, i->second}); in sortISDBySectionOrder()
1179 llvm::sort(orderedSections, llvm::less_second()); in sortISDBySectionOrder()
1214 if (executableOutputSection && !orderedSections.empty() && in sortISDBySectionOrder()
1228 for (std::pair<InputSection *, int> p : orderedSections) in sortISDBySectionOrder()