Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.h89 LVSectionAddresses SectionAddresses; variable
92 if (SectionAddresses.find(Section.getAddress()) == SectionAddresses.end()) in addSectionAddress()
93 SectionAddresses.emplace(Section.getAddress(), Section); in addSectionAddress()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp215 for (LVSectionAddresses::const_reference Entry : SectionAddresses) in mapVirtualAddress()
270 for (LVSectionAddresses::const_reference Entry : SectionAddresses) in mapVirtualAddress()
357 SectionAddresses.upper_bound(Address); in getSection()
358 if (Iter == SectionAddresses.begin()) in getSection()
364 Iter = SectionAddresses.lower_bound(Address); in getSection()
365 if (Iter != SectionAddresses.begin()) in getSection()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1778 std::vector<std::pair<uint64_t, SectionRef>> SectionAddresses; in disassembleObject() local
1780 SectionAddresses.emplace_back(Sec.getAddress(), Sec); in disassembleObject()
1781 llvm::stable_sort(SectionAddresses, [](const auto &LHS, const auto &RHS) { in disassembleObject()
1803 SectionAddresses, [VA](const std::pair<uint64_t, SectionRef> &O) { in disassembleObject()
1806 if (Sec != SectionAddresses.begin()) { in disassembleObject()
2356 SectionAddresses, in disassembleObject()
2361 while (It != SectionAddresses.begin()) { in disassembleObject()