2024-02-22 16:11:40 -05:00
|
|
|
//===-- Watchpoint.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 "Watchpoint.h"
|
|
|
|
#include "DAP.h"
|
|
|
|
#include "JSONUtils.h"
|
2024-11-08 13:36:25 -08:00
|
|
|
#include "lldb/API/SBTarget.h"
|
|
|
|
#include "lldb/lldb-enumerations.h"
|
2024-02-22 16:11:40 -05:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2024-11-08 13:36:25 -08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/Support/JSON.h"
|
|
|
|
#include <cstdint>
|
|
|
|
#include <string>
|
2024-02-22 16:11:40 -05:00
|
|
|
|
|
|
|
namespace lldb_dap {
|
2024-11-08 13:36:25 -08:00
|
|
|
Watchpoint::Watchpoint(DAP &d, const llvm::json::Object &obj)
|
|
|
|
: BreakpointBase(d, obj) {
|
2024-02-22 16:11:40 -05:00
|
|
|
llvm::StringRef dataId = GetString(obj, "dataId");
|
|
|
|
std::string accessType = GetString(obj, "accessType").str();
|
|
|
|
auto [addr_str, size_str] = dataId.split('/');
|
|
|
|
llvm::to_integer(addr_str, addr, 16);
|
|
|
|
llvm::to_integer(size_str, size);
|
|
|
|
options.SetWatchpointTypeRead(accessType != "write");
|
|
|
|
if (accessType != "read")
|
|
|
|
options.SetWatchpointTypeWrite(lldb::eWatchpointWriteTypeOnModify);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Watchpoint::SetCondition() { wp.SetCondition(condition.c_str()); }
|
|
|
|
|
|
|
|
void Watchpoint::SetHitCondition() {
|
|
|
|
uint64_t hitCount = 0;
|
|
|
|
if (llvm::to_integer(hitCondition, hitCount))
|
|
|
|
wp.SetIgnoreCount(hitCount - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Watchpoint::CreateJsonObject(llvm::json::Object &object) {
|
2024-02-28 14:56:55 -05:00
|
|
|
if (!error.IsValid() || error.Fail()) {
|
2024-02-22 16:11:40 -05:00
|
|
|
object.try_emplace("verified", false);
|
2024-02-28 14:56:55 -05:00
|
|
|
if (error.Fail())
|
|
|
|
EmplaceSafeString(object, "message", error.GetCString());
|
|
|
|
} else {
|
|
|
|
object.try_emplace("verified", true);
|
2024-02-22 16:11:40 -05:00
|
|
|
}
|
|
|
|
}
|
2024-02-28 14:56:55 -05:00
|
|
|
|
|
|
|
void Watchpoint::SetWatchpoint() {
|
2024-11-08 13:36:25 -08:00
|
|
|
wp = dap.target.WatchpointCreateByAddress(addr, size, options, error);
|
2024-02-28 14:56:55 -05:00
|
|
|
if (!condition.empty())
|
|
|
|
SetCondition();
|
|
|
|
if (!hitCondition.empty())
|
|
|
|
SetHitCondition();
|
|
|
|
}
|
2024-02-22 16:11:40 -05:00
|
|
|
} // namespace lldb_dap
|