diff options
| author | Zachary Turner <zturner@google.com> | 2017-03-03 20:57:05 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2017-03-03 20:57:05 +0000 |
| commit | 29cb868aa4d0279449b56288fde0358adade1a68 (patch) | |
| tree | 697a72f9a7f9f37b5715cd75eb0b164216fcce6e /lldb/source/DataFormatters | |
| parent | 6f9e690199edd68b20bac92983a216459bc568ed (diff) | |
| download | bcm5719-llvm-29cb868aa4d0279449b56288fde0358adade1a68.tar.gz bcm5719-llvm-29cb868aa4d0279449b56288fde0358adade1a68.zip | |
Isolate Target-specific functionality of DataExtractor.
In an effort to move the various DataBuffer / DataExtractor
classes from Core -> Utility, we have to separate the low-level
functionality from the higher level functionality. Only a
few functions required anything other than reading/writing
raw bytes, so those functions are separated out into a
more appropriate area. Specifically, Dump() and DumpHexBytes()
are moved into free functions in Core/DumpDataExtractor.cpp,
and GetGNUEHPointer is moved into a static function in the
only file that it's referenced from.
Differential Revision: https://reviews.llvm.org/D30560
llvm-svn: 296910
Diffstat (limited to 'lldb/source/DataFormatters')
| -rw-r--r-- | lldb/source/DataFormatters/TypeFormat.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lldb/source/DataFormatters/TypeFormat.cpp b/lldb/source/DataFormatters/TypeFormat.cpp index 3f6ad7cdd1c..c21dadfd3dc 100644 --- a/lldb/source/DataFormatters/TypeFormat.cpp +++ b/lldb/source/DataFormatters/TypeFormat.cpp @@ -19,6 +19,8 @@ #include "lldb/lldb-enumerations.h" #include "lldb/lldb-public.h" +#include "lldb/Core/DataExtractor.h" +#include "lldb/Core/DumpDataExtractor.h" #include "lldb/DataFormatters/FormatManager.h" #include "lldb/Symbol/CompilerType.h" #include "lldb/Symbol/SymbolContext.h" @@ -60,9 +62,9 @@ bool TypeFormatImpl_Format::FormatObject(ValueObject *valobj, return false; StreamString reg_sstr; - data.Dump(®_sstr, 0, GetFormat(), reg_info->byte_size, 1, UINT32_MAX, - LLDB_INVALID_ADDRESS, 0, 0, - exe_ctx.GetBestExecutionContextScope()); + DumpDataExtractor(data, ®_sstr, 0, GetFormat(), reg_info->byte_size, + 1, UINT32_MAX, LLDB_INVALID_ADDRESS, 0, 0, + exe_ctx.GetBestExecutionContextScope()); dest = reg_sstr.GetString(); } } else { |

