| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| 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 | 232 lldb::user_id_t type_uid, const Mangled &mangled, Type *type, in Function() argument 234 : UserID(func_uid), m_comp_unit(comp_unit), m_type_uid(type_uid), in Function()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/ |
| H A D | SymbolFileSymtab.h | 72 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 74 lldb::user_id_t type_uid,
|
| H A D | SymbolFileSymtab.cpp | 233 Type *SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 239 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 732 Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 734 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in ResolveTypeUID() 737 return oso_dwarf->ResolveTypeUID(type_uid); in ResolveTypeUID() 743 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument 744 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDynamicArrayInfoForUID() 747 return oso_dwarf->GetDynamicArrayInfoForUID(type_uid, exe_ctx); in GetDynamicArrayInfoForUID() 1301 SymbolFileDWARFDebugMap::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument 1302 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDeclContextForUID() 1305 return oso_dwarf->GetDeclContextForUID(type_uid); in GetDeclContextForUID() 1311 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDeclContextContainingUID() [all …]
|
| H A D | SymbolFileDWARFDebugMap.h | 84 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 86 lldb::user_id_t type_uid,
|
| H A D | SymbolFileDWARF.h | 138 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 140 lldb::user_id_t type_uid,
|
| H A D | SymbolFileDWARF.cpp | 1332 CompilerDecl SymbolFileDWARF::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID() argument 1339 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclForUID() 1345 SymbolFileDWARF::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument 1352 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextForUID() 1358 SymbolFileDWARF::GetDeclContextContainingUID(lldb::user_id_t type_uid) { in GetDeclContextContainingUID() argument 1363 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextContainingUID() 1368 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 1373 if (DWARFDIE type_die = GetDIE(type_uid)) in ResolveTypeUID() 1381 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument 1383 if (DWARFDIE type_die = GetDIE(type_uid)) in GetDynamicArrayInfoForUID()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.h | 92 Type *ResolveTypeUID(lldb::user_id_t type_uid) override { return nullptr; } in ResolveTypeUID() argument 94 lldb::user_id_t type_uid, in GetDynamicArrayInfoForUID() argument
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | SymbolFile.h | 181 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0; 196 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 85 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 87 lldb::user_id_t type_uid,
|
| H A D | SymbolFilePDB.cpp | 551 lldb_private::Type *SymbolFilePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 553 auto find_result = m_types.find(type_uid); in ResolveTypeUID() 573 auto pdb_type = m_session_up->getSymbolById(type_uid); in ResolveTypeUID() 579 m_types.insert(std::make_pair(type_uid, result)); in ResolveTypeUID() 586 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.h | 114 Type *ResolveTypeUID(lldb::user_id_t type_uid) override; 116 lldb::user_id_t type_uid,
|
| H A D | SymbolFileNativePDB.cpp | 1515 Type *SymbolFileNativePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument 1517 auto iter = m_types.find(type_uid); in ResolveTypeUID() 1526 PdbSymUid uid(type_uid); in ResolveTypeUID() 1538 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
|