#ifndef LLDB_SOURCE_PLUGINS_MEMORYHISTORY_ASAN_MEMORYHISTORYASAN_H
#define LLDB_SOURCE_PLUGINS_MEMORYHISTORY_ASAN_MEMORYHISTORYASAN_H
#include "lldb/Target/ABI.h"
#include "lldb/Target/MemoryHistory.h"
#include "lldb/Target/Process.h"
#include "lldb/lldb-private.h"
namespace lldb_private {
class MemoryHistoryASan : public lldb_private::MemoryHistory {
public:
~MemoryHistoryASan() override = default;
static lldb::MemoryHistorySP
CreateInstance(const lldb::ProcessSP &process_sp);
static void Initialize();
static void Terminate();
static llvm::StringRef GetPluginNameStatic() { return "asan"; }
llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
lldb_private::HistoryThreads GetHistoryThreads(lldb::addr_t address) override;
private:
MemoryHistoryASan(const lldb::ProcessSP &process_sp);
lldb::ProcessWP m_process_wp;
};
}
#endif