Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFUnit.cpp762 if (m_func_aranges_up == nullptr) { in GetFunctionAranges()
763 m_func_aranges_up = std::make_unique<DWARFDebugAranges>(); in GetFunctionAranges()
766 die->BuildFunctionAddressRangeTable(this, m_func_aranges_up.get()); in GetFunctionAranges()
772 m_func_aranges_up.get()); in GetFunctionAranges()
776 m_func_aranges_up->Sort(minimize); in GetFunctionAranges()
778 return *m_func_aranges_up; in GetFunctionAranges()
DDWARFUnit.h312 std::unique_ptr<DWARFDebugAranges> m_func_aranges_up; variable