Home
last modified time | relevance | path

Searched refs:type_system (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DVectorType.cpp26 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-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DTypeSystem.cpp194 TypeSystem *type_system = pair.second.get(); in Clear() local
195 if (type_system && !visited.count(type_system)) { in Clear()
196 visited.insert(type_system); in Clear()
197 type_system->Finalize(); in Clear()
214 TypeSystem *type_system = pair.second.get(); in ForEach() local
215 if (type_system && !visited.count(type_system)) { in ForEach()
216 visited.insert(type_system); in ForEach()
217 if (!callback(type_system)) in ForEach()
234 auto *type_system = pos->second.get(); in GetTypeSystemForLanguage() local
235 if (type_system) in GetTypeSystemForLanguage()
[all …]
H A DCompilerType.cpp312 void CompilerType::SetCompilerType(TypeSystem *type_system, in SetCompilerType() argument
314 m_type_system = type_system; in SetCompilerType()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerDecl.h37 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 DCompilerDeclContext.h42 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 DTaggedASTType.h23 TaggedASTType(lldb::opaque_compiler_type_t type, TypeSystem *type_system) in TaggedASTType() argument
24 : CompilerType(type_system, type) {} in TaggedASTType()
H A DCompilerType.h41 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,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCoreMedia.cpp28 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 DNSIndexPath.cpp52 TypeSystem *type_system = m_backend.GetCompilerType().GetTypeSystem(); in Update() local
53 if (!type_system) in Update()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1269 auto *type_system = decl_ctx.GetTypeSystem(); in ParseDeclsForContext() local
1270 if (type_system != nullptr) in ParseDeclsForContext()
1271 type_system->GetDWARFParser()->EnsureAllDIEsInDeclContextHaveBeenParsed( in ParseDeclsForContext()
1443 TypeSystem *type_system = compiler_type.GetTypeSystem(); in HasForwardDeclForClangType() local
1446 llvm::dyn_cast_or_null<TypeSystemClang>(type_system); in HasForwardDeclForClangType()
2782 TypeSystem *type_system = nullptr; in FindDefinitionTypeForDWARFDeclContext() local
2791 type_system = &type_system_or_err.get(); in FindDefinitionTypeForDWARFDeclContext()
2799 if (type_system && in FindDefinitionTypeForDWARFDeclContext()
2800 !type_system->SupportsLanguage(GetLanguage(*type_die.GetCU()))) in FindDefinitionTypeForDWARFDeclContext()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp557 auto &type_system = *type_system_or_err; in DumpDataExtractor() local
565 type_system.GetFloatTypeSemantics(item_byte_size); in DumpDataExtractor()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp1909 for (auto *type_system : target_sp->GetScratchTypeSystems()) in FindFirstType() local
1910 if (auto type = type_system->GetBuiltinTypeByName(const_typename)) in FindFirstType()
1923 for (auto *type_system : target_sp->GetScratchTypeSystems()) in GetBasicType() local
1924 if (auto compiler_type = type_system->GetBasicTypeFromAST(type)) in GetBasicType()
1965 for (auto *type_system : target_sp->GetScratchTypeSystems()) in FindTypes() local
1967 type_system->GetBuiltinTypeByName(const_typename)) in FindTypes()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1746 TypeSystem *type_system = function->GetDeclContext().GetTypeSystem(); in AddOneFunction() local
1747 if (llvm::isa<TypeSystemClang>(type_system)) { in AddOneFunction()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp2454 [name, &variable_sp](TypeSystem *type_system) -> bool { in GetPersistentVariable() argument
2456 type_system->GetPersistentExpressionState()) { in GetPersistentVariable()
2471 [name, &address](TypeSystem *type_system) -> bool { in GetPersistentSymbol() argument
2473 type_system->GetPersistentExpressionState()) { in GetPersistentSymbol()