LLDB mainline
PlatformRemoteiOS.h
Go to the documentation of this file.
1//===-- PlatformRemoteiOS.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//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEIOS_H
10#define LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEIOS_H
11
13#include "lldb/lldb-forward.h"
14#include "llvm/ADT/StringRef.h"
15
16#include <vector>
17
18namespace lldb_private {
19class ArchSpec;
20
22public:
24
25 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
26
27 static void Initialize();
28
29 static void Terminate();
30
31 static llvm::StringRef GetPluginNameStatic() { return "remote-ios"; }
32
33 static llvm::StringRef GetDescriptionStatic();
34
35 llvm::StringRef GetDescription() override { return GetDescriptionStatic(); }
36
37 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
38
39 std::vector<ArchSpec>
40 GetSupportedArchitectures(const ArchSpec &process_host_arch) override;
41
42protected:
43 bool CheckLocalSharedCache() const override;
44
45 llvm::StringRef GetDeviceSupportDirectoryName() override;
46 llvm::StringRef GetPlatformName() override;
47};
48
49} // namespace lldb_private
50
51#endif // LLDB_SOURCE_PLUGINS_PLATFORM_MACOSX_PLATFORMREMOTEIOS_H
An architecture specification class.
Definition: ArchSpec.h:31
std::vector< ArchSpec > GetSupportedArchitectures(const ArchSpec &process_host_arch) override
Get the platform's supported architectures in the order in which they should be searched.
PlatformRemoteiOS()
Default Constructor.
llvm::StringRef GetPlatformName() override
static llvm::StringRef GetPluginNameStatic()
bool CheckLocalSharedCache() const override
static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch)
llvm::StringRef GetDeviceSupportDirectoryName() override
static llvm::StringRef GetDescriptionStatic()
llvm::StringRef GetDescription() override
llvm::StringRef GetPluginName() override
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::Platform > PlatformSP
Definition: lldb-forward.h:380