[PATCH] D140368: [lldb] Consider all breakpoints in breakpoint detection
Pavel Kosov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 19 20:41:39 PST 2022
kpdev42 created this revision.
kpdev42 added reviewers: clayborg, davide, k8stone, DavidSpickett.
kpdev42 added a project: LLDB.
Herald added a subscriber: JDevlieghere.
Herald added a project: All.
kpdev42 requested review of this revision.
Herald added a subscriber: lldb-commits.
Currently in some cases lldb reports stop reason as "step out" or "step over" (from thread plan completion) over "breakpoint", if the user breakpoint happens to be set on the same address.
The part of https://github.com/llvm/llvm-project/commit/f08f5c99262ff9eaa08956334accbb2614b0f7a2 seems to overwrite internal breakpoint detection logic, so that only the last breakpoint for the current stop address is considered.
Together with step-out plans not clearing its breakpoint until they are destrouyed, this creates a situation when there is a user breakpoint set for address, but internal breakpoint makes lldb report a plan completion stop reason instead of breakpoint.
This patch reverts that internal breakpoint detection logic to consider all breakpoints
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D140368
Files:
lldb/source/Target/StopInfo.cpp
lldb/test/API/functionalities/breakpoint/step_out_breakpoint/Makefile
lldb/test/API/functionalities/breakpoint/step_out_breakpoint/TestStepOutBreakpoint.py
lldb/test/API/functionalities/breakpoint/step_out_breakpoint/main.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140368.484159.patch
Type: text/x-patch
Size: 6275 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221220/ba5a4c85/attachment.bin>
More information about the llvm-commits
mailing list