Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lld/MachO/
H A DInputFiles.cpp518 auto subsecIt = subsections.rbegin(); in parseRelocations() local
599 while (subsecIt != subsections.rend() && subsecIt->offset > r.offset) in parseRelocations()
600 ++subsecIt; in parseRelocations()
601 if (subsecIt == subsections.rend() || in parseRelocations()
602 subsecIt->offset + subsecIt->isec->getSize() <= r.offset) { in parseRelocations()
606 subsecIt = subsections.rend(); in parseRelocations()
608 subsec = subsecIt->isec; in parseRelocations()
609 r.offset -= subsecIt->offset; in parseRelocations()
/openbsd/gnu/llvm/lld/MachO/Arch/
H A DARM64.cpp610 auto subsecIt = std::prev(llvm::upper_bound( in applyOptimizationHints() local
613 const Subsection &subsec = *subsecIt; in applyOptimizationHints()