Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp186 Type *SymbolFileOnDemand::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
191 Type *resolved_type = m_sym_file_impl->ResolveTypeUID(type_uid); in ResolveTypeUID()
197 return m_sym_file_impl->ResolveTypeUID(type_uid); in ResolveTypeUID()
208 return m_sym_file_impl->GetDynamicArrayInfoForUID(type_uid, exe_ctx); in GetDynamicArrayInfoForUID()
220 CompilerDecl SymbolFileOnDemand::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID() argument
225 CompilerDecl parsed_decl = m_sym_file_impl->GetDeclForUID(type_uid); in GetDeclForUID()
228 parsed_decl.GetName(), type_uid); in GetDeclForUID()
233 return m_sym_file_impl->GetDeclForUID(type_uid); in GetDeclForUID()
237 SymbolFileOnDemand::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument
243 return m_sym_file_impl->GetDeclContextForUID(type_uid); in GetDeclContextForUID()
[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.cpp233 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()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h72 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
74 lldb::user_id_t type_uid,
H A DSymbolFileSymtab.cpp228 Type *SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
234 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp724 Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
726 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in ResolveTypeUID()
729 return oso_dwarf->ResolveTypeUID(type_uid); in ResolveTypeUID()
735 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
736 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDynamicArrayInfoForUID()
739 return oso_dwarf->GetDynamicArrayInfoForUID(type_uid, exe_ctx); in GetDynamicArrayInfoForUID()
1274 SymbolFileDWARFDebugMap::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument
1275 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDeclContextForUID()
1278 return oso_dwarf->GetDeclContextForUID(type_uid); in GetDeclContextForUID()
1284 const uint64_t oso_idx = GetOSOIndexFromUserID(type_uid); in GetDeclContextContainingUID()
[all …]
H A DSymbolFileDWARFDebugMap.h84 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
86 lldb::user_id_t type_uid,
H A DSymbolFileDWARF.h140 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
142 lldb::user_id_t type_uid,
H A DSymbolFileDWARF.cpp1428 CompilerDecl SymbolFileDWARF::GetDeclForUID(lldb::user_id_t type_uid) { in GetDeclForUID() argument
1435 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclForUID()
1441 SymbolFileDWARF::GetDeclContextForUID(lldb::user_id_t type_uid) { in GetDeclContextForUID() argument
1448 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextForUID()
1454 SymbolFileDWARF::GetDeclContextContainingUID(lldb::user_id_t type_uid) { in GetDeclContextContainingUID() argument
1459 if (DWARFDIE die = GetDIE(type_uid)) in GetDeclContextContainingUID()
1464 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
1469 if (DWARFDIE type_die = GetDIE(type_uid)) in ResolveTypeUID()
1477 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
1479 if (DWARFDIE type_die = GetDIE(type_uid)) in GetDynamicArrayInfoForUID()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h98 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
100 lldb::user_id_t type_uid,
H A DSymbolFile.h193 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0;
207 GetDynamicArrayInfoForUID(lldb::user_id_t type_uid,
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h94 Type *ResolveTypeUID(lldb::user_id_t type_uid) override { return nullptr; } in ResolveTypeUID() argument
96 lldb::user_id_t type_uid, in GetDynamicArrayInfoForUID() argument
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h85 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
87 lldb::user_id_t type_uid,
H A DSymbolFilePDB.cpp557 lldb_private::Type *SymbolFilePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
559 auto find_result = m_types.find(type_uid); in ResolveTypeUID()
579 auto pdb_type = m_session_up->getSymbolById(type_uid); in ResolveTypeUID()
585 m_types.insert(std::make_pair(type_uid, result)); in ResolveTypeUID()
592 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h117 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
119 lldb::user_id_t type_uid,
H A DSymbolFileNativePDB.cpp1909 Type *SymbolFileNativePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() argument
1911 auto iter = m_types.find(type_uid); in ResolveTypeUID()
1920 PdbSymUid uid(type_uid); in ResolveTypeUID()
1932 lldb::user_id_t type_uid, const lldb_private::ExecutionContext *exe_ctx) { in GetDynamicArrayInfoForUID() argument
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/Breakpad/
H A Dline-table.test47 # CHECK-NEXT: Function{0x00000000}, demangled = func, type_uid = 0x00000000
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/x86/
H A Ddead-code-filtering.yaml7 # TEST-NEXT: Function{0x00000043}, demangled = _start, type_uid = 0x00000043