1 //===-- BreakpointSite.cpp ------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
11 #include "lldb/Breakpoint/BreakpointSite.h"
13 #include "lldb/Breakpoint/Breakpoint.h"
14 #include "lldb/Breakpoint/BreakpointLocation.h"
15 #include "lldb/Breakpoint/BreakpointSiteList.h"
16 #include "lldb/Utility/Stream.h"
19 using namespace lldb_private
;
21 BreakpointSite::BreakpointSite(BreakpointSiteList
*list
,
22 const BreakpointLocationSP
&owner
,
23 lldb::addr_t addr
, bool use_hardware
)
24 : StoppointSite(GetNextID(), addr
, 0, use_hardware
),
25 m_type(eSoftware
), // Process subclasses need to set this correctly using
27 m_saved_opcode(), m_trap_opcode(),
28 m_enabled(false) // Need to create it disabled, so the first enable turns
34 BreakpointSite::~BreakpointSite() {
35 BreakpointLocationSP bp_loc_sp
;
36 const size_t owner_count
= m_owners
.GetSize();
37 for (size_t i
= 0; i
< owner_count
; i
++) {
38 m_owners
.GetByIndex(i
)->ClearBreakpointSite();
42 break_id_t
BreakpointSite::GetNextID() {
43 static break_id_t g_next_id
= 0;
47 // RETURNS - true if we should stop at this breakpoint, false if we
50 bool BreakpointSite::ShouldStop(StoppointCallbackContext
*context
) {
51 m_hit_counter
.Increment();
52 // ShouldStop can do a lot of work, and might even come back and hit
53 // this breakpoint site again. So don't hold the m_owners_mutex the whole
54 // while. Instead make a local copy of the collection and call ShouldStop on
56 BreakpointLocationCollection owners_copy
;
58 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
59 owners_copy
= m_owners
;
61 return owners_copy
.ShouldStop(context
);
64 bool BreakpointSite::IsBreakpointAtThisSite(lldb::break_id_t bp_id
) {
65 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
66 const size_t owner_count
= m_owners
.GetSize();
67 for (size_t i
= 0; i
< owner_count
; i
++) {
68 if (m_owners
.GetByIndex(i
)->GetBreakpoint().GetID() == bp_id
)
74 void BreakpointSite::Dump(Stream
*s
) const {
78 s
->Printf("BreakpointSite %u: addr = 0x%8.8" PRIx64
79 " type = %s breakpoint hw_index = %i hit_count = %-4u",
80 GetID(), (uint64_t)m_addr
, IsHardware() ? "hardware" : "software",
81 GetHardwareIndex(), GetHitCount());
84 void BreakpointSite::GetDescription(Stream
*s
, lldb::DescriptionLevel level
) {
85 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
86 if (level
!= lldb::eDescriptionLevelBrief
)
87 s
->Printf("breakpoint site: %d at 0x%8.8" PRIx64
, GetID(),
89 m_owners
.GetDescription(s
, level
);
92 bool BreakpointSite::IsInternal() const { return m_owners
.IsInternal(); }
94 uint8_t *BreakpointSite::GetTrapOpcodeBytes() { return &m_trap_opcode
[0]; }
96 const uint8_t *BreakpointSite::GetTrapOpcodeBytes() const {
97 return &m_trap_opcode
[0];
100 size_t BreakpointSite::GetTrapOpcodeMaxByteSize() const {
101 return sizeof(m_trap_opcode
);
104 bool BreakpointSite::SetTrapOpcode(const uint8_t *trap_opcode
,
105 uint32_t trap_opcode_size
) {
106 if (trap_opcode_size
> 0 && trap_opcode_size
<= sizeof(m_trap_opcode
)) {
107 m_byte_size
= trap_opcode_size
;
108 ::memcpy(m_trap_opcode
, trap_opcode
, trap_opcode_size
);
115 uint8_t *BreakpointSite::GetSavedOpcodeBytes() { return &m_saved_opcode
[0]; }
117 const uint8_t *BreakpointSite::GetSavedOpcodeBytes() const {
118 return &m_saved_opcode
[0];
121 bool BreakpointSite::IsEnabled() const { return m_enabled
; }
123 void BreakpointSite::SetEnabled(bool enabled
) { m_enabled
= enabled
; }
125 void BreakpointSite::AddOwner(const BreakpointLocationSP
&owner
) {
126 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
130 size_t BreakpointSite::RemoveOwner(lldb::break_id_t break_id
,
131 lldb::break_id_t break_loc_id
) {
132 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
133 m_owners
.Remove(break_id
, break_loc_id
);
134 return m_owners
.GetSize();
137 size_t BreakpointSite::GetNumberOfOwners() {
138 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
139 return m_owners
.GetSize();
142 BreakpointLocationSP
BreakpointSite::GetOwnerAtIndex(size_t index
) {
143 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
144 return m_owners
.GetByIndex(index
);
147 bool BreakpointSite::ValidForThisThread(Thread
&thread
) {
148 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
149 return m_owners
.ValidForThisThread(thread
);
152 void BreakpointSite::BumpHitCounts() {
153 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
154 for (BreakpointLocationSP loc_sp
: m_owners
.BreakpointLocations()) {
155 loc_sp
->BumpHitCount();
159 bool BreakpointSite::IntersectsRange(lldb::addr_t addr
, size_t size
,
160 lldb::addr_t
*intersect_addr
,
161 size_t *intersect_size
,
162 size_t *opcode_offset
) const {
163 // The function should be called only for software breakpoints.
164 lldbassert(GetType() == Type::eSoftware
);
166 if (m_byte_size
== 0)
169 const lldb::addr_t bp_end_addr
= m_addr
+ m_byte_size
;
170 const lldb::addr_t end_addr
= addr
+ size
;
171 // Is the breakpoint end address before the passed in start address?
172 if (bp_end_addr
<= addr
)
175 // Is the breakpoint start address after passed in end address?
176 if (end_addr
<= m_addr
)
179 if (intersect_addr
|| intersect_size
|| opcode_offset
) {
182 *intersect_addr
= addr
;
185 std::min
<lldb::addr_t
>(bp_end_addr
, end_addr
) - addr
;
187 *opcode_offset
= addr
- m_addr
;
190 *intersect_addr
= m_addr
;
193 std::min
<lldb::addr_t
>(bp_end_addr
, end_addr
) - m_addr
;
202 BreakpointSite::CopyOwnersList(BreakpointLocationCollection
&out_collection
) {
203 std::lock_guard
<std::recursive_mutex
> guard(m_owners_mutex
);
204 for (BreakpointLocationSP loc_sp
: m_owners
.BreakpointLocations()) {
205 out_collection
.Add(loc_sp
);
207 return out_collection
.GetSize();