/external/llvm-project/lldb/source/DataFormatters/ |
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() 46 return type_system->GetBasicTypeFromAST(lldb::eBasicTypeFloatComplex); 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() [all …]
|
/external/llvm-project/lldb/source/Symbol/ |
D | TypeSystem.cpp | 195 TypeSystem *type_system = pair.second.get(); in Clear() local 196 if (type_system && !visited.count(type_system)) { in Clear() 197 visited.insert(type_system); in Clear() 198 type_system->Finalize(); in Clear() 215 TypeSystem *type_system = pair.second.get(); in ForEach() local 216 if (type_system && !visited.count(type_system)) { in ForEach() 217 visited.insert(type_system); in ForEach() 218 if (!callback(type_system)) in ForEach() 237 auto *type_system = pos->second.get(); in GetTypeSystemForLanguage() local 238 if (type_system) { in GetTypeSystemForLanguage() [all …]
|
D | CompilerType.cpp | 306 void CompilerType::SetCompilerType(TypeSystem *type_system, in SetCompilerType() argument 308 m_type_system = type_system; in SetCompilerType()
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
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()
|
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()
|
D | TaggedASTType.h | 23 TaggedASTType(lldb::opaque_compiler_type_t type, TypeSystem *type_system) in TaggedASTType() argument 24 : CompilerType(type_system, type) {} in TaggedASTType()
|
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() 172 void SetCompilerType(TypeSystem *type_system,
|
/external/llvm-project/lldb/source/Plugins/Language/ObjC/ |
D | NSIndexPath.cpp | 52 TypeSystem *type_system = m_backend.GetCompilerType().GetTypeSystem(); in Update() local 53 if (!type_system) in Update()
|
/external/llvm-project/lldb/source/Core/ |
D | DumpDataExtractor.cpp | 530 auto &type_system = *type_system_or_err; in DumpDataExtractor() local 538 type_system.GetFloatTypeSemantics(item_byte_size); in DumpDataExtractor()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARF.cpp | 1260 auto *type_system = decl_ctx.GetTypeSystem(); in ParseDeclsForContext() local 1261 if (type_system != nullptr) in ParseDeclsForContext() 1262 type_system->GetDWARFParser()->EnsureAllDIEsInDeclContextHaveBeenParsed( in ParseDeclsForContext() 1434 TypeSystem *type_system = compiler_type.GetTypeSystem(); in HasForwardDeclForClangType() local 1437 llvm::dyn_cast_or_null<TypeSystemClang>(type_system); in HasForwardDeclForClangType() 2839 TypeSystem *type_system = nullptr; in FindDefinitionTypeForDWARFDeclContext() local 2848 type_system = &type_system_or_err.get(); in FindDefinitionTypeForDWARFDeclContext() 2856 if (type_system && in FindDefinitionTypeForDWARFDeclContext() 2857 !type_system->SupportsLanguage(GetLanguage(*type_die.GetCU()))) in FindDefinitionTypeForDWARFDeclContext()
|
/external/llvm-project/lldb/source/API/ |
D | SBTarget.cpp | 1877 for (auto *type_system : target_sp->GetScratchTypeSystems()) in FindFirstType() local 1878 if (auto type = type_system->GetBuiltinTypeByName(const_typename)) in FindFirstType() 1891 for (auto *type_system : target_sp->GetScratchTypeSystems()) in GetBasicType() local 1892 if (auto compiler_type = type_system->GetBasicTypeFromAST(type)) in GetBasicType() 1933 for (auto *type_system : target_sp->GetScratchTypeSystems()) in FindTypes() local 1935 type_system->GetBuiltinTypeByName(const_typename)) in FindTypes()
|
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
D | ClangExpressionDeclMap.cpp | 1746 TypeSystem *type_system = function->GetDeclContext().GetTypeSystem(); in AddOneFunction() local 1747 if (llvm::isa<TypeSystemClang>(type_system)) { in AddOneFunction()
|
/external/llvm-project/lldb/source/Target/ |
D | Target.cpp | 2435 [name, &variable_sp](TypeSystem *type_system) -> bool { in GetPersistentVariable() argument 2437 type_system->GetPersistentExpressionState()) { in GetPersistentVariable() 2452 [name, &address](TypeSystem *type_system) -> bool { in GetPersistentSymbol() argument 2454 type_system->GetPersistentExpressionState()) { in GetPersistentSymbol()
|