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

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

Completed in 111 milliseconds