[Lldb-commits] [lldb] [lldb][docs] Add hardware feature considerations to target doc (PR #211213)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 23 06:50:20 PDT 2026
================
@@ -298,3 +298,151 @@ As you have seen above, there are a lot of moving parts to a debugger. So
having some set of results to measure progress is very important.
Sometimes a change will get one test to pass, sometimes hundreds, and it
is easy to regress if you are not careful.
+
+## Target Hardware Features
+
+Some hardware features can make porting easier or harder. Below is a
+non-exhaustive list of features and their impacts on porting LLDB.
+
+### Hardware Single Step
+
+If the target lacks this feature, you will have to implement software single
+stepping. Which is much more complex and involves emulating any instruction that
----------------
DavidSpickett wrote:
Done.
https://github.com/llvm/llvm-project/pull/211213
More information about the lldb-commits
mailing list