summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectFrame.cpp
diff options
context:
space:
mode:
authorEnrico Granata <granata.enrico@gmail.com>2011-08-12 02:00:06 +0000
committerEnrico Granata <granata.enrico@gmail.com>2011-08-12 02:00:06 +0000
commit22c55d180ddc9772ee03d5034677d27a2735c92e (patch)
treeca48d4214abacb43fba0202dbfb673cf04d99f92 /lldb/source/Commands/CommandObjectFrame.cpp
parente45db981e45f21ef6ec4101d12e626aa627b4374 (diff)
downloadbcm5719-llvm-22c55d180ddc9772ee03d5034677d27a2735c92e.tar.gz
bcm5719-llvm-22c55d180ddc9772ee03d5034677d27a2735c92e.zip
*Some more optimizations in usage of ConstString
*New setting target.max-children-count gives an upper-bound to the number of child objects that will be displayed at each depth-level This might be a breaking change in some scenarios. To override the new limit you can use the --show-all-children (-A) option to frame variable or increase the limit in your lldbinit file *Command "type synthetic" has been split in two: - "type synthetic" now only handles Python synthetic children providers - the new command "type filter" handles filters Because filters and synthetic providers are both ways to replace the children of a ValueObject, only one can be effective at any given time. llvm-svn: 137416
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectFrame.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp
index 12b4b1b1f3b..d03d3bb18a0 100644
--- a/lldb/source/Commands/CommandObjectFrame.cpp
+++ b/lldb/source/Commands/CommandObjectFrame.cpp
@@ -502,7 +502,8 @@ public:
m_varobj_options.be_raw ? false : m_varobj_options.use_synth,
false,
m_varobj_options.flat_output,
- m_varobj_options.be_raw ? UINT32_MAX : m_varobj_options.no_summary_depth);
+ m_varobj_options.be_raw ? UINT32_MAX : m_varobj_options.no_summary_depth,
+ m_varobj_options.be_raw ? true : m_varobj_options.ignore_cap);
}
}
}
@@ -555,7 +556,8 @@ public:
m_varobj_options.be_raw ? false : m_varobj_options.use_synth,
false,
m_varobj_options.flat_output,
- m_varobj_options.be_raw ? UINT32_MAX : m_varobj_options.no_summary_depth);
+ m_varobj_options.be_raw ? UINT32_MAX : m_varobj_options.no_summary_depth,
+ m_varobj_options.be_raw ? true : m_varobj_options.ignore_cap);
}
else
{
@@ -647,7 +649,8 @@ public:
m_varobj_options.be_raw ? false : m_varobj_options.use_synth,
false,
m_varobj_options.flat_output,
- m_varobj_options.be_raw ? UINT32_MAX : m_varobj_options.no_summary_depth);
+ m_varobj_options.be_raw ? UINT32_MAX : m_varobj_options.no_summary_depth,
+ m_varobj_options.be_raw ? true : m_varobj_options.ignore_cap);
}
}
}
OpenPOWER on IntegriCloud