Home
last modified time | relevance | path

Searched refs:TypeSP (Results 1 – 25 of 46) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeMap.h34 void Insert(const lldb::TypeSP &type);
38 bool InsertUnique(const lldb::TypeSP &type);
42 lldb::TypeSP GetTypeAtIndex(uint32_t idx);
44 lldb::TypeSP FirstType() const;
46 typedef std::multimap<lldb::user_id_t, lldb::TypeSP> collection;
47 typedef AdaptedIterable<collection, lldb::TypeSP, map_adapter> TypeIterable;
52 std::function<bool(const lldb::TypeSP &type_sp)> const &callback) const;
54 void ForEach(std::function<bool(lldb::TypeSP &type_sp)> const &callback);
56 bool Remove(const lldb::TypeSP &type_sp);
H A DTypeList.h33 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 DType.h315 bool InsertUnique(const lldb::TypeSP &type_sp);
345 lldb::TypeSP GetFirstType() const { return m_type_map.FirstType(); } in GetFirstType()
363 SymbolFileType(SymbolFile &symbol_file, const lldb::TypeSP &type_sp);
374 lldb::TypeSP m_type_sp;
454 lldb::TypeSP GetTypedefType();
563 TypeImpl(const lldb::TypeSP &type_sp);
567 TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
571 void SetType(const lldb::TypeSP &type_sp);
575 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
715 TypeAndOrName(lldb::TypeSP &type_sp);
[all …]
H A DSymbolFile.h456 virtual lldb::TypeSP
465 virtual lldb::TypeSP CopyType(const lldb::TypeSP &other_type) = 0;
561 lldb::TypeSP MakeType(lldb::user_id_t uid, ConstString name,
570 lldb::TypeSP type_sp (new Type(
578 lldb::TypeSP CopyType(const lldb::TypeSP &other_type) override { in CopyType()
581 return lldb::TypeSP(); in CopyType()
582 lldb::TypeSP type_sp(new Type(*other_type)); in CopyType()
H A DSymbolFileOnDemand.h227 lldb::TypeSP MakeType(lldb::user_id_t uid, ConstString name,
241 lldb::TypeSP CopyType(const lldb::TypeSP &other_type) override { in CopyType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h194 lldb::TypeSP CreateModifierType(PdbTypeSymId type_id,
197 lldb::TypeSP CreatePointerType(PdbTypeSymId type_id,
201 lldb::TypeSP CreateTagType(PdbTypeSymId type_id,
204 lldb::TypeSP CreateTagType(PdbTypeSymId type_id,
207 lldb::TypeSP CreateTagType(PdbTypeSymId type_id,
210 lldb::TypeSP CreateArrayType(PdbTypeSymId type_id,
213 lldb::TypeSP CreateFunctionType(PdbTypeSymId type_id,
216 lldb::TypeSP CreateProcedureType(PdbTypeSymId type_id,
226 lldb::TypeSP GetOrCreateType(PdbTypeSymId type_id);
233 lldb::TypeSP GetOrCreateTypedef(PdbGlobalSymId id);
[all …]
H A DSymbolFileNativePDB.cpp564 lldb::TypeSP
643 lldb::TypeSP
689 TypeSP array_sp = in CreateArrayType()
792 TypeSP result = full_iter->second; in CreateAndCacheType()
836 TypeSP type = CreateAndCacheType(type_id); in GetOrCreateType()
1733 TypeSP type_sp = GetOrCreateType(type_idx); in FindTypes()
1757 TypeSP type = GetOrCreateType(ti); in FindTypesByName()
1776 TypeSP type = GetOrCreateType(*ti); in ParseTypes()
1841 TypeSP type_sp = GetOrCreateType(var_info.type); in CreateLocalVariable()
1890 TypeSP target_type = GetOrCreateType(udt.Type); in CreateTypedef()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DTypeMap.cpp27 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()
94 lldb::TypeSP TypeMap::FirstType() const { in FirstType()
96 return TypeSP(); in FirstType()
101 std::function<bool(const lldb::TypeSP &type_sp)> const &callback) const { in ForEach()
109 std::function<bool(lldb::TypeSP &type_sp)> const &callback) { in ForEach()
116 bool TypeMap::Remove(const lldb::TypeSP &type_sp) { in Remove()
H A DTypeList.cpp27 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 DType.cpp180 bool TypeResults::InsertUnique(const lldb::TypeSP &type_sp) { in InsertUnique()
241 bool operator()(const lldb::TypeSP &type) { in operator ()()
256 const lldb::TypeSP &type_sp) in SymbolFileType()
503 lldb::TypeSP Type::GetTypedefType() { in GetTypedefType()
504 lldb::TypeSP type_sp; in GetTypedefType()
839 TypeAndOrName::TypeAndOrName(TypeSP &in_type_sp) { in TypeAndOrName()
884 void TypeAndOrName::SetTypeSP(lldb::TypeSP type_sp) { in SetTypeSP()
913 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp) in TypeImpl()
934 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType()
950 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType()
[all …]
H A DSymbolContext.cpp574 [curr_block, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList()
583 type_list.ForEach([&type_map](const lldb::TypeSP &type_sp) -> bool { in SortTypeList()
593 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList()
613 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList()
632 type_map.ForEach([this, &type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList()
648 type_map.ForEach([&type_list](const lldb::TypeSP &type_sp) -> bool { in SortTypeList()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.h216 llvm::Expected<lldb::TypeSP> CreateType(CTFType *ctf_type);
217 llvm::Expected<lldb::TypeSP> CreateInteger(const CTFInteger &ctf_integer);
218 llvm::Expected<lldb::TypeSP> CreateModifier(const CTFModifier &ctf_modifier);
219 llvm::Expected<lldb::TypeSP> CreateTypedef(const CTFTypedef &ctf_typedef);
220 llvm::Expected<lldb::TypeSP> CreateArray(const CTFArray &ctf_array);
221 llvm::Expected<lldb::TypeSP> CreateEnum(const CTFEnum &ctf_enum);
222 llvm::Expected<lldb::TypeSP> CreateFunction(const CTFFunction &ctf_function);
223 llvm::Expected<lldb::TypeSP> CreateRecord(const CTFRecord &ctf_record);
224 llvm::Expected<lldb::TypeSP> CreateForward(const CTFForward &ctf_forward);
248 llvm::DenseMap<lldb::user_id_t, lldb::TypeSP> m_types;
H A DSymbolFileCTF.cpp332 llvm::Expected<TypeSP>
375 llvm::Expected<lldb::TypeSP>
411 llvm::Expected<lldb::TypeSP>
431 llvm::Expected<lldb::TypeSP>
458 llvm::Expected<lldb::TypeSP>
478 llvm::Expected<lldb::TypeSP>
503 llvm::Expected<lldb::TypeSP>
561 llvm::Expected<lldb::TypeSP>
819 TypeSP type_sp = in ParseFunctions()
1005 TypeSP type_sp = *type_or_error; in ResolveTypeUID()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.h50 lldb::TypeSP
198 lldb::TypeSP
234 lldb::TypeSP UpdateSymbolContextScopeForType(
236 const lldb_private::plugin::dwarf::DWARFDIE &die, lldb::TypeSP type_sp);
239 lldb::TypeSP
364 lldb::TypeSP
368 lldb::TypeSP ParseEnum(const lldb_private::SymbolContext &sc,
371 lldb::TypeSP ParseSubroutine(const lldb_private::plugin::dwarf::DWARFDIE &die,
373 lldb::TypeSP ParseArrayType(const lldb_private::plugin::dwarf::DWARFDIE &die,
375 lldb::TypeSP
H A DSymbolFileDWARFDwo.h70 lldb::TypeSP
73 lldb::TypeSP
H A DUniqueDWARFASTType.h26 UniqueDWARFASTType(lldb::TypeSP &type_sp, const DWARFDIE &die, in UniqueDWARFASTType()
47 lldb::TypeSP m_type_sp;
H A DSymbolFileDWARFDwo.cpp122 lldb::TypeSP
127 lldb::TypeSP SymbolFileDWARFDwo::FindCompleteObjCDefinitionTypeForDIE( in FindCompleteObjCDefinitionTypeForDIE()
H A DDWARFASTParserClang.cpp162 return TypeSP(); in ParseTypeFromClangModule()
195 return TypeSP(); in ParseTypeFromClangModule()
204 return TypeSP(); in ParseTypeFromClangModule()
487 TypeSP type_sp; in ParseTypeFromDWARF()
572 lldb::TypeSP
582 TypeSP type_sp; in ParseTypeModifier()
813 TypeSP type_sp; in ParseEnum()
943 TypeSP
1342 TypeSP
1607 TypeSP
[all …]
H A DSymbolFileDWARF.h351 virtual lldb::TypeSP
354 virtual lldb::TypeSP FindCompleteObjCDefinitionTypeForDIE(
395 lldb::TypeSP ParseType(const SymbolContext &sc, const DWARFDIE &die,
441 lldb::TypeSP GetTypeForDIE(const DWARFDIE &die,
H A DDWARFASTParser.h37 virtual lldb::TypeSP ParseTypeFromDWARF(const SymbolContext &sc,
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectMemory.h37 lldb::TypeSP &type_sp);
64 lldb::TypeSP m_type_sp;
70 const Address &address, lldb::TypeSP &type_sp);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.cpp108 lldb::TypeSP
115 TypeSP complete_type_sp(complete_class_iter->second.lock()); in LookupInCompleteClassCache()
124 return TypeSP(); in LookupInCompleteClassCache()
140 return TypeSP(); in LookupInCompleteClassCache()
145 for (const TypeSP &type_sp : results.GetTypeMap().Types()) { in LookupInCompleteClassCache()
156 return TypeSP(); in LookupInCompleteClassCache()
444 TypeSP complete_objc_class_type_sp = LookupInCompleteClassCache(class_name); in GetRuntimeType()
H A DObjCLanguageRuntime.h132 lldb::TypeSP GetType() { return m_type_wp.lock(); } in GetType()
134 void SetType(const lldb::TypeSP &type_sp) { m_type_wp = type_sp; } in SetType()
270 lldb::TypeSP type_sp);
275 lldb::TypeSP LookupInCompleteClassCache(ConstString &name);
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObjectMemory.cpp35 lldb::TypeSP &type_sp) { in Create()
55 lldb::TypeSP &type_sp) in ValueObjectMemory()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h237 llvm::DenseMap<uint32_t, lldb::TypeSP> m_types;
243 std::vector<lldb::TypeSP> m_builtin_types;

12