diff options
author | Adrian McCarthy <amccarth@google.com> | 2016-11-16 16:04:14 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2016-11-16 16:04:14 +0000 |
commit | 1ca677f4c49c9c2404d80535180b24ca561a3434 (patch) | |
tree | 36e7e9b59dde0a091021834142996a67316455ed /lldb/source/Plugins/Process/Windows/MiniDump/ThreadWinMiniDump.h | |
parent | 67354487512b4c40ee0db885e45fc7f48e554384 (diff) | |
download | bcm5719-llvm-1ca677f4c49c9c2404d80535180b24ca561a3434.tar.gz bcm5719-llvm-1ca677f4c49c9c2404d80535180b24ca561a3434.zip |
Remove Windows-specific minidump plugin
With the cross-platform minidump plugin working, the Windows-specific one is no longer needed. This eliminates the unnecessary code.
This does not eliminate the Windows-specific tests, as they hit a few cases the general tests don't. (The Windows-specific tests are currently passing.) I'll look into a separate patch to make sure we're not doing too much duplicate testing.
After that I might do a little re-org in the Windows plugin, as there was some factoring there (Common & Live) that probably isn't necessary anymore.
Differential Revision: https://reviews.llvm.org/D26697
llvm-svn: 287113
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/MiniDump/ThreadWinMiniDump.h')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/MiniDump/ThreadWinMiniDump.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/lldb/source/Plugins/Process/Windows/MiniDump/ThreadWinMiniDump.h b/lldb/source/Plugins/Process/Windows/MiniDump/ThreadWinMiniDump.h deleted file mode 100644 index bee5a6ab5f4..00000000000 --- a/lldb/source/Plugins/Process/Windows/MiniDump/ThreadWinMiniDump.h +++ /dev/null @@ -1,43 +0,0 @@ -//===-- ThreadWinMiniDump.h -------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#ifndef liblldb_ThreadWinMiniDump_h_ -#define liblldb_ThreadWinMiniDump_h_ - -#include <string> - -#include "lldb/Core/DataExtractor.h" -#include "lldb/Target/Thread.h" - -class ThreadWinMiniDump : public lldb_private::Thread { -public: - ThreadWinMiniDump(lldb_private::Process &process, lldb::tid_t tid); - - virtual ~ThreadWinMiniDump(); - - void RefreshStateAfterStop() override; - - lldb::RegisterContextSP GetRegisterContext() override; - - lldb::RegisterContextSP - CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override; - - void ClearStackFrames() override; - - void SetContext(const void *context); - -protected: - lldb::RegisterContextSP m_reg_context_sp; - class Data; - std::unique_ptr<Data> m_data; // for WinAPI-specific data - - bool CalculateStopInfo() override; -}; - -#endif |