summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/ValueObjectList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Core/ValueObjectList.cpp')
-rw-r--r--lldb/source/Core/ValueObjectList.cpp27
1 files changed, 23 insertions, 4 deletions
diff --git a/lldb/source/Core/ValueObjectList.cpp b/lldb/source/Core/ValueObjectList.cpp
index 5feeae7309a..8913d4da18d 100644
--- a/lldb/source/Core/ValueObjectList.cpp
+++ b/lldb/source/Core/ValueObjectList.cpp
@@ -57,6 +57,12 @@ ValueObjectList::GetSize() const
return m_value_objects.size();
}
+void
+ValueObjectList::Resize (uint32_t size)
+{
+ m_value_objects.resize (size);
+}
+
lldb::ValueObjectSP
ValueObjectList::GetValueObjectAtIndex (uint32_t idx)
{
@@ -66,6 +72,14 @@ ValueObjectList::GetValueObjectAtIndex (uint32_t idx)
return valobj_sp;
}
+void
+ValueObjectList::SetValueObjectAtIndex (uint32_t idx, const ValueObjectSP &valobj_sp)
+{
+ if (idx >= m_value_objects.size())
+ m_value_objects.resize (idx + 1);
+ m_value_objects[idx] = valobj_sp;
+}
+
ValueObjectSP
ValueObjectList::FindValueObjectByValueName (const char *name)
{
@@ -74,7 +88,8 @@ ValueObjectList::FindValueObjectByValueName (const char *name)
collection::iterator pos, end = m_value_objects.end();
for (pos = m_value_objects.begin(); pos != end; ++pos)
{
- if ((*pos)->GetName() == name_const_str)
+ ValueObject *valobj = (*pos).get();
+ if (valobj && valobj->GetName() == name_const_str)
{
val_obj_sp = *pos;
break;
@@ -91,7 +106,10 @@ ValueObjectList::FindValueObjectByUID (lldb::user_id_t uid)
for (pos = m_value_objects.begin(); pos != end; ++pos)
{
- if ((*pos)->GetID() == uid)
+ // Watch out for NULL objects in our list as the list
+ // might get resized to a specific size and lazily filled in
+ ValueObject *valobj = (*pos).get();
+ if (valobj && valobj->GetID() == uid)
{
valobj_sp = *pos;
break;
@@ -102,14 +120,15 @@ ValueObjectList::FindValueObjectByUID (lldb::user_id_t uid)
ValueObjectSP
-ValueObjectList::FindValueObjectByPointer (ValueObject *valobj)
+ValueObjectList::FindValueObjectByPointer (ValueObject *find_valobj)
{
ValueObjectSP valobj_sp;
collection::iterator pos, end = m_value_objects.end();
for (pos = m_value_objects.begin(); pos != end; ++pos)
{
- if ((*pos).get() == valobj)
+ ValueObject *valobj = (*pos).get();
+ if (valobj && valobj == find_valobj)
{
valobj_sp = *pos;
break;
OpenPOWER on IntegriCloud