|
| 1 | +//===-- Breakpoint.cpp ----------------------------------------------------===// |
| 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 | +//===----------------------------------------------------------------------===// |
| 8 | + |
| 9 | +#include "Breakpoint.h" |
| 10 | +#include "DAP.h" |
| 11 | +#include "JSONUtils.h" |
| 12 | +#include "llvm/ADT/StringExtras.h" |
| 13 | + |
| 14 | +using namespace lldb_dap; |
| 15 | + |
| 16 | +void Breakpoint::SetCondition() { bp.SetCondition(condition.c_str()); } |
| 17 | + |
| 18 | +void Breakpoint::SetHitCondition() { |
| 19 | + uint64_t hitCount = 0; |
| 20 | + if (llvm::to_integer(hitCondition, hitCount)) |
| 21 | + bp.SetIgnoreCount(hitCount - 1); |
| 22 | +} |
| 23 | + |
| 24 | +void Breakpoint::CreateJsonObject(llvm::json::Object &object) { |
| 25 | + // Each breakpoint location is treated as a separate breakpoint for VS code. |
| 26 | + // They don't have the notion of a single breakpoint with multiple locations. |
| 27 | + if (!bp.IsValid()) |
| 28 | + return; |
| 29 | + object.try_emplace("verified", bp.GetNumResolvedLocations() > 0); |
| 30 | + object.try_emplace("id", bp.GetID()); |
| 31 | + // VS Code DAP doesn't currently allow one breakpoint to have multiple |
| 32 | + // locations so we just report the first one. If we report all locations |
| 33 | + // then the IDE starts showing the wrong line numbers and locations for |
| 34 | + // other source file and line breakpoints in the same file. |
| 35 | + |
| 36 | + // Below we search for the first resolved location in a breakpoint and report |
| 37 | + // this as the breakpoint location since it will have a complete location |
| 38 | + // that is at least loaded in the current process. |
| 39 | + lldb::SBBreakpointLocation bp_loc; |
| 40 | + const auto num_locs = bp.GetNumLocations(); |
| 41 | + for (size_t i = 0; i < num_locs; ++i) { |
| 42 | + bp_loc = bp.GetLocationAtIndex(i); |
| 43 | + if (bp_loc.IsResolved()) |
| 44 | + break; |
| 45 | + } |
| 46 | + // If not locations are resolved, use the first location. |
| 47 | + if (!bp_loc.IsResolved()) |
| 48 | + bp_loc = bp.GetLocationAtIndex(0); |
| 49 | + auto bp_addr = bp_loc.GetAddress(); |
| 50 | + |
| 51 | + if (bp_addr.IsValid()) { |
| 52 | + std::string formatted_addr = |
| 53 | + "0x" + llvm::utohexstr(bp_addr.GetLoadAddress(g_dap.target)); |
| 54 | + object.try_emplace("instructionReference", formatted_addr); |
| 55 | + auto line_entry = bp_addr.GetLineEntry(); |
| 56 | + const auto line = line_entry.GetLine(); |
| 57 | + if (line != UINT32_MAX) |
| 58 | + object.try_emplace("line", line); |
| 59 | + const auto column = line_entry.GetColumn(); |
| 60 | + if (column != 0) |
| 61 | + object.try_emplace("column", column); |
| 62 | + object.try_emplace("source", CreateSource(line_entry)); |
| 63 | + } |
| 64 | +} |
| 65 | + |
| 66 | +bool Breakpoint::MatchesName(const char *name) { return bp.MatchesName(name); } |
| 67 | + |
| 68 | +void Breakpoint::SetBreakpoint() { |
| 69 | + // See comments in BreakpointBase::GetBreakpointLabel() for details of why |
| 70 | + // we add a label to our breakpoints. |
| 71 | + bp.AddName(GetBreakpointLabel()); |
| 72 | + if (!condition.empty()) |
| 73 | + SetCondition(); |
| 74 | + if (!hitCondition.empty()) |
| 75 | + SetHitCondition(); |
| 76 | +} |
0 commit comments