[Lldb-commits] [lldb] [lldb-dap] Enabling instruction breakpoint support to lldb-dap. (PR #105278)

Adrian Vogelsgesang via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 22 10:27:32 PDT 2024


================
@@ -4078,6 +4255,9 @@ void RegisterRequestCallbacks() {
   g_dap.RegisterRequestCallback("threads", request_threads);
   g_dap.RegisterRequestCallback("variables", request_variables);
   g_dap.RegisterRequestCallback("disassemble", request_disassemble);
+  // Instruction breapoint request
----------------
vogelsgesang wrote:

I don't really know about those differences on the gdb protocol. I was only reading https://microsoft.github.io/debug-adapter-protocol/specification#Requests_SetInstructionBreakpoints

> When an instruction breakpoint is hit, a stopped event (with reason `instruction breakpoint`) is generated.

https://github.com/llvm/llvm-project/pull/105278


More information about the lldb-commits mailing list