Home
last modified time | relevance | path

Searched refs:m_comp_units (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp134 auto result = m_comp_units.try_emplace(modi, nullptr); in GetOrCreateCompiland()
199 auto iter = m_comp_units.find(modi); in GetCompiland()
200 if (iter == m_comp_units.end()) in GetCompiland()
206 auto iter = m_comp_units.find(modi); in GetCompiland()
207 if (iter == m_comp_units.end()) in GetCompiland()
H A DCompileUnitIndex.h92 llvm::DenseMap<uint16_t, std::unique_ptr<CompilandIndexItem>> m_comp_units; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h236 llvm::DenseMap<uint32_t, lldb::CompUnitSP> m_comp_units;
247 llvm::DenseMap<uint32_t, lldb::CompUnitSP> m_comp_units; global() variable
H A DSymbolFilePDB.cpp1721 auto found_cu = m_comp_units.find(id); in ParseCompileUnitForUID()
1722 if (found_cu != m_comp_units.end()) in ParseCompileUnitForUID()
1752 m_comp_units.insert(std::make_pair(id, cu_sp)); in ParseCompileUnitForUID()