mirror of
https://github.com/intel/llvm.git
synced 2026-01-25 01:07:04 +08:00
Currently running `statistics dump` will trigger lldb to load debug info that's not yet loaded (eg. dwo files). Resulted in a delay in the command return, which, can be interrupting. This patch also added a new option `--load-all-debug-info` asking statistics to dump all possible debug info, which will force loading all debug info available if not yet loaded.
15 lines
677 B
OpenEdge ABL
15 lines
677 B
OpenEdge ABL
%feature("docstring",
|
|
"A container for options to use when dumping statistics."
|
|
) lldb::SBStatisticsOptions;
|
|
|
|
%feature("docstring", "Sets whether the statistics should only dump a summary."
|
|
) lldb::SBStatisticsOptions::SetSummaryOnly;
|
|
%feature("docstring", "Gets whether the statistics only dump a summary."
|
|
) lldb::SBStatisticsOptions::GetSummaryOnly;
|
|
%feature("docstring", "
|
|
Sets whether the statistics will force loading all possible debug info."
|
|
) lldb::SBStatisticsOptions::SetReportAllAvailableDebugInfo;
|
|
%feature("docstring", "
|
|
Gets whether the statistics will force loading all possible debug info."
|
|
) lldb::SBStatisticsOptions::GetReportAllAvailableDebugInfo;
|