Home
last modified time | relevance | path

Searched refs:m_frozen_sp (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionVariable.h38 ConstString GetName() { return m_frozen_sp->GetName(); } in GetName()
40 lldb::ValueObjectSP GetValueObject() { return m_frozen_sp; } in GetValueObject()
44 void ValueUpdated() { m_frozen_sp->ValueUpdated(); } in ValueUpdated()
47 return m_frozen_sp->GetValue().GetRegisterInfo(); in GetRegisterInfo()
51 return m_frozen_sp->GetValue().SetContext( in SetRegisterInfo()
58 m_frozen_sp->GetValue().SetCompilerType(compiler_type); in SetCompilerType()
61 void SetName(ConstString name) { m_frozen_sp->SetName(name); } in SetName()
74 if (m_frozen_sp.get() == nullptr)
77 if (force || (m_frozen_sp->GetLiveAddress() == LLDB_INVALID_ADDRESS))
78 m_frozen_sp->SetLiveAddress(m_live_sp->GetLiveAddress());
[all …]
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DExpressionVariable.cpp23 std::optional<uint64_t> byte_size = m_frozen_sp->GetByteSize(); in GetValueBytes()
25 if (m_frozen_sp->GetDataExtractor().GetByteSize() < *byte_size) { in GetValueBytes()
26 m_frozen_sp->GetValue().ResizeData(*byte_size); in GetValueBytes()
27 m_frozen_sp->GetValue().GetData(m_frozen_sp->GetDataExtractor()); in GetValueBytes()
30 m_frozen_sp->GetDataExtractor().GetDataStart()); in GetValueBytes()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.cpp30 m_frozen_sp = in ClangExpressionVariable()
39 m_frozen_sp = ValueObjectConstResult::Create(exe_scope, value, name); in ClangExpressionVariable()
46 m_frozen_sp = valobj_sp; in ClangExpressionVariable()
55 m_frozen_sp = in ClangExpressionVariable()
62 TypeFromUser tfu(m_frozen_sp->GetCompilerType()); in GetTypeFromUser()
H A DClangExpressionDeclMap.cpp310 var->m_frozen_sp->SetHasCompleteType(); in AddPersistentVariable()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp3114 persistent_var_sp->m_live_sp = persistent_var_sp->m_frozen_sp; in Persist()