xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Windows/PlatformWindows.h (revision 824adb5411e4389b29bae28eba5c2c2bbd147f34)
1 //===-- PlatformWindows.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 LLDB_SOURCE_PLUGINS_PLATFORM_WINDOWS_PLATFORMWINDOWS_H
10 #define LLDB_SOURCE_PLUGINS_PLATFORM_WINDOWS_PLATFORMWINDOWS_H
11 
12 #include "lldb/Target/RemoteAwarePlatform.h"
13 
14 namespace lldb_private {
15 
16 class PlatformWindows : public RemoteAwarePlatform {
17 public:
18   PlatformWindows(bool is_host);
19 
20   ~PlatformWindows() override;
21 
22   static void Initialize();
23 
24   static void Terminate();
25 
26   // lldb_private::PluginInterface functions
27   static lldb::PlatformSP CreateInstance(bool force,
28                                          const lldb_private::ArchSpec *arch);
29 
30   static lldb_private::ConstString GetPluginNameStatic(bool is_host);
31 
32   static const char *GetPluginDescriptionStatic(bool is_host);
33 
34   lldb_private::ConstString GetPluginName() override;
35 
36   uint32_t GetPluginVersion() override { return 1; }
37 
38   // lldb_private::Platform functions
39   const char *GetDescription() override {
40     return GetPluginDescriptionStatic(IsHost());
41   }
42 
43   lldb_private::Status ConnectRemote(lldb_private::Args &args) override;
44 
45   lldb_private::Status DisconnectRemote() override;
46 
47   lldb::ProcessSP DebugProcess(lldb_private::ProcessLaunchInfo &launch_info,
48                                lldb_private::Debugger &debugger,
49                                lldb_private::Target *target,
50                                lldb_private::Status &error) override;
51 
52   lldb::ProcessSP Attach(lldb_private::ProcessAttachInfo &attach_info,
53                          lldb_private::Debugger &debugger,
54                          lldb_private::Target *target,
55                          lldb_private::Status &error) override;
56 
57   bool GetSupportedArchitectureAtIndex(uint32_t idx,
58                                        lldb_private::ArchSpec &arch) override;
59 
60   void GetStatus(lldb_private::Stream &strm) override;
61 
62   bool CanDebugProcess() override;
63 
64   // FIXME not sure what the _sigtramp equivalent would be on this platform
65   void CalculateTrapHandlerSymbolNames() override {}
66 
67   ConstString GetFullNameForDylib(ConstString basename) override;
68 
69 private:
70   PlatformWindows(const PlatformWindows &) = delete;
71   const PlatformWindows &operator=(const PlatformWindows &) = delete;
72 };
73 
74 } // namespace lldb_private
75 
76 #endif // LLDB_SOURCE_PLUGINS_PLATFORM_WINDOWS_PLATFORMWINDOWS_H
77