1 //===-- InstructionBreakpoint.h --------------------------------------*- C++
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef LLDB_TOOLS_LLDB_DAP_INSTRUCTIONBREAKPOINT_H
11 #define LLDB_TOOLS_LLDB_DAP_INSTRUCTIONBREAKPOINT_H
13 #include "Breakpoint.h"
14 #include "DAPForward.h"
15 #include "lldb/lldb-types.h"
20 // Instruction Breakpoint
21 struct InstructionBreakpoint
: public Breakpoint
{
23 lldb::addr_t instructionAddressReference
;
26 InstructionBreakpoint(DAP
&d
, const llvm::json::Object
&obj
);
28 // Set instruction breakpoint in LLDB as a new breakpoint
32 } // namespace lldb_dap