| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | ValueObjectConstResult.cpp | 53 const CompilerType &compiler_type, in Create() argument 58 return (new ValueObjectConstResult(exe_scope, *manager_sp, compiler_type, in Create() 65 const CompilerType &compiler_type, ConstString name, in ValueObjectConstResult() argument 78 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 86 const CompilerType &compiler_type, in Create() argument 93 return (new ValueObjectConstResult(exe_scope, *manager_sp, compiler_type, in Create() 111 const CompilerType &compiler_type, ConstString name, in ValueObjectConstResult() argument 120 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 128 const CompilerType &compiler_type, in Create() argument 134 return (new ValueObjectConstResult(exe_scope, *manager_sp, compiler_type, in Create() [all …]
|
| H A D | ValueObjectConstResultImpl.cpp | 68 CompilerType compiler_type = m_impl_backend->GetCompilerType(); in CreateChildAtIndex() local 73 child_compiler_type = compiler_type.GetChildCompilerTypeAtIndex( in CreateChildAtIndex() 99 if (!compiler_type.IsPointerType()) in CreateChildAtIndex() 129 CompilerType compiler_type(m_impl_backend->GetCompilerType()); in AddressOf() local 138 exe_ctx.GetBestExecutionContextScope(), compiler_type.GetPointerType(), in AddressOf() 151 ValueObjectConstResultImpl::Cast(const CompilerType &compiler_type) { in Cast() argument 157 compiler_type, m_live_address); in Cast()
|
| H A D | ValueObjectConstResultChild.cpp | 25 ValueObject &parent, const CompilerType &compiler_type, in ValueObjectConstResultChild() argument 30 : ValueObjectChild(parent, compiler_type, name, byte_size, byte_offset, in ValueObjectConstResultChild() 72 ValueObjectConstResultChild::Cast(const CompilerType &compiler_type) { in Cast() argument 73 return m_impl.Cast(compiler_type); in Cast()
|
| H A D | ValueObjectConstResultCast.cpp | 60 ValueObjectConstResultCast::Cast(const CompilerType &compiler_type) { in Cast() argument 61 return m_impl.Cast(compiler_type); in Cast()
|
| H A D | ValueObjectCast.cpp | 69 CompilerType compiler_type(GetCompilerType()); in UpdateValue() local 70 m_value.SetCompilerType(compiler_type); in UpdateValue()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ABI/X86/ |
| H A D | ABIMacOSX_i386.cpp | 167 CompilerType compiler_type(value->GetCompilerType()); in GetArgumentValues() local 168 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 171 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) in GetArgumentValues() 174 else if (compiler_type.IsPointerType()) in GetArgumentValues() 191 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 192 if (!compiler_type) { in SetReturnValueObject() 206 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 207 compiler_type.IsPointerType()) { in SetReturnValueObject() 241 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject() 259 CompilerType &compiler_type) const { in GetReturnValueObjectImpl() [all …]
|
| H A D | ABIWindows_x86_64.cpp | 277 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 278 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 283 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetArgumentValues() 287 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 305 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 306 if (!compiler_type) { in SetReturnValueObject() 320 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 321 compiler_type.IsPointerType()) { in SetReturnValueObject() 343 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject() 349 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
| H A D | ABISysV_i386.cpp | 184 CompilerType compiler_type(value->GetCompilerType()); in GetArgumentValues() local 185 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 188 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetArgumentValues() 191 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 208 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 209 if (!compiler_type) { in SetReturnValueObject() 214 const uint32_t type_flags = compiler_type.GetTypeInfo(); in SetReturnValueObject()
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | Variable.cpp | 467 const CompilerType &compiler_type, CompletionRequest &request); 474 const CompilerType &compiler_type, CompletionRequest &request) { in PrivateAutoCompleteMembers() argument 477 const uint32_t num_bases = compiler_type.GetNumDirectBaseClasses(); in PrivateAutoCompleteMembers() 482 compiler_type.GetDirectBaseClassAtIndex(i, nullptr); in PrivateAutoCompleteMembers() 490 const uint32_t num_vbases = compiler_type.GetNumVirtualBaseClasses(); in PrivateAutoCompleteMembers() 495 compiler_type.GetVirtualBaseClassAtIndex(i, nullptr); in PrivateAutoCompleteMembers() 504 const uint32_t num_fields = compiler_type.GetNumFields(); in PrivateAutoCompleteMembers() 510 CompilerType member_compiler_type = compiler_type.GetFieldAtIndex( in PrivateAutoCompleteMembers() 533 const CompilerType &compiler_type, CompletionRequest &request) { in PrivateAutoComplete() argument 538 const lldb::TypeClass type_class = compiler_type.GetTypeClass(); in PrivateAutoComplete() [all …]
|
| H A D | Type.cpp | 147 const Declaration &decl, const CompilerType &compiler_type, in Type() argument 152 m_decl(decl), m_compiler_type(compiler_type), in Type() 153 m_compiler_type_resolve_state(compiler_type ? compiler_type_resolve_state in Type() 800 void TypeAndOrName::SetCompilerType(CompilerType compiler_type) { in SetCompilerType() argument 801 m_compiler_type = compiler_type; in SetCompilerType() 826 TypeImpl::TypeImpl(const CompilerType &compiler_type) in TypeImpl() argument 828 SetType(compiler_type); in TypeImpl() 853 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() argument 855 m_static_type = compiler_type; in SetType() 864 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType() argument [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/DataFormatters/ |
| H A D | FormatManager.cpp | 177 ValueObject &valobj, CompilerType compiler_type, in GetPossibleMatches() argument 180 compiler_type = compiler_type.GetTypeForFormatters(); in GetPossibleMatches() 181 ConstString type_name(compiler_type.GetTypeName()); in GetPossibleMatches() 189 TypeImpl(compiler_type), current_flags}); in GetPossibleMatches() 192 if (!compiler_type.IsMeaninglessWithoutDynamicResolution()) { in GetPossibleMatches() 193 entries.push_back({type_name, script_interpreter, TypeImpl(compiler_type), in GetPossibleMatches() 196 ConstString display_type_name(compiler_type.GetTypeName()); in GetPossibleMatches() 199 TypeImpl(compiler_type), current_flags}); in GetPossibleMatches() 203 j && compiler_type.IsReferenceType(nullptr, &is_rvalue_ref); j = false) { in GetPossibleMatches() 204 CompilerType non_ref_type = compiler_type.GetNonReferenceType(); in GetPossibleMatches() [all …]
|
| H A D | TypeFormat.cpp | 66 CompilerType compiler_type = value.GetCompilerType(); in FormatObject() local 67 if (compiler_type) { in FormatObject() 71 lldb_private::Flags type_flags(compiler_type.GetTypeInfo( in FormatObject() 99 std::optional<uint64_t> size = compiler_type.GetByteSize(exe_scope); in FormatObject() 103 compiler_type.DumpTypeValue( in FormatObject()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | ValueObjectConstResult.h | 43 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 48 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 54 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 109 lldb::ValueObjectSP Cast(const CompilerType &compiler_type) override; 131 const CompilerType &compiler_type, ConstString name, 136 const CompilerType &compiler_type, ConstString name, 143 const CompilerType &compiler_type, ConstString name,
|
| H A D | ValueObjectConstResultChild.h | 32 const CompilerType &compiler_type, 63 lldb::ValueObjectSP Cast(const CompilerType &compiler_type) override;
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/lib/ |
| H A D | ada.exp | 66 set compiler_type "c" 83 set compiler_type "ada" 96 set compiler_type "c++" 109 set compiler_type "f77" 183 if { $compiler_type == "c++" } { 189 if { $compiler_type == "f77" } { 195 if { $compiler_type == "ada" } { 238 if { $compiler_type == "c++" } {
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ABI/ARM/ |
| H A D | ABISysV_arm.cpp | 1351 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 1352 if (compiler_type) { in GetArgumentValues() 1355 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in GetArgumentValues() 1356 compiler_type.IsPointerOrReferenceType()) { in GetArgumentValues() 1357 if (std::optional<uint64_t> size = compiler_type.GetBitSize(&thread)) in GetArgumentValues() 1437 Thread &thread, lldb_private::CompilerType &compiler_type) const { in GetReturnValueObjectImpl() 1441 if (!compiler_type) in GetReturnValueObjectImpl() 1446 value.SetCompilerType(compiler_type); in GetReturnValueObjectImpl() 1464 std::optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() 1465 std::optional<uint64_t> byte_size = compiler_type.GetByteSize(&thread); in GetReturnValueObjectImpl() [all …]
|
| H A D | ABIMacOSX_arm.cpp | 1348 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 1349 if (compiler_type) { in GetArgumentValues() 1352 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 1355 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) in GetArgumentValues() 1357 else if (compiler_type.IsPointerOrReferenceType()) in GetArgumentValues() 1438 Thread &thread, lldb_private::CompilerType &compiler_type) const { in GetReturnValueObjectImpl() 1442 if (!compiler_type) in GetReturnValueObjectImpl() 1445 value.SetCompilerType(compiler_type); in GetReturnValueObjectImpl() 1457 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetReturnValueObjectImpl() 1458 std::optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ABI/ARC/ |
| H A D | ABISysV_arc.cpp | 319 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 320 if (!compiler_type) { in SetReturnValueObject() 328 if (!compiler_type.IsIntegerOrEnumerationType(is_signed) && in SetReturnValueObject() 329 !compiler_type.IsPointerType()) { in SetReturnValueObject() 447 CompilerType &compiler_type) const { in GetReturnValueObjectSimple() 448 if (!compiler_type) in GetReturnValueObjectSimple() 456 value.SetCompilerType(compiler_type); in GetReturnValueObjectSimple() 458 const uint32_t type_flags = compiler_type.GetTypeInfo(); in GetReturnValueObjectSimple() 461 const size_t byte_size = compiler_type.GetByteSize(&thread).value_or(0); in GetReturnValueObjectSimple() 483 if (compiler_type.IsFloatingPointType(float_count, is_complex) && in GetReturnValueObjectSimple() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ABI/SystemZ/ |
| H A D | ABISysV_s390x.cpp | 358 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 359 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 364 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetArgumentValues() 368 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 386 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 387 if (!compiler_type) { in SetReturnValueObject() 401 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 402 compiler_type.IsPointerType()) { in SetReturnValueObject() 424 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject() 430 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
| H A D | TaggedASTType.h | 20 TaggedASTType(const CompilerType &compiler_type) in TaggedASTType() argument 21 : CompilerType(compiler_type) {} in TaggedASTType()
|
| H A D | Type.h | 265 TypeImpl(const CompilerType &compiler_type); 269 TypeImpl(const CompilerType &compiler_type, const CompilerType &dynamic); 273 void SetType(const CompilerType &compiler_type); 277 void SetType(const CompilerType &compiler_type, const CompilerType &dynamic); 414 TypeAndOrName(const CompilerType &compiler_type); 432 void SetCompilerType(CompilerType compiler_type);
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 162 CompilerType &compiler_type) { in GetPDBBuiltinTypeName() argument 190 return compiler_type.GetTypeName(); in GetPDBBuiltinTypeName() 796 lldb_private::CompilerType &compiler_type) { in CompleteTypeFromPDB() argument 797 if (GetClangASTImporter().CanImport(compiler_type)) in CompleteTypeFromPDB() 798 return GetClangASTImporter().CompleteType(compiler_type); in CompleteTypeFromPDB() 803 m_ast.GetAsCXXRecordDecl(compiler_type.GetOpaqueQualType()); in CompleteTypeFromPDB() 820 TypeSystemClang::SetHasExternalStorage(compiler_type.GetOpaqueQualType(), in CompleteTypeFromPDB() 829 return CompleteTypeFromUDT(*symbol_file, compiler_type, *udt); in CompleteTypeFromPDB() 1204 lldb_private::CompilerType &compiler_type, in CompleteTypeFromUDT() argument 1216 AddRecordBases(symbol_file, compiler_type, in CompleteTypeFromUDT() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc.cpp | 396 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 397 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 401 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) in GetArgumentValues() 405 else if (compiler_type.IsPointerType()) in GetArgumentValues() 422 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 423 if (!compiler_type) { in SetReturnValueObject() 437 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 438 compiler_type.IsPointerType()) { in SetReturnValueObject() 460 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject() 466 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
| H A D | ABISysV_ppc64.cpp | 274 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local 275 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 280 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetArgumentValues() 284 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 302 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local 303 if (!compiler_type) { in SetReturnValueObject() 317 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject() 318 compiler_type.IsPointerType()) { in SetReturnValueObject() 340 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject() 346 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Language.cpp | 420 CompilerType compiler_type(match->GetFullCompilerType()); in Find_Impl() local 421 compiler_type = AdjustForInclusion(compiler_type); in Find_Impl() 422 if (!compiler_type) in Find_Impl() 425 new Result(compiler_type)); in Find_Impl()
|