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.cpp538 auto subsecIt = subsections.rbegin(); in parseRelocations() local
619 while (subsecIt != subsections.rend() && subsecIt->offset > r.offset) in parseRelocations()
620 ++subsecIt; in parseRelocations()
621 if (subsecIt == subsections.rend() || in parseRelocations()
622 subsecIt->offset + subsecIt->isec->getSize() <= r.offset) { in parseRelocations()
626 subsecIt = subsections.rend(); in parseRelocations()
628 subsec = subsecIt->isec; in parseRelocations()
629 r.offset -= subsecIt->offset; in parseRelocations()
/freebsd/contrib/llvm-project/lld/MachO/Arch/
H A DARM64.cpp640 auto subsecIt = std::prev(llvm::upper_bound( in applyOptimizationHints() local
643 const Subsection &subsec = *subsecIt; in applyOptimizationHints()