[all-commits] [llvm/llvm-project] f0c16f: Add runToBinaryEntry option for lldb-vscode
jeffreytan81 via All-commits
all-commits at lists.llvm.org
Tue Nov 22 13:53:02 PST 2022
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: f0c16f89124f2dc0630162ff9ea23934f5b2b75b
https://github.com/llvm/llvm-project/commit/f0c16f89124f2dc0630162ff9ea23934f5b2b75b
Author: Jeffrey Tan <jeffreytan at fb.com>
Date: 2022-11-22 (Tue, 22 Nov 2022)
Changed paths:
M lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/lldbvscode_testcase.py
M lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
M lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
M lldb/tools/lldb-vscode/VSCode.cpp
M lldb/tools/lldb-vscode/VSCode.h
M lldb/tools/lldb-vscode/lldb-vscode.cpp
M lldb/tools/lldb-vscode/package.json
Log Message:
-----------
Add runToBinaryEntry option for lldb-vscode
This patch adds a new runToBinaryEntry option which sets a one-shot breakpoint
at program entry. This option is useful for synchronizing module loading with
dynamic loader to measure debugger startup performance: when program entry
one-short breakpoint hits most of the dependency modules should have been
loaded so this provides a good sample point for debugger startup time.
More explicitly for lldb-vscode, when this option is enabled, "Initialized" DAP
event is synchronously sent after most dependency modules are loaded.
Differential Revision: https://reviews.llvm.org/D135798
More information about the All-commits
mailing list