
- Migrate set breakpoint requests to use typed RequestHandler - `SetBreakpointsRequestHandler` - `SetDataBreakpointsRequestHandler` - `SetFunctionBreakpointsRequestHandler` - `SetInstructionBreakpointsRequestHandler` - `DataBreakpointInfoRequestHandler` - Decouple JSON from lldb-dap `Breakpoint` classes
32 lines
1006 B
C++
32 lines
1006 B
C++
//===-- FunctionBreakpoint.cpp ----------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "FunctionBreakpoint.h"
|
|
#include "DAP.h"
|
|
#include "lldb/API/SBMutex.h"
|
|
#include <mutex>
|
|
|
|
namespace lldb_dap {
|
|
|
|
FunctionBreakpoint::FunctionBreakpoint(
|
|
DAP &d, const protocol::FunctionBreakpoint &breakpoint)
|
|
: Breakpoint(d, breakpoint.condition, breakpoint.hitCondition),
|
|
m_function_name(breakpoint.name) {}
|
|
|
|
void FunctionBreakpoint::SetBreakpoint() {
|
|
lldb::SBMutex lock = m_dap.GetAPIMutex();
|
|
std::lock_guard<lldb::SBMutex> guard(lock);
|
|
|
|
if (m_function_name.empty())
|
|
return;
|
|
m_bp = m_dap.target.BreakpointCreateByName(m_function_name.c_str());
|
|
Breakpoint::SetBreakpoint();
|
|
}
|
|
|
|
} // namespace lldb_dap
|