LLDB mainline
BreakpointLocationList.cpp
Go to the documentation of this file.
1//===-- BreakpointLocationList.cpp ----------------------------------------===//
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
10
13#include "lldb/Core/Module.h"
14#include "lldb/Core/Section.h"
16#include "lldb/Target/Target.h"
18
19using namespace lldb;
20using namespace lldb_private;
21
23 : m_owner(owner), m_next_id(0), m_new_location_recorder(nullptr) {}
24
26
29 bool resolve_indirect_symbols) {
30 std::lock_guard<std::recursive_mutex> guard(m_mutex);
31 // The location ID is just the size of the location list + 1
32 lldb::break_id_t bp_loc_id = ++m_next_id;
33 BreakpointLocationSP bp_loc_sp(
35 m_owner.IsHardware(), resolve_indirect_symbols));
36 m_locations.push_back(bp_loc_sp);
37 m_address_to_location[addr] = bp_loc_sp;
38 return bp_loc_sp;
39}
40
42 lldb::break_id_t break_id) {
43 BreakpointLocationSP bp = FindByID(break_id);
44 if (bp) {
45 // Let the BreakpointLocation decide if it should stop here (could not have
46 // reached it's target hit count yet, or it could have a callback that
47 // decided it shouldn't stop (shared library loads/unloads).
48 return bp->ShouldStop(context);
49 }
50 // We should stop here since this BreakpointLocation isn't valid anymore or
51 // it doesn't exist.
52 return true;
53}
54
56 BreakpointLocationSP bp_loc_sp = FindByAddress(addr);
57 if (bp_loc_sp) {
58 return bp_loc_sp->GetID();
59 }
61}
62
64 return lhs->GetID() < val;
65}
66
69 std::lock_guard<std::recursive_mutex> guard(m_mutex);
70 collection::const_iterator end = m_locations.end();
71 collection::const_iterator pos =
72 llvm::lower_bound(m_locations, break_id, Compare);
73 if (pos != end && (*pos)->GetID() == break_id)
74 return *(pos);
75 else
76 return BreakpointLocationSP();
77}
78
80 Module *module, BreakpointLocationCollection &bp_loc_list) {
81 std::lock_guard<std::recursive_mutex> guard(m_mutex);
82 const size_t orig_size = bp_loc_list.GetSize();
83 collection::iterator pos, end = m_locations.end();
84
85 for (pos = m_locations.begin(); pos != end; ++pos) {
86 BreakpointLocationSP break_loc = (*pos);
87 SectionSP section_sp(break_loc->GetAddress().GetSection());
88 if (section_sp && section_sp->GetModule().get() == module) {
89 bp_loc_list.Add(break_loc);
90 }
91 }
92 return bp_loc_list.GetSize() - orig_size;
93}
94
97 std::lock_guard<std::recursive_mutex> guard(m_mutex);
98 BreakpointLocationSP bp_loc_sp;
99 if (!m_locations.empty()) {
100 Address so_addr;
101
102 if (addr.IsSectionOffset()) {
103 so_addr = addr;
104 } else {
105 // Try and resolve as a load address if possible.
107 addr.GetOffset(), so_addr);
108 if (!so_addr.IsValid()) {
109 // The address didn't resolve, so just set to passed in addr.
110 so_addr = addr;
111 }
112 }
113
114 addr_map::const_iterator pos = m_address_to_location.find(so_addr);
115 if (pos != m_address_to_location.end())
116 bp_loc_sp = pos->second;
117 }
118
119 return bp_loc_sp;
120}
121
123 s->Printf("%p: ", static_cast<const void *>(this));
124 // s->Indent();
125 std::lock_guard<std::recursive_mutex> guard(m_mutex);
126 s->Printf("BreakpointLocationList with %" PRIu64 " BreakpointLocations:\n",
127 (uint64_t)m_locations.size());
128 s->IndentMore();
129 collection::const_iterator pos, end = m_locations.end();
130 for (pos = m_locations.begin(); pos != end; ++pos)
131 (*pos)->Dump(s);
132 s->IndentLess();
133}
134
136 std::lock_guard<std::recursive_mutex> guard(m_mutex);
137 BreakpointLocationSP bp_loc_sp;
138 if (i < m_locations.size())
139 bp_loc_sp = m_locations[i];
140
141 return bp_loc_sp;
142}
143
145 std::lock_guard<std::recursive_mutex> guard(m_mutex);
146 BreakpointLocationSP bp_loc_sp;
147 if (i < m_locations.size())
148 bp_loc_sp = m_locations[i];
149
150 return bp_loc_sp;
151}
152
154 std::lock_guard<std::recursive_mutex> guard(m_mutex);
155 collection::iterator pos, end = m_locations.end();
156 for (pos = m_locations.begin(); pos != end; ++pos)
157 (*pos)->ClearBreakpointSite();
158}
159
161 std::lock_guard<std::recursive_mutex> guard(m_mutex);
162 collection::iterator pos, end = m_locations.end();
163
164 for (pos = m_locations.begin(); pos != end; ++pos) {
165 if ((*pos)->IsEnabled())
166 (*pos)->ResolveBreakpointSite();
167 }
168}
169
171 uint32_t hit_count = 0;
172 std::lock_guard<std::recursive_mutex> guard(m_mutex);
173 collection::const_iterator pos, end = m_locations.end();
174 for (pos = m_locations.begin(); pos != end; ++pos)
175 hit_count += (*pos)->GetHitCount();
176 return hit_count;
177}
178
180 std::lock_guard<std::recursive_mutex> guard(m_mutex);
181 for (auto &loc : m_locations)
182 loc->ResetHitCount();
183}
184
186 std::lock_guard<std::recursive_mutex> guard(m_mutex);
187 size_t resolve_count = 0;
188 collection::const_iterator pos, end = m_locations.end();
189 for (pos = m_locations.begin(); pos != end; ++pos) {
190 if ((*pos)->IsResolved())
191 ++resolve_count;
192 }
193 return resolve_count;
194}
195
198 std::lock_guard<std::recursive_mutex> guard(m_mutex);
199 collection::iterator pos, end = m_locations.end();
200
201 for (pos = m_locations.begin(); pos != end; ++pos) {
202 s->Printf(" ");
203 (*pos)->GetDescription(s, level);
204 }
205}
206
208 const Address &addr, bool resolve_indirect_symbols, bool *new_location) {
209 std::lock_guard<std::recursive_mutex> guard(m_mutex);
210
211 if (new_location)
212 *new_location = false;
213 BreakpointLocationSP bp_loc_sp(FindByAddress(addr));
214 if (!bp_loc_sp) {
215 bp_loc_sp = Create(addr, resolve_indirect_symbols);
216 if (bp_loc_sp) {
217 bp_loc_sp->ResolveBreakpointSite();
218
219 if (new_location)
220 *new_location = true;
222 m_new_location_recorder->Add(bp_loc_sp);
223 }
224 }
225 }
226 return bp_loc_sp;
227}
228
230 BreakpointLocationSP to_location_sp,
231 BreakpointLocationSP from_location_sp) {
232 if (!from_location_sp || !to_location_sp)
233 return;
234
235 m_address_to_location.erase(to_location_sp->GetAddress());
236 to_location_sp->SwapLocation(from_location_sp);
237 RemoveLocation(from_location_sp);
238 m_address_to_location[to_location_sp->GetAddress()] = to_location_sp;
239 to_location_sp->ResolveBreakpointSite();
240}
241
243 const lldb::BreakpointLocationSP &bp_loc_sp) {
244 if (bp_loc_sp) {
245 std::lock_guard<std::recursive_mutex> guard(m_mutex);
246
247 m_address_to_location.erase(bp_loc_sp->GetAddress());
248
249 size_t num_locations = m_locations.size();
250 for (size_t idx = 0; idx < num_locations; idx++) {
251 if (m_locations[idx].get() == bp_loc_sp.get()) {
253 return true;
254 }
255 }
256 }
257 return false;
258}
259
261 assert (idx < m_locations.size());
262 m_address_to_location.erase(m_locations[idx]->GetAddress());
263 m_locations.erase(m_locations.begin() + idx);
264}
265
267 std::lock_guard<std::recursive_mutex> guard(m_mutex);
268 size_t idx = 0;
269 // Don't cache m_location.size() as it will change since we might remove
270 // locations from our vector...
271 while (idx < m_locations.size()) {
272 BreakpointLocation *bp_loc = m_locations[idx].get();
273 if (bp_loc->GetAddress().SectionWasDeleted()) {
274 // Section was deleted which means this breakpoint comes from a module
275 // that is no longer valid, so we should remove it.
277 continue;
278 }
279 if (arch.IsValid()) {
280 ModuleSP module_sp(bp_loc->GetAddress().GetModule());
281 if (module_sp) {
282 if (!arch.IsCompatibleMatch(module_sp->GetArchitecture())) {
283 // The breakpoint was in a module whose architecture is no longer
284 // compatible with "arch", so we need to remove it
286 continue;
287 }
288 }
289 }
290 // Only increment the index if we didn't remove the locations at index
291 // "idx"
292 ++idx;
293 }
294}
295
297 BreakpointLocationCollection &new_locations) {
298 std::lock_guard<std::recursive_mutex> guard(m_mutex);
299 assert(m_new_location_recorder == nullptr);
300 m_new_location_recorder = &new_locations;
301}
302
304 std::lock_guard<std::recursive_mutex> guard(m_mutex);
305 m_new_location_recorder = nullptr;
306}
307
309 lldb::break_id_t highest_id = 0;
310
311 for (BreakpointLocationSP loc_sp : m_locations) {
312 lldb::break_id_t cur_id = loc_sp->GetID();
313 if (cur_id > highest_id)
314 highest_id = cur_id;
315 }
316 m_next_id = highest_id;
317}
static bool Compare(BreakpointLocationSP lhs, lldb::break_id_t val)
A section + offset based address class.
Definition: Address.h:62
bool SectionWasDeleted() const
Definition: Address.cpp:811
lldb::ModuleSP GetModule() const
Get accessor for the module for this address.
Definition: Address.cpp:285
lldb::addr_t GetOffset() const
Get the section relative offset value.
Definition: Address.h:329
bool IsValid() const
Check if the object state is valid.
Definition: Address.h:355
bool IsSectionOffset() const
Check if an address is section offset.
Definition: Address.h:342
An architecture specification class.
Definition: ArchSpec.h:31
bool IsValid() const
Tests if this ArchSpec is valid.
Definition: ArchSpec.h:348
bool IsCompatibleMatch(const ArchSpec &rhs) const
Shorthand for IsMatch(rhs, CompatibleMatch).
Definition: ArchSpec.h:502
void Add(const lldb::BreakpointLocationSP &bp_loc_sp)
Add the breakpoint bp_loc_sp to the list.
size_t GetSize() const
Returns the number of elements in this breakpoint location list.
void ResetHitCount()
Resets the hit count of all locations in this list.
void GetDescription(Stream *s, lldb::DescriptionLevel level)
Print a description of the breakpoint locations in this list to the stream s.
void RemoveInvalidLocations(const ArchSpec &arch)
lldb::BreakpointLocationSP GetByIndex(size_t i)
Returns a shared pointer to the breakpoint location with index i.
bool RemoveLocation(const lldb::BreakpointLocationSP &bp_loc_sp)
void Dump(Stream *s) const
Standard "Dump" method. At present it does nothing.
void ClearAllBreakpointSites()
Removes all the locations in this list from their breakpoint site owners list.
uint32_t GetHitCount() const
Returns the number hit count of all locations in this list.
const lldb::BreakpointLocationSP FindByAddress(const Address &addr) const
Returns a shared pointer to the breakpoint location at address addr - const version.
void ResolveAllBreakpointSites()
Tells all the breakpoint locations in this list to attempt to resolve any possible breakpoint sites.
size_t FindInModule(Module *module, BreakpointLocationCollection &bp_loc_list)
Returns a breakpoint location list of the breakpoint locations in the module module.
BreakpointLocationList(Breakpoint &owner)
This is the standard constructor.
bool ShouldStop(StoppointCallbackContext *context, lldb::break_id_t breakID)
Enquires of the breakpoint location in this list with ID breakID whether we should stop.
BreakpointLocationCollection * m_new_location_recorder
lldb::BreakpointLocationSP FindByID(lldb::break_id_t breakID) const
Returns a shared pointer to the breakpoint location with id breakID, const version.
lldb::BreakpointLocationSP Create(const Address &addr, bool resolve_indirect_symbols)
lldb::BreakpointLocationSP AddLocation(const Address &addr, bool resolve_indirect_symbols, bool *new_location=nullptr)
void StartRecordingNewLocations(BreakpointLocationCollection &new_locations)
lldb::break_id_t FindIDByAddress(const Address &addr)
Returns the breakpoint location id to the breakpoint location at address addr.
size_t GetNumResolvedLocations() const
Returns the number of breakpoint locations in this list with resolved breakpoints.
void SwapLocation(lldb::BreakpointLocationSP to_location_sp, lldb::BreakpointLocationSP from_location_sp)
General Outline: A breakpoint location is defined by the breakpoint that produces it,...
Address & GetAddress()
Gets the Address for this breakpoint location.
General Outline: A breakpoint has four main parts, a filter, a resolver, the list of breakpoint locat...
Definition: Breakpoint.h:81
bool IsHardware() const
Definition: Breakpoint.h:520
Target & GetTarget()
Accessor for the breakpoint Target.
Definition: Breakpoint.h:463
A class that describes an executable image and its associated object and symbol files.
Definition: Module.h:88
bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr, bool allow_section_end=false) const
General Outline: When we hit a breakpoint we need to package up whatever information is needed to eva...
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition: Stream.cpp:134
void IndentLess(unsigned amount=2)
Decrement the current indentation level.
Definition: Stream.cpp:198
void IndentMore(unsigned amount=2)
Increment the current indentation level.
Definition: Stream.cpp:195
SectionLoadList & GetSectionLoadList()
Definition: Target.h:1127
#define LLDB_INVALID_BREAK_ID
Definition: lldb-defines.h:37
#define LLDB_INVALID_THREAD_ID
Definition: lldb-defines.h:90
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::BreakpointLocation > BreakpointLocationSP
Definition: lldb-forward.h:316
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
int32_t break_id_t
Definition: lldb-types.h:84
std::shared_ptr< lldb_private::Section > SectionSP
Definition: lldb-forward.h:406
std::shared_ptr< lldb_private::Module > ModuleSP
Definition: lldb-forward.h:365