| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBType.cpp | 131 m_opaque_sp->GetCompilerType(false).GetByteSize(nullptr))) in GetByteSize() 143 m_opaque_sp->GetCompilerType(/*prefer_dynamic=*/false) in GetByteAlign() 153 return m_opaque_sp->GetCompilerType(true).IsPointerType(); in IsPointerType() 161 return m_opaque_sp->GetCompilerType(true).IsArrayType(nullptr, nullptr, in IsArrayType() 170 return m_opaque_sp->GetCompilerType(true).IsVectorType(nullptr, nullptr); in IsVectorType() 178 return m_opaque_sp->GetCompilerType(true).IsReferenceType(); in IsReferenceType() 228 m_opaque_sp->GetCompilerType(true).GetArrayElementType(nullptr)))); in GetArrayElementType() 237 new TypeImpl(m_opaque_sp->GetCompilerType(true).GetArrayType(size)))); in GetArrayType() 246 if (m_opaque_sp->GetCompilerType(true).IsVectorType(&vector_element_type, in GetVectorElementType() 258 return m_opaque_sp->GetCompilerType(true).IsFunctionType(); in IsFunctionType() [all …]
|
| H A D | SBTypeNameSpecifier.cpp | 42 new TypeNameSpecifierImpl(type.m_opaque_sp->GetCompilerType(true))); in SBTypeNameSpecifier() 76 lldb_private::CompilerType c_type = m_opaque_sp->GetCompilerType(); in GetType()
|
| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | ValueObjectChild.cpp | 53 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren() 67 m_type_name = GetCompilerType().GetTypeName(); in GetTypeName() 74 ConstString qualified_name = GetCompilerType().GetTypeName(); in GetQualifiedTypeName() 80 ConstString display_name = GetCompilerType().GetDisplayTypeName(); in GetDisplayTypeName() 108 m_value.SetCompilerType(GetCompilerType()); in UpdateValue() 110 CompilerType parent_type(parent->GetCompilerType()); in UpdateValue() 120 if (parent->GetCompilerType().ShouldTreatScalarValueAsAddress()) { in UpdateValue() 168 llvm::expectedToOptional(GetCompilerType().GetBitSize( in UpdateValue() 201 if (GetCompilerType().GetTypeInfo() & lldb::eTypeHasValue) { in UpdateValue()
|
| H A D | ValueObjectDynamicValue.cpp | 44 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() 93 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren() 195 TypeImpl(m_parent->GetCompilerType(), in UpdateValue() 197 .GetCompilerType()); in UpdateValue() 252 m_dynamic_type_info.GetCompilerType().GetByteSize(exe_scope))) { in UpdateValue() 273 m_value.SetCompilerType(m_dynamic_type_info.GetCompilerType()); in UpdateValue()
|
| H A D | ValueObject.cpp | 408 return GetCompilerType().GetIndexOfChildWithName(name, in GetIndexOfChildWithName() 424 if (!GetCompilerType().IsValid()) in GetChildMemberWithName() 428 GetCompilerType().GetIndexOfChildMemberWithName( in GetChildMemberWithName() 504 GetCompilerType().GetChildCompilerTypeAtIndex( in CreateChildAtIndex() 539 GetCompilerType().GetChildCompilerTypeAtIndex( in CreateSyntheticArrayMember() 584 if (GetCompilerType().IsForcefullyCompleted()) { in GetSummaryAsCString() 748 GetCompilerType().GetByteSize(exe_ctx.GetBestExecutionContextScope()); in GetPointeeData() 794 const Encoding encoding = GetCompilerType().GetEncoding(count); in SetData() 896 CompilerType compiler_type = GetCompilerType(); in ReadPointedString() 1085 my_format = GetValue().GetCompilerType().GetFormat(); in GetValueAsCString() [all …]
|
| H A D | ValueObjectConstResult.cpp | 199 return m_value.GetCompilerType(); in GetCompilerTypeImpl() 210 GetCompilerType().GetByteSize(exe_ctx.GetBestExecutionContextScope()); in GetByteSize() 225 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren() 233 m_type_name = GetCompilerType().GetTypeName(); in GetTypeName() 238 return GetCompilerType().GetDisplayTypeName(); in GetDisplayTypeName()
|
| H A D | DILEval.cpp | 231 base->GetCompilerType().GetTypeInfo(nullptr); in Visit() 274 base->GetCompilerType().TypeDescription()); in Visit() 281 base->GetCompilerType().TypeDescription()); in Visit() 316 CompilerType base_type = base->GetCompilerType(); in Visit() 354 auto base_type = base->GetCompilerType().GetNonReferenceType(); in Visit() 387 if (base->GetCompilerType().IsReferenceType()) { in Visit()
|
| H A D | ValueObjectCast.cpp | 46 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren() 70 CompilerType compiler_type(GetCompilerType()); in UpdateValue()
|
| H A D | ValueObjectConstResultImpl.cpp | 65 CompilerType compiler_type = m_impl_backend->GetCompilerType(); in CreateChildAtIndex() 122 CompilerType compiler_type = m_impl_backend->GetCompilerType(); in CreateSyntheticArrayMember() 177 CompilerType compiler_type(m_impl_backend->GetCompilerType()); in AddressOf()
|
| H A D | ValueObjectVariable.cpp | 99 CompilerType type(GetCompilerType()); in CalculateNumChildren() 116 CompilerType type(GetCompilerType()); in GetByteSize() 170 CompilerType compiler_type = GetCompilerType(); in UpdateValue() 259 const uint32_t type_info = valobj.GetCompilerType().GetTypeInfo(); in DoUpdateChildrenAddressType()
|
| H A D | ValueObjectSynthetic.cpp | 63 if (m_parent->GetCompilerType().IsCompleteType()) in ValueObjectSynthetic() 71 return m_parent->GetCompilerType(); in GetCompilerTypeImpl() 147 CompilerType type = m_parent->GetCompilerType(); in CreateSynthFilter() 237 if (m_parent->GetCompilerType().IsCompleteType()) in UpdateValue()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | GenericBitset.cpp | 67 m_bool_type = valobj.GetCompilerType().GetBasicTypeFromAST(eBasicTypeBool); in GenericBitsetFrontEnd() 97 if (auto arg = m_backend.GetCompilerType().GetIntegralTemplateArgument(0)) in Update() 117 if (m_first->GetCompilerType().IsArrayType(&type)) { in GetChildAtIndex() 124 type = m_first->GetCompilerType(); in GetChildAtIndex()
|
| H A D | LibCxxSpan.cpp | 102 m_element_type = data_type_finder_sp->GetCompilerType().GetPointeeType(); in Update() 122 m_backend.GetCompilerType().GetIntegralTemplateArgument(1)) { in Update() 149 CompilerType type = valobj_sp->GetCompilerType(); in LibcxxStdSpanSyntheticFrontEndCreator()
|
| H A D | LibCxxVariant.cpp | 98 CompilerType index_type = index_sp->GetCompilerType(); in LibcxxVariantGetIndexValidity() 181 CompilerType head_type = nth_head->GetCompilerType(); in LibcxxVariantSummaryProvider() 264 CompilerType head_type = nth_head->GetCompilerType(); in GetChildAtIndex()
|
| H A D | LibCxxMap.cpp | 58 0, m_entry_sp->GetCompilerType(), true); in left() 66 m_entry_sp->GetCompilerType(), true); in right() 74 m_entry_sp->GetCompilerType(), true); in parent() 388 m_tree->GetCompilerType().GetDirectNestedTypeWithName("__node_pointer"); in Update() 439 tree_iter_sp->GetCompilerType().GetDirectNestedTypeWithName( in Update()
|
| H A D | LibCxxTuple.cpp | 62 m_elements.assign(base_sp->GetCompilerType().GetNumDirectBaseClasses(), in Update() 76 m_base->GetCompilerType().GetDirectBaseClassAtIndex(idx, nullptr); in GetChildAtIndex()
|
| H A D | Coroutines.cpp | 30 if (!ptr_sp->GetCompilerType().IsPointerType()) in GetCoroFramePtrFromHandle() 136 auto ast_ctx = valobj_sp->GetCompilerType().GetTypeSystem<TypeSystemClang>(); in Update() 147 valobj_sp->GetCompilerType().GetTypeTemplateArgument(0)) in Update()
|
| H A D | LibCxxUnorderedMap.cpp | 116 if (isUnorderedMap(m_backend.GetCompilerType() in GetElementType() 145 return node_sp->GetCompilerType().GetTypeTemplateArgument(0).GetPointeeType(); in GetNodeType() 264 m_element_type = GetElementType(table_sp->GetCompilerType()); in Update() 337 auto hash_iter_type = hash_iter_sp->GetCompilerType(); in Update()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/ |
| H A D | ValueObject.h | 352 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 D | ValueObjectConstResultCast.h | 38 virtual CompilerType GetCompilerType() { in GetCompilerType() function 39 return ValueObjectCast::GetCompilerType(); in GetCompilerType()
|
| H A D | ValueObjectConstResultChild.h | 41 virtual CompilerType GetCompilerType() { in GetCompilerType() function 42 return ValueObjectChild::GetCompilerType(); in GetCompilerType()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/ |
| H A D | GNUstepObjCRuntime.cpp | 123 return in_value.GetCompilerType().IsPossibleDynamicType(nullptr, check_cxx, in CouldHaveDynamicValue() 137 CompilerType static_type(static_value.GetCompilerType()); in FixUpDynamicType() 146 CompilerType orig_type = type_and_or_name.GetCompilerType(); in FixUpDynamicType()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.cpp | 53 return in_value.GetCompilerType().IsPossibleDynamicType(nullptr, check_cxx, in CouldHaveDynamicValue() 219 CompilerType type = in_value.GetCompilerType(); in GetVTableInfo() 320 CompilerType type = class_type_or_name.GetCompilerType(); in GetDynamicTypeAndAddress() 328 if (TypeSystemClang::AreTypesSame(in_value.GetCompilerType(), type)) { in GetDynamicTypeAndAddress() 365 CompilerType static_type(static_value.GetCompilerType()); in FixUpDynamicType() 374 CompilerType orig_type = type_and_or_name.GetCompilerType(); in FixUpDynamicType()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 73 CompilerType compiler_type(valobj.GetCompilerType()); in GetObjectDescription() 122 CompilerType compiler_type = value.GetCompilerType(); in GetObjectDescription() 270 return in_value.GetCompilerType().IsPossibleDynamicType( in CouldHaveDynamicValue() 286 CompilerType static_type(static_value.GetCompilerType()); in FixUpDynamicType() 295 CompilerType orig_type = type_and_or_name.GetCompilerType(); in FixUpDynamicType()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangFunctionCaller.cpp | 110 function_clang_type = m_function_ptr->GetCompilerType(); in CompileFunction() 136 m_arg_values.GetValueAtIndex(i)->GetCompilerType(); in CompileFunction()
|