================ @@ -0,0 +1,146 @@ +//===-- WatchpointAlgorithms.cpp ------------------------------------------===// +// +// 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 "lldb/Breakpoint/WatchpointAlgorithms.h" +#include "lldb/Breakpoint/WatchpointResource.h" +#include "lldb/Target/Process.h" +#include "lldb/Utility/ArchSpec.h" + +#include <utility> +#include <vector> + +using namespace lldb; +using namespace lldb_private; + +std::vector<WatchpointResourceSP> +WatchpointAlgorithms::AtomizeWatchpointRequest( + addr_t addr, size_t size, bool read, bool write, + WatchpointHardwareFeature supported_features, ArchSpec &arch) { + + std::vector<std::pair<addr_t, size_t>> entries; + + if (supported_features & + WatchpointHardwareFeature::eWatchpointHardwareArmMASK) { + entries = + PowerOf2Watchpoints(addr, size, + /* min_byte_size */ 1, + /* max_byte_size */ INT32_MAX, + /* address_byte_size */ arch.GetAddressByteSize()); ---------------- jasonmolenda wrote:
yuck! :) quick test grep shows 98 for the beautiful spaceful version, 136 for the cruelly spaceless. https://github.com/llvm/llvm-project/pull/79962 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits