Home
last modified time | relevance | path

Searched refs:GetCompilerType (Results 1 – 25 of 93) sorted by relevance

1234

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBType.cpp135 return m_opaque_sp->GetCompilerType(true).IsPointerType(); in IsPointerType()
160 return m_opaque_sp->GetCompilerType(true).IsReferenceType(); in IsReferenceType()
240 return m_opaque_sp->GetCompilerType(true).IsFunctionType(); in IsFunctionType()
256 return m_opaque_sp->GetCompilerType(true).IsTypedefType(); in IsTypedefType()
264 return m_opaque_sp->GetCompilerType(true).IsAnonymousType(); in IsAnonymousType()
280 return m_opaque_sp->GetCompilerType(true).IsAggregateType(); in IsAggregateType()
300 CompilerType func_type(m_opaque_sp->GetCompilerType(true)); in GetFunctionArgumentTypes()
391 return m_opaque_sp->GetCompilerType(true).GetNumFields(); in GetNumberOfFields()
507 return m_opaque_sp->GetCompilerType(true).GetTypeInfo(); in GetTypeFlags()
541 return m_opaque_sp->GetCompilerType(true).GetTypeClass(); in GetTypeClass()
[all …]
H A DSBTypeNameSpecifier.cpp42 new TypeNameSpecifierImpl(type.m_opaque_sp->GetCompilerType(true))); in SBTypeNameSpecifier()
76 lldb_private::CompilerType c_type = m_opaque_sp->GetCompilerType(); in GetType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObjectChild.cpp54 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
66 m_type_name = GetCompilerType().GetTypeName(); in GetTypeName()
73 ConstString qualified_name = GetCompilerType().GetTypeName(); in GetQualifiedTypeName()
79 ConstString display_name = GetCompilerType().GetDisplayTypeName(); in GetDisplayTypeName()
107 m_value.SetCompilerType(GetCompilerType()); in UpdateValue()
109 CompilerType parent_type(parent->GetCompilerType()); in UpdateValue()
119 if (parent->GetCompilerType().ShouldTreatScalarValueAsAddress()) { in UpdateValue()
166 if (auto type_bit_size = GetCompilerType().GetBitSize( in UpdateValue()
199 if (GetCompilerType().GetTypeInfo() & lldb::eTypeHasValue) { in UpdateValue()
H A DValueObjectDynamicValue.cpp44 return m_value.GetCompilerType(); in GetCompilerTypeImpl()
46 return m_parent->GetCompilerType(); in GetCompilerTypeImpl()
48 return m_parent->GetCompilerType(); in GetCompilerTypeImpl()
81 return GetCompilerType().GetDisplayTypeName(); in GetDisplayTypeName()
92 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
191 TypeImpl(m_parent->GetCompilerType(), in UpdateValue()
193 .GetCompilerType()); in UpdateValue()
250 m_value.SetCompilerType(m_dynamic_type_info.GetCompilerType()); in UpdateValue()
H A DValueObjectConstResult.cpp200 return m_value.GetCompilerType(); in GetCompilerTypeImpl()
211 GetCompilerType().GetByteSize(exe_ctx.GetBestExecutionContextScope())) in GetByteSize()
221 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
227 m_type_name = GetCompilerType().GetTypeName(); in GetTypeName()
232 return GetCompilerType().GetDisplayTypeName(); in GetDisplayTypeName()
H A DValueObjectCast.cpp46 auto children_count = GetCompilerType().GetNumChildren( in CalculateNumChildren()
69 CompilerType compiler_type(GetCompilerType()); in UpdateValue()
H A DValueObject.cpp411 return GetCompilerType().GetIndexOfChildWithName(name, in GetIndexOfChildWithName()
427 if (!GetCompilerType().IsValid()) in GetChildMemberWithName()
431 GetCompilerType().GetIndexOfChildMemberWithName( in GetChildMemberWithName()
547 if (GetCompilerType().IsForcefullyCompleted()) { in GetSummaryAsCString()
834 CompilerType compiler_type = GetCompilerType(); in ReadPointedString()
1923 non_base_class_parent->GetCompilerType(); in GetExpressionPath()
2599 CompilerType compiler_type = GetCompilerType(); in Dereference()
2705 CompilerType compiler_type = GetCompilerType(); in AddressOf()
2731 CompilerType my_type = GetCompilerType(); in Cast()
2737 <= GetCompilerType().GetByteSize(exe_scope)) { in Cast()
[all …]
H A DValueObjectVariable.cpp98 CompilerType type(GetCompilerType()); in CalculateNumChildren()
112 CompilerType type(GetCompilerType()); in GetByteSize()
168 CompilerType compiler_type = GetCompilerType(); in UpdateValue()
258 const uint32_t type_info = valobj.GetCompilerType().GetTypeInfo(); in DoUpdateChildrenAddressType()
H A DValueObjectSyntheticFilter.cpp59 if (m_parent->GetCompilerType().IsCompleteType()) in ValueObjectSynthetic()
67 return m_parent->GetCompilerType(); in GetCompilerTypeImpl()
138 CompilerType type = m_parent->GetCompilerType(); in CreateSynthFilter()
229 if (m_parent->GetCompilerType().IsCompleteType()) in UpdateValue()
H A DValue.cpp226 if (std::optional<uint64_t> size = GetCompilerType().GetByteSize(scope)) { in GetValueByteSize()
239 const CompilerType &Value::GetCompilerType() { in GetCompilerType() function in Value
282 const CompilerType &ast_type = GetCompilerType(); in GetValueDefaultFormat()
323 const CompilerType &ast_type = GetCompilerType(); in GetValueAsData()
578 const CompilerType &compiler_type = GetCompilerType(); in ResolveValue()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp37 0, m_entry_sp->GetCompilerType(), true); in left()
46 m_entry_sp->GetCompilerType(), true); in right()
55 m_entry_sp->GetCompilerType(), true); in parent()
222 switch (m_item->GetCompilerType().GetNumDirectBaseClasses()) { in CalculateNumChildren()
254 m_element_type = deref->GetCompilerType(); in GetDataType()
260 m_element_type = deref->GetCompilerType() in GetDataType()
273 m_element_type = m_backend.GetCompilerType().GetTypeTemplateArgument(0); in GetDataType()
284 CompilerType node_type(node->GetCompilerType()); in GetValueOffset()
H A DGenericBitset.cpp61 m_bool_type = valobj.GetCompilerType().GetBasicTypeFromAST(eBasicTypeBool); in GenericBitsetFrontEnd()
91 if (auto arg = m_backend.GetCompilerType().GetIntegralTemplateArgument(0)) in Update()
111 if (m_first->GetCompilerType().IsArrayType(&type)) { in GetChildAtIndex()
118 type = m_first->GetCompilerType(); in GetChildAtIndex()
H A DLibCxxSpan.cpp103 m_element_type = data_type_finder_sp->GetCompilerType().GetPointeeType(); in Update()
119 m_backend.GetCompilerType().GetIntegralTemplateArgument(1)) { in Update()
145 CompilerType type = valobj_sp->GetCompilerType(); in LibcxxStdSpanSyntheticFrontEndCreator()
H A DLibCxxVariant.cpp98 CompilerType index_type = index_sp->GetCompilerType(); in LibcxxVariantGetIndexValidity()
178 CompilerType head_type = nth_head->GetCompilerType(); in LibcxxVariantSummaryProvider()
257 CompilerType head_type = nth_head->GetCompilerType(); in GetChildAtIndex()
H A DLibCxxVector.cpp126 switch (data_type_finder_sp->GetCompilerType().GetNumDirectBaseClasses()) { in Update()
146 m_element_type = data_type_finder_sp->GetCompilerType().GetPointeeType(); in Update()
178 valobj_sp->GetCompilerType().GetBasicTypeFromAST(lldb::eBasicTypeBool); in LibcxxVectorBoolSyntheticFrontEnd()
285 CompilerType type = valobj_sp->GetCompilerType(); in LibcxxStdVectorSyntheticFrontEndCreator()
H A DLibCxxTuple.cpp56 m_elements.assign(base_sp->GetCompilerType().GetNumDirectBaseClasses(), in Update()
70 m_base->GetCompilerType().GetDirectBaseClassAtIndex(idx, nullptr); in GetChildAtIndex()
H A DCoroutines.cpp30 if (!ptr_sp->GetCompilerType().IsPointerType()) in GetCoroFramePtrFromHandle()
142 auto ts = valobj_sp->GetCompilerType().GetTypeSystem(); in Update()
166 valobj_sp->GetCompilerType().GetTypeTemplateArgument(0)); in Update()
H A DLibCxxUnorderedMap.cpp120 switch (p1_sp->GetCompilerType().GetNumDirectBaseClasses()) { in GetChildAtIndex()
138 m_element_type = first_sp->GetCompilerType(); in GetChildAtIndex()
223 switch (p2_sp->GetCompilerType().GetNumDirectBaseClasses()) { in Update()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h352 CompilerType GetCompilerType() { return MaybeCalculateCompleteType(); } in GetCompilerType() function
355 virtual TypeImpl GetTypeImpl() { return TypeImpl(GetCompilerType()); } in GetTypeImpl()
365 virtual ConstString GetTypeName() { return GetCompilerType().GetTypeName(); } in GetTypeName()
370 return GetCompilerType().GetTypeName(); in GetQualifiedTypeName()
374 return GetCompilerType().GetMinimumLanguage(); in GetObjectRuntimeLanguage()
379 return GetCompilerType().GetTypeInfo(pointee_or_element_compiler_type);
382 bool IsPointerType() { return GetCompilerType().IsPointerType(); } in IsPointerType()
384 bool IsArrayType() { return GetCompilerType().IsArrayType(); } in IsArrayType()
386 bool IsScalarType() { return GetCompilerType().IsScalarType(); } in IsScalarType()
389 return GetCompilerType().IsPointerOrReferenceType(); in IsPointerOrReferenceType()
[all …]
H A DValueObjectConstResultCast.h41 virtual CompilerType GetCompilerType() { in GetCompilerType() function
42 return ValueObjectCast::GetCompilerType(); in GetCompilerType()
H A DValueObjectConstResultChild.h47 virtual CompilerType GetCompilerType() { in GetCompilerType() function
48 return ValueObjectChild::GetCompilerType(); in GetCompilerType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.cpp121 return in_value.GetCompilerType().IsPossibleDynamicType(nullptr, check_cxx, in CouldHaveDynamicValue()
135 CompilerType static_type(static_value.GetCompilerType()); in FixUpDynamicType()
144 CompilerType orig_type = type_and_or_name.GetCompilerType(); in FixUpDynamicType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp53 return in_value.GetCompilerType().IsPossibleDynamicType(nullptr, check_cxx, in CouldHaveDynamicValue()
221 CompilerType type = in_value.GetCompilerType(); in GetVTableInfo()
325 CompilerType type = class_type_or_name.GetCompilerType(); in GetDynamicTypeAndAddress()
333 if (TypeSystemClang::AreTypesSame(in_value.GetCompilerType(), type)) { in GetDynamicTypeAndAddress()
369 CompilerType static_type(static_value.GetCompilerType()); in FixUpDynamicType()
378 CompilerType orig_type = type_and_or_name.GetCompilerType(); in FixUpDynamicType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp71 CompilerType compiler_type(valobj.GetCompilerType()); in GetObjectDescription()
118 CompilerType compiler_type = value.GetCompilerType(); in GetObjectDescription()
264 return in_value.GetCompilerType().IsPossibleDynamicType( in CouldHaveDynamicValue()
280 CompilerType static_type(static_value.GetCompilerType()); in FixUpDynamicType()
289 CompilerType orig_type = type_and_or_name.GetCompilerType(); in FixUpDynamicType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangFunctionCaller.cpp110 function_clang_type = m_function_ptr->GetCompilerType(); in CompileFunction()
136 m_arg_values.GetValueAtIndex(i)->GetCompilerType(); in CompileFunction()

1234