| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | TypeMap.h | 34 void Insert(const lldb::TypeSP &type); 38 bool InsertUnique(const lldb::TypeSP &type); 42 lldb::TypeSP GetTypeAtIndex(uint32_t idx); 44 typedef std::multimap<lldb::user_id_t, lldb::TypeSP> collection; 45 typedef AdaptedIterable<collection, lldb::TypeSP, map_adapter> TypeIterable; 50 std::function<bool(const lldb::TypeSP &type_sp)> const &callback) const; 52 void ForEach(std::function<bool(lldb::TypeSP &type_sp)> const &callback); 54 bool Remove(const lldb::TypeSP &type_sp);
|
| H A D | TypeList.h | 33 void Insert(const lldb::TypeSP &type); 39 lldb::TypeSP GetTypeAtIndex(uint32_t idx); 41 typedef std::vector<lldb::TypeSP> collection; 42 typedef AdaptedIterable<collection, lldb::TypeSP, vector_adapter> 48 std::function<bool(const lldb::TypeSP &type_sp)> const &callback) const; 50 void ForEach(std::function<bool(lldb::TypeSP &type_sp)> const &callback);
|
| H A D | Type.h | 52 SymbolFileType(SymbolFile &symbol_file, const lldb::TypeSP &type_sp); 63 lldb::TypeSP m_type_sp; 148 lldb::TypeSP GetTypedefType(); 250 TypeImpl(const lldb::TypeSP &type_sp); 254 TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic); 258 void SetType(const lldb::TypeSP &type_sp); 262 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic); 400 TypeAndOrName(lldb::TypeSP &type_sp); 417 void SetTypeSP(lldb::TypeSP type_sp);
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.h | 191 lldb::TypeSP CreateModifierType(PdbTypeSymId type_id, 194 lldb::TypeSP CreatePointerType(PdbTypeSymId type_id, 198 lldb::TypeSP CreateTagType(PdbTypeSymId type_id, 201 lldb::TypeSP CreateTagType(PdbTypeSymId type_id, 204 lldb::TypeSP CreateTagType(PdbTypeSymId type_id, 207 lldb::TypeSP CreateArrayType(PdbTypeSymId type_id, 210 lldb::TypeSP CreateFunctionType(PdbTypeSymId type_id, 213 lldb::TypeSP CreateProcedureType(PdbTypeSymId type_id, 223 lldb::TypeSP GetOrCreateType(PdbTypeSymId type_id); 230 lldb::TypeSP GetOrCreateTypedef(PdbGlobalSymId id); [all …]
|
| H A D | SymbolFileNativePDB.cpp | 424 TypeSP func_type = GetOrCreateType(proc.FunctionType); in CreateFunction() 483 lldb::TypeSP 487 TypeSP pointee = GetOrCreateType(pr.ReferentType); in CreatePointerType() 565 lldb::TypeSP 719 TypeSP result = full_iter->second; in CreateAndCacheType() 756 TypeSP type = CreateAndCacheType(type_id); in GetOrCreateType() 1632 TypeSP type = GetOrCreateType(ti); in FindTypesByName() 1651 TypeSP type = GetOrCreateType(*ti); in ParseTypes() 1710 TypeSP type_sp = GetOrCreateType(var_info.type); in CreateLocalVariable() 1751 TypeSP target_type = GetOrCreateType(udt.Type); in CreateTypedef() [all …]
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | TypeMap.cpp | 27 void TypeMap::Insert(const TypeSP &type_sp) { in Insert() 34 bool TypeMap::InsertUnique(const TypeSP &type_sp) { in InsertUnique() 83 TypeSP TypeMap::GetTypeAtIndex(uint32_t idx) { in GetTypeAtIndex() 91 return TypeSP(); in GetTypeAtIndex() 95 std::function<bool(const lldb::TypeSP &type_sp)> const &callback) const { in ForEach() 103 std::function<bool(lldb::TypeSP &type_sp)> const &callback) { in ForEach() 110 bool TypeMap::Remove(const lldb::TypeSP &type_sp) { in Remove()
|
| H A D | TypeList.cpp | 27 void TypeList::Insert(const TypeSP &type_sp) { in Insert() 66 TypeSP TypeList::GetTypeAtIndex(uint32_t idx) { in GetTypeAtIndex() 75 return TypeSP(); in GetTypeAtIndex() 79 std::function<bool(const lldb::TypeSP &type_sp)> const &callback) const { in ForEach() 87 std::function<bool(lldb::TypeSP &type_sp)> const &callback) { in ForEach()
|
| H A D | Type.cpp | 115 bool operator()(const lldb::TypeSP &type) { in operator ()() 130 const lldb::TypeSP &type_sp) in SymbolFileType() 392 lldb::TypeSP Type::GetTypedefType() { in GetTypedefType() 393 lldb::TypeSP type_sp; in GetTypedefType() 736 TypeAndOrName::TypeAndOrName(TypeSP &in_type_sp) { in TypeAndOrName() 777 void TypeAndOrName::SetTypeSP(lldb::TypeSP type_sp) { in SetTypeSP() 806 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp) in TypeImpl() 816 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic) in TypeImpl() 827 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType() 843 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType()
|
| H A D | SymbolContext.cpp | 568 [curr_block, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 577 type_list.ForEach([&type_map](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 587 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 607 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 626 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList() 642 type_map.ForEach([&type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.h | 44 lldb::TypeSP ParseTypeFromDWARF(const lldb_private::SymbolContext &sc, 147 lldb::TypeSP ParseStructureLikeDIE(const lldb_private::SymbolContext &sc, 176 lldb::TypeSP 178 const DWARFDIE &die, lldb::TypeSP type_sp); 181 lldb::TypeSP ParseTypeFromClangModule(const lldb_private::SymbolContext &sc, 235 lldb::TypeSP ParseTypeModifier(const lldb_private::SymbolContext &sc, 238 lldb::TypeSP ParseEnum(const lldb_private::SymbolContext &sc, 240 lldb::TypeSP ParseSubroutine(const DWARFDIE &die, 243 lldb::TypeSP ParseArrayType(const DWARFDIE &die, 245 lldb::TypeSP ParsePointerToMemberType(const DWARFDIE &die,
|
| H A D | SymbolFileDWARFDwo.h | 56 lldb::TypeSP FindDefinitionTypeForDWARFDeclContext( 59 lldb::TypeSP FindCompleteObjCDefinitionTypeForDIE(
|
| H A D | UniqueDWARFASTType.h | 24 UniqueDWARFASTType(lldb::TypeSP &type_sp, const DWARFDIE &die, in UniqueDWARFASTType() 45 lldb::TypeSP m_type_sp;
|
| H A D | SymbolFileDWARFDwo.cpp | 107 lldb::TypeSP SymbolFileDWARFDwo::FindDefinitionTypeForDWARFDeclContext( in FindDefinitionTypeForDWARFDeclContext() 113 lldb::TypeSP SymbolFileDWARFDwo::FindCompleteObjCDefinitionTypeForDIE( in FindCompleteObjCDefinitionTypeForDIE()
|
| H A D | DWARFASTParserClang.cpp | 137 return TypeSP(); in ParseTypeFromClangModule() 171 return TypeSP(); in ParseTypeFromClangModule() 177 return TypeSP(); in ParseTypeFromClangModule() 184 return TypeSP(); in ParseTypeFromClangModule() 461 if (TypeSP type_sp = in ParseTypeFromDWARF() 477 TypeSP type_sp; in ParseTypeFromDWARF() 534 lldb::TypeSP 544 TypeSP type_sp; in ParseTypeModifier() 763 TypeSP type_sp; in ParseEnum() 1503 TypeSP [all …]
|
| H A D | SymbolFileDWARF.h | 377 lldb::TypeSP ParseType(const lldb_private::SymbolContext &sc, 428 virtual lldb::TypeSP 431 virtual lldb::TypeSP 439 lldb::TypeSP GetTypeForDIE(const DWARFDIE &die,
|
| H A D | DWARFASTParser.h | 30 virtual lldb::TypeSP ParseTypeFromDWARF(const lldb_private::SymbolContext &sc,
|
| H A D | SymbolFileDWARFDebugMap.cpp | 1080 TypeSP SymbolFileDWARFDebugMap::FindDefinitionTypeForDWARFDeclContext( in FindDefinitionTypeForDWARFDeclContext() 1082 TypeSP type_sp; in FindDefinitionTypeForDWARFDeclContext() 1106 TypeSP SymbolFileDWARFDebugMap::FindCompleteObjCDefinitionTypeForDIE( in FindCompleteObjCDefinitionTypeForDIE() 1116 TypeSP type_sp; in FindCompleteObjCDefinitionTypeForDIE() 1140 TypeSP type_sp(oso_dwarf->FindCompleteObjCDefinitionTypeForDIE( in FindCompleteObjCDefinitionTypeForDIE() 1157 TypeSP type_sp; in FindCompleteObjCDefinitionTypeForDIE() 1167 return TypeSP(); in FindCompleteObjCDefinitionTypeForDIE()
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | ValueObjectMemory.h | 36 lldb::TypeSP &type_sp); 63 lldb::TypeSP m_type_sp; 69 const Address &address, lldb::TypeSP &type_sp);
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/ |
| H A D | ObjCLanguageRuntime.cpp | 108 lldb::TypeSP 115 TypeSP complete_type_sp(complete_class_iter->second.lock()); in LookupInCompleteClassCache() 124 return TypeSP(); in LookupInCompleteClassCache() 140 return TypeSP(); in LookupInCompleteClassCache() 151 TypeSP type_sp(types.GetTypeAtIndex(i)); in LookupInCompleteClassCache() 163 return TypeSP(); in LookupInCompleteClassCache() 435 TypeSP complete_objc_class_type_sp = LookupInCompleteClassCache(class_name); in GetRuntimeType()
|
| H A D | ObjCLanguageRuntime.h | 124 lldb::TypeSP GetType() { return m_type_wp.lock(); } in GetType() 126 void SetType(const lldb::TypeSP &type_sp) { m_type_wp = type_sp; } in SetType() 262 lldb::TypeSP type_sp); 267 lldb::TypeSP LookupInCompleteClassCache(ConstString &name);
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ValueObjectMemory.cpp | 34 lldb::TypeSP &type_sp) { in Create() 54 lldb::TypeSP &type_sp) in ValueObjectMemory()
|
| /llvm-project-15.0.7/lldb/unittests/SymbolFile/PDB/ |
| H A D | SymbolFilePDBTests.cpp | 370 lldb::TypeSP udt_type = results.GetTypeAtIndex(0); in TEST_F() 422 lldb::TypeSP udt_type = more_results.GetTypeAtIndex(0); in TEST_F() 466 lldb::TypeSP udt_type = results.GetTypeAtIndex(0); in TEST_F() 491 lldb::TypeSP enum_type = results.GetTypeAtIndex(0); in TEST_F() 540 lldb::TypeSP typedef_type = results.GetTypeAtIndex(0); in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 247 llvm::DenseMap<uint32_t, lldb::TypeSP> m_types; 253 std::vector<lldb::TypeSP> m_builtin_types;
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Symtab/ |
| H A D | SymbolFileSymtab.h | 95 typedef std::map<lldb_private::ConstString, lldb::TypeSP> TypeMap;
|
| /llvm-project-15.0.7/lldb/include/lldb/DataFormatters/ |
| H A D | FormatClasses.h | 117 TypeNameSpecifierImpl(lldb::TypeSP type) : m_is_regex(false) { in TypeNameSpecifierImpl()
|