Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp186 for (LVSectionAddresses::const_reference Entry : SectionAddresses) in mapVirtualAddress()
241 for (LVSectionAddresses::const_reference Entry : SectionAddresses) in mapVirtualAddress()
328 SectionAddresses.upper_bound(Address); in getSection()
329 if (Iter == SectionAddresses.begin()) in getSection()
335 Iter = SectionAddresses.lower_bound(Address); in getSection()
336 if (Iter != SectionAddresses.begin()) in getSection()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1641 std::vector<std::pair<uint64_t, SectionRef>> SectionAddresses; in disassembleObject() local
1643 SectionAddresses.emplace_back(Sec.getAddress(), Sec); in disassembleObject()
1644 llvm::stable_sort(SectionAddresses, [](const auto &LHS, const auto &RHS) { in disassembleObject()
1666 SectionAddresses, [VA](const std::pair<uint64_t, SectionRef> &O) { in disassembleObject()
1669 if (Sec != SectionAddresses.begin()) { in disassembleObject()
2218 SectionAddresses, in disassembleObject()
2223 while (It != SectionAddresses.begin()) { in disassembleObject()