| /llvm-project-15.0.7/lldb/source/DataFormatters/ |
| H A D | VectorType.cpp | 26 TypeSystem *type_system) { in GetCompilerTypeForFormat() argument 27 lldbassert(type_system && "type_system needs to be not NULL"); in GetCompilerTypeForFormat() 32 return type_system->GetBuiltinTypeForEncodingAndBitSize( in GetCompilerTypeForFormat() 33 eEncodingUint, 8 * type_system->GetPointerByteSize()); in GetCompilerTypeForFormat() 36 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeBool); in GetCompilerTypeForFormat() 43 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeChar); in GetCompilerTypeForFormat() 49 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeChar) in GetCompilerTypeForFormat() 53 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeFloat); in GetCompilerTypeForFormat() 58 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeInt); in GetCompilerTypeForFormat() 61 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeFloat); in GetCompilerTypeForFormat() [all …]
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | TypeSystem.cpp | 196 TypeSystem *type_system = pair.second.get(); in Clear() local 197 if (type_system && !visited.count(type_system)) { in Clear() 198 visited.insert(type_system); in Clear() 199 type_system->Finalize(); in Clear() 216 TypeSystem *type_system = pair.second.get(); in ForEach() local 217 if (type_system && !visited.count(type_system)) { in ForEach() 218 visited.insert(type_system); in ForEach() 219 if (!callback(type_system)) in ForEach() 236 auto *type_system = pos->second.get(); in GetTypeSystemForLanguage() local 237 if (type_system) in GetTypeSystemForLanguage() [all …]
|
| H A D | CompilerType.cpp | 312 void CompilerType::SetCompilerType(TypeSystem *type_system, in SetCompilerType() argument 314 m_type_system = type_system; in SetCompilerType()
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | CompilerDecl.h | 37 CompilerDecl(TypeSystem *type_system, void *decl) in CompilerDecl() argument 38 : m_type_system(type_system), m_opaque_decl(decl) {} in CompilerDecl() 60 void SetDecl(TypeSystem *type_system, void *decl) { in SetDecl() argument 61 m_type_system = type_system; in SetDecl()
|
| H A D | CompilerDeclContext.h | 42 CompilerDeclContext(TypeSystem *type_system, void *decl_ctx) in CompilerDeclContext() argument 43 : m_type_system(type_system), m_opaque_decl_ctx(decl_ctx) {} in CompilerDeclContext() 105 void SetDeclContext(TypeSystem *type_system, void *decl_ctx) { in SetDeclContext() argument 106 m_type_system = type_system; in SetDeclContext()
|
| H A D | TaggedASTType.h | 23 TaggedASTType(lldb::opaque_compiler_type_t type, TypeSystem *type_system) in TaggedASTType() argument 24 : CompilerType(type_system, type) {} in TaggedASTType()
|
| H A D | CompilerType.h | 41 CompilerType(TypeSystem *type_system, lldb::opaque_compiler_type_t type) in CompilerType() argument 42 : m_type(type), m_type_system(type_system) { in CompilerType() 177 void SetCompilerType(TypeSystem *type_system,
|
| /llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/ |
| H A D | CoreMedia.cpp | 28 TypeSystem *type_system = type.GetTypeSystem(); in CMTimeSummaryProvider() local 31 type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 64); in CMTimeSummaryProvider() 33 type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 32); in CMTimeSummaryProvider()
|
| H A D | NSIndexPath.cpp | 52 TypeSystem *type_system = m_backend.GetCompilerType().GetTypeSystem(); in Update() local 53 if (!type_system) in Update()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBTarget.cpp | 1781 for (auto *type_system : target_sp->GetScratchTypeSystems()) in FindFirstType() local 1782 if (auto type = type_system->GetBuiltinTypeByName(const_typename)) in FindFirstType() 1794 for (auto *type_system : target_sp->GetScratchTypeSystems()) in GetBasicType() local 1795 if (auto compiler_type = type_system->GetBasicTypeFromAST(type)) in GetBasicType() 1835 for (auto *type_system : target_sp->GetScratchTypeSystems()) in FindTypes() local 1837 type_system->GetBuiltinTypeByName(const_typename)) in FindTypes()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARF.cpp | 1365 auto *type_system = decl_ctx.GetTypeSystem(); in ParseDeclsForContext() local 1366 if (type_system != nullptr) in ParseDeclsForContext() 1367 type_system->GetDWARFParser()->EnsureAllDIEsInDeclContextHaveBeenParsed( in ParseDeclsForContext() 1539 TypeSystem *type_system = compiler_type.GetTypeSystem(); in HasForwardDeclForClangType() local 1542 llvm::dyn_cast_or_null<TypeSystemClang>(type_system); in HasForwardDeclForClangType() 2876 TypeSystem *type_system = nullptr; in FindDefinitionTypeForDWARFDeclContext() local 2884 type_system = &type_system_or_err.get(); in FindDefinitionTypeForDWARFDeclContext() 2892 if (type_system && in FindDefinitionTypeForDWARFDeclContext() 2893 !type_system->SupportsLanguage(GetLanguage(*type_die.GetCU()))) in FindDefinitionTypeForDWARFDeclContext()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | DumpDataExtractor.cpp | 657 auto &type_system = *type_system_or_err; in DumpDataExtractor() local 665 type_system.GetFloatTypeSemantics(item_byte_size); in DumpDataExtractor()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.cpp | 1834 TypeSystem *type_system = function->GetDeclContext().GetTypeSystem(); in AddOneFunction() local 1835 if (llvm::isa<TypeSystemClang>(type_system)) { in AddOneFunction()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | Target.cpp | 2533 [name, &variable_sp](TypeSystem *type_system) -> bool { in GetPersistentVariable() argument 2535 type_system->GetPersistentExpressionState()) { in GetPersistentVariable() 2550 [name, &address](TypeSystem *type_system) -> bool { in GetPersistentSymbol() argument 2552 type_system->GetPersistentExpressionState()) { in GetPersistentSymbol()
|