2021-04-05 18:59:50 +02:00
|
|
|
//===- llvm/TextAPI/Platform.cpp - Platform ---------------------*- C++ -*-===//
|
2019-09-20 16:32:34 +02:00
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Implementations of Platform Helper functions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2021-04-05 18:59:50 +02:00
|
|
|
#include "llvm/TextAPI/Platform.h"
|
2019-09-20 16:32:34 +02:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2021-05-07 01:18:55 +02:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2019-09-20 16:32:34 +02:00
|
|
|
#include "llvm/ADT/Triple.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace MachO {
|
|
|
|
|
2019-09-23 17:28:02 +02:00
|
|
|
PlatformKind mapToPlatformKind(PlatformKind Platform, bool WantSim) {
|
|
|
|
switch (Platform) {
|
|
|
|
default:
|
|
|
|
return Platform;
|
|
|
|
case PlatformKind::iOS:
|
|
|
|
return WantSim ? PlatformKind::iOSSimulator : PlatformKind::iOS;
|
|
|
|
case PlatformKind::tvOS:
|
|
|
|
return WantSim ? PlatformKind::tvOSSimulator : PlatformKind::tvOS;
|
|
|
|
case PlatformKind::watchOS:
|
|
|
|
return WantSim ? PlatformKind::watchOSSimulator : PlatformKind::watchOS;
|
|
|
|
}
|
2021-05-11 18:57:52 +02:00
|
|
|
llvm_unreachable("Unknown llvm::MachO::PlatformKind enum");
|
2019-09-23 17:28:02 +02:00
|
|
|
}
|
|
|
|
|
2019-09-20 16:32:34 +02:00
|
|
|
PlatformKind mapToPlatformKind(const Triple &Target) {
|
|
|
|
switch (Target.getOS()) {
|
|
|
|
default:
|
|
|
|
return PlatformKind::unknown;
|
|
|
|
case Triple::MacOSX:
|
|
|
|
return PlatformKind::macOS;
|
|
|
|
case Triple::IOS:
|
2019-09-23 17:28:02 +02:00
|
|
|
if (Target.isSimulatorEnvironment())
|
|
|
|
return PlatformKind::iOSSimulator;
|
|
|
|
if (Target.getEnvironment() == Triple::MacABI)
|
|
|
|
return PlatformKind::macCatalyst;
|
2019-09-20 16:32:34 +02:00
|
|
|
return PlatformKind::iOS;
|
|
|
|
case Triple::TvOS:
|
2019-09-23 17:28:02 +02:00
|
|
|
return Target.isSimulatorEnvironment() ? PlatformKind::tvOSSimulator
|
|
|
|
: PlatformKind::tvOS;
|
2019-09-20 16:32:34 +02:00
|
|
|
case Triple::WatchOS:
|
2019-09-23 17:28:02 +02:00
|
|
|
return Target.isSimulatorEnvironment() ? PlatformKind::watchOSSimulator
|
|
|
|
: PlatformKind::watchOS;
|
2020-08-14 21:34:20 +02:00
|
|
|
// TODO: add bridgeOS & driverKit once in llvm::Triple
|
2019-09-20 16:32:34 +02:00
|
|
|
}
|
2019-09-23 17:28:02 +02:00
|
|
|
llvm_unreachable("Unknown Target Triple");
|
2019-09-20 16:32:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PlatformSet mapToPlatformSet(ArrayRef<Triple> Targets) {
|
|
|
|
PlatformSet Result;
|
|
|
|
for (const auto &Target : Targets)
|
|
|
|
Result.insert(mapToPlatformKind(Target));
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef getPlatformName(PlatformKind Platform) {
|
|
|
|
switch (Platform) {
|
|
|
|
case PlatformKind::unknown:
|
|
|
|
return "unknown";
|
|
|
|
case PlatformKind::macOS:
|
|
|
|
return "macOS";
|
|
|
|
case PlatformKind::iOS:
|
|
|
|
return "iOS";
|
|
|
|
case PlatformKind::tvOS:
|
|
|
|
return "tvOS";
|
|
|
|
case PlatformKind::watchOS:
|
|
|
|
return "watchOS";
|
|
|
|
case PlatformKind::bridgeOS:
|
|
|
|
return "bridgeOS";
|
2019-09-23 17:28:02 +02:00
|
|
|
case PlatformKind::macCatalyst:
|
|
|
|
return "macCatalyst";
|
|
|
|
case PlatformKind::iOSSimulator:
|
|
|
|
return "iOS Simulator";
|
|
|
|
case PlatformKind::tvOSSimulator:
|
|
|
|
return "tvOS Simulator";
|
|
|
|
case PlatformKind::watchOSSimulator:
|
|
|
|
return "watchOS Simulator";
|
2020-08-14 21:34:20 +02:00
|
|
|
case PlatformKind::driverKit:
|
2020-08-15 15:37:06 +02:00
|
|
|
return "DriverKit";
|
2019-09-20 16:32:34 +02:00
|
|
|
}
|
2021-05-11 18:57:52 +02:00
|
|
|
llvm_unreachable("Unknown llvm::MachO::PlatformKind enum");
|
2019-09-20 16:32:34 +02:00
|
|
|
}
|
|
|
|
|
2021-05-07 01:18:55 +02:00
|
|
|
PlatformKind getPlatformFromName(StringRef Name) {
|
|
|
|
return StringSwitch<PlatformKind>(Name)
|
|
|
|
.Case("macos", PlatformKind::macOS)
|
|
|
|
.Case("ios", PlatformKind::iOS)
|
|
|
|
.Case("tvos", PlatformKind::tvOS)
|
|
|
|
.Case("watchos", PlatformKind::watchOS)
|
|
|
|
.Case("bridgeos", PlatformKind::macOS)
|
|
|
|
.Case("ios-macabi", PlatformKind::macCatalyst)
|
|
|
|
.Case("ios-simulator", PlatformKind::iOSSimulator)
|
|
|
|
.Case("tvos-simulator", PlatformKind::tvOSSimulator)
|
|
|
|
.Case("watchos-simulator", PlatformKind::watchOSSimulator)
|
|
|
|
.Case("driverkit", PlatformKind::driverKit)
|
|
|
|
.Default(PlatformKind::unknown);
|
|
|
|
}
|
|
|
|
|
2021-06-10 06:13:31 +02:00
|
|
|
std::string getOSAndEnvironmentName(PlatformKind Platform,
|
|
|
|
std::string Version) {
|
|
|
|
switch (Platform) {
|
|
|
|
case PlatformKind::unknown:
|
|
|
|
return "darwin" + Version;
|
|
|
|
case PlatformKind::macOS:
|
|
|
|
return "macos" + Version;
|
|
|
|
case PlatformKind::iOS:
|
|
|
|
return "ios" + Version;
|
|
|
|
case PlatformKind::tvOS:
|
|
|
|
return "tvos" + Version;
|
|
|
|
case PlatformKind::watchOS:
|
|
|
|
return "watchos" + Version;
|
|
|
|
case PlatformKind::bridgeOS:
|
|
|
|
return "bridgeos" + Version;
|
|
|
|
case PlatformKind::macCatalyst:
|
|
|
|
return "ios" + Version + "-macabi";
|
|
|
|
case PlatformKind::iOSSimulator:
|
|
|
|
return "ios" + Version + "-simulator";
|
|
|
|
case PlatformKind::tvOSSimulator:
|
|
|
|
return "tvos" + Version + "-simulator";
|
|
|
|
case PlatformKind::watchOSSimulator:
|
|
|
|
return "watchos" + Version + "-simulator";
|
|
|
|
case PlatformKind::driverKit:
|
|
|
|
return "driverkit" + Version;
|
|
|
|
}
|
|
|
|
llvm_unreachable("Unknown llvm::MachO::PlatformKind enum");
|
|
|
|
}
|
|
|
|
|
2019-09-20 16:32:34 +02:00
|
|
|
} // end namespace MachO.
|
2019-09-20 20:10:17 +02:00
|
|
|
} // end namespace llvm.
|