forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			183 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			183 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			C++
		
	
	
	
//===-- NativeProcessWindows.h ----------------------------------*- C++ -*-===//
 | 
						|
//
 | 
						|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 | 
						|
// See https://llvm.org/LICENSE.txt for license information.
 | 
						|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#ifndef liblldb_NativeProcessWindows_h_
 | 
						|
#define liblldb_NativeProcessWindows_h_
 | 
						|
 | 
						|
#include "lldb/Host/common/NativeProcessProtocol.h"
 | 
						|
#include "lldb/lldb-forward.h"
 | 
						|
 | 
						|
#include "IDebugDelegate.h"
 | 
						|
#include "ProcessDebugger.h"
 | 
						|
 | 
						|
namespace lldb_private {
 | 
						|
 | 
						|
class HostProcess;
 | 
						|
class NativeProcessWindows;
 | 
						|
class NativeThreadWindows;
 | 
						|
class NativeDebugDelegate;
 | 
						|
 | 
						|
typedef std::shared_ptr<NativeDebugDelegate> NativeDebugDelegateSP;
 | 
						|
 | 
						|
//------------------------------------------------------------------
 | 
						|
// NativeProcessWindows
 | 
						|
//------------------------------------------------------------------
 | 
						|
class NativeProcessWindows : public NativeProcessProtocol,
 | 
						|
                             public ProcessDebugger {
 | 
						|
 | 
						|
public:
 | 
						|
  class Factory : public NativeProcessProtocol::Factory {
 | 
						|
  public:
 | 
						|
    llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
 | 
						|
    Launch(ProcessLaunchInfo &launch_info, NativeDelegate &native_delegate,
 | 
						|
           MainLoop &mainloop) const override;
 | 
						|
 | 
						|
    llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
 | 
						|
    Attach(lldb::pid_t pid, NativeDelegate &native_delegate,
 | 
						|
           MainLoop &mainloop) const override;
 | 
						|
  };
 | 
						|
 | 
						|
  Status Resume(const ResumeActionList &resume_actions) override;
 | 
						|
 | 
						|
  Status Halt() override;
 | 
						|
 | 
						|
  Status Detach() override;
 | 
						|
 | 
						|
  Status Signal(int signo) override;
 | 
						|
 | 
						|
  Status Interrupt() override;
 | 
						|
 | 
						|
  Status Kill() override;
 | 
						|
 | 
						|
  Status IgnoreSignals(llvm::ArrayRef<int> signals) override;
 | 
						|
 | 
						|
  Status GetMemoryRegionInfo(lldb::addr_t load_addr,
 | 
						|
                             MemoryRegionInfo &range_info) override;
 | 
						|
 | 
						|
  Status ReadMemory(lldb::addr_t addr, void *buf, size_t size,
 | 
						|
                    size_t &bytes_read) override;
 | 
						|
 | 
						|
  Status WriteMemory(lldb::addr_t addr, const void *buf, size_t size,
 | 
						|
                     size_t &bytes_written) override;
 | 
						|
 | 
						|
  Status AllocateMemory(size_t size, uint32_t permissions,
 | 
						|
                        lldb::addr_t &addr) override;
 | 
						|
 | 
						|
  Status DeallocateMemory(lldb::addr_t addr) override;
 | 
						|
 | 
						|
  lldb::addr_t GetSharedLibraryInfoAddress() override;
 | 
						|
 | 
						|
  bool IsAlive() const override;
 | 
						|
 | 
						|
  size_t UpdateThreads() override;
 | 
						|
 | 
						|
  const ArchSpec &GetArchitecture() const override { return m_arch; }
 | 
						|
 | 
						|
  void SetArchitecture(const ArchSpec &arch_spec) { m_arch = arch_spec; }
 | 
						|
 | 
						|
  Status SetBreakpoint(lldb::addr_t addr, uint32_t size,
 | 
						|
                       bool hardware) override;
 | 
						|
 | 
						|
  Status RemoveBreakpoint(lldb::addr_t addr, bool hardware = false) override;
 | 
						|
 | 
						|
  llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
 | 
						|
  GetAuxvData() const override;
 | 
						|
 | 
						|
  Status GetLoadedModuleFileSpec(const char *module_path,
 | 
						|
                                 FileSpec &file_spec) override;
 | 
						|
 | 
						|
  Status GetFileLoadAddress(const llvm::StringRef &file_name,
 | 
						|
                            lldb::addr_t &load_addr) override;
 | 
						|
 | 
						|
  // ProcessDebugger Overrides
 | 
						|
  void OnExitProcess(uint32_t exit_code) override;
 | 
						|
  void OnDebuggerConnected(lldb::addr_t image_base) override;
 | 
						|
  ExceptionResult OnDebugException(bool first_chance,
 | 
						|
                                   const ExceptionRecord &record) override;
 | 
						|
  void OnCreateThread(const HostThread &thread) override;
 | 
						|
  void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) override;
 | 
						|
  void OnLoadDll(const ModuleSpec &module_spec,
 | 
						|
                 lldb::addr_t module_addr) override;
 | 
						|
  void OnUnloadDll(lldb::addr_t module_addr) override;
 | 
						|
 | 
						|
protected:
 | 
						|
  NativeThreadWindows *GetThreadByID(lldb::tid_t thread_id);
 | 
						|
 | 
						|
  bool FindSoftwareBreakpoint(lldb::addr_t addr);
 | 
						|
 | 
						|
  void StopThread(lldb::tid_t thread_id, lldb::StopReason reason,
 | 
						|
                  std::string description = "");
 | 
						|
 | 
						|
  void SetStopReasonForThread(NativeThreadWindows &thread,
 | 
						|
                              lldb::StopReason reason,
 | 
						|
                              std::string description = "");
 | 
						|
 | 
						|
private:
 | 
						|
  ArchSpec m_arch;
 | 
						|
 | 
						|
  NativeProcessWindows(ProcessLaunchInfo &launch_info, NativeDelegate &delegate,
 | 
						|
                       llvm::Error &E);
 | 
						|
 | 
						|
  NativeProcessWindows(lldb::pid_t pid, int terminal_fd,
 | 
						|
                       NativeDelegate &delegate, llvm::Error &E);
 | 
						|
 | 
						|
  Status CacheLoadedModules();
 | 
						|
  std::map<lldb_private::FileSpec, lldb::addr_t> m_loaded_modules;
 | 
						|
};
 | 
						|
 | 
						|
//------------------------------------------------------------------
 | 
						|
// NativeDebugDelegate
 | 
						|
//------------------------------------------------------------------
 | 
						|
class NativeDebugDelegate : public IDebugDelegate {
 | 
						|
public:
 | 
						|
  NativeDebugDelegate(NativeProcessWindows &process) : m_process(process) {}
 | 
						|
 | 
						|
  void OnExitProcess(uint32_t exit_code) { m_process.OnExitProcess(exit_code); }
 | 
						|
 | 
						|
  void OnDebuggerConnected(lldb::addr_t image_base) {
 | 
						|
    m_process.OnDebuggerConnected(image_base);
 | 
						|
  }
 | 
						|
 | 
						|
  ExceptionResult OnDebugException(bool first_chance,
 | 
						|
                                   const ExceptionRecord &record) {
 | 
						|
    return m_process.OnDebugException(first_chance, record);
 | 
						|
  }
 | 
						|
 | 
						|
  void OnCreateThread(const HostThread &thread) {
 | 
						|
    m_process.OnCreateThread(thread);
 | 
						|
  }
 | 
						|
 | 
						|
  void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) {
 | 
						|
    m_process.OnExitThread(thread_id, exit_code);
 | 
						|
  }
 | 
						|
 | 
						|
  void OnLoadDll(const lldb_private::ModuleSpec &module_spec,
 | 
						|
                 lldb::addr_t module_addr) {
 | 
						|
    m_process.OnLoadDll(module_spec, module_addr);
 | 
						|
  }
 | 
						|
 | 
						|
  void OnUnloadDll(lldb::addr_t module_addr) {
 | 
						|
    m_process.OnUnloadDll(module_addr);
 | 
						|
  }
 | 
						|
 | 
						|
  void OnDebugString(const std::string &string) {
 | 
						|
    m_process.OnDebugString(string);
 | 
						|
  }
 | 
						|
 | 
						|
  void OnDebuggerError(const Status &error, uint32_t type) {
 | 
						|
    return m_process.OnDebuggerError(error, type);
 | 
						|
  }
 | 
						|
 | 
						|
private:
 | 
						|
  NativeProcessWindows &m_process;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace lldb_private
 | 
						|
 | 
						|
#endif // #ifndef liblldb_NativeProcessWindows_h_
 |