clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
66 lines
1.9 KiB
C++
66 lines
1.9 KiB
C++
//===-- NativeThreadProtocol.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 LLDB_HOST_COMMON_NATIVETHREADPROTOCOL_H
|
|
#define LLDB_HOST_COMMON_NATIVETHREADPROTOCOL_H
|
|
|
|
#include <memory>
|
|
|
|
#include "lldb/Host/Debug.h"
|
|
#include "lldb/Utility/UnimplementedError.h"
|
|
#include "lldb/lldb-private-forward.h"
|
|
#include "lldb/lldb-types.h"
|
|
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
namespace lldb_private {
|
|
// NativeThreadProtocol
|
|
class NativeThreadProtocol {
|
|
public:
|
|
NativeThreadProtocol(NativeProcessProtocol &process, lldb::tid_t tid);
|
|
|
|
virtual ~NativeThreadProtocol() = default;
|
|
|
|
virtual std::string GetName() = 0;
|
|
|
|
virtual lldb::StateType GetState() = 0;
|
|
|
|
virtual NativeRegisterContext &GetRegisterContext() = 0;
|
|
|
|
virtual bool GetStopReason(ThreadStopInfo &stop_info,
|
|
std::string &description) = 0;
|
|
|
|
lldb::tid_t GetID() const { return m_tid; }
|
|
|
|
NativeProcessProtocol &GetProcess() { return m_process; }
|
|
|
|
// Thread-specific watchpoints
|
|
virtual Status SetWatchpoint(lldb::addr_t addr, size_t size,
|
|
uint32_t watch_flags, bool hardware) = 0;
|
|
|
|
virtual Status RemoveWatchpoint(lldb::addr_t addr) = 0;
|
|
|
|
// Thread-specific Hardware Breakpoint routines
|
|
virtual Status SetHardwareBreakpoint(lldb::addr_t addr, size_t size) = 0;
|
|
|
|
virtual Status RemoveHardwareBreakpoint(lldb::addr_t addr) = 0;
|
|
|
|
virtual llvm::Expected<std::unique_ptr<llvm::MemoryBuffer>>
|
|
GetSiginfo() const {
|
|
return llvm::make_error<UnimplementedError>();
|
|
}
|
|
|
|
protected:
|
|
NativeProcessProtocol &m_process;
|
|
lldb::tid_t m_tid;
|
|
};
|
|
}
|
|
|
|
#endif // LLDB_HOST_COMMON_NATIVETHREADPROTOCOL_H
|