Skip to content

Commit c84f2ba

Browse files
committed
Add one more verbose watchpoint logging for arm-ubuntu
1 parent 51e0d1b commit c84f2ba

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lldb/source/Breakpoint/WatchpointAlgorithms.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ WatchpointAlgorithms::PowerOf2Watchpoints(addr_t user_addr, size_t user_size,
7777
size_t max_byte_size,
7878
uint32_t address_byte_size) {
7979

80+
Log *log = GetLog(LLDBLog::Watchpoints);
81+
LLDB_LOGV(log,
82+
"AtomizeWatchpointRequest user request addr {0:x} size {1} "
83+
"min_byte_size {2}, max_byte_size {3}, address_byte_size {4}",
84+
user_addr, user_size, min_byte_size, max_byte_size,
85+
address_byte_size);
86+
8087
// Can't watch zero bytes.
8188
if (user_size == 0)
8289
return {};

0 commit comments

Comments
 (0)