| /freebsd-12.1/contrib/llvm/tools/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 …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | TypeSystem.cpp | 173 TypeSystem *type_system = pair.second.get(); in Clear() local 174 if (type_system && !visited.count(type_system)) { in Clear() 175 visited.insert(type_system); in Clear() 176 type_system->Finalize(); in Clear() 193 TypeSystem *type_system = pair.second.get(); in ForEach() local 194 if (type_system && !visited.count(type_system)) { in ForEach() 195 visited.insert(type_system); in ForEach() 196 if (!callback(type_system)) in ForEach()
|
| H A D | SymbolFile.cpp | 91 TypeSystem *type_system = in GetTypeSystemForLanguage() local 93 if (type_system) in GetTypeSystemForLanguage() 94 type_system->SetSymbolFile(this); in GetTypeSystemForLanguage() 95 return type_system; in GetTypeSystemForLanguage()
|
| H A D | CompilerType.cpp | 32 CompilerType::CompilerType(TypeSystem *type_system, in CompilerType() argument 34 : m_type(type), m_type_system(type_system) {} in CompilerType() 339 void CompilerType::SetCompilerType(TypeSystem *type_system, in SetCompilerType() argument 341 m_type_system = type_system; in SetCompilerType()
|
| H A D | Type.cpp | 488 TypeSystem *type_system = in ResolveClangType() local 491 type_system->GetBasicTypeFromAST(eBasicTypeVoid); in ResolveClangType()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | CompilerDeclContext.h | 27 CompilerDeclContext(TypeSystem *type_system, void *decl_ctx) in CompilerDeclContext() argument 28 : m_type_system(type_system), m_opaque_decl_ctx(decl_ctx) {} in CompilerDeclContext() 87 void SetDeclContext(TypeSystem *type_system, void *decl_ctx) { in SetDeclContext() argument 88 m_type_system = type_system; in SetDeclContext()
|
| H A D | CompilerDecl.h | 26 CompilerDecl(TypeSystem *type_system, void *decl) in CompilerDecl() argument 27 : m_type_system(type_system), m_opaque_decl(decl) {} in CompilerDecl() 57 void SetDecl(TypeSystem *type_system, void *decl) { in SetDecl() argument 58 m_type_system = type_system; in SetDecl()
|
| H A D | TaggedASTType.h | 24 TaggedASTType(lldb::opaque_compiler_type_t type, TypeSystem *type_system) in TaggedASTType() argument 25 : CompilerType(type_system, type) {} in TaggedASTType()
|
| H A D | CompilerType.h | 39 CompilerType(TypeSystem *type_system, lldb::opaque_compiler_type_t type); 184 void SetCompilerType(TypeSystem *type_system,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ |
| H A D | CoreMedia.cpp | 29 TypeSystem *type_system = in CMTimeSummaryProvider() local 33 if (!type_system) in CMTimeSummaryProvider() 38 type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 64); in CMTimeSummaryProvider() 40 type_system->GetBuiltinTypeForEncodingAndBitSize(eEncodingSint, 32); in CMTimeSummaryProvider()
|
| H A D | NSIndexPath.cpp | 53 TypeSystem *type_system = m_backend.GetCompilerType().GetTypeSystem(); in Update() local 54 if (!type_system) in Update()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBModule.cpp | 418 TypeSystem *type_system = in FindFirstType() local 420 if (type_system) in FindFirstType() 421 sb_type = SBType(type_system->GetBuiltinTypeByName(name)); in FindFirstType() 430 TypeSystem *type_system = in GetBasicType() local 432 if (type_system) in GetBasicType() 433 return SBType(type_system->GetBasicTypeFromAST(type)); in GetBasicType() 457 TypeSystem *type_system = in FindTypes() local 459 if (type_system) { in FindTypes() 460 CompilerType compiler_type = type_system->GetBuiltinTypeByName(name); in FindTypes()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 192 TypeSystem *type_system = in InitializeObject() local 312 if (!type_system) in ParseCompileUnitFunctionForPDBFunc() 315 llvm::dyn_cast_or_null<ClangASTContext>(type_system); in ParseCompileUnitFunctionForPDBFunc() 553 TypeSystem *type_system = in ResolveTypeUID() local 1603 auto type_system = in GetTypeSystemForLanguage() local 1605 if (type_system) in GetTypeSystemForLanguage() 1606 type_system->SetSymbolFile(this); in GetTypeSystemForLanguage() 1607 return type_system; in GetTypeSystemForLanguage() 1642 return CompilerDeclContext(type_system, in FindNamespace() 1923 TypeSystem *type_system = GetTypeSystemForLanguage( in DeclContextMatchesThisSymbolFile() local [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFBaseDIE.cpp | 149 lldb_private::TypeSystem *type_system = GetTypeSystem(); in GetDWARFParser() local 150 if (type_system) in GetDWARFParser() 151 return type_system->GetDWARFParser(); in GetDWARFParser()
|
| H A D | SymbolFileDWARF.cpp | 439 TypeSystem *type_system; in GetTypeSystemForLanguage() local 444 if (type_system) in GetTypeSystemForLanguage() 445 type_system->SetSymbolFile(this); in GetTypeSystemForLanguage() 447 return type_system; in GetTypeSystemForLanguage() 892 TypeSystem *type_system = in ParseFunction() local 895 if (type_system) { in ParseFunction() 1305 TypeSystem *type_system = decl_ctx.GetTypeSystem(); in ParseDeclsForContext() local 2055 if (decl_ctx_type_system == type_system) in DeclContextMatchesThisSymbolFile() 2972 if (type_system && in FindDefinitionTypeForDWARFDeclContext() 3057 TypeSystem *type_system = in ParseType() local [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | BlockPointer.cpp | 44 TypeSystem *type_system = target_sp->GetScratchTypeSystemForLanguage( in BlockPointerSyntheticFrontEnd() local 47 if (!err.Success() || !type_system) { in BlockPointerSyntheticFrontEnd() 52 llvm::dyn_cast<ClangASTContext>(type_system); in BlockPointerSyntheticFrontEnd()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ThreadPlanTracer.cpp | 99 TypeSystem *type_system = in GetIntPointerType() local 101 if (type_system) in GetIntPointerType() 103 TypeFromUser(type_system->GetBuiltinTypeForEncodingAndBitSize( in GetIntPointerType()
|
| H A D | Target.cpp | 2190 TypeSystem *type_system = in GetPersistentExpressionStateForLanguage() local 2193 if (type_system) { in GetPersistentExpressionStateForLanguage() 2194 return type_system->GetPersistentExpressionState(); in GetPersistentExpressionStateForLanguage() 2206 TypeSystem *type_system = in GetUserExpressionForLanguage() local 2210 if (!type_system) { in GetUserExpressionForLanguage() 2233 TypeSystem *type_system = in GetFunctionCallerForLanguage() local 2237 if (!type_system) { in GetFunctionCallerForLanguage() 2260 TypeSystem *type_system = in GetUtilityFunctionForLanguage() local 2264 if (!type_system) { in GetUtilityFunctionForLanguage() 2285 return llvm::dyn_cast<ClangASTContext>(type_system); in GetScratchClangASTContext() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | ValueObjectRegister.cpp | 264 TypeSystem *type_system = in GetCompilerTypeImpl() local 266 if (type_system) in GetCompilerTypeImpl() 267 m_compiler_type = type_system->GetBuiltinTypeForEncodingAndBitSize( in GetCompilerTypeImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.cpp | 1559 auto type_system = in GetTypeSystemForLanguage() local 1561 if (type_system) in GetTypeSystemForLanguage() 1562 type_system->SetSymbolFile(this); in GetTypeSystemForLanguage() 1563 return type_system; in GetTypeSystemForLanguage()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/ |
| H A D | Materializer.cpp | 871 TypeSystem *type_system = target_sp->GetScratchTypeSystemForLanguage( in Dematerialize() local 874 if (!type_system) { in Dematerialize() 883 type_system->GetPersistentExpressionState(); in Dematerialize()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.cpp | 1965 TypeSystem *type_system = function->GetDeclContext().GetTypeSystem(); in AddOneFunction() local 1966 if (llvm::isa<ClangASTContext>(type_system)) { in AddOneFunction()
|