| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 259 return compiler_type == rhs.compiler_type && 264 return compiler_type != rhs.compiler_type || 269 compiler_type.Clear(); in Clear() 276 if (compiler_type) in GetName() 277 return compiler_type.GetTypeName(); in GetName() 284 if (compiler_type) in GetDisplayTypeName() 291 compiler_type = type; in SetType() 299 compiler_type.Clear(); in SetType() 309 return compiler_type.GetPointerType(); in GetPointerType() 315 return compiler_type.GetPointeeType(); in GetPointeeType() [all …]
|
| H A D | TaggedASTType.h | 21 TaggedASTType(const CompilerType &compiler_type) in TaggedASTType() argument 22 : CompilerType(compiler_type) {} in TaggedASTType()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | ValueObjectConstResult.cpp | 52 const CompilerType &compiler_type, in Create() argument 56 return (new ValueObjectConstResult(exe_scope, compiler_type, name, data, in Create() 62 ExecutionContextScope *exe_scope, const CompilerType &compiler_type, in ValueObjectConstResult() argument 76 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 90 return (new ValueObjectConstResult(exe_scope, compiler_type, name, data_sp, in Create() 103 ExecutionContextScope *exe_scope, const CompilerType &compiler_type, in ValueObjectConstResult() argument 115 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 134 ExecutionContextScope *exe_scope, const CompilerType &compiler_type, in ValueObjectConstResult() argument 158 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 289 ValueObjectConstResult::Cast(const CompilerType &compiler_type) { in Cast() argument [all …]
|
| H A D | ValueObjectConstResultImpl.cpp | 70 CompilerType compiler_type = m_impl_backend->GetCompilerType(); in CreateChildAtIndex() local 75 child_compiler_type = compiler_type.GetChildCompilerTypeAtIndex( in CreateChildAtIndex() 124 CompilerType compiler_type(m_impl_backend->GetCompilerType()); in AddressOf() local 133 exe_ctx.GetBestExecutionContextScope(), compiler_type.GetPointerType(), in AddressOf() 146 ValueObjectConstResultImpl::Cast(const CompilerType &compiler_type) { in Cast() argument 152 compiler_type, m_live_address); in Cast()
|
| H A D | ValueObjectConstResultChild.cpp | 26 ValueObject &parent, const CompilerType &compiler_type, in ValueObjectConstResultChild() argument 31 : ValueObjectChild(parent, compiler_type, name, byte_size, byte_offset, in ValueObjectConstResultChild() 73 ValueObjectConstResultChild::Cast(const CompilerType &compiler_type) { in Cast() argument 74 return m_impl.Cast(compiler_type); in Cast()
|
| H A D | ValueObjectConstResultCast.cpp | 61 ValueObjectConstResultCast::Cast(const CompilerType &compiler_type) { in Cast() argument 62 return m_impl.Cast(compiler_type); in Cast()
|
| H A D | ValueObjectVariable.cpp | 164 CompilerType compiler_type = GetCompilerType(); in UpdateValue() local 165 if (compiler_type.IsValid()) in UpdateValue() 166 m_value.SetCompilerType(compiler_type); in UpdateValue() 172 const uint32_t type_info = compiler_type.GetTypeInfo(); in UpdateValue()
|
| H A D | ValueObject.cpp | 279 CompilerType compiler_type(GetCompilerTypeImpl()); in MaybeCalculateCompleteType() local 285 return compiler_type; in MaybeCalculateCompleteType() 294 class_type = compiler_type; in MaybeCalculateCompleteType() 296 return compiler_type; in MaybeCalculateCompleteType() 335 return compiler_type; in MaybeCalculateCompleteType() 959 CompilerType compiler_type = GetCompilerType(); in ReadPointedString() local 1115 CompilerType compiler_type = GetCompilerType(); in GetObjectDescription() local 1116 if (compiler_type) { in GetObjectDescription() 1118 if (compiler_type.IsIntegerType(is_signed) || in GetObjectDescription() 1119 compiler_type.IsPointerType()) { in GetObjectDescription() [all …]
|
| H A D | ValueObjectCast.cpp | 71 CompilerType compiler_type(GetCompilerType()); in UpdateValue() local 73 m_value.SetCompilerType(compiler_type); in UpdateValue()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | Variable.cpp | 493 const CompilerType &compiler_type, 501 const CompilerType &compiler_type, 509 const CompilerType &compiler_type, in PrivateAutoCompleteMembers() argument 518 compiler_type.GetDirectBaseClassAtIndex(i, nullptr); in PrivateAutoCompleteMembers() 531 compiler_type.GetVirtualBaseClassAtIndex(i, nullptr); in PrivateAutoCompleteMembers() 540 const uint32_t num_fields = compiler_type.GetNumFields(); in PrivateAutoCompleteMembers() 569 const CompilerType &compiler_type, in PrivateAutoComplete() argument 577 if (compiler_type.IsValid()) { in PrivateAutoComplete() 673 if (compiler_type.IsValid()) { in PrivateAutoComplete() 712 if (compiler_type.IsValid()) { in PrivateAutoComplete() [all …]
|
| H A D | Type.cpp | 114 const CompilerType &compiler_type, in Type() argument 119 m_byte_size(byte_size), m_decl(decl), m_compiler_type(compiler_type) { in Type() 121 (compiler_type ? compiler_type_resolve_state : eResolveStateUnresolved); in Type() 739 void TypeAndOrName::SetCompilerType(CompilerType compiler_type) { in SetCompilerType() argument 740 m_type_pair.SetType(compiler_type); in SetCompilerType() 775 TypeImpl::TypeImpl(const CompilerType &compiler_type) in TypeImpl() argument 777 SetType(compiler_type); in TypeImpl() 804 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() argument 806 m_static_type.SetType(compiler_type); in SetType() 815 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType() argument [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | ValueObjectConstResult.h | 51 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 56 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 62 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 117 lldb::ValueObjectSP Cast(const CompilerType &compiler_type) override; 137 const CompilerType &compiler_type, 142 const CompilerType &compiler_type, 149 const CompilerType &compiler_type,
|
| H A D | ValueObjectConstResultChild.h | 41 const CompilerType &compiler_type, 72 lldb::ValueObjectSP Cast(const CompilerType &compiler_type) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ |
| H A D | ABIMacOSX_i386.cpp | 826 CompilerType compiler_type(value->GetCompilerType()); in GetArgumentValues() local 830 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) in GetArgumentValues() 833 else if (compiler_type.IsPointerType()) in GetArgumentValues() 850 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 851 if (!compiler_type) { in SetReturnValueObject() 865 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 866 compiler_type.IsPointerType()) { in SetReturnValueObject() 922 if (!compiler_type) in GetReturnValueObjectImpl() 927 value.SetCompilerType(compiler_type); in GetReturnValueObjectImpl() 935 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetReturnValueObjectImpl() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ |
| H A D | ABISysV_arm.cpp | 1470 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 1471 if (compiler_type) { in GetArgumentValues() 1475 compiler_type.IsPointerOrReferenceType()) { in GetArgumentValues() 1560 if (!compiler_type) in GetReturnValueObjectImpl() 1565 value.SetCompilerType(compiler_type); in GetReturnValueObjectImpl() 1588 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetReturnValueObjectImpl() 1630 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl() 1713 } else if (compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl() 1717 compiler_type.IsHomogeneousAggregate(&base_type); in GetReturnValueObjectImpl() 1854 if (!compiler_type) { in SetReturnValueObject() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | FormatManager.cpp | 176 compiler_type = compiler_type.GetTypeForFormatters(); in GetPossibleMatches() 177 ConstString type_name(compiler_type.GetConstTypeName()); in GetPossibleMatches() 187 if (!compiler_type.IsMeaninglessWithoutDynamicResolution()) { in GetPossibleMatches() 218 if (compiler_type.IsPointerType()) { in GetPossibleMatches() 249 if (compiler_type.IsTypedefType()) { in GetPossibleMatches() 259 if (!compiler_type.IsValid()) in GetPossibleMatches() 263 compiler_type.GetFullyUnqualifiedType(); in GetPossibleMatches() 267 compiler_type.GetOpaqueQualType()) in GetPossibleMatches() 495 CompilerType compiler_type(valobj.GetCompilerType()); in ShouldPrintAsOneLiner() local 496 if (compiler_type.IsValid()) { in ShouldPrintAsOneLiner() [all …]
|
| H A D | TypeFormat.cpp | 67 CompilerType compiler_type = value.GetCompilerType(); in FormatObject() local 68 if (compiler_type) { in FormatObject() 72 lldb_private::Flags type_flags(compiler_type.GetTypeInfo( in FormatObject() 99 llvm::Optional<uint64_t> size = compiler_type.GetByteSize(exe_scope); in FormatObject() 103 compiler_type.DumpTypeValue( in FormatObject()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ |
| H A D | ABIMacOSX_arm.cpp | 1469 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 1470 if (compiler_type) { in GetArgumentValues() 1478 else if (compiler_type.IsPointerOrReferenceType()) in GetArgumentValues() 1563 if (!compiler_type) in GetReturnValueObjectImpl() 1566 value.SetCompilerType(compiler_type); in GetReturnValueObjectImpl() 1578 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetReturnValueObjectImpl() 1600 compiler_type.GetByteSize(&thread); in GetReturnValueObjectImpl() 1685 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl() 1711 if (!compiler_type) { in SetReturnValueObject() 1725 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ |
| H A D | ABISysV_s390x.cpp | 378 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 379 llvm::Optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 384 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetArgumentValues() 388 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 406 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 407 if (!compiler_type) { in SetReturnValueObject() 421 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 422 compiler_type.IsPointerType()) { in SetReturnValueObject() 444 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject() 450 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 183 return compiler_type.GetTypeName(); in GetPDBBuiltinTypeName() 762 lldb_private::CompilerType &compiler_type) { in CompleteTypeFromPDB() argument 763 if (GetClangASTImporter().CanImport(compiler_type)) in CompleteTypeFromPDB() 764 return GetClangASTImporter().CompleteType(compiler_type); in CompleteTypeFromPDB() 769 m_ast.GetAsCXXRecordDecl(compiler_type.GetOpaqueQualType()); in CompleteTypeFromPDB() 1163 lldb_private::CompilerType &compiler_type, in CompleteTypeFromUDT() argument 1175 AddRecordBases(symbol_file, compiler_type, in CompleteTypeFromUDT() 1185 AddRecordMethods(symbol_file, compiler_type, *methods_enum); in CompleteTypeFromUDT() 1188 ClangASTContext::BuildIndirectFields(compiler_type); in CompleteTypeFromUDT() 1194 return static_cast<bool>(compiler_type); in CompleteTypeFromUDT() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ |
| H A D | ABISysV_ppc.cpp | 400 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 401 llvm::Optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 405 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) in GetArgumentValues() 409 else if (compiler_type.IsPointerType()) in GetArgumentValues() 426 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 427 if (!compiler_type) { in SetReturnValueObject() 441 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 442 compiler_type.IsPointerType()) { in SetReturnValueObject() 464 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject() 470 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | Language.cpp | 395 CompilerType compiler_type(match->GetFullCompilerType()); in Find_Impl() local 396 compiler_type = AdjustForInclusion(compiler_type); in Find_Impl() 397 if (!compiler_type) in Find_Impl() 400 new Result(compiler_type)); in Find_Impl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ |
| H A D | ABISysV_ppc64.cpp | 282 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 283 llvm::Optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 288 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetArgumentValues() 292 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 310 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 311 if (!compiler_type) { in SetReturnValueObject() 325 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 326 compiler_type.IsPointerType()) { in SetReturnValueObject() 348 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject() 354 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangPersistentVariables.cpp | 36 const CompilerType &compiler_type, lldb::ByteOrder byte_order, in CreatePersistentVariable() argument 39 exe_scope, name, compiler_type, byte_order, addr_byte_size)); in CreatePersistentVariable()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 60 CompilerType compiler_type(valobj.GetCompilerType()); in GetObjectDescription() local 64 if (!compiler_type.IsIntegerType(is_signed) && !compiler_type.IsPointerType()) in GetObjectDescription() 107 CompilerType compiler_type = value.GetCompilerType(); in GetObjectDescription() local 108 if (compiler_type) { in GetObjectDescription() 109 if (!ClangASTContext::IsObjCObjectPointerType(compiler_type)) { in GetObjectDescription()
|