blob: 577dcdf808a5f5fa31d2a1cbebf6b9b7c5de8b91 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- BreakpointLocationList.cpp ------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Chris Lattner30fdc8d2010-06-08 16:52:24 +00006//
7//===----------------------------------------------------------------------===//
8
Chris Lattner30fdc8d2010-06-08 16:52:24 +00009#include "lldb/Breakpoint/BreakpointLocationList.h"
Greg Claytonb35db632013-11-09 00:03:31 +000010
Michael Sartainc87e7522013-07-16 21:22:53 +000011#include "lldb/Breakpoint/Breakpoint.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000012#include "lldb/Breakpoint/BreakpointLocation.h"
Greg Claytonb35db632013-11-09 00:03:31 +000013#include "lldb/Core/Module.h"
Greg Clayton1f746072012-08-29 21:13:06 +000014#include "lldb/Core/Section.h"
Greg Claytond5944cd2013-12-06 01:12:00 +000015#include "lldb/Target/SectionLoadList.h"
Michael Sartainc87e7522013-07-16 21:22:53 +000016#include "lldb/Target/Target.h"
Pavel Labath5f19b902017-11-13 16:16:33 +000017#include "lldb/Utility/ArchSpec.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000018
19using namespace lldb;
20using namespace lldb_private;
21
Saleem Abdulrasool16ff8602016-05-18 01:59:10 +000022BreakpointLocationList::BreakpointLocationList(Breakpoint &owner)
Kate Stoneb9c1b512016-09-06 20:57:50 +000023 : m_owner(owner), m_locations(), m_address_to_location(), m_mutex(),
24 m_next_id(0), m_new_location_recorder(nullptr) {}
Chris Lattner30fdc8d2010-06-08 16:52:24 +000025
Eugene Zelenko16fd7512015-10-30 18:50:12 +000026BreakpointLocationList::~BreakpointLocationList() = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027
Greg Claytonc0d34462011-02-05 00:38:04 +000028BreakpointLocationSP
Kate Stoneb9c1b512016-09-06 20:57:50 +000029BreakpointLocationList::Create(const Address &addr,
30 bool resolve_indirect_symbols) {
31 std::lock_guard<std::recursive_mutex> guard(m_mutex);
32 // The location ID is just the size of the location list + 1
33 lldb::break_id_t bp_loc_id = ++m_next_id;
34 BreakpointLocationSP bp_loc_sp(
35 new BreakpointLocation(bp_loc_id, m_owner, addr, LLDB_INVALID_THREAD_ID,
36 m_owner.IsHardware(), resolve_indirect_symbols));
37 m_locations.push_back(bp_loc_sp);
38 m_address_to_location[addr] = bp_loc_sp;
39 return bp_loc_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000040}
41
Kate Stoneb9c1b512016-09-06 20:57:50 +000042bool BreakpointLocationList::ShouldStop(StoppointCallbackContext *context,
43 lldb::break_id_t break_id) {
44 BreakpointLocationSP bp = FindByID(break_id);
45 if (bp) {
46 // Let the BreakpointLocation decide if it should stop here (could not have
Adrian Prantl05097242018-04-30 16:49:04 +000047 // reached it's target hit count yet, or it could have a callback that
48 // decided it shouldn't stop (shared library loads/unloads).
Kate Stoneb9c1b512016-09-06 20:57:50 +000049 return bp->ShouldStop(context);
50 }
Adrian Prantl05097242018-04-30 16:49:04 +000051 // We should stop here since this BreakpointLocation isn't valid anymore or
52 // it doesn't exist.
Kate Stoneb9c1b512016-09-06 20:57:50 +000053 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054}
55
Kate Stoneb9c1b512016-09-06 20:57:50 +000056lldb::break_id_t BreakpointLocationList::FindIDByAddress(const Address &addr) {
57 BreakpointLocationSP bp_loc_sp = FindByAddress(addr);
58 if (bp_loc_sp) {
59 return bp_loc_sp->GetID();
60 }
61 return LLDB_INVALID_BREAK_ID;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000062}
63
Kate Stoneb9c1b512016-09-06 20:57:50 +000064static bool Compare(BreakpointLocationSP lhs, lldb::break_id_t val) {
65 return lhs->GetID() < val;
Jim Ingham177553e2013-12-03 02:31:17 +000066}
67
Chris Lattner30fdc8d2010-06-08 16:52:24 +000068BreakpointLocationSP
Kate Stoneb9c1b512016-09-06 20:57:50 +000069BreakpointLocationList::FindByID(lldb::break_id_t break_id) const {
70 std::lock_guard<std::recursive_mutex> guard(m_mutex);
71 collection::const_iterator end = m_locations.end();
72 collection::const_iterator pos =
73 std::lower_bound(m_locations.begin(), end, break_id, Compare);
74 if (pos != end && (*pos)->GetID() == break_id)
75 return *(pos);
76 else
77 return BreakpointLocationSP();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000078}
79
Kate Stoneb9c1b512016-09-06 20:57:50 +000080size_t BreakpointLocationList::FindInModule(
81 Module *module, BreakpointLocationCollection &bp_loc_list) {
82 std::lock_guard<std::recursive_mutex> guard(m_mutex);
83 const size_t orig_size = bp_loc_list.GetSize();
84 collection::iterator pos, end = m_locations.end();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000085
Kate Stoneb9c1b512016-09-06 20:57:50 +000086 for (pos = m_locations.begin(); pos != end; ++pos) {
87 BreakpointLocationSP break_loc = (*pos);
88 SectionSP section_sp(break_loc->GetAddress().GetSection());
89 if (section_sp && section_sp->GetModule().get() == module) {
90 bp_loc_list.Add(break_loc);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000091 }
Kate Stoneb9c1b512016-09-06 20:57:50 +000092 }
93 return bp_loc_list.GetSize() - orig_size;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000094}
95
Chris Lattner30fdc8d2010-06-08 16:52:24 +000096const BreakpointLocationSP
Kate Stoneb9c1b512016-09-06 20:57:50 +000097BreakpointLocationList::FindByAddress(const Address &addr) const {
98 std::lock_guard<std::recursive_mutex> guard(m_mutex);
99 BreakpointLocationSP bp_loc_sp;
100 if (!m_locations.empty()) {
101 Address so_addr;
Michael Sartainc87e7522013-07-16 21:22:53 +0000102
Kate Stoneb9c1b512016-09-06 20:57:50 +0000103 if (addr.IsSectionOffset()) {
104 so_addr = addr;
105 } else {
106 // Try and resolve as a load address if possible.
107 m_owner.GetTarget().GetSectionLoadList().ResolveLoadAddress(
108 addr.GetOffset(), so_addr);
109 if (!so_addr.IsValid()) {
110 // The address didn't resolve, so just set to passed in addr.
111 so_addr = addr;
112 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000113 }
114
Kate Stoneb9c1b512016-09-06 20:57:50 +0000115 addr_map::const_iterator pos = m_address_to_location.find(so_addr);
116 if (pos != m_address_to_location.end())
117 bp_loc_sp = pos->second;
118 }
119
120 return bp_loc_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000121}
122
Kate Stoneb9c1b512016-09-06 20:57:50 +0000123void BreakpointLocationList::Dump(Stream *s) const {
124 s->Printf("%p: ", static_cast<const void *>(this));
125 // s->Indent();
126 std::lock_guard<std::recursive_mutex> guard(m_mutex);
127 s->Printf("BreakpointLocationList with %" PRIu64 " BreakpointLocations:\n",
128 (uint64_t)m_locations.size());
129 s->IndentMore();
130 collection::const_iterator pos, end = m_locations.end();
131 for (pos = m_locations.begin(); pos != end; ++pos)
132 (*pos).get()->Dump(s);
133 s->IndentLess();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000134}
135
Kate Stoneb9c1b512016-09-06 20:57:50 +0000136BreakpointLocationSP BreakpointLocationList::GetByIndex(size_t i) {
137 std::lock_guard<std::recursive_mutex> guard(m_mutex);
138 BreakpointLocationSP bp_loc_sp;
139 if (i < m_locations.size())
140 bp_loc_sp = m_locations[i];
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000141
Kate Stoneb9c1b512016-09-06 20:57:50 +0000142 return bp_loc_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000143}
144
Kate Stoneb9c1b512016-09-06 20:57:50 +0000145const BreakpointLocationSP BreakpointLocationList::GetByIndex(size_t i) const {
146 std::lock_guard<std::recursive_mutex> guard(m_mutex);
147 BreakpointLocationSP bp_loc_sp;
148 if (i < m_locations.size())
149 bp_loc_sp = m_locations[i];
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000150
Kate Stoneb9c1b512016-09-06 20:57:50 +0000151 return bp_loc_sp;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000152}
153
Kate Stoneb9c1b512016-09-06 20:57:50 +0000154void BreakpointLocationList::ClearAllBreakpointSites() {
155 std::lock_guard<std::recursive_mutex> guard(m_mutex);
156 collection::iterator pos, end = m_locations.end();
157 for (pos = m_locations.begin(); pos != end; ++pos)
158 (*pos)->ClearBreakpointSite();
159}
160
161void BreakpointLocationList::ResolveAllBreakpointSites() {
162 std::lock_guard<std::recursive_mutex> guard(m_mutex);
163 collection::iterator pos, end = m_locations.end();
164
165 for (pos = m_locations.begin(); pos != end; ++pos) {
166 if ((*pos)->IsEnabled())
167 (*pos)->ResolveBreakpointSite();
168 }
169}
170
171uint32_t BreakpointLocationList::GetHitCount() const {
172 uint32_t hit_count = 0;
173 std::lock_guard<std::recursive_mutex> guard(m_mutex);
174 collection::const_iterator pos, end = m_locations.end();
175 for (pos = m_locations.begin(); pos != end; ++pos)
176 hit_count += (*pos)->GetHitCount();
177 return hit_count;
178}
179
180size_t BreakpointLocationList::GetNumResolvedLocations() const {
181 std::lock_guard<std::recursive_mutex> guard(m_mutex);
182 size_t resolve_count = 0;
183 collection::const_iterator pos, end = m_locations.end();
184 for (pos = m_locations.begin(); pos != end; ++pos) {
185 if ((*pos)->IsResolved())
186 ++resolve_count;
187 }
188 return resolve_count;
189}
190
191void BreakpointLocationList::GetDescription(Stream *s,
192 lldb::DescriptionLevel level) {
193 std::lock_guard<std::recursive_mutex> guard(m_mutex);
194 collection::iterator pos, end = m_locations.end();
195
196 for (pos = m_locations.begin(); pos != end; ++pos) {
197 s->Printf(" ");
198 (*pos)->GetDescription(s, level);
199 }
200}
201
202BreakpointLocationSP BreakpointLocationList::AddLocation(
203 const Address &addr, bool resolve_indirect_symbols, bool *new_location) {
204 std::lock_guard<std::recursive_mutex> guard(m_mutex);
205
206 if (new_location)
207 *new_location = false;
208 BreakpointLocationSP bp_loc_sp(FindByAddress(addr));
209 if (!bp_loc_sp) {
210 bp_loc_sp = Create(addr, resolve_indirect_symbols);
211 if (bp_loc_sp) {
212 bp_loc_sp->ResolveBreakpointSite();
213
214 if (new_location)
215 *new_location = true;
216 if (m_new_location_recorder) {
217 m_new_location_recorder->Add(bp_loc_sp);
218 }
219 }
220 }
221 return bp_loc_sp;
222}
223
224void BreakpointLocationList::SwapLocation(
225 BreakpointLocationSP to_location_sp,
226 BreakpointLocationSP from_location_sp) {
227 if (!from_location_sp || !to_location_sp)
228 return;
229
230 m_address_to_location.erase(to_location_sp->GetAddress());
231 to_location_sp->SwapLocation(from_location_sp);
232 RemoveLocation(from_location_sp);
233 m_address_to_location[to_location_sp->GetAddress()] = to_location_sp;
234 to_location_sp->ResolveBreakpointSite();
235}
236
237bool BreakpointLocationList::RemoveLocation(
238 const lldb::BreakpointLocationSP &bp_loc_sp) {
239 if (bp_loc_sp) {
Saleem Abdulrasool16ff8602016-05-18 01:59:10 +0000240 std::lock_guard<std::recursive_mutex> guard(m_mutex);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000241
242 m_address_to_location.erase(bp_loc_sp->GetAddress());
243
Jim Ingham5ec7cd72018-01-12 03:03:23 +0000244 size_t num_locations = m_locations.size();
245 for (size_t idx = 0; idx < num_locations; idx++) {
246 if (m_locations[idx].get() == bp_loc_sp.get()) {
247 RemoveLocationByIndex(idx);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000248 return true;
249 }
Jim Inghamd4ce0a12010-10-20 03:36:33 +0000250 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000251 }
252 return false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000253}
254
Jim Ingham5ec7cd72018-01-12 03:03:23 +0000255void BreakpointLocationList::RemoveLocationByIndex(size_t idx) {
256 assert (idx < m_locations.size());
257 m_address_to_location.erase(m_locations[idx]->GetAddress());
258 m_locations.erase(m_locations.begin() + idx);
259}
260
Kate Stoneb9c1b512016-09-06 20:57:50 +0000261void BreakpointLocationList::RemoveInvalidLocations(const ArchSpec &arch) {
262 std::lock_guard<std::recursive_mutex> guard(m_mutex);
263 size_t idx = 0;
Adrian Prantl05097242018-04-30 16:49:04 +0000264 // Don't cache m_location.size() as it will change since we might remove
265 // locations from our vector...
Kate Stoneb9c1b512016-09-06 20:57:50 +0000266 while (idx < m_locations.size()) {
267 BreakpointLocation *bp_loc = m_locations[idx].get();
268 if (bp_loc->GetAddress().SectionWasDeleted()) {
269 // Section was deleted which means this breakpoint comes from a module
270 // that is no longer valid, so we should remove it.
Jim Ingham5ec7cd72018-01-12 03:03:23 +0000271 RemoveLocationByIndex(idx);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000272 continue;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000273 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000274 if (arch.IsValid()) {
275 ModuleSP module_sp(bp_loc->GetAddress().GetModule());
276 if (module_sp) {
277 if (!arch.IsCompatibleMatch(module_sp->GetArchitecture())) {
278 // The breakpoint was in a module whose architecture is no longer
279 // compatible with "arch", so we need to remove it
Jim Ingham5ec7cd72018-01-12 03:03:23 +0000280 RemoveLocationByIndex(idx);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000281 continue;
Greg Claytone72dfb32012-02-24 01:59:29 +0000282 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000283 }
Eugene Zelenko16fd7512015-10-30 18:50:12 +0000284 }
Adrian Prantl05097242018-04-30 16:49:04 +0000285 // Only increment the index if we didn't remove the locations at index
286 // "idx"
Kate Stoneb9c1b512016-09-06 20:57:50 +0000287 ++idx;
288 }
Greg Claytone72dfb32012-02-24 01:59:29 +0000289}
290
Kate Stoneb9c1b512016-09-06 20:57:50 +0000291void BreakpointLocationList::StartRecordingNewLocations(
292 BreakpointLocationCollection &new_locations) {
293 std::lock_guard<std::recursive_mutex> guard(m_mutex);
294 assert(m_new_location_recorder == nullptr);
295 m_new_location_recorder = &new_locations;
Greg Claytonb35db632013-11-09 00:03:31 +0000296}
Jim Inghame6bc6cb2012-02-08 05:23:15 +0000297
Kate Stoneb9c1b512016-09-06 20:57:50 +0000298void BreakpointLocationList::StopRecordingNewLocations() {
299 std::lock_guard<std::recursive_mutex> guard(m_mutex);
300 m_new_location_recorder = nullptr;
Jim Inghame6bc6cb2012-02-08 05:23:15 +0000301}
302
Kate Stoneb9c1b512016-09-06 20:57:50 +0000303void BreakpointLocationList::Compact() {
304 lldb::break_id_t highest_id = 0;
Jim Inghame6bc6cb2012-02-08 05:23:15 +0000305
Kate Stoneb9c1b512016-09-06 20:57:50 +0000306 for (BreakpointLocationSP loc_sp : m_locations) {
307 lldb::break_id_t cur_id = loc_sp->GetID();
308 if (cur_id > highest_id)
309 highest_id = cur_id;
310 }
311 m_next_id = highest_id;
Jim Ingham77fd7382014-09-10 21:40:47 +0000312}