summaryrefslogtreecommitdiffstats
path: root/lldb/source/Symbol/OCamlASTContext.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-03-03 20:57:05 +0000
committerZachary Turner <zturner@google.com>2017-03-03 20:57:05 +0000
commit29cb868aa4d0279449b56288fde0358adade1a68 (patch)
tree697a72f9a7f9f37b5715cd75eb0b164216fcce6e /lldb/source/Symbol/OCamlASTContext.cpp
parent6f9e690199edd68b20bac92983a216459bc568ed (diff)
downloadbcm5719-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/Symbol/OCamlASTContext.cpp')
-rw-r--r--lldb/source/Symbol/OCamlASTContext.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/source/Symbol/OCamlASTContext.cpp b/lldb/source/Symbol/OCamlASTContext.cpp
index e2491541ee4..1456ebfa9dc 100644
--- a/lldb/source/Symbol/OCamlASTContext.cpp
+++ b/lldb/source/Symbol/OCamlASTContext.cpp
@@ -9,6 +9,7 @@
//===----------------------------------------------------------------------===//
#include "lldb/Symbol/OCamlASTContext.h"
+#include "lldb/Core/DumpDataExtractor.h"
#include "lldb/Core/Module.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Core/StreamFile.h"
@@ -621,9 +622,9 @@ bool OCamlASTContext::DumpTypeValue(
}
if (IsScalarType(type)) {
- return data.Dump(s, byte_offset, format, byte_size, 1, SIZE_MAX,
- LLDB_INVALID_ADDRESS, bitfield_bit_size,
- bitfield_bit_offset, exe_scope);
+ return DumpDataExtractor(data, s, byte_offset, format, byte_size, 1,
+ SIZE_MAX, LLDB_INVALID_ADDRESS, bitfield_bit_size,
+ bitfield_bit_offset, exe_scope);
}
return false;
OpenPOWER on IntegriCloud