Files
swift-mirror/stdlib/public/runtime/BackDeployment.cpp
Mike Ash fbe990481b [Runtime] Dynamically select the is-Swift bit at runtime on Apple platforms.
Recent Swift uses 2 as the is-Swift bit when running on newer versions, and 1 on older versions. Since it's difficult or impossible to know what we'll be running on at build time, make the selection at runtime.
2019-03-07 10:12:27 -05:00

65 lines
2.0 KiB
C++

//===--- BackDeployment.cpp - Support for running on older OS versions. ---===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "swift/Runtime/BackDeployment.h"
#include "swift/Runtime/Config.h"
#include "../SwiftShims/FoundationShims.h"
#include <stdlib.h>
#if defined(__APPLE__) && defined(__MACH__)
#if SWIFT_CLASS_IS_SWIFT_MASK_GLOBAL_VARIABLE
static unsigned long long computeIsSwiftMask() {
if (swift::_swift_isBackDeploying())
return 1ULL;
return 2ULL;
}
SWIFT_ALLOWED_RUNTIME_GLOBAL_CTOR_BEGIN
extern "C" unsigned long long
_swift_classIsSwiftMask = computeIsSwiftMask();
SWIFT_ALLOWED_RUNTIME_GLOBAL_CTOR_END
#endif // SWIFT_CLASS_IS_SWIFT_MASK_GLOBAL_VARIABLE
static swift::_SwiftNSOperatingSystemVersion swiftInOSVersion = {
#if __MAC_OS_X_VERSION_MIN_REQUIRED
10, 14, 4
// WatchOS also pretends to be iOS, so check it first.
#elif __WATCH_OS_VERSION_MIN_REQUIRED
5, 2, 0
#elif __IPHONE_OS_VERSION_MIN_REQUIRED || __TV_OS_VERSION_MIN_REQUIRED
12, 2, 0
#else
9999, 0, 0
#endif
};
static bool versionLessThan(swift::_SwiftNSOperatingSystemVersion lhs,
swift::_SwiftNSOperatingSystemVersion rhs) {
if (lhs.majorVersion < rhs.majorVersion) return true;
if (lhs.majorVersion > rhs.majorVersion) return false;
if (lhs.minorVersion < rhs.minorVersion) return true;
if (lhs.minorVersion > rhs.minorVersion) return false;
if (lhs.patchVersion < rhs.patchVersion) return true;
return false;
}
SWIFT_RUNTIME_STDLIB_INTERNAL
int _swift_isBackDeploying() {
auto version = swift::_swift_stdlib_operatingSystemVersion();
return versionLessThan(version, swiftInOSVersion);
}
#endif