Home
last modified time | relevance | path

Searched refs:compiler_type (Results 1 – 25 of 79) sorted by relevance

1234

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectConstResult.cpp53 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()
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()
134 return (new ValueObjectConstResult(exe_scope, *manager_sp, compiler_type, in Create()
164 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult()
297 ValueObjectConstResult::DoCast(const CompilerType &compiler_type) { in DoCast() argument
[all …]
H A DValueObjectConstResultImpl.cpp68 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 DValueObjectConstResultChild.cpp25 ValueObject &parent, const CompilerType &compiler_type, in ValueObjectConstResultChild() argument
30 : ValueObjectChild(parent, compiler_type, name, byte_size, byte_offset, in ValueObjectConstResultChild()
72 ValueObjectConstResultChild::DoCast(const CompilerType &compiler_type) { in DoCast() argument
73 return m_impl.Cast(compiler_type); in DoCast()
H A DValueObjectConstResultCast.cpp60 ValueObjectConstResultCast::DoCast(const CompilerType &compiler_type) { in DoCast() argument
61 return m_impl.Cast(compiler_type); in DoCast()
H A DValueObjectCast.cpp69 CompilerType compiler_type(GetCompilerType()); in UpdateValue() local
70 m_value.SetCompilerType(compiler_type); in UpdateValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIMacOSX_i386.cpp167 CompilerType compiler_type(value->GetCompilerType()); in GetArgumentValues() local
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()
263 if (!compiler_type) in GetReturnValueObjectImpl()
268 value.SetCompilerType(compiler_type); in GetReturnValueObjectImpl()
276 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetReturnValueObjectImpl()
[all …]
H A DABIWindows_x86_64.cpp277 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 DABISysV_x86_64.cpp270 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local
271 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues()
276 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetArgumentValues()
280 } else if (compiler_type.IsPointerType()) { in GetArgumentValues()
298 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local
299 if (!compiler_type) { in SetReturnValueObject()
313 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject()
314 compiler_type.IsPointerType()) { in SetReturnValueObject()
336 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject()
342 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
H A DABISysV_i386.cpp184 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()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp466 const CompilerType &compiler_type, CompletionRequest &request);
481 compiler_type.GetDirectBaseClassAtIndex(i, nullptr); in PrivateAutoCompleteMembers()
494 compiler_type.GetVirtualBaseClassAtIndex(i, nullptr); in PrivateAutoCompleteMembers()
503 const uint32_t num_fields = compiler_type.GetNumFields(); in PrivateAutoCompleteMembers()
537 const lldb::TypeClass type_class = compiler_type.GetTypeClass(); in PrivateAutoComplete()
539 if (compiler_type.IsValid()) { in PrivateAutoComplete()
602 compiler_type, request); in PrivateAutoComplete()
631 if (compiler_type.IsValid()) { in PrivateAutoComplete()
669 if (compiler_type.IsValid()) { in PrivateAutoComplete()
716 CompilerType compiler_type; in AutoComplete() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatManager.cpp177 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()
219 if (compiler_type.IsPointerType()) { in GetPossibleMatches()
262 if (compiler_type.IsTypedefType()) { in GetPossibleMatches()
270 if (!compiler_type.IsValid()) in GetPossibleMatches()
274 compiler_type.GetFullyUnqualifiedType(); in GetPossibleMatches()
278 compiler_type.GetOpaqueQualType()) in GetPossibleMatches()
463 CompilerType compiler_type(valobj.GetCompilerType()); in ShouldPrintAsOneLiner() local
464 if (compiler_type.IsValid()) { in ShouldPrintAsOneLiner()
[all …]
H A DTypeFormat.cpp66 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()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectConstResult.h43 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 DoCast(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 DValueObjectConstResultChild.h32 const CompilerType &compiler_type,
63 lldb::ValueObjectSP DoCast(const CompilerType &compiler_type) override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABISysV_arm.cpp1456 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local
1457 if (compiler_type) { in GetArgumentValues()
1461 compiler_type.IsPointerOrReferenceType()) { in GetArgumentValues()
1546 if (!compiler_type) in GetReturnValueObjectImpl()
1551 value.SetCompilerType(compiler_type); in GetReturnValueObjectImpl()
1616 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
1621 } else if (compiler_type.IsVectorType()) { in GetReturnValueObjectImpl()
1699 } else if (compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
1703 compiler_type.IsHomogeneousAggregate(&base_type); in GetReturnValueObjectImpl()
1839 if (!compiler_type) { in SetReturnValueObject()
[all …]
H A DABIMacOSX_arm.cpp1452 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local
1453 if (compiler_type) { in GetArgumentValues()
1461 else if (compiler_type.IsPointerOrReferenceType()) in GetArgumentValues()
1546 if (!compiler_type) in GetReturnValueObjectImpl()
1549 value.SetCompilerType(compiler_type); in GetReturnValueObjectImpl()
1561 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) { in GetReturnValueObjectImpl()
1583 compiler_type.GetByteSize(&thread); in GetReturnValueObjectImpl()
1668 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
1694 if (!compiler_type) { in SetReturnValueObject()
1708 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARC/
H A DABISysV_arc.cpp319 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 …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp343 CompilerType compiler_type = m_ast->GetBasicType(basic_type); in CreateInteger() local
348 if (!compiler_type.IsIntegerType(compiler_type_is_signed)) in CreateInteger()
353 compiler_type.GetDisplayTypeName().GetStringRef()), in CreateInteger()
383 CompilerType compiler_type; in CreateModifier() local
407 Type::eEncodingIsUID, decl, compiler_type, in CreateModifier()
448 CompilerType compiler_type = m_ast->CreateArrayType( in CreateArray() local
454 Type::eEncodingIsUID, decl, compiler_type, in CreateArray()
516 bool SymbolFileCTF::CompleteType(CompilerType &compiler_type) { in CompleteType() argument
542 m_ast->StartTagDeclarationDefinition(compiler_type); in CompleteType()
551 m_ast->CompleteTagDeclarationDefinition(compiler_type); in CompleteType()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.cpp358 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()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTaggedASTType.h20 TaggedASTType(const CompilerType &compiler_type) in TaggedASTType() argument
21 : CompilerType(compiler_type) {} in TaggedASTType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_riscv.cpp297 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local
298 if (!compiler_type) { in SetReturnValueObject()
306 if (!compiler_type.IsIntegerOrEnumerationType(is_signed) && in SetReturnValueObject()
307 !compiler_type.IsPointerType()) { in SetReturnValueObject()
531 CompilerType &compiler_type) const { in GetReturnValueObjectSimple()
534 if (!compiler_type) in GetReturnValueObjectSimple()
542 value.SetCompilerType(compiler_type); in GetReturnValueObjectSimple()
544 const uint32_t type_flags = compiler_type.GetTypeInfo(); in GetReturnValueObjectSimple()
545 const size_t byte_size = compiler_type.GetByteSize(&thread).value_or(0); in GetReturnValueObjectSimple()
569 if (compiler_type.IsFloatingPointType(float_count, is_complex) && in GetReturnValueObjectSimple()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp190 return compiler_type.GetTypeName(); in GetPDBBuiltinTypeName()
794 lldb_private::CompilerType &compiler_type) { in CompleteTypeFromPDB() argument
795 if (GetClangASTImporter().CanImport(compiler_type)) in CompleteTypeFromPDB()
796 return GetClangASTImporter().CompleteType(compiler_type); in CompleteTypeFromPDB()
801 m_ast.GetAsCXXRecordDecl(compiler_type.GetOpaqueQualType()); in CompleteTypeFromPDB()
1202 lldb_private::CompilerType &compiler_type, in CompleteTypeFromUDT() argument
1214 AddRecordBases(symbol_file, compiler_type, in CompleteTypeFromUDT()
1224 AddRecordMethods(symbol_file, compiler_type, *methods_enum); in CompleteTypeFromUDT()
1227 TypeSystemClang::BuildIndirectFields(compiler_type); in CompleteTypeFromUDT()
1233 return static_cast<bool>(compiler_type); in CompleteTypeFromUDT()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.cpp397 CompilerType compiler_type = value->GetCompilerType(); in GetArgumentValues() local
398 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues()
402 if (compiler_type.IsIntegerOrEnumerationType(is_signed)) in GetArgumentValues()
406 else if (compiler_type.IsPointerType()) in GetArgumentValues()
423 CompilerType compiler_type = new_value_sp->GetCompilerType(); in SetReturnValueObject() local
424 if (!compiler_type) { in SetReturnValueObject()
438 if (compiler_type.IsIntegerOrEnumerationType(is_signed) || in SetReturnValueObject()
439 compiler_type.IsPointerType()) { in SetReturnValueObject()
461 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject()
467 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
H A DABISysV_ppc64.cpp274 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()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp442 CompilerType compiler_type(match->GetFullCompilerType()); in Find_Impl() local
443 compiler_type = AdjustForInclusion(compiler_type); in Find_Impl()
444 if (!compiler_type) in Find_Impl()
447 new Result(compiler_type)); in Find_Impl()

1234