[Lldb-commits] [lldb] [lldb] Add support for large watchpoints in lldb (PR #79962)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 30 12:23:16 PST 2024


================
@@ -0,0 +1,38 @@
+//===-- WatchpointAlgorithms.h ------------------------------------*- 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLDB_BREAKPOINT_WATCHPOINTALGORITHMS_H
+#define LLDB_BREAKPOINT_WATCHPOINTALGORITHMS_H
+
+#include "lldb/Breakpoint/WatchpointResource.h"
+#include "lldb/Utility/ArchSpec.h"
+#include "lldb/lldb-public.h"
+
+#include <vector>
+
+namespace lldb_private {
+
+class WatchpointAlgorithms {
+
+public:
+  static std::vector<lldb::WatchpointResourceSP> AtomizeWatchpointRequest(
----------------
bulbazord wrote:

Can you add some documentation for these static functions? In the form of doxygen comments preferrably

https://github.com/llvm/llvm-project/pull/79962


More information about the lldb-commits mailing list