Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFUnit.cpp982 if (m_func_aranges_up == nullptr) { in GetFunctionAranges()
983 m_func_aranges_up = std::make_unique<DWARFDebugAranges>(); in GetFunctionAranges()
986 die->BuildFunctionAddressRangeTable(this, m_func_aranges_up.get()); in GetFunctionAranges()
992 m_func_aranges_up.get()); in GetFunctionAranges()
996 m_func_aranges_up->Sort(minimize); in GetFunctionAranges()
998 return *m_func_aranges_up; in GetFunctionAranges()
H A DDWARFUnit.h347 std::unique_ptr<DWARFDebugAranges> m_func_aranges_up; variable