| /freebsd-14.2/contrib/llvm-project/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() 198 return m_sym_file_impl->ResolveTypeUID(type_uid); in ResolveTypeUID() 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() 238 SymbolFileOnDemand::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument 244 return m_sym_file_impl->GetDeclContextForUID(type_uid); in GetDeclContextForUID() [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 | 258 lldb::user_id_t type_uid, const Mangled &mangled, Type *type, in Function() argument 260 : UserID(func_uid), m_comp_unit(comp_unit), m_type_uid(type_uid), in Function()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 784 Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 786 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in ResolveTypeUID() 789 return oso_dwarf->ResolveTypeUID(type_uid); in ResolveTypeUID() 796 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDynamicArrayInfoForUID() 799 return oso_dwarf->GetDynamicArrayInfoForUID(type_uid, exe_ctx); in GetDynamicArrayInfoForUID() 1368 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDeclContextForUID() 1370 return oso_dwarf->GetDeclContextForUID(type_uid); in GetDeclContextForUID() 1376 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDeclContextContainingUID() 1378 return oso_dwarf->GetDeclContextContainingUID(type_uid); in GetDeclContextContainingUID() 1384 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetCompilerContextForUID() [all …]
|
| H A D | SymbolFileDWARFDebugMap.h | 89 Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 91 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
|
| H A D | SymbolFileDWARF.h | 141 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid, 357 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
|
| H A D | SymbolFileDWARF.cpp | 1480 CompilerDecl SymbolFileDWARF::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID() argument 1487 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclForUID() 1493 SymbolFileDWARF::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument 1500 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextForUID() 1506 SymbolFileDWARF::GetDeclContextContainingUID(lldb::user_id_t type_uid) { in GetDeclContextContainingUID() argument 1511 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextContainingUID() 1517 SymbolFileDWARF::GetCompilerContextForUID(lldb::user_id_t type_uid) { in GetCompilerContextForUID() argument 1522 if (DWARFDIE die = GetDIE(type_uid)) in GetCompilerContextForUID() 1527 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 1532 if (DWARFDIE type_die = GetDIE(type_uid)) in ResolveTypeUID() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | SymbolFileCTF.cpp | 726 lldb::user_id_t type_uid = 1; in ParseTypes() local 729 ParseType(type_offset, type_uid); in ParseTypes() 734 "Failed to parse type {1} at offset {2}: {0}", type_uid, in ParseTypes() 737 type_uid++; in ParseTypes() 742 for (lldb::user_id_t uid = 1; uid < type_uid; ++uid) in ParseTypes() 888 const uint32_t type_uid = m_data.GetU32(&object_offset); in ParseObjects() local 896 auto type_sp = std::make_shared<SymbolFileType>(*this, type_uid); in ParseObjects() 985 auto type_it = m_types.find(type_uid); in ResolveTypeUID() 989 auto ctf_type_it = m_ctf_types.find(type_uid); in ResolveTypeUID() 1014 m_types[type_uid] = type_sp; in ResolveTypeUID() [all …]
|
| H A D | SymbolFileCTF.h | 89 Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 91 lldb::user_id_t type_uid, in GetDynamicArrayInfoForUID() argument
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/JSON/ |
| H A D | SymbolFileJSON.h | 84 Type *ResolveTypeUID(lldb::user_id_t type_uid) override { return nullptr; } in ResolveTypeUID() argument 86 lldb::user_id_t type_uid, in GetDynamicArrayInfoForUID() argument
|
| /freebsd-14.2/contrib/llvm-project/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
|
| /freebsd-14.2/contrib/llvm-project/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
|
| /freebsd-14.2/contrib/llvm-project/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 | 209 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0; 223 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
|
| /freebsd-14.2/contrib/llvm-project/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 | 563 lldb_private::Type *SymbolFilePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 565 auto find_result = m_types.find(type_uid); in ResolveTypeUID() 586 auto pdb_type = m_session_up->getSymbolById(type_uid); in ResolveTypeUID() 592 m_types.insert(std::make_pair(type_uid, result)); in ResolveTypeUID() 598 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
|
| /freebsd-14.2/contrib/llvm-project/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 | 2093 Type *SymbolFileNativePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 2095 auto iter = m_types.find(type_uid); in ResolveTypeUID() 2104 PdbSymUid uid(type_uid); in ResolveTypeUID() 2118 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
|