[Lldb-commits] [lldb] r223496 - Implement an empty DynamicLoader plugin for Windows.

Zachary Turner zturner at google.com
Fri Dec 5 10:45:53 PST 2014


Author: zturner
Date: Fri Dec  5 12:45:53 2014
New Revision: 223496

URL: http://llvm.org/viewvc/llvm-project?rev=223496&view=rev
Log:
Implement an empty DynamicLoader plugin for Windows.

Added:
    lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.cpp
    lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.h
Modified:
    lldb/trunk/source/Plugins/Process/Windows/CMakeLists.txt
    lldb/trunk/source/lldb.cpp

Modified: lldb/trunk/source/Plugins/Process/Windows/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Windows/CMakeLists.txt?rev=223496&r1=223495&r2=223496&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Windows/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/Process/Windows/CMakeLists.txt Fri Dec  5 12:45:53 2014
@@ -5,6 +5,7 @@ include_directories(../Utility)
 
 add_lldb_library(lldbPluginProcessWindows
   DebuggerThread.cpp
+  DynamicLoaderWindows.cpp
   LocalDebugDelegate.cpp
   ProcessWindows.cpp
   RegisterContextWindows_x86.cpp

Added: lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.cpp?rev=223496&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.cpp (added)
+++ lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.cpp Fri Dec  5 12:45:53 2014
@@ -0,0 +1,100 @@
+//===-- DynamicLoaderWindows.cpp --------------------------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "DynamicLoaderWindows.h"
+
+#include "lldb/Core/PluginManager.h"
+#include "lldb/Target/Process.h"
+#include "lldb/Target/Target.h"
+
+#include "llvm/ADT/Triple.h"
+
+using namespace lldb;
+using namespace lldb_private;
+
+DynamicLoaderWindows::DynamicLoaderWindows(Process *process)
+    : DynamicLoader(process)
+{
+
+}
+
+DynamicLoaderWindows::~DynamicLoaderWindows()
+{
+}
+
+void DynamicLoaderWindows::Initialize()
+{
+    PluginManager::RegisterPlugin(GetPluginNameStatic(),
+                                  GetPluginDescriptionStatic(),
+                                  CreateInstance);
+}
+
+void DynamicLoaderWindows::Terminate()
+{
+
+}
+
+ConstString DynamicLoaderWindows::GetPluginNameStatic()
+{
+    static ConstString g_plugin_name("windows-dyld");
+    return g_plugin_name;
+}
+
+const char *DynamicLoaderWindows::GetPluginDescriptionStatic()
+{
+    return "Dynamic loader plug-in that watches for shared library "
+           "loads/unloads in Windows processes.";
+}
+
+
+DynamicLoader *DynamicLoaderWindows::CreateInstance(Process *process, bool force)
+{
+    bool should_create = force;
+    if (!should_create)
+    {
+        const llvm::Triple &triple_ref = process->GetTarget().GetArchitecture().GetTriple();
+        if (triple_ref.getOS() == llvm::Triple::Win32)
+            should_create = true;
+    }
+
+    if (should_create)
+        return new DynamicLoaderWindows (process);
+    return nullptr;
+}
+
+void DynamicLoaderWindows::DidAttach()
+{
+
+}
+
+void DynamicLoaderWindows::DidLaunch()
+{
+
+}
+
+Error DynamicLoaderWindows::CanLoadImage()
+{
+    return Error();
+}
+
+ConstString DynamicLoaderWindows::GetPluginName()
+{
+    return GetPluginNameStatic();
+}
+
+uint32_t DynamicLoaderWindows::GetPluginVersion()
+{
+    return 1;
+}
+
+ThreadPlanSP
+DynamicLoaderWindows::GetStepThroughTrampolinePlan(Thread &thread, bool stop)
+{
+    return ThreadPlanSP();
+}
\ No newline at end of file

Added: lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.h?rev=223496&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.h (added)
+++ lldb/trunk/source/Plugins/Process/Windows/DynamicLoaderWindows.h Fri Dec  5 12:45:53 2014
@@ -0,0 +1,43 @@
+//===-- DynamicLoaderWindows.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_Plugins_Process_Windows_DynamicLoaderWindows_H_
+#define liblldb_Plugins_Process_Windows_DynamicLoaderWindows_H_
+
+#include "lldb/lldb-forward.h"
+#include "lldb/Target/DynamicLoader.h"
+
+namespace lldb_private
+{
+
+class DynamicLoaderWindows : public DynamicLoader
+{
+  public:
+    DynamicLoaderWindows(Process *process);
+    virtual ~DynamicLoaderWindows();
+
+    static void Initialize();
+    static void Terminate();
+    static ConstString GetPluginNameStatic();
+    static const char *GetPluginDescriptionStatic();
+
+    static DynamicLoader *CreateInstance(Process *process, bool force);
+
+    void DidAttach () override;
+    void DidLaunch () override;
+    Error CanLoadImage () override;
+    lldb::ThreadPlanSP GetStepThroughTrampolinePlan(Thread &thread, bool stop) override;
+
+    virtual ConstString GetPluginName() override;
+    virtual uint32_t GetPluginVersion() override;
+};
+
+}
+
+#endif
\ No newline at end of file

Modified: lldb/trunk/source/lldb.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/lldb.cpp?rev=223496&r1=223495&r2=223496&view=diff
==============================================================================
--- lldb/trunk/source/lldb.cpp (original)
+++ lldb/trunk/source/lldb.cpp Fri Dec  5 12:45:53 2014
@@ -83,6 +83,7 @@
 #endif
 
 #if defined (_WIN32)
+#include "Plugins/Process/Windows/DynamicLoaderWindows.h"
 #include "Plugins/Process/Windows/ProcessWindows.h"
 #endif
 
@@ -189,6 +190,7 @@ lldb_private::Initialize ()
         ProcessLinux::Initialize();
 #endif
 #if defined(_WIN32)
+        DynamicLoaderWindows::Initialize();
         ProcessWindows::Initialize();
 #endif
 #if defined (__FreeBSD__)
@@ -276,6 +278,10 @@ lldb_private::Terminate ()
 
     Debugger::SettingsTerminate ();
 
+#if defined (_WIN32)
+    DynamicLoaderWindows::Terminate();
+#endif
+
 #if defined (__linux__)
     ProcessLinux::Terminate();
 #endif





More information about the lldb-commits mailing list