Plugin nvim-dap-lldb Homepage https://github.com/julianolf/nvim-dap-lldb Nixpkgs false Extra Information Extention for nvim-dap providing C/C++/Rust supportSk7Str1pe added the enhancement label Oct 10, 2024 Sign up for free to join this conversation on GitHub. Already have an account? Sign...
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...
Port of LLVM to the MOS 6502 and related processors - [lldb][lldb-dap][test] Enable variable tests on Windows · llvm-mos/llvm-mos@a3cd8d7
@@ -1779,8 +1779,10 @@ lldb::SBError LaunchProcess(const llvm::json::Object &request) { // Set the launch info so that run commands can access the configured // launch details. g_dap.target.SetLaunchInfo(launch_info); if (llvm::Error err = g_dap.RunLaunchCommands(launchCommands)...
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/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; ...
This adds support for launching lldb-dap in server mode. The extension will start lldb-dap in server mode on-demand and retain the server until the VSCode window is closed (when the extension context is disposed). While running in server mode, launch performance for binaries is greatly improve...
lldb::SBData data = value.GetPointeeData(); if (data.IsValid()) { size = llvm::utostr(data.GetByteSize()); addr = llvm::utohexstr(load_addr); lldb::SBMemoryRegionInfo region; lldb::SBError err = g_dap.target.GetProcess().GetMemoryRegionInfo(load_addr, region); // Only lldb-...
lldb::SBLineEntry line_entry = g_dap.target.ResolveLoadAddress(addr).GetLineEntry(); return line_entry.IsValid(); } int64_t PackLocation(int64_t var_ref, bool is_value_location) { return var_ref << 1 | is_value_location; } std::pair<int64_t, bool> UnpackLocation(int64_t location...
(modified) lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py (+11) (added) lldb/test/API/tools/lldb-dap/locations/Makefile (+3) (added) lldb/test/API/tools/lldb-dap/locations/TestDAP_locations.py (+77) (added) lldb/test/API/tools/lldb-dap/locations/main.cpp (+13) ...