llvm-capstone/lldb/docs
Jason Molenda a3fe9221ab
Remove hardware index from watchpoints and breakpoints (#72012)
The Watchpoint and Breakpoint objects try to track the hardware index
that was used for them, if they are hardware wp/bp's. The majority of
our debugging goes over the gdb remote serial protocol, and when we set
the watchpoint/breakpoint, there is no (standard) way for the remote
stub to communicate to lldb which hardware index was used. We have an
lldb-extension packet to query the total number of watchpoint registers.

When a watchpoint is hit, there is an lldb extension to the stop reply
packet (documented in lldb-gdb-remote.txt) to describe the watchpoint
including its actual hardware index,

<addr within wp range> <wp hw index> <actual accessed address>

(the third field is specifically needed for MIPS). At this point, if the
stub reported these three fields (the stub is only required to provide
the first), we can know the actual hardware index for this watchpoint.

Breakpoints are worse; there's never any way for us to be notified about
which hardware index was used. Breakpoints got this as a side effect of
inherting from StoppointSite with Watchpoints.

We expose the watchpoint hardware index through "watchpoint list -v" and
through SBWatchpoint::GetHardwareIndex.

With my large watchpoint support, there is no *single* hardware index
that may be used for a watchpoint, it may need multiple resources. Also
I don't see what a user is supposed to do with this information, or an
IDE. Knowing the total number of watchpoint registers on the target, and
knowing how many Watchpoint Resources are currently in use, is helpful.
Knowing how many Watchpoint Resources
a single user-specified watchpoint needed to be implemented is useful.
But knowing which registers were used is an implementation detail and
not available until we hit the watchpoint when using gdb remote serial
protocol.

So given all that, I'm removing watchpoint hardware index numbers. I'm
changing the SB API to always return -1.
2023-11-15 13:32:42 -08:00
..
_lldb [NFC][Py Reformat] Reformat python files in lldb 2023-05-25 12:54:09 -07:00
man
resources [lldb][docs] Update reference to test directory location (#71081) 2023-11-02 10:35:42 -07:00
testsuite [lldb] Delete more mydir references (NFC) 2022-07-10 18:56:06 -07:00
use Remove hardware index from watchpoints and breakpoints (#72012) 2023-11-15 13:32:42 -08:00
.htaccess [lldb] Move Continuous Integration documentation under Testing 2023-08-18 14:05:38 -07:00
CMakeLists.txt
conf.py [lldb] Format more Python files with black (#65979) 2023-09-12 08:46:34 +01:00
doxygen-mainpage.dox
doxygen.cfg.in [docs] Hide collaboration and include graphs in doxygen docs 2023-05-04 12:26:51 +02:00
index.rst [lldb][docs] Update Discord invite link 2023-11-10 11:18:30 +00:00
lldb-for-gdb-users.txt
lldb-gdb-remote.txt [lldb] Update qRegisterInfo docs to recommend target.xml (#69853) 2023-10-21 11:58:29 -07:00
lldb-platform-packets.txt Platform gdb RSP packet doc fixes based on implementation behavior 2022-02-07 23:51:46 -08:00
python_api_enums.rst Fix typos in documentation 2023-08-27 00:18:14 -07:00
python_api.rst Re-land "[lldb/docs] Silence warnings when generating website" 2023-08-31 20:35:10 +01:00