Home
last modified time | relevance | path

Searched refs:valobj_sp (Results 1 – 25 of 61) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcpp.cpp82 if (valobj_sp) in LibstdcppMapIteratorSyntheticFrontEnd()
88 if (!valobj_sp) in Update()
98 if (!valobj_sp) in Update()
155 return (valobj_sp ? new LibstdcppMapIteratorSyntheticFrontEnd(valobj_sp) in LibstdcppMapIteratorSyntheticFrontEndCreator()
175 return (valobj_sp in LibStdcppVectorIteratorSyntheticFrontEndCreator()
185 if (valobj_sp) in VectorIteratorSyntheticFrontEnd()
193 if (!valobj_sp) in Update()
196 if (!valobj_sp) in Update()
355 if (valobj_sp) in LibStdcppSharedPtrSyntheticFrontEnd()
364 if (!valobj_sp) in GetChildAtIndex()
[all …]
H A DLibCxx.cpp37 if (!valobj_sp) in LibcxxOptionalSummaryProvider()
61 if (!valobj_sp) in LibcxxFunctionSummaryProvider()
107 if (!valobj_sp) in LibcxxSmartPointerSummaryProvider()
150 if (!valobj_sp) in LibcxxUniquePointerSummaryProvider()
209 if (valobj_sp) in LibCxxMapIteratorSyntheticFrontEnd()
218 if (!valobj_sp) in Update()
226 if (!valobj_sp) in Update()
383 if (valobj_sp) in LibcxxSharedPtrSyntheticFrontEnd()
399 if (!valobj_sp) in GetChildAtIndex()
425 if (!valobj_sp) in Update()
[all …]
H A DLibCxxVector.cpp23 LibcxxStdVectorSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
71 : SyntheticChildrenFrontEnd(*valobj_sp), m_start(nullptr), in LibcxxStdVectorSyntheticFrontEnd()
73 if (valobj_sp) in LibcxxStdVectorSyntheticFrontEnd()
177 if (valobj_sp) { in LibcxxVectorBoolSyntheticFrontEnd()
248 ValueObjectSP valobj_sp = m_backend.GetSP(); in Update() local
249 if (!valobj_sp) in Update()
251 m_exe_ctx_ref = valobj_sp->GetExecutionContextRef(); in Update()
286 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in LibcxxStdVectorSyntheticFrontEndCreator() argument
287 if (!valobj_sp) in LibcxxStdVectorSyntheticFrontEndCreator()
289 CompilerType type = valobj_sp->GetCompilerType(); in LibcxxStdVectorSyntheticFrontEndCreator()
[all …]
H A DLibStdcppUniquePointer.cpp27 explicit LibStdcppUniquePtrSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
57 lldb::ValueObjectSP valobj_sp) in LibStdcppUniquePtrSyntheticFrontEnd() argument
58 : SyntheticChildrenFrontEnd(*valobj_sp) { in LibStdcppUniquePtrSyntheticFrontEnd()
68 ValueObjectSP valobj_sp = valobj_backend_sp->GetNonSyntheticValue(); in GetTuple() local
69 if (!valobj_sp) in GetTuple()
73 valobj_sp->GetChildMemberWithName(ConstString("_M_t"), true); in GetTuple()
173 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in LibStdcppUniquePtrSyntheticFrontEndCreator() argument
174 return (valobj_sp ? new LibStdcppUniquePtrSyntheticFrontEnd(valobj_sp) in LibStdcppUniquePtrSyntheticFrontEndCreator()
H A DLibCxxInitializerList.cpp24 LibcxxInitializerListSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
48 LibcxxInitializerListSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) in LibcxxInitializerListSyntheticFrontEnd() argument
49 : SyntheticChildrenFrontEnd(*valobj_sp), m_start(nullptr), m_element_type(), in LibcxxInitializerListSyntheticFrontEnd()
51 if (valobj_sp) in LibcxxInitializerListSyntheticFrontEnd()
119 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in LibcxxInitializerListSyntheticFrontEndCreator() argument
120 return (valobj_sp ? new LibcxxInitializerListSyntheticFrontEnd(valobj_sp) in LibcxxInitializerListSyntheticFrontEndCreator()
H A DLibStdcppTuple.cpp27 explicit LibStdcppTupleSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
51 lldb::ValueObjectSP valobj_sp) in LibStdcppTupleSyntheticFrontEnd() argument
52 : SyntheticChildrenFrontEnd(*valobj_sp) { in LibStdcppTupleSyntheticFrontEnd()
109 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in LibStdcppTupleSyntheticFrontEndCreator() argument
110 return (valobj_sp ? new LibStdcppTupleSyntheticFrontEnd(valobj_sp) : nullptr); in LibStdcppTupleSyntheticFrontEndCreator()
H A DLibCxxAtomic.cpp90 LibcxxStdAtomicSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
111 LibcxxStdAtomicSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) in LibcxxStdAtomicSyntheticFrontEnd() argument
112 : SyntheticChildrenFrontEnd(*valobj_sp), m_real_child(nullptr) {} in LibcxxStdAtomicSyntheticFrontEnd()
147 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in LibcxxAtomicSyntheticFrontEndCreator() argument
148 if (valobj_sp) in LibcxxAtomicSyntheticFrontEndCreator()
149 return new LibcxxStdAtomicSyntheticFrontEnd(valobj_sp); in LibcxxAtomicSyntheticFrontEndCreator()
H A DLibCxxVariant.cpp120 ValueObjectSP valobj_sp(valobj.GetNonSyntheticValue()); in LibcxxVariantSummaryProvider() local
121 if (!valobj_sp) in LibcxxVariantSummaryProvider()
125 valobj_sp->GetChildMemberWithName(ConstString("__impl"), true)); in LibcxxVariantSummaryProvider()
250 lldb::ValueObjectSP valobj_sp) { in LibcxxVariantFrontEndCreator() argument
251 if (valobj_sp) in LibcxxVariantFrontEndCreator()
252 return new VariantFrontEnd(*valobj_sp); in LibcxxVariantFrontEndCreator()
H A DLibCxxUnorderedMap.cpp30 LibcxxStdUnorderedMapSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
56 LibcxxStdUnorderedMapSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) in LibcxxStdUnorderedMapSyntheticFrontEnd() argument
57 : SyntheticChildrenFrontEnd(*valobj_sp), m_element_type(), m_tree(nullptr), in LibcxxStdUnorderedMapSyntheticFrontEnd()
59 if (valobj_sp) in LibcxxStdUnorderedMapSyntheticFrontEnd()
218 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in LibcxxStdUnorderedMapSyntheticFrontEndCreator() argument
219 return (valobj_sp ? new LibcxxStdUnorderedMapSyntheticFrontEnd(valobj_sp) in LibcxxStdUnorderedMapSyntheticFrontEndCreator()
H A DLibCxxList.cpp150 ListFrontEnd(lldb::ValueObjectSP valobj_sp);
310 ListFrontEnd::ListFrontEnd(lldb::ValueObjectSP valobj_sp) in ListFrontEnd() argument
311 : AbstractListFrontEnd(*valobj_sp), m_node_address(), m_tail(nullptr) { in ListFrontEnd()
312 if (valobj_sp) in ListFrontEnd()
425 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in LibcxxStdListSyntheticFrontEndCreator() argument
426 return (valobj_sp ? new ListFrontEnd(valobj_sp) : nullptr); in LibcxxStdListSyntheticFrontEndCreator()
431 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in LibcxxStdForwardListSyntheticFrontEndCreator() argument
432 return valobj_sp ? new ForwardListFrontEnd(*valobj_sp) : nullptr; in LibcxxStdForwardListSyntheticFrontEndCreator()
H A DLibCxx.h63 LibCxxMapIteratorSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
92 LibcxxSharedPtrSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
112 LibcxxUniquePtrSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
174 lldb::ValueObjectSP valobj_sp);
178 lldb::ValueObjectSP valobj_sp);
H A DLibCxxQueue.cpp61 lldb::ValueObjectSP valobj_sp) { in LibcxxQueueFrontEndCreator() argument
62 if (valobj_sp) in LibcxxQueueFrontEndCreator()
63 return new QueueFrontEnd(*valobj_sp); in LibcxxQueueFrontEndCreator()
H A DBlockPointer.cpp31 BlockPointerSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) in BlockPointerSyntheticFrontEnd() argument
32 : SyntheticChildrenFrontEnd(*valobj_sp), m_block_struct_type() { in BlockPointerSyntheticFrontEnd()
203 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in BlockPointerSyntheticFrontEndCreator() argument
204 if (!valobj_sp) in BlockPointerSyntheticFrontEndCreator()
206 return new BlockPointerSyntheticFrontEnd(valobj_sp); in BlockPointerSyntheticFrontEndCreator()
H A DLibCxxOptional.cpp80 lldb::ValueObjectSP valobj_sp) { in LibcxxOptionalFrontEndCreator() argument
81 if (valobj_sp) in LibcxxOptionalFrontEndCreator()
82 return new OptionalFrontEnd(*valobj_sp); in LibcxxOptionalFrontEndCreator()
H A DLibCxxTuple.cpp89 lldb::ValueObjectSP valobj_sp) { in LibcxxTupleFrontEndCreator() argument
90 if (valobj_sp) in LibcxxTupleFrontEndCreator()
91 return new TupleFrontEnd(*valobj_sp); in LibcxxTupleFrontEndCreator()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSSet.cpp354 valobj_sp = valobj_sp->AddressOf(error); in NSSetSyntheticFrontEndCreator()
406 if (valobj_sp) in NSSetISyntheticFrontEnd()
442 if (!valobj_sp) in Update()
444 if (!valobj_sp) in Update()
515 if (!set_item.valobj_sp) { in GetChildAtIndex()
544 return set_item.valobj_sp; in GetChildAtIndex()
573 if (!valobj_sp) in Update()
637 if (!set_item.valobj_sp) { in GetChildAtIndex()
675 if (valobj_sp) in GenericNSSetMSyntheticFrontEnd()
720 if (!valobj_sp) in Update()
[all …]
H A DNSArray.cpp440 lldb::ValueObjectSP valobj_sp) in NSArrayMSyntheticFrontEndBase() argument
443 if (valobj_sp) { in NSArrayMSyntheticFrontEndBase()
450 if (valobj_sp->GetProcessSP()) in NSArrayMSyntheticFrontEndBase()
494 if (!valobj_sp) in Update()
586 lldb::ValueObjectSP valobj_sp) in GenericNSArrayISyntheticFrontEnd() argument
589 if (valobj_sp) { in GenericNSArrayISyntheticFrontEnd()
638 if (!valobj_sp) in Update()
698 lldb::ValueObjectSP valobj_sp) in NSArray0SyntheticFrontEnd() argument
727 lldb::ValueObjectSP valobj_sp) in NSArray1SyntheticFrontEnd() argument
776 if (!valobj_sp) in NSArraySyntheticFrontEndCreator()
[all …]
H A DNSDictionary.cpp497 valobj_sp = valobj_sp->AddressOf(error); in NSDictionarySyntheticFrontEndCreator()
591 if (!valobj_sp) in Update()
668 if (!dict_item.valobj_sp) { in GetChildAtIndex()
696 return dict_item.valobj_sp; in GetChildAtIndex()
724 if (!valobj_sp) in Update()
795 if (!dict_item.valobj_sp) { in GetChildAtIndex()
830 return dict_item.valobj_sp; in GetChildAtIndex()
953 if (!valobj_sp) in Update()
1045 if (!dict_item.valobj_sp) { in GetChildAtIndex()
1073 return dict_item.valobj_sp; in GetChildAtIndex()
[all …]
H A DNSException.cpp122 NSExceptionSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) in NSExceptionSyntheticFrontEnd() argument
123 : SyntheticChildrenFrontEnd(*valobj_sp) {} in NSExceptionSyntheticFrontEnd()
179 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in NSExceptionSyntheticFrontEndCreator() argument
180 lldb::ProcessSP process_sp(valobj_sp->GetProcessSP()); in NSExceptionSyntheticFrontEndCreator()
188 runtime->GetClassDescriptor(*valobj_sp.get())); in NSExceptionSyntheticFrontEndCreator()
199 return (new NSExceptionSyntheticFrontEnd(valobj_sp)); in NSExceptionSyntheticFrontEndCreator()
201 return (new NSExceptionSyntheticFrontEnd(valobj_sp)); in NSExceptionSyntheticFrontEndCreator()
203 return (new NSExceptionSyntheticFrontEnd(valobj_sp)); in NSExceptionSyntheticFrontEndCreator()
H A DNSError.cpp111 NSErrorSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) in NSErrorSyntheticFrontEnd() argument
112 : SyntheticChildrenFrontEnd(*valobj_sp) {} in NSErrorSyntheticFrontEnd()
186 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) { in NSErrorSyntheticFrontEndCreator() argument
187 lldb::ProcessSP process_sp(valobj_sp->GetProcessSP()); in NSErrorSyntheticFrontEndCreator()
195 runtime->GetClassDescriptor(*valobj_sp.get())); in NSErrorSyntheticFrontEndCreator()
206 return (new NSErrorSyntheticFrontEnd(valobj_sp)); in NSErrorSyntheticFrontEndCreator()
208 return (new NSErrorSyntheticFrontEnd(valobj_sp)); in NSErrorSyntheticFrontEndCreator()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObjectList.cpp40 lldb::ValueObjectSP valobj_sp; in GetValueObjectAtIndex() local
43 return valobj_sp; in GetValueObjectAtIndex()
47 lldb::ValueObjectSP valobj_sp; in RemoveValueObjectAtIndex() local
52 return valobj_sp; in RemoveValueObjectAtIndex()
59 m_value_objects[idx] = valobj_sp; in SetValueObjectAtIndex()
77 ValueObjectSP valobj_sp; in FindValueObjectByUID() local
85 valobj_sp = *pos; in FindValueObjectByUID()
89 return valobj_sp; in FindValueObjectByUID()
94 ValueObjectSP valobj_sp; in FindValueObjectByPointer() local
100 valobj_sp = *pos; in FindValueObjectByPointer()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp590 if (!valobj_sp) in GetValueForVariableExpressionPath()
593 if (valobj_sp) in GetValueForVariableExpressionPath()
600 if (!valobj_sp) in GetValueForVariableExpressionPath()
601 return valobj_sp; in GetValueForVariableExpressionPath()
603 if (!valobj_sp) { in GetValueForVariableExpressionPath()
636 if (!valobj_sp->IsPointerType() && valobj_sp->HasSyntheticValue()) { in GetValueForVariableExpressionPath()
647 valobj_sp = valobj_sp->Dereference(deref_error); in GetValueForVariableExpressionPath()
1054 if (valobj_sp) { in GetValueForVariableExpressionPath()
1063 return valobj_sp; in GetValueForVariableExpressionPath()
1144 return valobj_sp; in GetValueObjectForFrameVariable()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp100 ValueObjectSP valobj_sp( in CreateValueObjectFromExpression() local
102 if (valobj_sp) in CreateValueObjectFromExpression()
103 valobj_sp->SetSyntheticChildrenGenerated(true); in CreateValueObjectFromExpression()
104 return valobj_sp; in CreateValueObjectFromExpression()
110 ValueObjectSP valobj_sp( in CreateValueObjectFromAddress() local
112 if (valobj_sp) in CreateValueObjectFromAddress()
113 valobj_sp->SetSyntheticChildrenGenerated(true); in CreateValueObjectFromAddress()
114 return valobj_sp; in CreateValueObjectFromAddress()
120 ValueObjectSP valobj_sp( in CreateValueObjectFromData() local
122 if (valobj_sp) in CreateValueObjectFromData()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionArgParser.cpp178 lldb::ValueObjectSP valobj_sp; in ToAddress() local
186 target->EvaluateExpression(s, exe_ctx->GetFramePtr(), valobj_sp, options); in ToAddress()
190 if (valobj_sp) in ToAddress()
191 valobj_sp = valobj_sp->GetQualifiedRepresentationIfAvailable( in ToAddress()
192 valobj_sp->GetDynamicValueType(), true); in ToAddress()
194 if (valobj_sp) in ToAddress()
195 addr = valobj_sp->GetValueAsUnsigned(fail_value, &success); in ToAddress()
206 s.str().c_str(), valobj_sp->GetTypeName().GetCString()); in ToAddress()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp138 ValueObjectSP valobj_sp; in DoExecute() local
160 if (!valobj_sp) { in DoExecute()
166 [&valobj_sp](ConstString type, ConstString var, in DoExecute()
171 valobj_sp->GetExpressionPath(stream, format); in DoExecute()
491 ValueObjectSP valobj_sp; in DoExecute() local
539 if (valobj_sp) { in DoExecute()
585 if (valobj_sp) { in DoExecute()
605 valobj_sp->Dump(output_stream, options); in DoExecute()
653 if (valobj_sp) { in DoExecute()
656 if (valobj_sp->IsInScope()) { in DoExecute()
[all …]

123