1 //===-- PlatformRemoteiOS.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_PLATFORM_MACOSX_PLATFORMREMOTEIOS_H
10 #define LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEIOS_H
12 #include "PlatformRemoteDarwinDevice.h"
13 #include "lldb/lldb-forward.h"
14 #include "llvm/ADT/StringRef.h"
18 namespace lldb_private
{
21 class PlatformRemoteiOS
: public PlatformRemoteDarwinDevice
{
25 static lldb::PlatformSP
CreateInstance(bool force
, const ArchSpec
*arch
);
27 static void Initialize();
29 static void Terminate();
31 static llvm::StringRef
GetPluginNameStatic() { return "remote-ios"; }
33 static llvm::StringRef
GetDescriptionStatic();
35 llvm::StringRef
GetDescription() override
{ return GetDescriptionStatic(); }
37 llvm::StringRef
GetPluginName() override
{ return GetPluginNameStatic(); }
40 GetSupportedArchitectures(const ArchSpec
&process_host_arch
) override
;
43 bool CheckLocalSharedCache() const override
;
45 llvm::StringRef
GetDeviceSupportDirectoryName() override
;
46 llvm::StringRef
GetPlatformName() override
;
49 } // namespace lldb_private
51 #endif // LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEIOS_H