1 //===-- ArchitectureAArch64.h -----------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_ARCHITECTURE_AARCH64_ARCHITECTUREAARCH64_H
10 #define LLDB_SOURCE_PLUGINS_ARCHITECTURE_AARCH64_ARCHITECTUREAARCH64_H
12 #include "Plugins/Process/Utility/MemoryTagManagerAArch64MTE.h"
13 #include "lldb/Core/Architecture.h"
15 namespace lldb_private
{
17 class ArchitectureAArch64
: public Architecture
{
19 static llvm::StringRef
GetPluginNameStatic() { return "aarch64"; }
20 static void Initialize();
21 static void Terminate();
23 llvm::StringRef
GetPluginName() override
{ return GetPluginNameStatic(); }
25 void OverrideStopInfo(Thread
&thread
) const override
{}
27 const MemoryTagManager
*GetMemoryTagManager() const override
{
28 return &m_memory_tag_manager
;
32 static std::unique_ptr
<Architecture
> Create(const ArchSpec
&arch
);
33 ArchitectureAArch64() = default;
34 MemoryTagManagerAArch64MTE m_memory_tag_manager
;
37 } // namespace lldb_private
39 #endif // LLDB_SOURCE_PLUGINS_ARCHITECTURE_AARCH64_ARCHITECTUREAARCH64_H