LLDB mainline
NativeRegisterContext.h
Go to the documentation of this file.
1//===-- NativeRegisterContext.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_HOST_COMMON_NATIVEREGISTERCONTEXT_H
10#define LLDB_HOST_COMMON_NATIVEREGISTERCONTEXT_H
11
13#include "lldb/lldb-private.h"
14
15namespace lldb_private {
16
17class NativeThreadProtocol;
18
19enum class ExpeditedRegs { Minimal, Full };
20
22 : public std::enable_shared_from_this<NativeRegisterContext> {
23public:
24 // Constructors and Destructors
26
28
29 // void
30 // InvalidateIfNeeded (bool force);
31
32 // Subclasses must override these functions
33 // virtual void
34 // InvalidateAllRegisters () = 0;
35
36 virtual uint32_t GetRegisterCount() const = 0;
37
38 virtual uint32_t GetUserRegisterCount() const = 0;
39
40 virtual const RegisterInfo *GetRegisterInfoAtIndex(uint32_t reg) const = 0;
41
42 const char *GetRegisterSetNameForRegisterAtIndex(uint32_t reg_index) const;
43
44 virtual uint32_t GetRegisterSetCount() const = 0;
45
46 virtual const RegisterSet *GetRegisterSet(uint32_t set_index) const = 0;
47
48 virtual Status ReadRegister(const RegisterInfo *reg_info,
49 RegisterValue &reg_value) = 0;
50
51 virtual Status WriteRegister(const RegisterInfo *reg_info,
52 const RegisterValue &reg_value) = 0;
53
55
57
58 uint32_t ConvertRegisterKindToRegisterNumber(uint32_t kind,
59 uint32_t num) const;
60
61 // Subclasses can override these functions if desired
62 virtual uint32_t NumSupportedHardwareBreakpoints();
63
64 virtual uint32_t SetHardwareBreakpoint(lldb::addr_t addr, size_t size);
65
66 virtual bool ClearHardwareBreakpoint(uint32_t hw_idx);
67
69
70 virtual Status GetHardwareBreakHitIndex(uint32_t &bp_index,
71 lldb::addr_t trap_addr);
72
73 virtual uint32_t NumSupportedHardwareWatchpoints();
74
75 virtual uint32_t SetHardwareWatchpoint(lldb::addr_t addr, size_t size,
76 uint32_t watch_flags);
77
78 virtual bool ClearHardwareWatchpoint(uint32_t hw_index);
79
80 virtual Status ClearWatchpointHit(uint32_t hw_index);
81
83
84 virtual Status IsWatchpointHit(uint32_t wp_index, bool &is_hit);
85
86 virtual Status GetWatchpointHitIndex(uint32_t &wp_index,
87 lldb::addr_t trap_addr);
88
89 virtual Status IsWatchpointVacant(uint32_t wp_index, bool &is_vacant);
90
91 virtual lldb::addr_t GetWatchpointAddress(uint32_t wp_index);
92
93 // MIPS Linux kernel returns a masked address (last 3bits are masked)
94 // when a HW watchpoint is hit. However user may not have set a watchpoint on
95 // this address. This function emulates the instruction at PC and finds the
96 // base address used in the load/store instruction. This gives the exact
97 // address used to read/write the variable being watched. For example: 'n' is
98 // at 0x120010d00 and 'm' is 0x120010d04. When a watchpoint is set at 'm',
99 // then watch exception is generated even when 'n' is read/written. This
100 // function returns address of 'n' so that client can check whether a
101 // watchpoint is set on this address or not.
102 virtual lldb::addr_t GetWatchpointHitAddress(uint32_t wp_index);
103
104 virtual bool HardwareSingleStep(bool enable);
105
106 virtual Status
108 lldb::addr_t src_addr, size_t src_len,
109 RegisterValue &reg_value);
110
111 virtual Status
113 lldb::addr_t dst_addr, size_t dst_len,
114 const RegisterValue &reg_value);
115
116 // Subclasses should not override these
117 virtual lldb::tid_t GetThreadID() const;
118
120
121 virtual std::vector<uint32_t>
123
124 virtual bool RegisterOffsetIsDynamic() const { return false; }
125
126 const RegisterInfo *GetRegisterInfoByName(llvm::StringRef reg_name,
127 uint32_t start_idx = 0);
128
129 const RegisterInfo *GetRegisterInfo(uint32_t reg_kind, uint32_t reg_num);
130
132
133 virtual lldb::addr_t
135
137
139
141
143
145
146 const char *GetRegisterName(uint32_t reg);
147
149
150 lldb::addr_t GetFlags(lldb::addr_t fail_value = 0);
151
152 lldb::addr_t ReadRegisterAsUnsigned(uint32_t reg, lldb::addr_t fail_value);
153
155 lldb::addr_t fail_value);
156
157 Status WriteRegisterFromUnsigned(uint32_t reg, uint64_t uval);
158
159 Status WriteRegisterFromUnsigned(const RegisterInfo *reg_info, uint64_t uval);
160
161 // uint32_t
162 // GetStopID () const
163 // {
164 // return m_stop_id;
165 // }
166
167 // void
168 // SetStopID (uint32_t stop_id)
169 // {
170 // m_stop_id = stop_id;
171 // }
172
173protected:
174 // Classes that inherit from RegisterContext can see and modify these
176 &m_thread; // The thread that this register context belongs to.
177 // uint32_t m_stop_id; // The stop ID that any data in this
178 // context is valid for
179
180private:
181 // For RegisterContext only
185};
186
187} // namespace lldb_private
188
189#endif // LLDB_HOST_COMMON_NATIVEREGISTERCONTEXT_H
virtual const RegisterSet * GetRegisterSet(uint32_t set_index) const =0
virtual bool ClearHardwareBreakpoint(uint32_t hw_idx)
virtual bool ClearHardwareWatchpoint(uint32_t hw_index)
uint32_t ConvertRegisterKindToRegisterNumber(uint32_t kind, uint32_t num) const
lldb::addr_t GetSP(lldb::addr_t fail_value=LLDB_INVALID_ADDRESS)
virtual Status ClearWatchpointHit(uint32_t hw_index)
lldb::addr_t GetFlags(lldb::addr_t fail_value=0)
virtual Status IsWatchpointHit(uint32_t wp_index, bool &is_hit)
virtual uint32_t GetUserRegisterCount() const =0
virtual NativeThreadProtocol & GetThread()
lldb::addr_t GetFP(lldb::addr_t fail_value=LLDB_INVALID_ADDRESS)
lldb::addr_t ReadRegisterAsUnsigned(uint32_t reg, lldb::addr_t fail_value)
const RegisterInfo * GetRegisterInfo(uint32_t reg_kind, uint32_t reg_num)
virtual Status GetWatchpointHitIndex(uint32_t &wp_index, lldb::addr_t trap_addr)
const char * GetRegisterName(uint32_t reg)
Status WriteRegisterFromUnsigned(uint32_t reg, uint64_t uval)
virtual const RegisterInfo * GetRegisterInfoAtIndex(uint32_t reg) const =0
const char * GetRegisterSetNameForRegisterAtIndex(uint32_t reg_index) const
const RegisterInfo * GetRegisterInfoByName(llvm::StringRef reg_name, uint32_t start_idx=0)
virtual uint32_t GetRegisterCount() const =0
virtual bool HardwareSingleStep(bool enable)
virtual Status ReadRegisterValueFromMemory(const lldb_private::RegisterInfo *reg_info, lldb::addr_t src_addr, size_t src_len, RegisterValue &reg_value)
virtual Status WriteAllRegisterValues(const lldb::DataBufferSP &data_sp)=0
virtual Status ReadRegister(const RegisterInfo *reg_info, RegisterValue &reg_value)=0
virtual lldb::addr_t GetWatchpointAddress(uint32_t wp_index)
lldb::addr_t GetPC(lldb::addr_t fail_value=LLDB_INVALID_ADDRESS)
virtual lldb::addr_t GetWatchpointHitAddress(uint32_t wp_index)
virtual Status ReadAllRegisterValues(lldb::WritableDataBufferSP &data_sp)=0
virtual std::vector< uint32_t > GetExpeditedRegisters(ExpeditedRegs expType) const
const NativeRegisterContext & operator=(const NativeRegisterContext &)=delete
virtual Status IsWatchpointVacant(uint32_t wp_index, bool &is_vacant)
NativeRegisterContext(const NativeRegisterContext &)=delete
virtual lldb::addr_t GetPCfromBreakpointLocation(lldb::addr_t fail_value=LLDB_INVALID_ADDRESS)
virtual uint32_t SetHardwareWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags)
virtual Status WriteRegisterValueToMemory(const lldb_private::RegisterInfo *reg_info, lldb::addr_t dst_addr, size_t dst_len, const RegisterValue &reg_value)
lldb::addr_t GetReturnAddress(lldb::addr_t fail_value=LLDB_INVALID_ADDRESS)
virtual uint32_t GetRegisterSetCount() const =0
virtual Status GetHardwareBreakHitIndex(uint32_t &bp_index, lldb::addr_t trap_addr)
virtual uint32_t SetHardwareBreakpoint(lldb::addr_t addr, size_t size)
virtual Status WriteRegister(const RegisterInfo *reg_info, const RegisterValue &reg_value)=0
An error handling class.
Definition: Status.h:44
#define LLDB_INVALID_ADDRESS
Definition: lldb-defines.h:82
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::DataBuffer > DataBufferSP
Definition: lldb-forward.h:328
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
Definition: lldb-forward.h:329
uint64_t addr_t
Definition: lldb-types.h:79
uint64_t tid_t
Definition: lldb-types.h:82
Every register is described in detail including its name, alternate name (optional),...
Registers are grouped into register sets.