xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.h (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
1 //===-- ProcessWindows.h ----------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef liblldb_Plugins_Process_Windows_Common_ProcessWindows_H_
10 #define liblldb_Plugins_Process_Windows_Common_ProcessWindows_H_
11 
12 #include "lldb/Target/Process.h"
13 #include "lldb/Utility/Status.h"
14 #include "lldb/lldb-forward.h"
15 
16 #include "Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h"
17 #include "ProcessDebugger.h"
18 
19 namespace lldb_private {
20 
21 class HostProcess;
22 
23 class ProcessWindows : public Process, public ProcessDebugger {
24 public:
25   // Static functions.
26   static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
27                                         lldb::ListenerSP listener_sp,
28                                         const FileSpec *);
29 
30   static void Initialize();
31 
32   static void Terminate();
33 
34   static lldb_private::ConstString GetPluginNameStatic();
35 
36   static const char *GetPluginDescriptionStatic();
37 
38   // Constructors and destructors
39   ProcessWindows(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp);
40 
41   ~ProcessWindows();
42 
43   size_t GetSTDOUT(char *buf, size_t buf_size, Status &error) override;
44   size_t GetSTDERR(char *buf, size_t buf_size, Status &error) override;
45   size_t PutSTDIN(const char *buf, size_t buf_size, Status &error) override;
46 
47   // lldb_private::Process overrides
48   ConstString GetPluginName() override;
49   uint32_t GetPluginVersion() override;
50 
51   Status EnableBreakpointSite(BreakpointSite *bp_site) override;
52   Status DisableBreakpointSite(BreakpointSite *bp_site) override;
53 
54   Status DoDetach(bool keep_stopped) override;
55   Status DoLaunch(Module *exe_module, ProcessLaunchInfo &launch_info) override;
56   Status DoAttachToProcessWithID(
57       lldb::pid_t pid,
58       const lldb_private::ProcessAttachInfo &attach_info) override;
59   Status DoResume() override;
60   Status DoDestroy() override;
61   Status DoHalt(bool &caused_stop) override;
62 
63   void DidLaunch() override;
64   void DidAttach(lldb_private::ArchSpec &arch_spec) override;
65 
66   void RefreshStateAfterStop() override;
67 
68   bool CanDebug(lldb::TargetSP target_sp,
69                 bool plugin_specified_by_name) override;
70   bool DestroyRequiresHalt() override { return false; }
71   bool UpdateThreadList(ThreadList &old_thread_list,
72                         ThreadList &new_thread_list) override;
73   bool IsAlive() override;
74 
75   size_t DoReadMemory(lldb::addr_t vm_addr, void *buf, size_t size,
76                       Status &error) override;
77   size_t DoWriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size,
78                        Status &error) override;
79   lldb::addr_t DoAllocateMemory(size_t size, uint32_t permissions,
80                                 Status &error) override;
81   Status DoDeallocateMemory(lldb::addr_t ptr) override;
82   Status GetMemoryRegionInfo(lldb::addr_t vm_addr,
83                              MemoryRegionInfo &info) override;
84 
85   lldb::addr_t GetImageInfoAddress() override;
86 
87   DynamicLoaderWindowsDYLD *GetDynamicLoader() override;
88 
89   // IDebugDelegate overrides.
90   void OnExitProcess(uint32_t exit_code) override;
91   void OnDebuggerConnected(lldb::addr_t image_base) override;
92   ExceptionResult OnDebugException(bool first_chance,
93                                    const ExceptionRecord &record) override;
94   void OnCreateThread(const HostThread &thread) override;
95   void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override;
96   void OnLoadDll(const ModuleSpec &module_spec,
97                  lldb::addr_t module_addr) override;
98   void OnUnloadDll(lldb::addr_t module_addr) override;
99   void OnDebugString(const std::string &string) override;
100   void OnDebuggerError(const Status &error, uint32_t type) override;
101 
102   Status GetWatchpointSupportInfo(uint32_t &num) override;
103   Status GetWatchpointSupportInfo(uint32_t &num, bool &after) override;
104   Status EnableWatchpoint(Watchpoint *wp, bool notify = true) override;
105   Status DisableWatchpoint(Watchpoint *wp, bool notify = true) override;
106 
107 private:
108   struct WatchpointInfo {
109     uint32_t slot_id;
110     lldb::addr_t address;
111     uint32_t size;
112     bool read;
113     bool write;
114   };
115   std::map<lldb::break_id_t, WatchpointInfo> m_watchpoints;
116   std::vector<lldb::break_id_t> m_watchpoint_ids;
117 };
118 } // namespace lldb_private
119 
120 #endif // liblldb_Plugins_Process_Windows_Common_ProcessWindows_H_
121