lldb/tools/lldb-dap/DAP.cpp +1-1 Original file line numberDiff line numberDiff line change @@ -548,7 +548,7 @@ bool DAP::RunLLDBCommands(llvm::StringRef prefix, 548548 llvm::ArrayRef<std::string> commands) { 549549 boolrequired_command_failed =false; ...
import lldbdap_testcase import time import os import re class TestDAP_launch(lldbdap_testcase.DAPTestCaseBase): @skipIfWindows def test_default(self): """ Tests the default launch of a simple program. No arguments, @@ -27,7 +27,6 @@ def test_default(self): lines = output.splitlines...
(modified) lldb/tools/lldb-dap/Handler/RequestHandler.h (+59-1) (added) lldb/tools/lldb-dap/Handler/StepInRequestHandler.cpp (+96) (added) lldb/tools/lldb-dap/Handler/StepInTargetsRequestHandler.cpp (+149) (added) lldb/tools/lldb-dap/Handler/StepOutRequestHandler.cpp (+68) (added) lldb...
+"description": "Run lldb-dap in server mode. When enabled, lldb-dap will start a background server that will be reused between debug sessions. This can improve launch performance and caching of debug symbols between debug sessions.",+"default": false}...
1 change: 0 additions & 1 deletion 1 lldb/test/API/tools/lldb-dap/breakpoint/TestDAP_logpoints.py Original file line numberDiff line numberDiff line change @@ -19,7 +19,6 @@ def setUp(self): self.main_basename = "main-copy.cpp" self.main_path = os.path.realpath(self.getBuildAr...
[lldb-dap] Refactor custom & testing related request handlers (NFC) 16bb4bd Sign in for the full log view Labelling new pull requests on: pull_request_target greeter automate-prs-labels Check code formatting on: pull_request code_formatter LLVM Premerge Checks on: pull_request Li...
Test lldb-dap setBreakpoints request """ import dap_server from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * @@ -398,7 +397,7 @@ def test_extra_launch_commands(self): # Verify all "preRunCommands" were found in console output self.verify_commands("preRunComm...
在前一章,我们谈论了如何在neovim中使用cpptools这个DAP的适配器对代码进行调试,目前针对编译型和解释型语言来说我们都有了对应的方法来配置调试器对其进行调试。本节将要介绍关于dap的其他一些功能,主要包括repl窗口和gdb的集成 repl 窗口 什么是repl呢?它的全称是Read Eval Print Loop中文一般翻译为交互式解析器,可能...
LLDB调试器这是LLDB文档! LLDB是下一代高性能调试器。它是作为一组可重用的组件构建的,这些组件可充分利用大型LLVM Project中的现有库,例如Clang表达式解析器和LLVM反汇编程序。 LLDB是macOS上Xcode中的默认调试器,并支持在台式机,iOS设备和模拟器上调试C,O ...
bool ValuePointsToCode(lldb::SBValue v) { if (!v.GetType().GetPointeeType().IsFunctionType()) return false; lldb::addr_t addr = v.GetValueAsAddress(); lldb::SBLineEntry line_entry = g_dap.target.ResolveLoadAddress(addr).GetLineEntry(); return line_entry.IsValid(); } int64_t Pa...