Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp861 if (!m_lldb_cu_to_dwarf_unit.empty()) in BuildCuTranslationTable()
871 cu->SetID(m_lldb_cu_to_dwarf_unit.size()); in BuildCuTranslationTable()
872 m_lldb_cu_to_dwarf_unit.push_back(i); in BuildCuTranslationTable()
879 if (m_lldb_cu_to_dwarf_unit.empty()) in GetDWARFUnitIndex()
881 if (cu_idx >= m_lldb_cu_to_dwarf_unit.size()) in GetDWARFUnitIndex()
883 return m_lldb_cu_to_dwarf_unit[cu_idx]; in GetDWARFUnitIndex()
888 return m_lldb_cu_to_dwarf_unit.empty() ? DebugInfo().GetNumUnits() in CalculateNumCompileUnits()
889 : m_lldb_cu_to_dwarf_unit.size(); in CalculateNumCompileUnits()
H A DSymbolFileDWARF.h546 std::vector<uint32_t> m_lldb_cu_to_dwarf_unit; variable