Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFUnit.cpp858 if (m_func_aranges_up == nullptr) { in GetFunctionAranges()
859 m_func_aranges_up = std::make_unique<DWARFDebugAranges>(); in GetFunctionAranges()
862 die->BuildFunctionAddressRangeTable(this, m_func_aranges_up.get()); in GetFunctionAranges()
868 m_func_aranges_up.get()); in GetFunctionAranges()
872 m_func_aranges_up->Sort(minimize); in GetFunctionAranges()
874 return *m_func_aranges_up; in GetFunctionAranges()
H A DDWARFUnit.h341 std::unique_ptr<DWARFDebugAranges> m_func_aranges_up; variable