[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / lldb / tools / lldb-vscode / SourceBreakpoint.cpp
blobbe93c2e21ea43724848ab34440fd661f24b0d7fa
1 //===-- SourceBreakpoint.cpp ------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "SourceBreakpoint.h"
10 #include "VSCode.h"
12 namespace lldb_vscode {
14 SourceBreakpoint::SourceBreakpoint(const llvm::json::Object &obj)
15 : BreakpointBase(obj), line(GetUnsigned(obj, "line", 0)),
16 column(GetUnsigned(obj, "column", 0)) {}
18 void SourceBreakpoint::SetBreakpoint(const llvm::StringRef source_path) {
19 bp = g_vsc.target.BreakpointCreateByLocation(source_path.str().c_str(), line);
20 // See comments in BreakpointBase::GetBreakpointLabel() for details of why
21 // we add a label to our breakpoints.
22 bp.AddName(GetBreakpointLabel());
23 if (!condition.empty())
24 SetCondition();
25 if (!hitCondition.empty())
26 SetHitCondition();
29 } // namespace lldb_vscode