[NFC][AArch64] Explicitly define undefined bits for instructions (#122129)
[llvm-project.git] / lldb / source / Plugins / Platform / MacOSX / PlatformRemoteAppleXR.h
blob2fbb6caad8110f2a4652f498eebe2b815e95854c
1 //===-- PlatformRemoteAppleXR.h ---------------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
10 #define LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H
12 #include "PlatformRemoteDarwinDevice.h"
14 namespace lldb_private {
15 class PlatformRemoteAppleXR : public PlatformRemoteDarwinDevice {
16 public:
17 PlatformRemoteAppleXR();
19 static lldb::PlatformSP CreateInstance(bool force,
20 const lldb_private::ArchSpec *arch);
22 static void Initialize();
24 static void Terminate();
26 static llvm::StringRef GetPluginNameStatic();
28 static llvm::StringRef GetDescriptionStatic();
30 llvm::StringRef GetDescription() override { return GetDescriptionStatic(); }
32 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
34 std::vector<lldb_private::ArchSpec> GetSupportedArchitectures(
35 const lldb_private::ArchSpec &process_host_arch) override;
37 protected:
38 llvm::StringRef GetDeviceSupportDirectoryName() override;
39 llvm::StringRef GetPlatformName() override;
41 } // namespace lldb_private
43 #endif // LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEAPPLEXR_H