Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.h82 LVSectionAddresses SectionAddresses; variable
85 if (SectionAddresses.find(Section.getAddress()) == SectionAddresses.end()) in addSectionAddress()
86 SectionAddresses.emplace(Section.getAddress(), Section); in addSectionAddress()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp186 for (LVSectionAddresses::const_reference Entry : SectionAddresses) in mapVirtualAddress()
273 SectionAddresses.upper_bound(Address); in getSection()
274 if (Iter == SectionAddresses.begin()) in getSection()
280 Iter = SectionAddresses.lower_bound(Address); in getSection()
281 if (Iter != SectionAddresses.begin()) in getSection()
/openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1381 std::vector<std::pair<uint64_t, SectionRef>> SectionAddresses; in disassembleObject() local
1383 SectionAddresses.emplace_back(Sec.getAddress(), Sec); in disassembleObject()
1384 llvm::stable_sort(SectionAddresses, [](const auto &LHS, const auto &RHS) { in disassembleObject()
1406 SectionAddresses, [VA](const std::pair<uint64_t, SectionRef> &O) { in disassembleObject()
1409 if (Sec != SectionAddresses.begin()) { in disassembleObject()
1862 SectionAddresses, in disassembleObject()
1867 while (It != SectionAddresses.begin()) { in disassembleObject()