diff options
author | Enrico Granata <egranata@apple.com> | 2013-01-28 23:47:25 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2013-01-28 23:47:25 +0000 |
commit | 5548cb50b20c97f8615f48785cb0951b430136a0 (patch) | |
tree | afcf2917d66215a9710874657c4b1c256c543527 /lldb/source/Interpreter | |
parent | e233fbfc16fee2718290d159f6f7bab67ef2e15a (diff) | |
download | bcm5719-llvm-5548cb50b20c97f8615f48785cb0951b430136a0.tar.gz bcm5719-llvm-5548cb50b20c97f8615f48785cb0951b430136a0.zip |
<rdar://problem/12978143>
Data formatters now cache themselves.
This commit provides a new formatter cache mechanism. Upon resolving a formatter (summary or synthetic), LLDB remembers the resolution for later faster retrieval.
Also moved the data formatters subsystem from the core to its own group and folder for easier management, and done some code reorganization.
The ObjC runtime v1 now returns a class name if asked for the dynamic type of an object. This is required for formatters caching to work with the v1 runtime.
Lastly, this commit disposes of the old hack where ValueObjects had to remember whether they were queried for formatters with their static or dynamic type.
Now the ValueObjectDynamicValue class works well enough that we can use its dynamic value setting for the same purpose.
llvm-svn: 173728
Diffstat (limited to 'lldb/source/Interpreter')
-rw-r--r-- | lldb/source/Interpreter/Args.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Interpreter/CommandObjectScript.cpp | 7 | ||||
-rw-r--r-- | lldb/source/Interpreter/OptionGroupVariable.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Interpreter/OptionValueArch.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Interpreter/OptionValueDictionary.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Interpreter/OptionValueFileSpec.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Interpreter/OptionValueFormat.cpp | 2 |
7 files changed, 11 insertions, 10 deletions
diff --git a/lldb/source/Interpreter/Args.cpp b/lldb/source/Interpreter/Args.cpp index 006e7c8e73f..76aa316c6ff 100644 --- a/lldb/source/Interpreter/Args.cpp +++ b/lldb/source/Interpreter/Args.cpp @@ -16,10 +16,10 @@ // Other libraries and framework includes // Project includes #include "lldb/Interpreter/Args.h" -#include "lldb/Core/FormatManager.h" #include "lldb/Core/Stream.h" #include "lldb/Core/StreamFile.h" #include "lldb/Core/StreamString.h" +#include "lldb/DataFormatters/FormatManager.h" #include "lldb/Interpreter/Options.h" #include "lldb/Interpreter/CommandReturnObject.h" #include "lldb/Target/Process.h" diff --git a/lldb/source/Interpreter/CommandObjectScript.cpp b/lldb/source/Interpreter/CommandObjectScript.cpp index 204270fa584..a757817e935 100644 --- a/lldb/source/Interpreter/CommandObjectScript.cpp +++ b/lldb/source/Interpreter/CommandObjectScript.cpp @@ -16,13 +16,14 @@ // Other libraries and framework includes // Project includes -#include "lldb/Core/DataVisualization.h" #include "lldb/Core/Debugger.h" -#include "lldb/Interpreter/Args.h" +#include "lldb/DataFormatters/DataVisualization.h" + +#include "lldb/Interpreter/Args.h" +#include "lldb/Interpreter/CommandInterpreter.h" #include "lldb/Interpreter/CommandReturnObject.h" #include "lldb/Interpreter/ScriptInterpreter.h" -#include "lldb/Interpreter/CommandInterpreter.h" using namespace lldb; using namespace lldb_private; diff --git a/lldb/source/Interpreter/OptionGroupVariable.cpp b/lldb/source/Interpreter/OptionGroupVariable.cpp index 891e19ac577..316747eff03 100644 --- a/lldb/source/Interpreter/OptionGroupVariable.cpp +++ b/lldb/source/Interpreter/OptionGroupVariable.cpp @@ -15,10 +15,10 @@ // C++ Includes // Other libraries and framework includes // Project includes -#include "lldb/Core/DataVisualization.h" #include "lldb/Core/Error.h" -#include "lldb/Target/Target.h" +#include "lldb/DataFormatters/DataVisualization.h" #include "lldb/Interpreter/CommandInterpreter.h" +#include "lldb/Target/Target.h" #include "lldb/Utility/Utils.h" using namespace lldb; diff --git a/lldb/source/Interpreter/OptionValueArch.cpp b/lldb/source/Interpreter/OptionValueArch.cpp index 49984bb28e5..92fedffe75e 100644 --- a/lldb/source/Interpreter/OptionValueArch.cpp +++ b/lldb/source/Interpreter/OptionValueArch.cpp @@ -15,8 +15,8 @@ // C++ Includes // Other libraries and framework includes // Project includes -#include "lldb/Core/FormatManager.h" #include "lldb/Core/State.h" +#include "lldb/DataFormatters/FormatManager.h" #include "lldb/Interpreter/Args.h" #include "lldb/Interpreter/CommandCompletions.h" diff --git a/lldb/source/Interpreter/OptionValueDictionary.cpp b/lldb/source/Interpreter/OptionValueDictionary.cpp index 7806856df52..61f8aba431a 100644 --- a/lldb/source/Interpreter/OptionValueDictionary.cpp +++ b/lldb/source/Interpreter/OptionValueDictionary.cpp @@ -16,8 +16,8 @@ // Other libraries and framework includes #include "llvm/ADT/StringRef.h" // Project includes -#include "lldb/Core/FormatManager.h" #include "lldb/Core/State.h" +#include "lldb/DataFormatters/FormatManager.h" #include "lldb/Interpreter/Args.h" #include "lldb/Interpreter/OptionValueString.h" diff --git a/lldb/source/Interpreter/OptionValueFileSpec.cpp b/lldb/source/Interpreter/OptionValueFileSpec.cpp index 96bc0e0bccc..c1bcae2fc6c 100644 --- a/lldb/source/Interpreter/OptionValueFileSpec.cpp +++ b/lldb/source/Interpreter/OptionValueFileSpec.cpp @@ -15,8 +15,8 @@ // C++ Includes // Other libraries and framework includes // Project includes -#include "lldb/Core/FormatManager.h" #include "lldb/Core/State.h" +#include "lldb/DataFormatters/FormatManager.h" #include "lldb/Interpreter/Args.h" #include "lldb/Interpreter/CommandCompletions.h" diff --git a/lldb/source/Interpreter/OptionValueFormat.cpp b/lldb/source/Interpreter/OptionValueFormat.cpp index cba407befc1..34d36725fbb 100644 --- a/lldb/source/Interpreter/OptionValueFormat.cpp +++ b/lldb/source/Interpreter/OptionValueFormat.cpp @@ -15,8 +15,8 @@ // C++ Includes // Other libraries and framework includes // Project includes -#include "lldb/Core/FormatManager.h" #include "lldb/Core/Stream.h" +#include "lldb/DataFormatters/FormatManager.h" #include "lldb/Interpreter/Args.h" using namespace lldb; |