-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[lldb-dap] Replace GetBreakpointLabel with kDAPBreakpointLabel constant (NFC) #133746
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…nt (NFC) Replace GetBreakpointLabel with kDAPBreakpointLabel constant to avoid an unnecessary function call.
@llvm/pr-subscribers-lldb Author: Jonas Devlieghere (JDevlieghere) ChangesReplace GetBreakpointLabel with kDAPBreakpointLabel constant to avoid an unnecessary function call. Full diff: https://github.com/llvm/llvm-project/pull/133746.diff 5 Files Affected:
diff --git a/lldb/tools/lldb-dap/Breakpoint.cpp b/lldb/tools/lldb-dap/Breakpoint.cpp
index b3bfa61595a82..eba534dcc51c7 100644
--- a/lldb/tools/lldb-dap/Breakpoint.cpp
+++ b/lldb/tools/lldb-dap/Breakpoint.cpp
@@ -72,9 +72,7 @@ void Breakpoint::CreateJsonObject(llvm::json::Object &object) {
bool Breakpoint::MatchesName(const char *name) { return bp.MatchesName(name); }
void Breakpoint::SetBreakpoint() {
- // See comments in BreakpointBase::GetBreakpointLabel() for details of why
- // we add a label to our breakpoints.
- bp.AddName(GetBreakpointLabel());
+ bp.AddName(kDAPBreakpointLabel);
if (!condition.empty())
SetCondition();
if (!hitCondition.empty())
diff --git a/lldb/tools/lldb-dap/BreakpointBase.cpp b/lldb/tools/lldb-dap/BreakpointBase.cpp
index 7979bac098766..15fecaf691199 100644
--- a/lldb/tools/lldb-dap/BreakpointBase.cpp
+++ b/lldb/tools/lldb-dap/BreakpointBase.cpp
@@ -26,19 +26,3 @@ void BreakpointBase::UpdateBreakpoint(const BreakpointBase &request_bp) {
SetHitCondition();
}
}
-
-const char *BreakpointBase::GetBreakpointLabel() {
- // Breakpoints in LLDB can have names added to them which are kind of like
- // labels or categories. All breakpoints that are set through the IDE UI get
- // sent through the various DAP set*Breakpoint packets, and these
- // breakpoints will be labeled with this name so if breakpoint update events
- // come in for breakpoints that the IDE doesn't know about, like if a
- // breakpoint is set manually using the debugger console, we won't report any
- // updates on them and confused the IDE. This function gets called by all of
- // the breakpoint classes after they set breakpoints to mark a breakpoint as
- // a UI breakpoint. We can later check a lldb::SBBreakpoint object that comes
- // in via LLDB breakpoint changed events and check the breakpoint by calling
- // "bool lldb::SBBreakpoint::MatchesName(const char *)" to check if a
- // breakpoint in one of the UI breakpoints that we should report changes for.
- return "dap";
-}
diff --git a/lldb/tools/lldb-dap/BreakpointBase.h b/lldb/tools/lldb-dap/BreakpointBase.h
index 3c248dd1736d0..0b036dd1985b3 100644
--- a/lldb/tools/lldb-dap/BreakpointBase.h
+++ b/lldb/tools/lldb-dap/BreakpointBase.h
@@ -10,6 +10,7 @@
#define LLDB_TOOLS_LLDB_DAP_BREAKPOINTBASE_H
#include "DAPForward.h"
+#include "llvm/ADT/StringRef.h"
#include <string>
namespace lldb_dap {
@@ -34,7 +35,20 @@ struct BreakpointBase {
void UpdateBreakpoint(const BreakpointBase &request_bp);
- static const char *GetBreakpointLabel();
+ /// Breakpoints in LLDB can have names added to them which are kind of like
+ /// labels or categories. All breakpoints that are set through DAP get sent
+ /// through the various DAP set*Breakpoint packets, and these breakpoints will
+ /// be labeled with this name so if breakpoint update events come in for
+ /// breakpoints that the client doesn't know about, like if a breakpoint is
+ /// set manually using the debugger console, we won't report any updates on
+ /// them and confused the client. This label gets added by all of the
+ /// breakpoint classes after they set breakpoints to mark a breakpoint as a
+ /// DAP breakpoint. We can later check a lldb::SBBreakpoint object that comes
+ /// in via LLDB breakpoint changed events and check the breakpoint by calling
+ /// "bool lldb::SBBreakpoint::MatchesName(const char *)" to check if a
+ /// breakpoint in one of the DAP breakpoints that we should report changes
+ /// for.
+ static constexpr const char *kDAPBreakpointLabel = "dap";
};
} // namespace lldb_dap
diff --git a/lldb/tools/lldb-dap/ExceptionBreakpoint.cpp b/lldb/tools/lldb-dap/ExceptionBreakpoint.cpp
index 0fb865c19e574..15aee55ad923e 100644
--- a/lldb/tools/lldb-dap/ExceptionBreakpoint.cpp
+++ b/lldb/tools/lldb-dap/ExceptionBreakpoint.cpp
@@ -20,9 +20,7 @@ void ExceptionBreakpoint::SetBreakpoint() {
bool throw_value = filter.find("_throw") != std::string::npos;
bp = dap.target.BreakpointCreateForException(language, catch_value,
throw_value);
- // See comments in BreakpointBase::GetBreakpointLabel() for details of why
- // we add a label to our breakpoints.
- bp.AddName(BreakpointBase::GetBreakpointLabel());
+ bp.AddName(BreakpointBase::kDAPBreakpointLabel);
}
void ExceptionBreakpoint::ClearBreakpoint() {
diff --git a/lldb/tools/lldb-dap/Handler/InitializeRequestHandler.cpp b/lldb/tools/lldb-dap/Handler/InitializeRequestHandler.cpp
index e7c565aad13a3..b4250cd6becb3 100644
--- a/lldb/tools/lldb-dap/Handler/InitializeRequestHandler.cpp
+++ b/lldb/tools/lldb-dap/Handler/InitializeRequestHandler.cpp
@@ -197,13 +197,13 @@ static void EventThreadFunction(DAP &dap) {
auto bp = Breakpoint(
dap, lldb::SBBreakpoint::GetBreakpointFromEvent(event));
// If the breakpoint was set through DAP, it will have the
- // BreakpointBase::GetBreakpointLabel() label. Regardless
- // of whether locations were added, removed, or resolved, the
- // breakpoint isn't going away and the reason is always "changed".
+ // BreakpointBase::kDAPBreakpointLabel. Regardless of whether
+ // locations were added, removed, or resolved, the breakpoint isn't
+ // going away and the reason is always "changed".
if ((event_type & lldb::eBreakpointEventTypeLocationsAdded ||
event_type & lldb::eBreakpointEventTypeLocationsRemoved ||
event_type & lldb::eBreakpointEventTypeLocationsResolved) &&
- bp.MatchesName(BreakpointBase::GetBreakpointLabel())) {
+ bp.MatchesName(BreakpointBase::kDAPBreakpointLabel)) {
// As the DAP client already knows the path of this breakpoint, we
// don't need to send it back as part of the "changed" event. This
// avoids sending paths that should be source mapped. Note that
|
This is part of a few small cleanups I'm doing before adopting SBMutex in lldb-dap. |
ashgti
approved these changes
Mar 31, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replace GetBreakpointLabel with kDAPBreakpointLabel constant to avoid an unnecessary function call.