| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | SymbolFileOnDemand.cpp | 187 Type *SymbolFileOnDemand::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 192 Type *resolved_type = m_sym_file_impl->ResolveTypeUID(type_uid); in ResolveTypeUID() 194 LLDB_LOG(log, "Type would be parsed for {0} if hydrated.", type_uid); in ResolveTypeUID() 198 return m_sym_file_impl->ResolveTypeUID(type_uid); in ResolveTypeUID() 203 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument 209 return m_sym_file_impl->GetDynamicArrayInfoForUID(type_uid, exe_ctx); in GetDynamicArrayInfoForUID() 221 CompilerDecl SymbolFileOnDemand::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID() argument 226 CompilerDecl parsed_decl = m_sym_file_impl->GetDeclForUID(type_uid); in GetDeclForUID() 229 parsed_decl.GetName(), type_uid); in GetDeclForUID() 234 return m_sym_file_impl->GetDeclForUID(type_uid); in GetDeclForUID() [all …]
|
| H A D | TypeMap.cpp | 36 user_id_t type_uid = type_sp->GetID(); in InsertUnique() local 39 for (pos = m_types.find(type_uid); in InsertUnique() 40 pos != end && pos->second->GetID() == type_uid; ++pos) { in InsertUnique()
|
| H A D | Function.cpp | 233 lldb::user_id_t type_uid, const Mangled &mangled, Type *type, in Function() argument 235 : UserID(func_uid), m_comp_unit(comp_unit), m_type_uid(type_uid), in Function()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/Symtab/ |
| H A D | SymbolFileSymtab.h | 73 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 75 lldb::user_id_t type_uid,
|
| H A D | SymbolFileSymtab.cpp | 229 Type *SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 235 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 776 Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 778 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in ResolveTypeUID() 781 return oso_dwarf->ResolveTypeUID(type_uid); in ResolveTypeUID() 787 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument 788 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDynamicArrayInfoForUID() 791 return oso_dwarf->GetDynamicArrayInfoForUID(type_uid, exe_ctx); in GetDynamicArrayInfoForUID() 1335 SymbolFileDWARFDebugMap::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument 1336 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDeclContextForUID() 1339 return oso_dwarf->GetDeclContextForUID(type_uid); in GetDeclContextForUID() 1344 SymbolFileDWARFDebugMap::GetDeclContextContainingUID(lldb::user_id_t type_uid) { in GetDeclContextContainingUID() argument [all …]
|
| H A D | SymbolFileDWARFDebugMap.h | 86 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 88 lldb::user_id_t type_uid,
|
| H A D | SymbolFileDWARF.h | 141 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 143 lldb::user_id_t type_uid,
|
| H A D | SymbolFileDWARF.cpp | 1456 CompilerDecl SymbolFileDWARF::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID() argument 1463 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclForUID() 1469 SymbolFileDWARF::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument 1476 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextForUID() 1482 SymbolFileDWARF::GetDeclContextContainingUID(lldb::user_id_t type_uid) { in GetDeclContextContainingUID() argument 1487 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextContainingUID() 1492 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 1497 if (DWARFDIE type_die = GetDIE(type_uid)) in ResolveTypeUID() 1504 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument 1506 if (DWARFDIE type_die = GetDIE(type_uid)) in GetDynamicArrayInfoForUID()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.h | 95 Type *ResolveTypeUID(lldb::user_id_t type_uid) override { return nullptr; } in ResolveTypeUID() argument 97 lldb::user_id_t type_uid, in GetDynamicArrayInfoForUID() argument
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
| H A D | SymbolFileOnDemand.h | 99 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 101 lldb::user_id_t type_uid,
|
| H A D | SymbolFile.h | 195 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0; 209 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 86 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 88 lldb::user_id_t type_uid,
|
| H A D | SymbolFilePDB.cpp | 559 lldb_private::Type *SymbolFilePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 561 auto find_result = m_types.find(type_uid); in ResolveTypeUID() 582 auto pdb_type = m_session_up->getSymbolById(type_uid); in ResolveTypeUID() 588 m_types.insert(std::make_pair(type_uid, result)); in ResolveTypeUID() 594 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.h | 118 Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 120 lldb::user_id_t type_uid,
|
| H A D | SymbolFileNativePDB.cpp | 2078 Type *SymbolFileNativePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 2080 auto iter = m_types.find(type_uid); in ResolveTypeUID() 2089 PdbSymUid uid(type_uid); in ResolveTypeUID() 2103 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
|