| /openbsd-src/gnu/llvm/lldb/source/DataFormatters/ |
| H A D | VectorType.cpp | 27 TypeSystemSP type_system) { in GetCompilerTypeForFormat() argument 28 lldbassert(type_system && "type_system needs to be not NULL"); in GetCompilerTypeForFormat() 29 if (!type_system) in GetCompilerTypeForFormat() 35 return type_system->GetBuiltinTypeForEncodingAndBitSize( in GetCompilerTypeForFormat() 36 eEncodingUint, 8 * type_system->GetPointerByteSize()); in GetCompilerTypeForFormat() 39 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeBool); in GetCompilerTypeForFormat() 46 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeChar); in GetCompilerTypeForFormat() 49 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeFloatComplex); in GetCompilerTypeForFormat() 52 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeChar) in GetCompilerTypeForFormat() 56 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeFloat); in GetCompilerTypeForFormat() [all …]
|
| /openbsd-src/gnu/llvm/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 | CompilerType.h | 44 CompilerType(lldb::TypeSystemWP type_system, in CompilerType() argument 46 : m_type_system(type_system), m_type(type) { in CompilerType() 91 CompilerType(TypeSystemSPWrapper type_system, lldb::opaque_compiler_type_t type) in CompilerType() argument 92 : m_type_system(type_system.GetSharedPointer()), m_type(type) { in CompilerType() 236 void SetCompilerType(lldb::TypeSystemWP type_system, 238 void SetCompilerType(TypeSystemSPWrapper type_system,
|
| H A D | TaggedASTType.h | 24 lldb::TypeSystemWP type_system) in TaggedASTType() argument 25 : CompilerType(type_system, type) {} in TaggedASTType()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/ |
| H A D | CoreMedia.cpp | 28 auto type_system = type.GetTypeSystem(); in CMTimeSummaryProvider() local 29 if (!type_system) in CMTimeSummaryProvider() 33 type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 64); in CMTimeSummaryProvider() 35 type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 32); in CMTimeSummaryProvider()
|
| H A D | NSIndexPath.cpp | 52 auto type_system = m_backend.GetCompilerType().GetTypeSystem(); in Update() local 53 if (!type_system) in Update()
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | TypeSystem.cpp | 206 if (lldb::TypeSystemSP type_system = pair.second) in Clear() local 207 type_system->Finalize(); in Clear() 224 TypeSystem *type_system = pair.second.get(); in ForEach() local 225 if (!type_system || visited.count(type_system)) in ForEach() 227 visited.insert(type_system); in ForEach() 228 assert(type_system); in ForEach()
|
| H A D | CompilerType.cpp | 360 void CompilerType::SetCompilerType(lldb::TypeSystemWP type_system, in SetCompilerType() argument 362 m_type_system = type_system; in SetCompilerType() 366 void CompilerType::SetCompilerType(CompilerType::TypeSystemSPWrapper type_system, in SetCompilerType() argument 368 m_type_system = type_system.GetSharedPointer(); in SetCompilerType()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARF.cpp | 1393 auto *type_system = decl_ctx.GetTypeSystem(); in ParseDeclsForContext() local 1394 if (type_system != nullptr) in ParseDeclsForContext() 1395 type_system->GetDWARFParser()->EnsureAllDIEsInDeclContextHaveBeenParsed( in ParseDeclsForContext() 1567 auto type_system = compiler_type.GetTypeSystem(); in HasForwardDeclForClangType() local 1568 auto clang_type_system = type_system.dyn_cast_or_null<TypeSystemClang>(); in HasForwardDeclForClangType() 2984 TypeSystemSP type_system = nullptr; in FindDefinitionTypeForDWARFDeclContext() local 2992 type_system = *type_system_or_err; in FindDefinitionTypeForDWARFDeclContext() 2999 if (type_system) { in FindDefinitionTypeForDWARFDeclContext() 3000 DWARFASTParser *dwarf_ast = type_system->GetDWARFParser(); in FindDefinitionTypeForDWARFDeclContext() 3009 if (type_system && in FindDefinitionTypeForDWARFDeclContext() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.cpp | 1835 TypeSystem *type_system = function->GetDeclContext().GetTypeSystem(); in AddOneFunction() local 1836 if (llvm::isa<TypeSystemClang>(type_system)) { in AddOneFunction()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Target.cpp | 2622 [name, &variable_sp](TypeSystemSP type_system) -> bool { in GetPersistentVariable() argument 2623 auto ts = type_system.get(); in GetPersistentVariable() 2642 [name, &address](lldb::TypeSystemSP type_system) -> bool { in GetPersistentSymbol() argument 2643 auto ts = type_system.get(); in GetPersistentSymbol()
|