From f7d1893f5b24c811b3c02de94047cf79487b6677 Mon Sep 17 00:00:00 2001 From: Adrian McCarthy Date: Fri, 20 Nov 2015 23:09:11 +0000 Subject: Enable saving of mini dumps with lldb process save-core. Also adds SB API to save a core and tests that use it. Differential Revision: http://reviews.llvm.org/D14793 llvm-svn: 253734 --- lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp') diff --git a/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp b/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp index 8b994590504..b6624481324 100644 --- a/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp +++ b/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp @@ -8,6 +8,7 @@ //===----------------------------------------------------------------------===// #include "ObjectFilePECOFF.h" +#include "WindowsMiniDump.h" #include "llvm/Support/COFF.h" @@ -24,6 +25,7 @@ #include "lldb/Core/Timer.h" #include "lldb/Core/UUID.h" #include "lldb/Symbol/ObjectFile.h" +#include "lldb/Target/Process.h" #include "lldb/Target/SectionLoadList.h" #include "lldb/Target/Target.h" @@ -42,7 +44,8 @@ ObjectFilePECOFF::Initialize() GetPluginDescriptionStatic(), CreateInstance, CreateMemoryInstance, - GetModuleSpecifications); + GetModuleSpecifications, + SaveCore); } void @@ -148,6 +151,14 @@ ObjectFilePECOFF::GetModuleSpecifications (const lldb_private::FileSpec& file, return specs.GetSize() - initial_count; } +bool +ObjectFilePECOFF::SaveCore(const lldb::ProcessSP &process_sp, + const lldb_private::FileSpec &outfile, + lldb_private::Error &error) +{ + return SaveMiniDump(process_sp, outfile, error); +} + bool ObjectFilePECOFF::MagicBytesMatch (DataBufferSP& data_sp) -- cgit v1.2.3