
- Migrate set breakpoint requests to use typed RequestHandler - `SetBreakpointsRequestHandler` - `SetDataBreakpointsRequestHandler` - `SetFunctionBreakpointsRequestHandler` - `SetInstructionBreakpointsRequestHandler` - `DataBreakpointInfoRequestHandler` - Decouple JSON from lldb-dap `Breakpoint` classes
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
//===-- InstructionBreakpoint.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 "InstructionBreakpoint.h"
|
|
#include "DAP.h"
|
|
#include "lldb/API/SBBreakpoint.h"
|
|
#include "lldb/API/SBTarget.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
namespace lldb_dap {
|
|
|
|
InstructionBreakpoint::InstructionBreakpoint(
|
|
DAP &d, const protocol::InstructionBreakpoint &breakpoint)
|
|
: Breakpoint(d, breakpoint.condition, breakpoint.hitCondition),
|
|
m_instruction_address_reference(LLDB_INVALID_ADDRESS),
|
|
m_offset(breakpoint.offset.value_or(0)) {
|
|
llvm::StringRef instruction_reference(breakpoint.instructionReference);
|
|
instruction_reference.getAsInteger(0, m_instruction_address_reference);
|
|
m_instruction_address_reference += m_offset;
|
|
}
|
|
|
|
void InstructionBreakpoint::SetBreakpoint() {
|
|
m_bp =
|
|
m_dap.target.BreakpointCreateByAddress(m_instruction_address_reference);
|
|
Breakpoint::SetBreakpoint();
|
|
}
|
|
|
|
} // namespace lldb_dap
|