//===-- MemoryTagMap.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_TARGET_MEMORYTAGMAP_H #define LLDB_TARGET_MEMORYTAGMAP_H #include "lldb/Target/MemoryTagManager.h" #include "lldb/lldb-private.h" #include <map> #include <optional> namespace lldb_private { /// MemoryTagMap provides a way to give a sparse read result /// when reading memory tags for a range. This is useful when /// you want to annotate some large memory dump that might include /// tagged memory but you don't know that it is all tagged. class MemoryTagMap { … }; } // namespace lldb_private #endif // LLDB_TARGET_MEMORYTAGMAP_H