blob: 34daaee64ccd575e0827dea7b5c54b9b52eb65be [file] [log] [blame]
Johnny Chen01a67862011-10-14 00:42:25 +00001//===-- Watchpoint.cpp ------------------------------------------*- C++ -*-===//
Chris Lattner30fdc8d2010-06-08 16:52:24 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Eugene Zelenko16fd7512015-10-30 18:50:12 +000010#include "lldb/Breakpoint/Watchpoint.h"
11
Johnny Chen16dcf712011-10-17 18:58:00 +000012#include "lldb/Breakpoint/StoppointCallbackContext.h"
Jim Inghama7dfb662012-10-23 07:20:06 +000013#include "lldb/Core/Value.h"
14#include "lldb/Core/ValueObject.h"
15#include "lldb/Core/ValueObjectMemory.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000016#include "lldb/Expression/UserExpression.h"
Jim Inghama7dfb662012-10-23 07:20:06 +000017#include "lldb/Symbol/ClangASTContext.h"
Johnny Chen16dcf712011-10-17 18:58:00 +000018#include "lldb/Target/Process.h"
19#include "lldb/Target/Target.h"
20#include "lldb/Target/ThreadSpec.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000021#include "lldb/Utility/Stream.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000022
23using namespace lldb;
24using namespace lldb_private;
25
Kate Stoneb9c1b512016-09-06 20:57:50 +000026Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size,
27 const CompilerType *type, bool hardware)
28 : StoppointLocation(0, addr, size, hardware), m_target(target),
29 m_enabled(false), m_is_hardware(hardware), m_is_watch_variable(false),
30 m_is_ephemeral(false), m_disabled_count(0), m_watch_read(0),
31 m_watch_write(0), m_watch_was_read(0), m_watch_was_written(0),
32 m_ignore_count(0), m_false_alarms(0), m_decl_str(), m_watch_spec_str(),
33 m_type(), m_error(), m_options(), m_being_created(true) {
34 if (type && type->IsValid())
35 m_type = *type;
36 else {
37 // If we don't have a known type, then we force it to unsigned int of the
38 // right size.
39 ClangASTContext *ast_context = target.GetScratchClangASTContext();
40 m_type = ast_context->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint,
41 8 * size);
42 }
43
44 // Set the initial value of the watched variable:
45 if (m_target.GetProcessSP()) {
46 ExecutionContext exe_ctx;
47 m_target.GetProcessSP()->CalculateExecutionContext(exe_ctx);
48 CaptureWatchedValue(exe_ctx);
49 }
50 m_being_created = false;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000051}
52
Eugene Zelenko16fd7512015-10-30 18:50:12 +000053Watchpoint::~Watchpoint() = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054
Johnny Chene9a56272012-08-09 23:09:42 +000055// This function is used when "baton" doesn't need to be freed
Kate Stoneb9c1b512016-09-06 20:57:50 +000056void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton,
57 bool is_synchronous) {
Adrian Prantl05097242018-04-30 16:49:04 +000058 // The default "Baton" class will keep a copy of "baton" and won't free or
59 // delete it when it goes goes out of scope.
Zachary Turner4e4fbe82016-09-13 17:53:38 +000060 m_options.SetCallback(callback, std::make_shared<UntypedBaton>(baton),
61 is_synchronous);
Kate Stoneb9c1b512016-09-06 20:57:50 +000062
63 SendWatchpointChangedEvent(eWatchpointEventTypeCommandChanged);
Johnny Chene9a56272012-08-09 23:09:42 +000064}
65
Kate Stoneb9c1b512016-09-06 20:57:50 +000066// This function is used when a baton needs to be freed and therefore is
Johnny Chene9a56272012-08-09 23:09:42 +000067// contained in a "Baton" subclass.
Kate Stoneb9c1b512016-09-06 20:57:50 +000068void Watchpoint::SetCallback(WatchpointHitCallback callback,
69 const BatonSP &callback_baton_sp,
70 bool is_synchronous) {
71 m_options.SetCallback(callback, callback_baton_sp, is_synchronous);
72 SendWatchpointChangedEvent(eWatchpointEventTypeCommandChanged);
Johnny Chene9a56272012-08-09 23:09:42 +000073}
74
Kate Stoneb9c1b512016-09-06 20:57:50 +000075void Watchpoint::ClearCallback() {
76 m_options.ClearCallback();
77 SendWatchpointChangedEvent(eWatchpointEventTypeCommandChanged);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000078}
79
Kate Stoneb9c1b512016-09-06 20:57:50 +000080void Watchpoint::SetDeclInfo(const std::string &str) { m_decl_str = str; }
Johnny Chende6bd242011-09-16 21:41:42 +000081
Kate Stoneb9c1b512016-09-06 20:57:50 +000082std::string Watchpoint::GetWatchSpec() { return m_watch_spec_str; }
Johnny Chen209bd652012-08-13 21:09:54 +000083
Kate Stoneb9c1b512016-09-06 20:57:50 +000084void Watchpoint::SetWatchSpec(const std::string &str) {
85 m_watch_spec_str = str;
Johnny Chena4d6bc92012-02-25 06:44:30 +000086}
87
Johnny Chenfab7a912012-01-23 23:03:59 +000088// Override default impl of StoppointLocation::IsHardware() since m_is_hardware
89// member field is more accurate.
Kate Stoneb9c1b512016-09-06 20:57:50 +000090bool Watchpoint::IsHardware() const { return m_is_hardware; }
91
92bool Watchpoint::IsWatchVariable() const { return m_is_watch_variable; }
93
94void Watchpoint::SetWatchVariable(bool val) { m_is_watch_variable = val; }
95
96bool Watchpoint::CaptureWatchedValue(const ExecutionContext &exe_ctx) {
97 ConstString watch_name("$__lldb__watch_value");
98 m_old_value_sp = m_new_value_sp;
99 Address watch_address(GetLoadAddress());
100 if (!m_type.IsValid()) {
101 // Don't know how to report new & old values, since we couldn't make a
Adrian Prantl05097242018-04-30 16:49:04 +0000102 // scalar type for this watchpoint. This works around an assert in
103 // ValueObjectMemory::Create.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000104 // FIXME: This should not happen, but if it does in some case we care about,
105 // we can go grab the value raw and print it as unsigned.
106 return false;
107 }
Zachary Turner22a26282016-11-12 18:17:36 +0000108 m_new_value_sp = ValueObjectMemory::Create(
109 exe_ctx.GetBestExecutionContextScope(), watch_name.GetStringRef(),
110 watch_address, m_type);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000111 m_new_value_sp = m_new_value_sp->CreateConstantValue(watch_name);
112 return (m_new_value_sp && m_new_value_sp->GetError().Success());
Johnny Chenf04ee932011-09-22 18:04:58 +0000113}
114
Kate Stoneb9c1b512016-09-06 20:57:50 +0000115void Watchpoint::IncrementFalseAlarmsAndReviseHitCount() {
116 ++m_false_alarms;
117 if (m_false_alarms) {
118 if (m_hit_count >= m_false_alarms) {
119 m_hit_count -= m_false_alarms;
120 m_false_alarms = 0;
121 } else {
122 m_false_alarms -= m_hit_count;
123 m_hit_count = 0;
Jim Inghamce0740d2012-10-23 21:09:09 +0000124 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000125 }
Johnny Chen25c0eb42012-08-14 20:56:37 +0000126}
127
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000128// RETURNS - true if we should stop at this breakpoint, false if we
129// should continue.
130
Kate Stoneb9c1b512016-09-06 20:57:50 +0000131bool Watchpoint::ShouldStop(StoppointCallbackContext *context) {
132 IncrementHitCount();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000133
Jonas Devliegherea6682a42018-12-15 00:15:33 +0000134 return IsEnabled();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000135}
136
Kate Stoneb9c1b512016-09-06 20:57:50 +0000137void Watchpoint::GetDescription(Stream *s, lldb::DescriptionLevel level) {
138 DumpWithLevel(s, level);
Johnny Chen887062a2011-09-12 23:38:44 +0000139}
140
Kate Stoneb9c1b512016-09-06 20:57:50 +0000141void Watchpoint::Dump(Stream *s) const {
142 DumpWithLevel(s, lldb::eDescriptionLevelBrief);
Johnny Chende6bd242011-09-16 21:41:42 +0000143}
144
Kate Stoneb9c1b512016-09-06 20:57:50 +0000145// If prefix is nullptr, we display the watch id and ignore the prefix
146// altogether.
147void Watchpoint::DumpSnapshots(Stream *s, const char *prefix) const {
148 if (!prefix) {
149 s->Printf("\nWatchpoint %u hit:", GetID());
150 prefix = "";
151 }
152
153 if (m_old_value_sp) {
154 const char *old_value_cstr = m_old_value_sp->GetValueAsCString();
155 if (old_value_cstr && old_value_cstr[0])
156 s->Printf("\n%sold value: %s", prefix, old_value_cstr);
157 else {
158 const char *old_summary_cstr = m_old_value_sp->GetSummaryAsCString();
159 if (old_summary_cstr && old_summary_cstr[0])
160 s->Printf("\n%sold value: %s", prefix, old_summary_cstr);
Johnny Chen88fc73b2012-08-13 23:27:50 +0000161 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000162 }
Mohit K. Bhakkad18af8a22015-10-09 15:13:20 +0000163
Kate Stoneb9c1b512016-09-06 20:57:50 +0000164 if (m_new_value_sp) {
165 const char *new_value_cstr = m_new_value_sp->GetValueAsCString();
166 if (new_value_cstr && new_value_cstr[0])
167 s->Printf("\n%snew value: %s", prefix, new_value_cstr);
168 else {
169 const char *new_summary_cstr = m_new_value_sp->GetSummaryAsCString();
170 if (new_summary_cstr && new_summary_cstr[0])
171 s->Printf("\n%snew value: %s", prefix, new_summary_cstr);
Johnny Chen209bd652012-08-13 21:09:54 +0000172 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000173 }
Johnny Chen209bd652012-08-13 21:09:54 +0000174}
175
Kate Stoneb9c1b512016-09-06 20:57:50 +0000176void Watchpoint::DumpWithLevel(Stream *s,
177 lldb::DescriptionLevel description_level) const {
178 if (s == nullptr)
179 return;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000180
Kate Stoneb9c1b512016-09-06 20:57:50 +0000181 assert(description_level >= lldb::eDescriptionLevelBrief &&
182 description_level <= lldb::eDescriptionLevelVerbose);
Johnny Chende6bd242011-09-16 21:41:42 +0000183
Kate Stoneb9c1b512016-09-06 20:57:50 +0000184 s->Printf("Watchpoint %u: addr = 0x%8.8" PRIx64
185 " size = %u state = %s type = %s%s",
186 GetID(), GetLoadAddress(), m_byte_size,
187 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "",
188 m_watch_write ? "w" : "");
Johnny Chende6bd242011-09-16 21:41:42 +0000189
Kate Stoneb9c1b512016-09-06 20:57:50 +0000190 if (description_level >= lldb::eDescriptionLevelFull) {
191 if (!m_decl_str.empty())
192 s->Printf("\n declare @ '%s'", m_decl_str.c_str());
193 if (!m_watch_spec_str.empty())
194 s->Printf("\n watchpoint spec = '%s'", m_watch_spec_str.c_str());
Johnny Chen209bd652012-08-13 21:09:54 +0000195
Kate Stoneb9c1b512016-09-06 20:57:50 +0000196 // Dump the snapshots we have taken.
197 DumpSnapshots(s, " ");
Johnny Chen209bd652012-08-13 21:09:54 +0000198
Kate Stoneb9c1b512016-09-06 20:57:50 +0000199 if (GetConditionText())
200 s->Printf("\n condition = '%s'", GetConditionText());
201 m_options.GetCallbackDescription(s, description_level);
202 }
Johnny Chende6bd242011-09-16 21:41:42 +0000203
Kate Stoneb9c1b512016-09-06 20:57:50 +0000204 if (description_level >= lldb::eDescriptionLevelVerbose) {
205 s->Printf("\n hw_index = %i hit_count = %-4u ignore_count = %-4u",
206 GetHardwareIndex(), GetHitCount(), GetIgnoreCount());
207 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000208}
209
Kate Stoneb9c1b512016-09-06 20:57:50 +0000210bool Watchpoint::IsEnabled() const { return m_enabled; }
211
212// Within StopInfo.cpp, we purposely turn on the ephemeral mode right before
Adrian Prantl05097242018-04-30 16:49:04 +0000213// temporarily disable the watchpoint in order to perform possible watchpoint
214// actions without triggering further watchpoint events. After the temporary
215// disabled watchpoint is enabled, we then turn off the ephemeral mode.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000216
217void Watchpoint::TurnOnEphemeralMode() { m_is_ephemeral = true; }
218
219void Watchpoint::TurnOffEphemeralMode() {
220 m_is_ephemeral = false;
221 // Leaving ephemeral mode, reset the m_disabled_count!
222 m_disabled_count = 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000223}
224
Kate Stoneb9c1b512016-09-06 20:57:50 +0000225bool Watchpoint::IsDisabledDuringEphemeralMode() {
Jim Ingham209a77d2016-10-25 20:34:32 +0000226 return m_disabled_count > 1 && m_is_ephemeral;
Johnny Chen4fe23022012-08-21 23:17:04 +0000227}
228
Kate Stoneb9c1b512016-09-06 20:57:50 +0000229void Watchpoint::SetEnabled(bool enabled, bool notify) {
230 if (!enabled) {
231 if (!m_is_ephemeral)
232 SetHardwareIndex(LLDB_INVALID_INDEX32);
Johnny Chen16dcf712011-10-17 18:58:00 +0000233 else
Kate Stoneb9c1b512016-09-06 20:57:50 +0000234 ++m_disabled_count;
235
236 // Don't clear the snapshots for now.
237 // Within StopInfo.cpp, we purposely do disable/enable watchpoint while
238 // performing watchpoint actions.
239 }
240 bool changed = enabled != m_enabled;
241 m_enabled = enabled;
242 if (notify && !m_is_ephemeral && changed)
243 SendWatchpointChangedEvent(enabled ? eWatchpointEventTypeEnabled
244 : eWatchpointEventTypeDisabled);
Johnny Chen16dcf712011-10-17 18:58:00 +0000245}
246
Kate Stoneb9c1b512016-09-06 20:57:50 +0000247void Watchpoint::SetWatchpointType(uint32_t type, bool notify) {
248 int old_watch_read = m_watch_read;
249 int old_watch_write = m_watch_write;
250 m_watch_read = (type & LLDB_WATCH_TYPE_READ) != 0;
251 m_watch_write = (type & LLDB_WATCH_TYPE_WRITE) != 0;
252 if (notify &&
253 (old_watch_read != m_watch_read || old_watch_write != m_watch_write))
254 SendWatchpointChangedEvent(eWatchpointEventTypeTypeChanged);
255}
256
257bool Watchpoint::WatchpointRead() const { return m_watch_read != 0; }
258
259bool Watchpoint::WatchpointWrite() const { return m_watch_write != 0; }
260
261uint32_t Watchpoint::GetIgnoreCount() const { return m_ignore_count; }
262
263void Watchpoint::SetIgnoreCount(uint32_t n) {
264 bool changed = m_ignore_count != n;
265 m_ignore_count = n;
266 if (changed)
267 SendWatchpointChangedEvent(eWatchpointEventTypeIgnoreChanged);
268}
269
270bool Watchpoint::InvokeCallback(StoppointCallbackContext *context) {
271 return m_options.InvokeCallback(context, GetID());
272}
273
274void Watchpoint::SetCondition(const char *condition) {
275 if (condition == nullptr || condition[0] == '\0') {
Johnny Chen16dcf712011-10-17 18:58:00 +0000276 if (m_condition_ap.get())
Kate Stoneb9c1b512016-09-06 20:57:50 +0000277 m_condition_ap.reset();
278 } else {
279 // Pass nullptr for expr_prefix (no translation-unit level definitions).
Zachary Turner97206d52017-05-12 04:51:55 +0000280 Status error;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000281 m_condition_ap.reset(m_target.GetUserExpressionForLanguage(
Zachary Turnerc5d7df92016-11-08 04:52:16 +0000282 condition, llvm::StringRef(), lldb::eLanguageTypeUnknown,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000283 UserExpression::eResultTypeAny, EvaluateExpressionOptions(), error));
284 if (error.Fail()) {
285 // FIXME: Log something...
286 m_condition_ap.reset();
Jim Ingham1b5792e2012-12-18 02:03:49 +0000287 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000288 }
289 SendWatchpointChangedEvent(eWatchpointEventTypeConditionChanged);
Jim Ingham1b5792e2012-12-18 02:03:49 +0000290}
291
Kate Stoneb9c1b512016-09-06 20:57:50 +0000292const char *Watchpoint::GetConditionText() const {
293 if (m_condition_ap.get())
294 return m_condition_ap->GetUserText();
295 else
Eugene Zelenko16fd7512015-10-30 18:50:12 +0000296 return nullptr;
Jim Ingham1b5792e2012-12-18 02:03:49 +0000297}
298
Kate Stoneb9c1b512016-09-06 20:57:50 +0000299void Watchpoint::SendWatchpointChangedEvent(
300 lldb::WatchpointEventType eventKind) {
301 if (!m_being_created &&
302 GetTarget().EventTypeHasListeners(
303 Target::eBroadcastBitWatchpointChanged)) {
304 WatchpointEventData *data =
305 new Watchpoint::WatchpointEventData(eventKind, shared_from_this());
306 GetTarget().BroadcastEvent(Target::eBroadcastBitWatchpointChanged, data);
307 }
Jim Ingham1b5792e2012-12-18 02:03:49 +0000308}
309
Kate Stoneb9c1b512016-09-06 20:57:50 +0000310void Watchpoint::SendWatchpointChangedEvent(WatchpointEventData *data) {
311 if (data == nullptr)
312 return;
Jim Ingham1b5792e2012-12-18 02:03:49 +0000313
Kate Stoneb9c1b512016-09-06 20:57:50 +0000314 if (!m_being_created &&
315 GetTarget().EventTypeHasListeners(Target::eBroadcastBitWatchpointChanged))
316 GetTarget().BroadcastEvent(Target::eBroadcastBitWatchpointChanged, data);
317 else
318 delete data;
319}
Jim Ingham1b5792e2012-12-18 02:03:49 +0000320
Kate Stoneb9c1b512016-09-06 20:57:50 +0000321Watchpoint::WatchpointEventData::WatchpointEventData(
322 WatchpointEventType sub_type, const WatchpointSP &new_watchpoint_sp)
323 : EventData(), m_watchpoint_event(sub_type),
324 m_new_watchpoint_sp(new_watchpoint_sp) {}
325
326Watchpoint::WatchpointEventData::~WatchpointEventData() = default;
327
328const ConstString &Watchpoint::WatchpointEventData::GetFlavorString() {
329 static ConstString g_flavor("Watchpoint::WatchpointEventData");
330 return g_flavor;
331}
332
333const ConstString &Watchpoint::WatchpointEventData::GetFlavor() const {
334 return WatchpointEventData::GetFlavorString();
335}
336
337WatchpointSP &Watchpoint::WatchpointEventData::GetWatchpoint() {
338 return m_new_watchpoint_sp;
339}
340
341WatchpointEventType
342Watchpoint::WatchpointEventData::GetWatchpointEventType() const {
343 return m_watchpoint_event;
344}
345
346void Watchpoint::WatchpointEventData::Dump(Stream *s) const {}
347
348const Watchpoint::WatchpointEventData *
349Watchpoint::WatchpointEventData::GetEventDataFromEvent(const Event *event) {
350 if (event) {
351 const EventData *event_data = event->GetData();
352 if (event_data &&
353 event_data->GetFlavor() == WatchpointEventData::GetFlavorString())
354 return static_cast<const WatchpointEventData *>(event->GetData());
355 }
356 return nullptr;
357}
358
359WatchpointEventType
360Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent(
361 const EventSP &event_sp) {
362 const WatchpointEventData *data = GetEventDataFromEvent(event_sp.get());
363
364 if (data == nullptr)
365 return eWatchpointEventTypeInvalidType;
366 else
367 return data->GetWatchpointEventType();
368}
369
370WatchpointSP Watchpoint::WatchpointEventData::GetWatchpointFromEvent(
371 const EventSP &event_sp) {
372 WatchpointSP wp_sp;
373
374 const WatchpointEventData *data = GetEventDataFromEvent(event_sp.get());
375 if (data)
376 wp_sp = data->m_new_watchpoint_sp;
377
378 return wp_sp;
Jim Ingham1b5792e2012-12-18 02:03:49 +0000379}