Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfo.cpp35 : m_dwarf(dwarf), m_context(context), m_units(), m_cu_aranges_up() {} in DWARFDebugInfo()
38 if (m_cu_aranges_up) in GetCompileUnitAranges()
39 return *m_cu_aranges_up; in GetCompileUnitAranges()
41 m_cu_aranges_up = std::make_unique<DWARFDebugAranges>(); in GetCompileUnitAranges()
44 if (llvm::Error error = m_cu_aranges_up->extract(debug_aranges_data)) in GetCompileUnitAranges()
49 for (size_t n = 0; n < m_cu_aranges_up->GetNumRanges(); n++) { in GetCompileUnitAranges()
50 dw_offset_t offset = m_cu_aranges_up->OffsetAtIndex(n); in GetCompileUnitAranges()
63 cu->BuildAddressRangeTable(m_cu_aranges_up.get()); in GetCompileUnitAranges()
67 m_cu_aranges_up->Sort(minimize); in GetCompileUnitAranges()
68 return *m_cu_aranges_up; in GetCompileUnitAranges()
DDWARFDebugInfo.h69 m_cu_aranges_up; // A quick address to compile unit table variable