diff options
| author | Enrico Granata <egranata@apple.com> | 2013-01-29 01:35:01 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2013-01-29 01:35:01 +0000 |
| commit | 9a31ccbad87d98d7d567aae3228f955e4f2d03e7 (patch) | |
| tree | 6d9512a07fd782ab78180375bb9461bcdb9e2617 /lldb/source/Core | |
| parent | 0b7bc7f99612e150304b83c5149b220b959b7341 (diff) | |
| download | bcm5719-llvm-9a31ccbad87d98d7d567aae3228f955e4f2d03e7.tar.gz bcm5719-llvm-9a31ccbad87d98d7d567aae3228f955e4f2d03e7.zip | |
<rdar://problem/12890171>
Providing a compact display mode for "po" to use where the convenience variable name and the pointer value are both hidden.
This is for convenience when dealing with ObjC instances where the description often gets it right and the debugger-provided information is not useful to most people.
If you need either of these, "expr" will still show them.
llvm-svn: 173748
Diffstat (limited to 'lldb/source/Core')
| -rw-r--r-- | lldb/source/Core/ValueObject.cpp | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index b9a0a13b904..82b2abfc028 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -3287,10 +3287,13 @@ DumpValueObject_Impl (Stream &s, { // If we are showing types, also qualify the C++ base classes const bool qualify_cxx_base_classes = options.m_show_types; - valobj->GetExpressionPath(s, qualify_cxx_base_classes); - s.PutCString(" ="); + if (!options.m_hide_name) + { + valobj->GetExpressionPath(s, qualify_cxx_base_classes); + s.PutCString(" ="); + } } - else + else if (!options.m_hide_name) { const char *name_cstr = root_valobj_name ? root_valobj_name : valobj->GetName().AsCString(""); s.Printf ("%s =", name_cstr); @@ -3354,7 +3357,7 @@ DumpValueObject_Impl (Stream &s, // Make sure we have a value and make sure the summary didn't // specify that the value should not be printed - and do not print // the value if this thing is nil - if (!is_nil && !value_str.empty() && (entry == NULL || entry->DoesPrintValue() || sum_cstr == NULL)) + if (!is_nil && !value_str.empty() && (entry == NULL || entry->DoesPrintValue() || sum_cstr == NULL) && !options.m_hide_value) s.Printf(" %s", value_str.c_str()); if (sum_cstr) @@ -3363,11 +3366,13 @@ DumpValueObject_Impl (Stream &s, // let's avoid the overly verbose no description error for a nil thing if (options.m_use_objc && !is_nil) { + if (!options.m_hide_value || !options.m_hide_name) + s.Printf(" "); const char *object_desc = valobj->GetObjectDescription(); if (object_desc) - s.Printf(" %s\n", object_desc); + s.Printf("%s\n", object_desc); else - s.Printf (" [no Objective-C description available]\n"); + s.Printf ("[no Objective-C description available]\n"); return; } } @@ -3438,7 +3443,7 @@ DumpValueObject_Impl (Stream &s, ValueObject::DumpValueObjectOptions child_options(options); child_options.SetFormat(options.m_format).SetSummary().SetRootValueObjectName(); - child_options.SetScopeChecked(true) + child_options.SetScopeChecked(true).SetHideName(options.m_hide_name).SetHideValue(options.m_hide_value) .SetOmitSummaryDepth(child_options.m_omit_summary_depth > 1 ? child_options.m_omit_summary_depth - 1 : 0); for (size_t idx=0; idx<num_children; ++idx) { |

