[Lldb-commits] [lldb] Support statistics dump summary only mode (PR #80745)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 5 15:52:54 PST 2024


================
@@ -83,13 +86,15 @@ class CommandObjectStatsDump : public CommandObjectParsed {
 
     void OptionParsingStarting(ExecutionContext *execution_context) override {
       m_all_targets = false;
+      m_summary_only = false;
     }
 
     llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
       return llvm::ArrayRef(g_statistics_dump_options);
     }
 
     bool m_all_targets = false;
+    bool m_summary_only = false;
----------------
clayborg wrote:

Change this to:
```
lldb_private::StatisticsOptions m_options;
```
We should probably also move `m_all_targets` into `lldb_private::StatisticsOptions`.

https://github.com/llvm/llvm-project/pull/80745


More information about the lldb-commits mailing list