1 //===-- PlatformRemoteiOS.cpp ---------------------------------------------===//
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 #include "PlatformRemoteiOS.h"
11 #include "lldb/Breakpoint/BreakpointLocation.h"
12 #include "lldb/Core/Module.h"
13 #include "lldb/Core/ModuleList.h"
14 #include "lldb/Core/ModuleSpec.h"
15 #include "lldb/Core/PluginManager.h"
16 #include "lldb/Host/Host.h"
17 #include "lldb/Target/Process.h"
18 #include "lldb/Target/Target.h"
19 #include "lldb/Utility/ArchSpec.h"
20 #include "lldb/Utility/FileSpec.h"
21 #include "lldb/Utility/LLDBLog.h"
22 #include "lldb/Utility/Log.h"
23 #include "lldb/Utility/Status.h"
24 #include "lldb/Utility/StreamString.h"
27 using namespace lldb_private
;
29 LLDB_PLUGIN_DEFINE(PlatformRemoteiOS
)
32 static uint32_t g_initialize_count
= 0;
35 void PlatformRemoteiOS::Initialize() {
36 PlatformDarwin::Initialize();
38 if (g_initialize_count
++ == 0) {
39 PluginManager::RegisterPlugin(PlatformRemoteiOS::GetPluginNameStatic(),
40 PlatformRemoteiOS::GetDescriptionStatic(),
41 PlatformRemoteiOS::CreateInstance
);
45 void PlatformRemoteiOS::Terminate() {
46 if (g_initialize_count
> 0) {
47 if (--g_initialize_count
== 0) {
48 PluginManager::UnregisterPlugin(PlatformRemoteiOS::CreateInstance
);
52 PlatformDarwin::Terminate();
55 PlatformSP
PlatformRemoteiOS::CreateInstance(bool force
, const ArchSpec
*arch
) {
56 Log
*log
= GetLog(LLDBLog::Platform
);
58 const char *arch_name
;
59 if (arch
&& arch
->GetArchitectureName())
60 arch_name
= arch
->GetArchitectureName();
64 const char *triple_cstr
=
65 arch
? arch
->GetTriple().getTriple().c_str() : "<null>";
67 LLDB_LOGF(log
, "PlatformRemoteiOS::%s(force=%s, arch={%s,%s})",
68 __FUNCTION__
, force
? "true" : "false", arch_name
, triple_cstr
);
72 if (!create
&& arch
&& arch
->IsValid()) {
73 switch (arch
->GetMachine()) {
74 case llvm::Triple::arm
:
75 case llvm::Triple::aarch64
:
76 case llvm::Triple::thumb
: {
77 const llvm::Triple
&triple
= arch
->GetTriple();
78 llvm::Triple::VendorType vendor
= triple
.getVendor();
80 case llvm::Triple::Apple
:
84 #if defined(__APPLE__)
85 // Only accept "unknown" for the vendor if the host is Apple and
86 // "unknown" wasn't specified (it was just returned because it was NOT
88 case llvm::Triple::UnknownVendor
:
89 create
= !arch
->TripleVendorWasSpecified();
97 switch (triple
.getOS()) {
98 case llvm::Triple::Darwin
: // Deprecated, but still support Darwin for
100 case llvm::Triple::IOS
: // This is the right triple value for iOS
117 LLDB_LOGF(log
, "PlatformRemoteiOS::%s() creating platform", __FUNCTION__
);
119 return lldb::PlatformSP(new PlatformRemoteiOS());
123 LLDB_LOGF(log
, "PlatformRemoteiOS::%s() aborting creation of platform",
126 return lldb::PlatformSP();
129 llvm::StringRef
PlatformRemoteiOS::GetDescriptionStatic() {
130 return "Remote iOS platform plug-in.";
133 /// Default Constructor
134 PlatformRemoteiOS::PlatformRemoteiOS()
135 : PlatformRemoteDarwinDevice() {}
137 std::vector
<ArchSpec
> PlatformRemoteiOS::GetSupportedArchitectures(
138 const ArchSpec
&process_host_arch
) {
139 std::vector
<ArchSpec
> result
;
140 ARMGetSupportedArchitectures(result
, llvm::Triple::IOS
);
144 bool PlatformRemoteiOS::CheckLocalSharedCache() const {
145 // You can run iPhone and iPad apps on Mac with Apple Silicon. At the
146 // platform level there's no way to distinguish them from remote iOS
147 // applications. Make sure we still read from our own shared cache.
151 llvm::StringRef
PlatformRemoteiOS::GetDeviceSupportDirectoryName() {
152 return "iOS DeviceSupport";
155 llvm::StringRef
PlatformRemoteiOS::GetPlatformName() {
156 return "iPhoneOS.platform";