Home
last modified time | relevance | path

Searched refs:type_uid (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp187 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 DTypeMap.cpp36 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 DFunction.cpp259 lldb::user_id_t type_uid, const Mangled &mangled, Type *type, in Function() argument
261 : UserID(func_uid), m_comp_unit(comp_unit), m_type_uid(type_uid), in Function()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp725 lldb::user_id_t type_uid = 1; in ParseTypes() local
728 ParseType(type_offset, type_uid); in ParseTypes()
733 "Failed to parse type {1} at offset {2}: {0}", type_uid, in ParseTypes()
736 type_uid++; in ParseTypes()
741 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()
986 lldb_private::Type *SymbolFileCTF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
987 auto type_it = m_types.find(type_uid); in ResolveTypeUID()
991 auto ctf_type_it = m_ctf_types.find(type_uid); in ResolveTypeUID()
[all …]
H A DSymbolFileCTF.h89 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
91 lldb::user_id_t type_uid,
93 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,const lldb_private::ExecutionContext * exe_ctx) GetDynamicArrayInfoForUID() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp803 Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
805 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in ResolveTypeUID()
808 return oso_dwarf->ResolveTypeUID(type_uid); in ResolveTypeUID()
814 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
815 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDynamicArrayInfoForUID()
818 return oso_dwarf->GetDynamicArrayInfoForUID(type_uid, exe_ctx); in GetDynamicArrayInfoForUID()
1384 SymbolFileDWARFDebugMap::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument
1385 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDeclContextForUID()
1387 return oso_dwarf->GetDeclContextForUID(type_uid); in GetDeclContextForUID()
1392 SymbolFileDWARFDebugMap::GetDeclContextContainingUID(lldb::user_id_t type_uid) { in GetDeclContextContainingUID() argument
[all …]
H A DSymbolFileDWARFDebugMap.h90 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
92 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
H A DSymbolFileDWARF.h140 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
364 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
H A DSymbolFileDWARF.cpp1426 CompilerDecl SymbolFileDWARF::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID() argument
1433 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclForUID()
1439 SymbolFileDWARF::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument
1446 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextForUID()
1452 SymbolFileDWARF::GetDeclContextContainingUID(lldb::user_id_t type_uid) { in GetDeclContextContainingUID() argument
1457 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextContainingUID()
1463 SymbolFileDWARF::GetCompilerContextForUID(lldb::user_id_t type_uid) { in GetCompilerContextForUID() argument
1468 if (DWARFDIE die = GetDIE(type_uid)) in GetCompilerContextForUID()
1473 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
1478 if (DWARFDIE type_die = GetDIE(type_uid)) in ResolveTypeUID()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/JSON/
H A DSymbolFileJSON.h84 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/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h73 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
75 lldb::user_id_t type_uid,
H A DSymbolFileSymtab.cpp229 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/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h95 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/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h99 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
101 lldb::user_id_t type_uid,
H A DSymbolFile.h209 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0;
231 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h86 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
88 lldb::user_id_t type_uid,
H A DSymbolFilePDB.cpp549 lldb_private::Type *SymbolFilePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
551 auto find_result = m_types.find(type_uid); in ResolveTypeUID()
572 auto pdb_type = m_session_up->getSymbolById(type_uid); in ResolveTypeUID()
578 m_types.insert(std::make_pair(type_uid, result)); in ResolveTypeUID()
584 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h118 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
120 lldb::user_id_t type_uid,
H A DSymbolFileNativePDB.cpp2113 Type *SymbolFileNativePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
2115 auto iter = m_types.find(type_uid); in ResolveTypeUID()
2124 PdbSymUid uid(type_uid); in ResolveTypeUID()
2138 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument