LLDB mainline
IDebugDelegate.h
Go to the documentation of this file.
1//===-- IDebugDelegate.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_IDebugDelegate_H_
10#define liblldb_Plugins_Process_Windows_IDebugDelegate_H_
11
12#include "ForwardDecl.h"
13#include "lldb/lldb-forward.h"
14#include "lldb/lldb-types.h"
15#include <string>
16
17namespace lldb_private {
18class Status;
19class HostThread;
20
21// IDebugDelegate
22//
23// IDebugDelegate defines an interface which allows implementors to receive
24// notification of events that happen in a debugged process.
26public:
27 virtual ~IDebugDelegate() {}
28
29 virtual void OnExitProcess(uint32_t exit_code) = 0;
30 virtual void OnDebuggerConnected(lldb::addr_t image_base) = 0;
31 virtual ExceptionResult OnDebugException(bool first_chance,
32 const ExceptionRecord &record) = 0;
33 virtual void OnCreateThread(const HostThread &thread) = 0;
34 virtual void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) = 0;
35 virtual void OnLoadDll(const ModuleSpec &module_spec,
36 lldb::addr_t module_addr) = 0;
37 virtual void OnUnloadDll(lldb::addr_t module_addr) = 0;
38 virtual void OnDebugString(const std::string &string) = 0;
39 virtual void OnDebuggerError(const Status &error, uint32_t type) = 0;
40};
41}
42
43#endif
static llvm::raw_ostream & error(Stream &strm)
ExceptionResult
Definition: ForwardDecl.h:16
virtual void OnDebuggerConnected(lldb::addr_t image_base)=0
virtual void OnExitProcess(uint32_t exit_code)=0
virtual void OnDebuggerError(const Status &error, uint32_t type)=0
virtual void OnUnloadDll(lldb::addr_t module_addr)=0
virtual void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code)=0
virtual void OnLoadDll(const ModuleSpec &module_spec, lldb::addr_t module_addr)=0
virtual ExceptionResult OnDebugException(bool first_chance, const ExceptionRecord &record)=0
virtual void OnCreateThread(const HostThread &thread)=0
virtual void OnDebugString(const std::string &string)=0
An error handling class.
Definition: Status.h:44
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
uint64_t addr_t
Definition: lldb-types.h:79
uint64_t tid_t
Definition: lldb-types.h:82