Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp542 symbol_file->ResolveTypeUID(type_def->getTypeId()); in CreateLLDBTypeFromPDBType()
622 symbol_file->ResolveTypeUID(arg->getSymIndexId()); in CreateLLDBTypeFromPDBType()
638 symbol_file->ResolveTypeUID(pdb_return_type->getSymIndexId()); in CreateLLDBTypeFromPDBType()
735 Type *pointee_type = symbol_file->ResolveTypeUID( in CreateLLDBTypeFromPDBType()
920 auto type = symbol_file->ResolveTypeUID(data->getTypeId()); in GetDeclForSymbol()
943 Type *type = symbol_file->ResolveTypeUID(sym_id); in GetDeclForSymbol()
981 Type *type = symbol_file->ResolveTypeUID(sym_id); in GetDeclForSymbol()
1006 auto type = symbol_file->ResolveTypeUID(symbol.getSymIndexId()); in GetDeclContextForSymbol()
1201 symbol_file.ResolveTypeUID(nested->getSymIndexId()); in CompleteTypeFromUDT()
1242 auto member_type = symbol_file.ResolveTypeUID(member->getTypeId()); in AddRecordMembers()
[all …]
H A DSymbolFilePDB.cpp293 lldb_private::Type *func_type = ResolveTypeUID(pdb_func.getSymIndexId()); in ParseCompileUnitFunctionForPDBFunc()
477 if (auto type = ResolveTypeUID(symbol->getSymIndexId())) { in ParseTypes()
551 lldb_private::Type *SymbolFilePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFilePDB
1504 if (!ResolveTypeUID(result->getSymIndexId())) in FindTypesByRegex()
1550 if (!ResolveTypeUID(result->getSymIndexId())) in FindTypesByName()
1607 if (auto *type = ResolveTypeUID(pdb_symbol.getSymIndexId())) { in GetTypesForPDBSymbol()
H A DSymbolFilePDB.h85 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.cpp355 lldb_private::Type *DWARFDIE::ResolveTypeUID(const DWARFDIE &die) const { in ResolveTypeUID() function in DWARFDIE
357 return dwarf->ResolveTypeUID(die, true); in ResolveTypeUID()
H A DDWARFDIE.h43 lldb_private::Type *ResolveTypeUID(const DWARFDIE &die) const;
H A DSymbolFileDWARF.h138 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
371 lldb_private::Type *ResolveTypeUID(const DWARFDIE &die,
374 lldb_private::Type *ResolveTypeUID(const DIERef &die_ref);
H A DDWARFASTParserClang.cpp831 dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParseEnum()
907 func_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParseSubroutine()
1307 Type *element_type = dwarf->ResolveTypeUID(type_die, true); in ParseArrayType()
1355 Type *pointee_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParsePointerToMemberType()
1357 dwarf->ResolveTypeUID(attrs.containing_type.Reference(), true); in ParsePointerToMemberType()
1868 Type *lldb_type = die.ResolveTypeUID(form_value.Reference()); in ParseTemplateDIE()
2502 Type *var_type = die.ResolveTypeUID(encoding_form.Reference()); in ParseSingleMember()
2515 Type *member_type = die.ResolveTypeUID(encoding_form.Reference()); in ParseSingleMember()
2950 die.ResolveTypeUID(param_type_die_form.Reference()); in ParseChildParameters()
2967 Type *type = die.ResolveTypeUID(param_type_die_form.Reference()); in ParseChildParameters()
[all …]
H A DSymbolFileDWARFDebugMap.h84 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
H A DSymbolFileDWARFDebugMap.cpp732 Type *SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileDWARFDebugMap
737 return oso_dwarf->ResolveTypeUID(type_uid); in ResolveTypeUID()
H A DSymbolFileDWARF.cpp360 Type *type = ResolveTypeUID(die, assert_not_being_parsed); in GetTypes()
1368 Type *SymbolFileDWARF::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileDWARF
1389 Type *SymbolFileDWARF::ResolveTypeUID(const DIERef &die_ref) { in ResolveTypeUID() function in SymbolFileDWARF
1393 Type *SymbolFileDWARF::ResolveTypeUID(const DWARFDIE &die, in ResolveTypeUID() function in SymbolFileDWARF
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h72 lldb_private::Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
H A DSymbolFileSymtab.cpp233 Type *SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileSymtab
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp135 Type *resolved_type = m_symbol_file.ResolveTypeUID(GetID()); in GetType()
335 m_encoding_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetEncodingType()
394 Type *typedef_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetTypedefType()
H A DFunction.cpp515 m_type = sym_file->ResolveTypeUID(m_type_uid); in GetType()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h92 Type *ResolveTypeUID(lldb::user_id_t type_uid) override { return nullptr; } in ResolveTypeUID() function
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFile.h181 virtual Type *ResolveTypeUID(lldb::user_id_t type_uid) = 0;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h114 Type *ResolveTypeUID(lldb::user_id_t type_uid) override;
H A DSymbolFileNativePDB.cpp1515 Type *SymbolFileNativePDB::ResolveTypeUID(lldb::user_id_t type_uid) { in ResolveTypeUID() function in SymbolFileNativePDB
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp532 Type *type_ptr = symfile->ResolveTypeUID(uid); in GetTypeByID()