diff options
| author | Leonard Mosescu <mosescu@google.com> | 2018-08-07 18:00:30 +0000 |
|---|---|---|
| committer | Leonard Mosescu <mosescu@google.com> | 2018-08-07 18:00:30 +0000 |
| commit | 9ba51579fb331697c09441fdb1f77f267ff82c77 (patch) | |
| tree | df66cfef5f309badcb1e2c40acbf0c1f9e1db6f5 /lldb/source/Target | |
| parent | 57e6dd72226a50bf72b37e9b233561ac1a4b25b7 (diff) | |
| download | bcm5719-llvm-9ba51579fb331697c09441fdb1f77f267ff82c77.tar.gz bcm5719-llvm-9ba51579fb331697c09441fdb1f77f267ff82c77.zip | |
Misc module/dwarf logging improvements
This change improves the logging for the lldb.module category to note a few interesting cases:
1. Local object file found, but specs not matching
2. Local object file not found, using a placeholder module
The handling and logging for the cases wehre we fail to load compressed dwarf
symbols is also improved.
Differential Revision: https://reviews.llvm.org/D50274
llvm-svn: 339161
Diffstat (limited to 'lldb/source/Target')
| -rw-r--r-- | lldb/source/Target/Process.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 48888bbc1e2..f3c07832654 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -5842,7 +5842,7 @@ void Process::ModulesDidLoad(ModuleList &module_list) { // that loaded. // Iterate over a copy of this language runtime list in case the language - // runtime ModulesDidLoad somehow causes the language riuntime to be + // runtime ModulesDidLoad somehow causes the language runtime to be // unloaded. LanguageRuntimeCollection language_runtimes(m_language_runtimes); for (const auto &pair : language_runtimes) { @@ -6095,7 +6095,7 @@ void Process::MapSupportedStructuredDataPlugins( // For each StructuredDataPlugin, if the plugin handles any of the types in // the supported_type_names, map that type name to that plugin. Stop when // we've consumed all the type names. - // FIXME: should we return an error if there are type names nobody + // FIXME: should we return an error if there are type names nobody // supports? for (uint32_t plugin_index = 0; !const_type_names.empty(); plugin_index++) { auto create_instance = @@ -6103,7 +6103,7 @@ void Process::MapSupportedStructuredDataPlugins( plugin_index); if (!create_instance) break; - + // Create the plugin. StructuredDataPluginSP plugin_sp = (*create_instance)(*this); if (!plugin_sp) { |

