diff options
author | Enrico Granata <granata.enrico@gmail.com> | 2011-07-15 23:30:15 +0000 |
---|---|---|
committer | Enrico Granata <granata.enrico@gmail.com> | 2011-07-15 23:30:15 +0000 |
commit | 9dd75c88869daad7905fbc457809c9be77d6688b (patch) | |
tree | cb6e3be54033c1d489dd854457f807b6e66d80eb /lldb/source/Core/Debugger.cpp | |
parent | 6b917bb9b54c0646a7b7b331b5e96419258672fb (diff) | |
download | bcm5719-llvm-9dd75c88869daad7905fbc457809c9be77d6688b.tar.gz bcm5719-llvm-9dd75c88869daad7905fbc457809c9be77d6688b.zip |
System-wide summaries:
- Summaries for char*, const char* and char[] are loaded at startup as
system-wide summaries. This means you cannot delete them unless you use
the -a option to type summary delete/clear
- You can add your own system-wide summaries by using the -w option to type
summary add
Several code improvements for the Python summaries feature
llvm-svn: 135326
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index 029a1d85b53..cde5da77d05 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1798,6 +1798,48 @@ Debugger::SummaryFormats::GetCount() } bool +Debugger::SystemSummaryFormats::Get(ValueObject& vobj, SummaryFormat::SharedPointer &entry) +{ + return GetFormatManager().SystemSummary().Get(vobj,entry); +} + +void +Debugger::SystemSummaryFormats::Add(const ConstString &type, const SummaryFormat::SharedPointer &entry) +{ + GetFormatManager().SystemSummary().Add(type.AsCString(),entry); +} + +bool +Debugger::SystemSummaryFormats::Delete(const ConstString &type) +{ + return GetFormatManager().SystemSummary().Delete(type.AsCString()); +} + +void +Debugger::SystemSummaryFormats::Clear() +{ + GetFormatManager().SystemSummary().Clear(); +} + +void +Debugger::SystemSummaryFormats::LoopThrough(SummaryFormat::SummaryCallback callback, void* callback_baton) +{ + GetFormatManager().SystemSummary().LoopThrough(callback, callback_baton); +} + +uint32_t +Debugger::SystemSummaryFormats::GetCurrentRevision() +{ + return GetFormatManager().GetCurrentRevision(); +} + +uint32_t +Debugger::SystemSummaryFormats::GetCount() +{ + return GetFormatManager().SystemSummary().GetCount(); +} + +bool Debugger::RegexSummaryFormats::Get(ValueObject& vobj, SummaryFormat::SharedPointer &entry) { return GetFormatManager().RegexSummary().Get(vobj,entry); @@ -1840,6 +1882,48 @@ Debugger::RegexSummaryFormats::GetCount() } bool +Debugger::SystemRegexSummaryFormats::Get(ValueObject& vobj, SummaryFormat::SharedPointer &entry) +{ + return GetFormatManager().SystemRegexSummary().Get(vobj,entry); +} + +void +Debugger::SystemRegexSummaryFormats::Add(const lldb::RegularExpressionSP &type, const SummaryFormat::SharedPointer &entry) +{ + GetFormatManager().SystemRegexSummary().Add(type,entry); +} + +bool +Debugger::SystemRegexSummaryFormats::Delete(const ConstString &type) +{ + return GetFormatManager().SystemRegexSummary().Delete(type.AsCString()); +} + +void +Debugger::SystemRegexSummaryFormats::Clear() +{ + GetFormatManager().SystemRegexSummary().Clear(); +} + +void +Debugger::SystemRegexSummaryFormats::LoopThrough(SummaryFormat::RegexSummaryCallback callback, void* callback_baton) +{ + GetFormatManager().SystemRegexSummary().LoopThrough(callback, callback_baton); +} + +uint32_t +Debugger::SystemRegexSummaryFormats::GetCurrentRevision() +{ + return GetFormatManager().GetCurrentRevision(); +} + +uint32_t +Debugger::SystemRegexSummaryFormats::GetCount() +{ + return GetFormatManager().SystemRegexSummary().GetCount(); +} + +bool Debugger::NamedSummaryFormats::Get(const ConstString &type, SummaryFormat::SharedPointer &entry) { return GetFormatManager().NamedSummary().Get(type.AsCString(),entry); |