mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
and implement it for @isolated(any) function types. The existing testing was pretty broken: we were diagnosing all sorts of things that don't require type metadata (like using a tuple with an extended existential in a value position in an API signature) and not diagnosing several things that do (like covariant function conversions that erase types). There's therefore some risk to this patch, but I'm not too worried because needing metadata like this is pretty uncommon, and it's likely that programs won't build correctly anyway --- it'll just get caught by the linker instead of the compiler.
80 lines
3.2 KiB
C++
80 lines
3.2 KiB
C++
//===--- FeatureAvailability.def - Availability Metaprogramming -*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines macros used for macro-metaprogramming with feature
|
|
// availability.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// FEATURE(N, V)
|
|
/// N - The name of the feature (in UpperCamelCase).
|
|
/// V - The Swift version number, as a tuple, or FUTURE.
|
|
///
|
|
/// The feature Foo turns into two methods on ASTContext:
|
|
/// getFooRuntimeAvailability(), which returns the exact version provided
|
|
/// here, and getFooAvailability(), which maps that version into a version
|
|
/// of the target OS. Because both of these methods exist, it is a bad idea
|
|
/// to use a feature name that ends in "Runtime", or people might get very
|
|
/// confused.
|
|
#ifndef FEATURE
|
|
#define FEATURE(N, V)
|
|
#endif
|
|
|
|
/// FUTURE
|
|
///
|
|
/// The version to use for future support.
|
|
#ifndef FUTURE
|
|
#define FUTURE (99, 99)
|
|
#endif
|
|
|
|
FEATURE(ObjCMetadataUpdateCallback, (5, 0))
|
|
FEATURE(ObjCGetClassHook, (5, 0))
|
|
|
|
FEATURE(OpaqueType, (5, 1))
|
|
FEATURE(ObjCClassStubs, (5, 1))
|
|
FEATURE(BackDeployedConcurrency, (5, 1))
|
|
|
|
FEATURE(TypesInAbstractMetadataState, (5, 2))
|
|
|
|
FEATURE(PrespecializedGenericMetadata, (5, 4))
|
|
FEATURE(CompareTypeContextDescriptors, (5, 4))
|
|
FEATURE(CompareProtocolConformanceDescriptors, (5, 4))
|
|
FEATURE(IntermodulePrespecializedGenericMetadata, (5, 4))
|
|
|
|
FEATURE(Concurrency, (5, 5))
|
|
|
|
FEATURE(MultiPayloadEnumTagSinglePayload, (5, 6))
|
|
FEATURE(ObjCIsUniquelyReferenced, (5, 6))
|
|
|
|
// Metadata and casting support for parameterized existential types
|
|
FEATURE(ParameterizedExistential, (5, 7))
|
|
|
|
FEATURE(VariadicGenericType, (5, 9))
|
|
FEATURE(SignedConformsToProtocol, (5, 9))
|
|
FEATURE(ConcurrencyDiscardingTaskGroup, (5, 9))
|
|
FEATURE(ConcurrencyDistributedActorWithCustomExecutor, (5, 9))
|
|
FEATURE(SignedDescriptor, (5, 9))
|
|
|
|
FEATURE(ObjCSymbolicReferences, (5, 11))
|
|
FEATURE(TypedThrows, (5, 11))
|
|
FEATURE(StaticReadOnlyArrays, (5, 11))
|
|
FEATURE(SwiftExceptionPersonality, (5, 11))
|
|
// Metadata support for @isolated(any) function types
|
|
FEATURE(IsolatedAny, (5, 11))
|
|
|
|
FEATURE(TaskExecutor, FUTURE)
|
|
FEATURE(Differentiation, FUTURE)
|
|
FEATURE(InitRawStructMetadata, FUTURE)
|
|
|
|
#undef FEATURE
|
|
#undef FUTURE
|