Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/MachO/
H A DInputFiles.cpp540 auto subsecIt = subsections.rbegin(); in parseRelocations() local
621 while (subsecIt != subsections.rend() && subsecIt->offset > r.offset) in parseRelocations()
622 ++subsecIt; in parseRelocations()
623 if (subsecIt == subsections.rend() || in parseRelocations()
624 subsecIt->offset + subsecIt->isec->getSize() <= r.offset) { in parseRelocations()
628 subsecIt = subsections.rend(); in parseRelocations()
630 subsec = subsecIt->isec; in parseRelocations()
631 r.offset -= subsecIt->offset; in parseRelocations()
/freebsd/contrib/llvm-project/lld/MachO/Arch/
H A DARM64.cpp645 auto subsecIt = std::prev(llvm::upper_bound( in applyOptimizationHints() local
648 const Subsection &subsec = *subsecIt; in applyOptimizationHints()