Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp550 symbol_file->ResolveTypeUID(type_def->getTypeId()); in CreateLLDBTypeFromPDBType()
628 symbol_file->ResolveTypeUID(arg->getSymIndexId()); in CreateLLDBTypeFromPDBType()
644 symbol_file->ResolveTypeUID(pdb_return_type->getSymIndexId()); in CreateLLDBTypeFromPDBType()
740 Type *pointee_type = symbol_file->ResolveTypeUID( in CreateLLDBTypeFromPDBType()
926 auto type = symbol_file->ResolveTypeUID(data->getTypeId()); in GetDeclForSymbol()
949 Type *type = symbol_file->ResolveTypeUID(sym_id); in GetDeclForSymbol()
987 Type *type = symbol_file->ResolveTypeUID(sym_id); in GetDeclForSymbol()
1013 auto type = symbol_file->ResolveTypeUID(symbol.getSymIndexId()); in GetDeclContextForSymbol()
1210 symbol_file.ResolveTypeUID(nested->getSymIndexId()); in CompleteTypeFromUDT()
1251 auto member_type = symbol_file.ResolveTypeUID(member->getTypeId()); in AddRecordMembers()
[all …]
H A DSymbolFilePDB.cpp304 lldb_private::Type *func_type = ResolveTypeUID(pdb_func.getSymIndexId()); in ParseCompileUnitFunctionForPDBFunc()
489 if (auto type = ResolveTypeUID(symbol->getSymIndexId())) { in ParseTypes()
563 lldb_private::Type *SymbolFilePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFilePDB
1509 if (!ResolveTypeUID(result->getSymIndexId())) in FindTypesByRegex()
1557 if (!ResolveTypeUID(result->getSymIndexId())) in FindTypes()
1611 if (auto *type = ResolveTypeUID(pdb_symbol.getSymIndexId())) { in GetTypesForPDBSymbol()
H A DSymbolFilePDB.h86 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp377 Type *ref_type = ResolveTypeUID(ctf_modifier.type); in CreateModifier()
413 Type *underlying_type = ResolveTypeUID(ctf_typedef.type); in CreateTypedef()
433 Type *element_type = ResolveTypeUID(ctf_array.type); in CreateArray()
482 if (Type *arg_type = ResolveTypeUID(arg)) in CreateFunction()
486 Type *ret_type = ResolveTypeUID(ctf_function.return_type); in CreateFunction()
533 if (!ResolveTypeUID(field.type)) { in CompleteType()
544 Type *field_type = ResolveTypeUID(field.type); in CompleteType()
743 ResolveTypeUID(uid); in ParseTypes()
804 Type *arg_type = ResolveTypeUID(arg_uid); in ParseFunctions()
809 Type *ret_type = ResolveTypeUID(ret_uid); in ParseFunctions()
[all …]
H A DSymbolFileCTF.h89 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp187 Type *SymbolFileOnDemand::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileOnDemand
192 Type *resolved_type = m_sym_file_impl->ResolveTypeUID(type_uid); in ResolveTypeUID()
198 return m_sym_file_impl->ResolveTypeUID(type_uid); in ResolveTypeUID()
H A DType.cpp262 Type *resolved_type = m_symbol_file.ResolveTypeUID(GetID()); in GetType()
442 m_encoding_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetEncodingType()
506 Type *typedef_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetTypedefType()
H A DFunction.cpp552 m_type = sym_file->ResolveTypeUID(m_type_uid); in GetType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.h43 Type *ResolveTypeUID(const DWARFDIE &die) const;
H A DSymbolFileDWARF.h357 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
359 Type *ResolveTypeUID(const DWARFDIE &die, bool assert_not_being_parsed);
361 Type *ResolveTypeUID(const DIERef &die_ref);
H A DDWARFASTParser.cpp122 return dwarf->ResolveTypeUID(form_value.Reference(), true); in GetTypeForDIE()
H A DDWARFDIE.cpp356 lldb_private::Type *DWARFDIE::ResolveTypeUID(const DWARFDIE &die) const { in ResolveTypeUID() function in DWARFDIE
358 return dwarf->ResolveTypeUID(die, true); in ResolveTypeUID()
H A DDWARFASTParserClang.cpp864 dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParseEnum()
971 func_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParseSubroutine()
1351 Type *element_type = dwarf->ResolveTypeUID(type_die, true); in ParseArrayType()
1402 dwarf->ResolveTypeUID(attrs.containing_type.Reference(), true); in ParsePointerToMemberType()
1475 Type *base_class_type = die.ResolveTypeUID(encoding_form.Reference()); in ParseInheritance()
2068 Type *lldb_type = die.ResolveTypeUID(form_value.Reference()); in ParseTemplateDIE()
2789 Type *member_type = die.ResolveTypeUID(attrs.encoding_form.Reference()); in ParseObjCProperty()
2869 Type *var_type = die.ResolveTypeUID(attrs.encoding_form.Reference()); in CreateStaticMemberVariable()
3276 Type *type = die.ResolveTypeUID(param_type_die_form.Reference()); in ParseChildParameters()
3873 die.ResolveTypeUID(variants.discriminant().type_ref.Reference()); in ParseRustVariantPart()
[all …]
H A DSymbolFileDWARFDebugMap.h89 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
H A DSymbolFileDWARFDebugMap.cpp784 Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileDWARFDebugMap
789 return oso_dwarf->ResolveTypeUID(type_uid); in ResolveTypeUID()
H A DSymbolFileDWARF.cpp398 Type *type = ResolveTypeUID(die, assert_not_being_parsed); in GetTypes()
1527 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileDWARF
1547 Type *SymbolFileDWARF::ResolveTypeUID(const DIERef &die_ref) { in ResolveTypeUID() function in SymbolFileDWARF
1551 Type *SymbolFileDWARF::ResolveTypeUID(const DWARFDIE &die, in ResolveTypeUID() function in SymbolFileDWARF
/freebsd-14.2/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() function
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h73 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
H A DSymbolFileSymtab.cpp229 Type *SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileSymtab
/freebsd-14.2/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() function
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h99 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
H A DSymbolFile.h209 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h118 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
H A DSymbolFileNativePDB.cpp2093 Type *SymbolFileNativePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileNativePDB
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp515 Type *type_ptr = symfile->ResolveTypeUID(uid); in GetTypeByID()