mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
507c196d4d
Give it a longer, more annoying name, because you're not supposed to use it anymore. It's fundamentally broken. I've added FIXME comments in the places where the result is known to be wrong.
1013 lines
37 KiB
C++
1013 lines
37 KiB
C++
//===--- ConformanceLookup.cpp - Global Conformance Lookup ----------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2024 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 implements global conformance lookup.
|
|
//
|
|
// - swift::lookupConformance(type, proto) takes a nominal type or an
|
|
// archetype and returns the appropriate normal, specialized or abstract
|
|
// conformance. It does not check conditional requirements.
|
|
//
|
|
// - swift::checkConformance(type, proto) is like the above, but checks
|
|
// conditional requirements. The type must not contain type parameters;
|
|
// they must either be substituted with concrete types by applying a
|
|
// substitution map, or mapped to archetypes in a generic environment first.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/AST/ConformanceLookup.h"
|
|
#include "swift/AST/ASTContext.h"
|
|
#include "swift/AST/Builtins.h"
|
|
#include "swift/AST/DistributedDecl.h"
|
|
#include "swift/AST/DiagnosticsSema.h"
|
|
#include "swift/AST/ExistentialLayout.h"
|
|
#include "swift/AST/GenericEnvironment.h"
|
|
#include "swift/AST/KnownProtocols.h"
|
|
#include "swift/AST/Module.h"
|
|
#include "swift/AST/NameLookup.h"
|
|
#include "swift/AST/NameLookupRequests.h"
|
|
#include "swift/AST/PackConformance.h"
|
|
#include "swift/AST/PrettyStackTrace.h"
|
|
#include "swift/AST/ProtocolConformance.h"
|
|
#include "swift/AST/TypeCheckRequests.h"
|
|
#include "swift/AST/Types.h"
|
|
#include "swift/Basic/Assertions.h"
|
|
#include "swift/Basic/Compiler.h"
|
|
#include "swift/Basic/SourceManager.h"
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/DenseSet.h"
|
|
#include "llvm/ADT/STLExtras.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace swift;
|
|
|
|
ArrayRef<ProtocolConformanceRef>
|
|
swift::collectExistentialConformances(CanType fromType,
|
|
CanType existential,
|
|
bool allowMissing) {
|
|
assert(existential.isAnyExistentialType());
|
|
|
|
auto layout = existential.getExistentialLayout();
|
|
auto protocols = layout.getProtocols();
|
|
|
|
SmallVector<ProtocolConformanceRef, 4> conformances;
|
|
for (auto *proto : protocols) {
|
|
auto conformance = lookupConformance(fromType, proto, allowMissing);
|
|
assert(conformance);
|
|
conformances.push_back(conformance);
|
|
}
|
|
|
|
return fromType->getASTContext().AllocateCopy(conformances);
|
|
}
|
|
|
|
static bool containsNonMarkerProtocols(ArrayRef<ProtocolDecl *> protocols) {
|
|
for (auto proto : protocols) {
|
|
if (!proto->isMarkerProtocol())
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
ProtocolConformanceRef
|
|
swift::lookupExistentialConformance(Type type, ProtocolDecl *protocol) {
|
|
ASTContext &ctx = protocol->getASTContext();
|
|
|
|
assert(type->isExistentialType());
|
|
|
|
auto getConstraintType = [&type]() {
|
|
if (auto *existentialTy = type->getAs<ExistentialType>())
|
|
return existentialTy->getConstraintType();
|
|
return type;
|
|
};
|
|
|
|
auto lookupSuperclassConformance = [&](Type superclass) {
|
|
if (superclass) {
|
|
if (auto result =
|
|
lookupConformance(superclass, protocol, /*allowMissing=*/false)) {
|
|
if (protocol->isSpecificProtocol(KnownProtocolKind::Sendable) &&
|
|
result.hasUnavailableConformance())
|
|
return ProtocolConformanceRef::forInvalid();
|
|
return result;
|
|
}
|
|
}
|
|
return ProtocolConformanceRef::forInvalid();
|
|
};
|
|
|
|
// If the existential type cannot be represented or the protocol does not
|
|
// conform to itself, there's no point in looking further.
|
|
if (!protocol->existentialConformsToSelf()) {
|
|
// If type is a protocol composition with marker protocols
|
|
// check whether superclass conforms, and if it does form
|
|
// an inherited conformance. This means that types like:
|
|
// `KeyPath<String, Int> & Sendable` don't have to be "opened"
|
|
// to satisfy conformance to i.e. `Equatable`.
|
|
if (getConstraintType()->is<ProtocolCompositionType>()) {
|
|
auto layout = type->getExistentialLayout();
|
|
if (llvm::all_of(layout.getProtocols(),
|
|
[](const auto *P) { return P->isMarkerProtocol(); })) {
|
|
// Since we know we have a marker protocol or something similar at
|
|
// point, this usage of getExplicitSuperclassOrProtocolSuperclass()
|
|
// is _probably_ OK. However, we should still clean it up. See the
|
|
// comment on that getter method.
|
|
if (auto conformance = lookupSuperclassConformance(
|
|
layout.getExplicitSuperclassOrProtocolSuperclass())) {
|
|
return ProtocolConformanceRef(
|
|
ctx.getInheritedConformance(type, conformance.getConcrete()));
|
|
}
|
|
}
|
|
}
|
|
|
|
return ProtocolConformanceRef::forInvalid();
|
|
}
|
|
|
|
auto layout = type->getExistentialLayout();
|
|
|
|
// If the existential contains non-@objc protocols and the protocol we're
|
|
// conforming to needs a witness table, the existential must have a
|
|
// self-conformance witness table. For now, Swift.Error is the only one.
|
|
if (!layout.isObjC() && !protocol->isMarkerProtocol()) {
|
|
auto constraint = getConstraintType();
|
|
// The existential has to be *exactly* that type.
|
|
if (protocol->requiresSelfConformanceWitnessTable() &&
|
|
constraint->is<ProtocolType>() &&
|
|
constraint->castTo<ProtocolType>()->getDecl() == protocol)
|
|
return ProtocolConformanceRef(ctx.getSelfConformance(protocol));
|
|
|
|
return ProtocolConformanceRef::forInvalid();
|
|
}
|
|
|
|
// The existential might conform abstractly.
|
|
for (auto protoDecl : layout.getProtocols()) {
|
|
// If we found the protocol we're looking for, return an abstract
|
|
// conformance to it.
|
|
if (protoDecl == protocol)
|
|
return ProtocolConformanceRef(ctx.getSelfConformance(protocol));
|
|
|
|
// Now check refined protocols.
|
|
if (protoDecl->inheritsFrom(protocol))
|
|
return ProtocolConformanceRef(ctx.getSelfConformance(protocol));
|
|
}
|
|
|
|
// If the existential is class-constrained, the class might conform
|
|
// concretely.
|
|
if (auto conformance = lookupSuperclassConformance(
|
|
layout.getExplicitSuperclassOrProtocolSuperclass()))
|
|
return conformance;
|
|
|
|
// If the protocol is SendableMetatype, and there are no non-marker protocol
|
|
// requirements, allow it via self-conformance.
|
|
if (protocol->isSpecificProtocol(KnownProtocolKind::SendableMetatype) &&
|
|
!layout.containsNonMarkerProtocols())
|
|
return ProtocolConformanceRef(ctx.getSelfConformance(protocol));
|
|
|
|
// We didn't find our protocol in the existential's list; it doesn't
|
|
// conform.
|
|
return ProtocolConformanceRef::forInvalid();
|
|
}
|
|
|
|
/// Whether we should create missing conformances to the given protocol.
|
|
static bool shouldCreateMissingConformances(Type type, ProtocolDecl *proto) {
|
|
// Sendable may be able to be synthesized.
|
|
if (proto->isSpecificProtocol(KnownProtocolKind::Sendable)) {
|
|
return true;
|
|
}
|
|
|
|
// SendableMetatype behaves similarly to Sendable.
|
|
if (proto->isSpecificProtocol(KnownProtocolKind::SendableMetatype))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
ProtocolConformanceRef ProtocolConformanceRef::forMissingOrInvalid(
|
|
Type type, ProtocolDecl *proto) {
|
|
// Introduce "missing" conformances when appropriate, so that type checking
|
|
// (and even code generation) can continue.
|
|
ASTContext &ctx = proto->getASTContext();
|
|
if (shouldCreateMissingConformances(type, proto)) {
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(
|
|
type, proto, BuiltinConformanceKind::Missing));
|
|
}
|
|
|
|
return ProtocolConformanceRef::forInvalid();
|
|
}
|
|
|
|
ProtocolConformanceRef swift::lookupConformance(Type type,
|
|
ProtocolDecl *protocol,
|
|
bool allowMissing) {
|
|
auto &eval = protocol->getASTContext().evaluator;
|
|
|
|
// If we are recursively checking for implicit conformance of a nominal
|
|
// type to a KnownProtocol, fail without evaluating this request. This
|
|
// squashes cycles.
|
|
LookupConformanceRequest request{{type, protocol}};
|
|
if (auto kp = protocol->getKnownProtocolKind()) {
|
|
if (auto nominal = type->getAnyNominal()) {
|
|
ImplicitKnownProtocolConformanceRequest icvRequest{nominal, *kp};
|
|
if (eval.hasActiveRequest(icvRequest) ||
|
|
eval.hasActiveRequest(request)) {
|
|
return ProtocolConformanceRef::forInvalid();
|
|
}
|
|
}
|
|
}
|
|
|
|
auto result = evaluateOrDefault(
|
|
eval, request, ProtocolConformanceRef::forInvalid());
|
|
|
|
// If we aren't supposed to allow missing conformances but we have one,
|
|
// replace the result with an "invalid" result.
|
|
if (!allowMissing &&
|
|
shouldCreateMissingConformances(type, protocol) &&
|
|
result.hasMissingConformance())
|
|
return ProtocolConformanceRef::forInvalid();
|
|
|
|
return result;
|
|
}
|
|
|
|
/// Synthesize a builtin tuple type conformance to the given protocol, if
|
|
/// appropriate.
|
|
static ProtocolConformanceRef getBuiltinTupleTypeConformance(
|
|
Type type, const TupleType *tupleType, ProtocolDecl *protocol) {
|
|
ASTContext &ctx = protocol->getASTContext();
|
|
|
|
auto *tupleDecl = ctx.getBuiltinTupleDecl();
|
|
|
|
// Ignore @lvalue's within the tuple.
|
|
type = type->getRValueType();
|
|
|
|
// Find the (unspecialized) conformance.
|
|
SmallVector<ProtocolConformance *, 2> conformances;
|
|
if (tupleDecl->lookupConformance(protocol, conformances)) {
|
|
// If we have multiple conformances, first try to filter out any that are
|
|
// unavailable on the current deployment target.
|
|
//
|
|
// FIXME: Conformance lookup should really depend on source location for
|
|
// this to be 100% correct.
|
|
if (conformances.size() > 1) {
|
|
SmallVector<ProtocolConformance *, 2> availableConformances;
|
|
|
|
for (auto *conformance : conformances) {
|
|
if (conformance->getDeclContext()->isAlwaysAvailableConformanceContext())
|
|
availableConformances.push_back(conformance);
|
|
}
|
|
|
|
// Don't filter anything out if all conformances are unavailable.
|
|
if (!availableConformances.empty())
|
|
std::swap(availableConformances, conformances);
|
|
}
|
|
|
|
auto *conformance = cast<NormalProtocolConformance>(conformances.front());
|
|
auto subMap = type->getContextSubstitutionMap(conformance->getDeclContext());
|
|
|
|
// TODO: labels
|
|
auto *specialized = ctx.getSpecializedConformance(type, conformance, subMap);
|
|
return ProtocolConformanceRef(specialized);
|
|
}
|
|
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
|
|
// We can end up checking builtin conformances for generic function types
|
|
// when e.g. we're checking whether a captured local func declaration is
|
|
// sendable. That's fine, we can answer that question in the abstract
|
|
// without needing to generally support conformances on generic function
|
|
// types.
|
|
using EitherFunctionType =
|
|
llvm::PointerUnion<const SILFunctionType *, const AnyFunctionType *>;
|
|
|
|
/// Whether the given function type conforms to Sendable.
|
|
static bool isSendableFunctionType(EitherFunctionType eitherFnTy) {
|
|
FunctionTypeRepresentation representation;
|
|
|
|
if (auto silFnTy = eitherFnTy.dyn_cast<const SILFunctionType *>()) {
|
|
if (silFnTy->isSendable())
|
|
return true;
|
|
|
|
// convert SILFunctionTypeRepresentation -> FunctionTypeRepresentation
|
|
auto converted = convertRepresentation(silFnTy->getRepresentation());
|
|
if (!converted)
|
|
return false;
|
|
|
|
representation = *converted;
|
|
|
|
} else {
|
|
auto functionType = cast<const AnyFunctionType *>(eitherFnTy);
|
|
|
|
if (functionType->isSendable())
|
|
return true;
|
|
|
|
representation = functionType->getExtInfo().getRepresentation();
|
|
}
|
|
|
|
// C and thin function types have no captures, so they are Sendable.
|
|
switch (representation) {
|
|
case FunctionTypeRepresentation::Block:
|
|
case FunctionTypeRepresentation::Swift:
|
|
return false;
|
|
|
|
case FunctionTypeRepresentation::CFunctionPointer:
|
|
case FunctionTypeRepresentation::Thin:
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/// Whether the given function type conforms to Escapable.
|
|
static bool isEscapableFunctionType(EitherFunctionType eitherFnTy) {
|
|
if (auto silFnTy = eitherFnTy.dyn_cast<const SILFunctionType *>()) {
|
|
return !silFnTy->isNoEscape();
|
|
}
|
|
|
|
auto functionType = cast<const AnyFunctionType *>(eitherFnTy);
|
|
|
|
return !functionType->isNoEscape();
|
|
|
|
// FIXME: unify TypeBase::isNoEscape with TypeBase::isEscapable
|
|
// LazyConformanceEmitter::visitDestroyValueInst chokes on these instructions
|
|
// destroy_value %2 : $@convention(block) @noescape () -> ()
|
|
}
|
|
|
|
static bool isBitwiseCopyableFunctionType(EitherFunctionType eitherFnTy) {
|
|
SILFunctionTypeRepresentation representation;
|
|
if (auto silFnTy = eitherFnTy.dyn_cast<const SILFunctionType *>()) {
|
|
representation = silFnTy->getRepresentation();
|
|
} else {
|
|
auto fnTy = cast<const AnyFunctionType *>(eitherFnTy);
|
|
representation = convertRepresentation(fnTy->getRepresentation());
|
|
}
|
|
|
|
switch (representation) {
|
|
case SILFunctionTypeRepresentation::Thick:
|
|
case SILFunctionTypeRepresentation::Block:
|
|
return false;
|
|
case SILFunctionTypeRepresentation::Thin:
|
|
case SILFunctionTypeRepresentation::CXXMethod:
|
|
case SILFunctionTypeRepresentation::CFunctionPointer:
|
|
case SILFunctionTypeRepresentation::Method:
|
|
case SILFunctionTypeRepresentation::ObjCMethod:
|
|
case SILFunctionTypeRepresentation::WitnessMethod:
|
|
case SILFunctionTypeRepresentation::Closure:
|
|
case SILFunctionTypeRepresentation::KeyPathAccessorGetter:
|
|
case SILFunctionTypeRepresentation::KeyPathAccessorSetter:
|
|
case SILFunctionTypeRepresentation::KeyPathAccessorEquals:
|
|
case SILFunctionTypeRepresentation::KeyPathAccessorHash:
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/// Synthesize a builtin function type conformance to the given protocol, if
|
|
/// appropriate.
|
|
static ProtocolConformanceRef getBuiltinFunctionTypeConformance(
|
|
Type type, EitherFunctionType functionType, ProtocolDecl *protocol) {
|
|
ASTContext &ctx = protocol->getASTContext();
|
|
|
|
auto synthesizeConformance = [&]() -> ProtocolConformanceRef {
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(type, protocol,
|
|
BuiltinConformanceKind::Synthesized));
|
|
};
|
|
|
|
if (auto kp = protocol->getKnownProtocolKind()) {
|
|
switch (*kp) {
|
|
case KnownProtocolKind::Escapable:
|
|
if (isEscapableFunctionType(functionType))
|
|
return synthesizeConformance();
|
|
break;
|
|
case KnownProtocolKind::Sendable:
|
|
// @Sendable function types are Sendable.
|
|
if (isSendableFunctionType(functionType))
|
|
return synthesizeConformance();
|
|
break;
|
|
case KnownProtocolKind::Copyable:
|
|
// Functions cannot permanently destroy a move-only var/let
|
|
// that they capture, so it's safe to copy functions, like classes.
|
|
return synthesizeConformance();
|
|
case KnownProtocolKind::BitwiseCopyable:
|
|
if (isBitwiseCopyableFunctionType(functionType))
|
|
return synthesizeConformance();
|
|
break;
|
|
case KnownProtocolKind::SendableMetatype:
|
|
return synthesizeConformance();
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
|
|
/// Given the instance type of a metatype, determine whether the metatype is
|
|
/// Sendable.
|
|
///
|
|
// Metatypes are generally Sendable, but with isolated conformances we
|
|
// cannot assume that metatypes based on type parameters are Sendable.
|
|
// Therefore, check for conformance to SendableMetatype.
|
|
static bool metatypeWithInstanceTypeIsSendable(Type instanceType) {
|
|
ASTContext &ctx = instanceType->getASTContext();
|
|
|
|
// If we don't have the SendableMetatype protocol at all, just assume all
|
|
// metatypes are Sendable.
|
|
auto sendableMetatypeProto =
|
|
ctx.getProtocol(KnownProtocolKind::SendableMetatype);
|
|
if (!sendableMetatypeProto)
|
|
return true;
|
|
|
|
// If the instance type is a type parameter, it is not necessarily
|
|
// SendableMetatype. There will need to be a SendableMetatype requirement,
|
|
// but we do not have the generic environment to check that.
|
|
if (instanceType->isTypeParameter())
|
|
return false;
|
|
|
|
// If the instance type conforms to SendableMetatype, then its
|
|
// metatype is Sendable.
|
|
auto instanceConformance = lookupConformance(
|
|
instanceType, sendableMetatypeProto);
|
|
if (!instanceConformance.isInvalid() &&
|
|
!instanceConformance.hasMissingConformance())
|
|
return true;
|
|
|
|
// If this is an archetype that is non-SendableMetatype, but there are no
|
|
// non-marker protocol requirements that could carry conformances, treat
|
|
// the metatype as Sendable.
|
|
if (auto archetype = instanceType->getAs<ArchetypeType>()) {
|
|
if (!containsNonMarkerProtocols(archetype->getConformsTo()))
|
|
return true;
|
|
}
|
|
|
|
// The instance type is non-Sendable.
|
|
return false;
|
|
}
|
|
|
|
/// Synthesize a builtin metatype type conformance to the given protocol, if
|
|
/// appropriate.
|
|
static ProtocolConformanceRef getBuiltinMetaTypeTypeConformance(
|
|
Type type, const AnyMetatypeType *metatypeType, ProtocolDecl *protocol) {
|
|
ASTContext &ctx = protocol->getASTContext();
|
|
|
|
// All metatypes are Copyable, Escapable, and BitwiseCopyable.
|
|
if (auto kp = protocol->getKnownProtocolKind()) {
|
|
switch (*kp) {
|
|
case KnownProtocolKind::Sendable:
|
|
if (!metatypeWithInstanceTypeIsSendable(metatypeType->getInstanceType()))
|
|
break;
|
|
|
|
LLVM_FALLTHROUGH;
|
|
|
|
case KnownProtocolKind::Copyable:
|
|
case KnownProtocolKind::Escapable:
|
|
case KnownProtocolKind::BitwiseCopyable:
|
|
case KnownProtocolKind::SendableMetatype:
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(type, protocol,
|
|
BuiltinConformanceKind::Synthesized));
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
|
|
/// Synthesize a builtin type conformance to the given protocol, if
|
|
/// appropriate.
|
|
static ProtocolConformanceRef
|
|
getBuiltinBuiltinTypeConformance(Type type, const BuiltinType *builtinType,
|
|
ProtocolDecl *protocol) {
|
|
if (auto kp = protocol->getKnownProtocolKind()) {
|
|
switch (*kp) {
|
|
case KnownProtocolKind::Sendable:
|
|
case KnownProtocolKind::SendableMetatype:
|
|
case KnownProtocolKind::Copyable:
|
|
case KnownProtocolKind::Escapable: {
|
|
ASTContext &ctx = protocol->getASTContext();
|
|
|
|
// FixedArray is Sendable, Copyable, or Escapable if its element type is.
|
|
// FIXME: If the type arguments contain type variables, this should set
|
|
// up a proper conditional conformance.
|
|
if (auto bfa = dyn_cast<BuiltinFixedArrayType>(builtinType)) {
|
|
if (lookupConformance(bfa->getElementType(), protocol)) {
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(type, protocol,
|
|
BuiltinConformanceKind::Synthesized));
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (auto bba = dyn_cast<BuiltinBorrowType>(builtinType)) {
|
|
// Borrow is always Copyable.
|
|
if (*kp == KnownProtocolKind::Copyable) {
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(type, protocol,
|
|
BuiltinConformanceKind::Synthesized));
|
|
}
|
|
// Borrow is never Escapable.
|
|
if (*kp == KnownProtocolKind::Escapable) {
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
|
|
// Borrow is Sendable[Metatype] if its element type is.
|
|
// FIXME: If the type arguments contain type variables, this should set
|
|
// up a proper conditional conformance.
|
|
if (lookupConformance(bba->getReferentType(), protocol)) {
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(type, protocol,
|
|
BuiltinConformanceKind::Synthesized));
|
|
}
|
|
}
|
|
|
|
// All other builtin types are Sendable, SendableMetatype, Copyable, and
|
|
// Escapable.
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(type, protocol,
|
|
BuiltinConformanceKind::Synthesized));
|
|
}
|
|
// Some builtin types are BitwiseCopyable.
|
|
case KnownProtocolKind::BitwiseCopyable: {
|
|
if (builtinType->isBitwiseCopyable()) {
|
|
ASTContext &ctx = protocol->getASTContext();
|
|
return ProtocolConformanceRef(ctx.getBuiltinConformance(
|
|
type, protocol, BuiltinConformanceKind::Synthesized));
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
|
|
static ProtocolConformanceRef getPackTypeConformance(
|
|
PackType *type, ProtocolDecl *protocol) {
|
|
SmallVector<ProtocolConformanceRef, 2> patternConformances;
|
|
|
|
for (auto packElement : type->getElementTypes()) {
|
|
if (auto *packExpansion = packElement->getAs<PackExpansionType>()) {
|
|
auto patternType = packExpansion->getPatternType();
|
|
|
|
auto patternConformance = lookupConformance(patternType, protocol,
|
|
/*allowMissing=*/true);
|
|
patternConformances.push_back(patternConformance);
|
|
continue;
|
|
}
|
|
|
|
auto patternConformance = lookupConformance(packElement, protocol,
|
|
/*allowMissing=*/true);
|
|
patternConformances.push_back(patternConformance);
|
|
}
|
|
|
|
return ProtocolConformanceRef(
|
|
PackConformance::get(type, protocol, patternConformances));
|
|
}
|
|
|
|
ProtocolConformanceRef
|
|
LookupConformanceRequest::evaluate(Evaluator &evaluator,
|
|
LookupConformanceDescriptor desc) const {
|
|
auto type = desc.Ty;
|
|
auto *protocol = desc.PD;
|
|
ASTContext &ctx = protocol->getASTContext();
|
|
|
|
// Remove SIL reference ownership wrapper, if present.
|
|
type = type->getReferenceStorageReferent();
|
|
|
|
// A dynamic Self type conforms to whatever its underlying type
|
|
// conforms to.
|
|
if (auto selfType = type->getAs<DynamicSelfType>())
|
|
type = selfType->getSelfType();
|
|
|
|
// A pack element type conforms to whatever its underlying pack type
|
|
// conforms to.
|
|
if (auto packElement = type->getAs<PackElementType>())
|
|
type = packElement->getPackType();
|
|
|
|
// An archetype conforms to a protocol if the protocol is listed in the
|
|
// archetype's list of conformances, or if the archetype has a superclass
|
|
// constraint and the superclass conforms to the protocol.
|
|
if (auto archetype = type->getAs<ArchetypeType>()) {
|
|
// The generic signature builder drops conformance requirements that are made
|
|
// redundant by a superclass requirement, so check for a concrete
|
|
// conformance first, since an abstract conformance might not be
|
|
// able to be resolved by a substitution that makes the archetype
|
|
// concrete.
|
|
if (auto super = archetype->getSuperclass()) {
|
|
auto inheritedConformance = lookupConformance(
|
|
super, protocol, /*allowMissing=*/false);
|
|
if (protocol->isSpecificProtocol(KnownProtocolKind::Sendable) &&
|
|
inheritedConformance.hasUnavailableConformance())
|
|
inheritedConformance = ProtocolConformanceRef::forInvalid();
|
|
if (inheritedConformance) {
|
|
return ProtocolConformanceRef(ctx.getInheritedConformance(
|
|
type, inheritedConformance.getConcrete()));
|
|
}
|
|
}
|
|
|
|
for (auto ap : archetype->getConformsTo()) {
|
|
if (ap == protocol || ap->inheritsFrom(protocol))
|
|
return ProtocolConformanceRef::forAbstract(archetype, protocol);
|
|
}
|
|
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
|
|
// An existential conforms to a protocol if the protocol is listed in the
|
|
// existential's list of conformances and the existential conforms to
|
|
// itself.
|
|
if (type->isExistentialType()) {
|
|
auto result = lookupExistentialConformance(type, protocol);
|
|
if (result.isInvalid())
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
return result;
|
|
}
|
|
|
|
// Type parameters have trivial conformances.
|
|
if (type->isTypeParameter())
|
|
return ProtocolConformanceRef::forAbstract(type, protocol);
|
|
|
|
// Type variables have trivial conformances.
|
|
if (type->isTypeVariableOrMember())
|
|
return ProtocolConformanceRef::forAbstract(type, protocol);
|
|
|
|
// PlaceholderType is a placeholder for an unknown type. We consider it to
|
|
// conform to all protocols, since the intended type might have.
|
|
if (type->is<PlaceholderType>())
|
|
return ProtocolConformanceRef::forAbstract(type, protocol);
|
|
|
|
// Pack types can conform to protocols.
|
|
if (auto packType = type->getAs<PackType>()) {
|
|
return getPackTypeConformance(packType, protocol);
|
|
}
|
|
|
|
// Tuple types can conform to protocols.
|
|
if (auto tupleType = type->getAs<TupleType>()) {
|
|
return getBuiltinTupleTypeConformance(type, tupleType, protocol);
|
|
}
|
|
|
|
// Function types can conform to protocols.
|
|
if (auto functionType = type->getAs<AnyFunctionType>()) {
|
|
return getBuiltinFunctionTypeConformance(type, functionType, protocol);
|
|
}
|
|
|
|
// SIL function types in the AST can conform to protocols
|
|
if (auto silFn = type->getAs<SILFunctionType>()) {
|
|
return getBuiltinFunctionTypeConformance(type, silFn, protocol);
|
|
}
|
|
|
|
// Metatypes can conform to protocols.
|
|
if (auto metatypeType = type->getAs<AnyMetatypeType>()) {
|
|
return getBuiltinMetaTypeTypeConformance(type, metatypeType, protocol);
|
|
}
|
|
|
|
// Builtin types can conform to protocols.
|
|
if (auto builtinType = type->getAs<BuiltinType>()) {
|
|
return getBuiltinBuiltinTypeConformance(type, builtinType, protocol);
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
// Ensure we haven't missed queries for the specialty SIL types
|
|
// in the AST in conformance to one of the invertible protocols.
|
|
if (auto kp = protocol->getKnownProtocolKind()) {
|
|
if (getInvertibleProtocolKind(*kp)) {
|
|
assert(!(type->is<SILFunctionType,
|
|
SILBoxType,
|
|
SILMoveOnlyWrappedType,
|
|
SILPackType,
|
|
SILTokenType>()));
|
|
assert(!type->is<ReferenceStorageType>());
|
|
}
|
|
}
|
|
#endif
|
|
|
|
auto nominal = type->getAnyNominal();
|
|
|
|
// If we don't have a nominal type, there are no conformances.
|
|
if (!nominal || isa<ProtocolDecl>(nominal))
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
|
|
// All nominal types implicitly conform to SendableMetatype.
|
|
if (protocol->isSpecificProtocol(KnownProtocolKind::SendableMetatype)) {
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(type, protocol,
|
|
BuiltinConformanceKind::Synthesized));
|
|
}
|
|
|
|
// Expand conformances added by extension macros.
|
|
//
|
|
// FIXME: This expansion should only be done if the
|
|
// extension macro can generate a conformance to the
|
|
// given protocol, but conformance macros do not specify
|
|
// that information upfront.
|
|
(void)evaluateOrDefault(
|
|
ctx.evaluator,
|
|
ExpandExtensionMacros{nominal},
|
|
{ });
|
|
|
|
// Find the root conformance in the nominal type declaration's
|
|
// conformance lookup table.
|
|
SmallVector<ProtocolConformance *, 2> conformances;
|
|
|
|
// If the conformance lookup table produced nothing, we try to derive the
|
|
// conformance for a few special protocol kinds.
|
|
if (!nominal->lookupConformance(protocol, conformances)) {
|
|
if (protocol->isSpecificProtocol(KnownProtocolKind::Sendable)) {
|
|
// Try to infer Sendable conformance.
|
|
ImplicitKnownProtocolConformanceRequest
|
|
cvRequest{nominal, KnownProtocolKind::Sendable};
|
|
if (auto conformance = evaluateOrDefault(
|
|
ctx.evaluator, cvRequest, nullptr)) {
|
|
conformances.clear();
|
|
conformances.push_back(conformance);
|
|
} else {
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
} else if (protocol->isSpecificProtocol(KnownProtocolKind::Encodable) ||
|
|
protocol->isSpecificProtocol(KnownProtocolKind::Decodable)) {
|
|
// if (nominal->isDistributedActor()) {
|
|
if (canSynthesizeDistributedActorCodableConformance(nominal)) {
|
|
auto protoKind =
|
|
protocol->isSpecificProtocol(KnownProtocolKind::Encodable)
|
|
? KnownProtocolKind::Encodable
|
|
: KnownProtocolKind::Decodable;
|
|
auto request = GetDistributedActorImplicitCodableRequest{
|
|
nominal, protoKind};
|
|
|
|
if (auto conformance =
|
|
evaluateOrDefault(ctx.evaluator, request, nullptr)) {
|
|
conformances.clear();
|
|
conformances.push_back(conformance);
|
|
} else {
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
} else {
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
} else if (protocol->isSpecificProtocol(
|
|
KnownProtocolKind::BitwiseCopyable)) {
|
|
// Try to infer BitwiseCopyable conformance.
|
|
ImplicitKnownProtocolConformanceRequest request{
|
|
nominal, KnownProtocolKind::BitwiseCopyable};
|
|
if (auto conformance =
|
|
evaluateOrDefault(ctx.evaluator, request, nullptr)) {
|
|
conformances.clear();
|
|
conformances.push_back(conformance);
|
|
} else {
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
} else {
|
|
// Was unable to infer the missing conformance.
|
|
return ProtocolConformanceRef::forMissingOrInvalid(type, protocol);
|
|
}
|
|
}
|
|
|
|
// We should have at least one conformance by now, or we would have returned
|
|
// above.
|
|
assert(!conformances.empty());
|
|
|
|
// If we have multiple conformances, first try to filter out any that are
|
|
// unavailable on the current deployment target.
|
|
//
|
|
// FIXME: Conformance lookup should really depend on source location for
|
|
// this to be 100% correct.
|
|
if (conformances.size() > 1) {
|
|
SmallVector<ProtocolConformance *, 2> availableConformances;
|
|
|
|
for (auto *conformance : conformances) {
|
|
if (conformance->getDeclContext()->isAlwaysAvailableConformanceContext())
|
|
availableConformances.push_back(conformance);
|
|
}
|
|
|
|
// Don't filter anything out if all conformances are unavailable.
|
|
if (!availableConformances.empty())
|
|
std::swap(availableConformances, conformances);
|
|
}
|
|
|
|
// If we still have multiple conformances, just pick the first one.
|
|
auto conformance = conformances.front();
|
|
|
|
// Rebuild inherited conformances based on the root normal conformance.
|
|
// FIXME: This is a hack to work around our inability to handle multiple
|
|
// levels of substitution through inherited conformances elsewhere in the
|
|
// compiler.
|
|
if (auto inherited = dyn_cast<InheritedProtocolConformance>(conformance)) {
|
|
// Dig out the conforming nominal type.
|
|
auto rootConformance = inherited->getRootConformance();
|
|
auto conformingClass
|
|
= rootConformance->getType()->getClassOrBoundGenericClass();
|
|
|
|
// Map up to our superclass's type.
|
|
auto superclassTy = type->getSuperclassForDecl(conformingClass);
|
|
|
|
// Compute the conformance for the inherited type.
|
|
auto inheritedConformance = lookupConformance(
|
|
superclassTy, protocol, /*allowMissing=*/true);
|
|
assert(inheritedConformance &&
|
|
"We already found the inherited conformance");
|
|
|
|
// Create the inherited conformance entry.
|
|
conformance =
|
|
ctx.getInheritedConformance(type, inheritedConformance.getConcrete());
|
|
return ProtocolConformanceRef(conformance);
|
|
}
|
|
|
|
// We now have a root conformance for the nominal's declared interface type.
|
|
// If our type is specialized, apply a substitution map to the root
|
|
// conformance.
|
|
if (type->isSpecialized()) {
|
|
if (!conformance->getType()->isEqual(type)) {
|
|
// We use a builtin conformance for unconditional Copyable and Escapable
|
|
// conformances. Avoid building a substitution map and just return the
|
|
// correct builtin conformance for the specialized type.
|
|
if (auto *builtinConf = dyn_cast<BuiltinProtocolConformance>(conformance)) {
|
|
return ProtocolConformanceRef(
|
|
ctx.getBuiltinConformance(type, protocol,
|
|
builtinConf->getBuiltinConformanceKind()));
|
|
}
|
|
|
|
// Otherwise, we have a normal conformance, so we're going to build a
|
|
// specialized conformance from the context substitution map of the
|
|
// specialized type.
|
|
auto *normalConf = cast<NormalProtocolConformance>(conformance);
|
|
auto *conformanceDC = normalConf->getDeclContext();
|
|
|
|
// In -swift-version 5 mode, a conditional conformance to a protocol can imply
|
|
// a Sendable conformance. The implied conformance is unconditional so it uses
|
|
// the generic signature of the nominal type and not the generic signature of
|
|
// the extension that declared the (implying) conditional conformance.
|
|
if (normalConf->getSourceKind() == ConformanceEntryKind::Implied &&
|
|
normalConf->getProtocol()->isSpecificProtocol(KnownProtocolKind::Sendable)) {
|
|
conformanceDC = conformanceDC->getSelfNominalTypeDecl();
|
|
}
|
|
|
|
auto subMap = type->getContextSubstitutionMap(conformanceDC);
|
|
return ProtocolConformanceRef(
|
|
ctx.getSpecializedConformance(type, normalConf, subMap));
|
|
}
|
|
}
|
|
|
|
// Return the root conformance.
|
|
return ProtocolConformanceRef(conformance);
|
|
}
|
|
|
|
ProtocolConformanceRef
|
|
swift::checkConformance(Type type, ProtocolDecl *proto,
|
|
bool allowMissing) {
|
|
assert(!type->hasTypeParameter()
|
|
&& "must take a contextual type. if you really are ok with an "
|
|
"indefinite answer (and usually YOU ARE NOT), then consider whether "
|
|
"you really, definitely are ok with an indefinite answer, and "
|
|
"use `checkConformanceWithoutContext` instead");
|
|
|
|
// With no type parameter in the type, we should always get a definite answer
|
|
// from the underlying test.
|
|
return checkConformanceWithoutContext(type, proto, allowMissing).value();
|
|
}
|
|
|
|
std::optional<ProtocolConformanceRef>
|
|
swift::checkConformanceWithoutContext(Type type, ProtocolDecl *proto,
|
|
bool allowMissing) {
|
|
auto lookupResult = lookupConformance(type, proto, allowMissing);
|
|
if (lookupResult.isInvalid()) {
|
|
return ProtocolConformanceRef::forInvalid();
|
|
}
|
|
|
|
auto condReqs = lookupResult.getConditionalRequirements();
|
|
|
|
// If we have a conditional requirements that we need to check, do so now.
|
|
if (!condReqs.empty()) {
|
|
auto reqResult = checkRequirementsWithoutContext(condReqs);
|
|
if (!reqResult.has_value()) {
|
|
return std::nullopt;
|
|
}
|
|
switch (*reqResult) {
|
|
case CheckRequirementsResult::Success:
|
|
break;
|
|
|
|
case CheckRequirementsResult::RequirementFailure:
|
|
case CheckRequirementsResult::SubstitutionFailure:
|
|
return ProtocolConformanceRef::forInvalid();
|
|
}
|
|
}
|
|
|
|
return lookupResult;
|
|
}
|
|
|
|
///
|
|
/// Sendable checking utility
|
|
///
|
|
|
|
bool TypeBase::isSendableType() {
|
|
auto proto = getASTContext().getProtocol(KnownProtocolKind::Sendable);
|
|
if (!proto)
|
|
return true;
|
|
|
|
// First check if we have a function type. If we do, check if it is
|
|
// Sendable. We do this since functions cannot conform to protocols.
|
|
if (auto *fas = getAs<SILFunctionType>())
|
|
return fas->isSendable();
|
|
if (auto *fas = getAs<AnyFunctionType>())
|
|
return fas->isSendable();
|
|
|
|
auto conformance = checkConformance(this, proto, false /*allow missing*/);
|
|
return conformance && !conformance.hasUnavailableConformance();
|
|
}
|
|
|
|
///
|
|
/// Copyable and Escapable checking utilities
|
|
///
|
|
|
|
static bool conformsToInvertible(CanType type, InvertibleProtocolKind ip) {
|
|
// FIXME: Remove these.
|
|
if (isa<SILPackType>(type))
|
|
return true;
|
|
|
|
if (isa<SILTokenType>(type))
|
|
return true;
|
|
|
|
auto *proto = type->getASTContext().getProtocol(getKnownProtocolKind(ip));
|
|
ASSERT(proto);
|
|
|
|
return (bool) checkConformance(type, proto, /*allowMissing=*/false);
|
|
}
|
|
|
|
void TypeBase::computeInvertibleConformances() {
|
|
Bits.TypeBase.ComputedInvertibleConformances = true;
|
|
|
|
Type type(this);
|
|
|
|
// FIXME: Remove all of the below. Callers should be changed to perform any
|
|
// necessary unwrapping themselves.
|
|
|
|
// Pack expansions such as `repeat T` themselves do not have conformances,
|
|
// so check its pattern type for conformance.
|
|
if (auto *pet = type->getAs<PackExpansionType>())
|
|
type = pet->getPatternType();
|
|
|
|
auto canType = type->getReferenceStorageReferent()
|
|
->getWithoutSpecifierType()
|
|
->getCanonicalType();
|
|
|
|
assert(!canType->hasTypeParameter());
|
|
assert(!canType->hasUnboundGenericType());
|
|
assert(!isa<SILBoxType>(canType));
|
|
assert(!isa<SILMoveOnlyWrappedType>(canType));
|
|
|
|
Bits.TypeBase.IsCopyable = conformsToInvertible(
|
|
canType, InvertibleProtocolKind::Copyable);
|
|
Bits.TypeBase.IsEscapable = conformsToInvertible(
|
|
canType, InvertibleProtocolKind::Escapable);
|
|
}
|
|
|
|
/// \returns true iff this type lacks conformance to Copyable.
|
|
bool TypeBase::isNoncopyable() {
|
|
if (!Bits.TypeBase.ComputedInvertibleConformances)
|
|
computeInvertibleConformances();
|
|
return !Bits.TypeBase.IsCopyable;
|
|
}
|
|
|
|
/// \returns true iff this type conforms to Copyable.
|
|
bool TypeBase::isCopyable() {
|
|
return !isNoncopyable();
|
|
}
|
|
|
|
/// \returns true iff this type conforms to Escaping.
|
|
bool TypeBase::isEscapable() {
|
|
if (!Bits.TypeBase.ComputedInvertibleConformances)
|
|
computeInvertibleConformances();
|
|
return Bits.TypeBase.IsEscapable;
|
|
}
|
|
|
|
bool TypeBase::isEscapable(GenericSignature sig) {
|
|
Type contextTy = this;
|
|
if (sig) {
|
|
contextTy = sig.getGenericEnvironment()->mapTypeIntoEnvironment(contextTy);
|
|
}
|
|
return contextTy->isEscapable();
|
|
}
|
|
|
|
bool TypeBase::isBitwiseCopyable() {
|
|
auto &ctx = getASTContext();
|
|
auto *bitwiseCopyableProtocol =
|
|
ctx.getProtocol(KnownProtocolKind::BitwiseCopyable);
|
|
if (!bitwiseCopyableProtocol) {
|
|
return false;
|
|
}
|
|
return (bool)checkConformance(this, bitwiseCopyableProtocol);
|
|
}
|
|
|
|
bool TypeBase::isBitwiseCopyable(GenericSignature sig) {
|
|
Type contextTy = this;
|
|
if (sig) {
|
|
contextTy = sig.getGenericEnvironment()->mapTypeIntoEnvironment(contextTy);
|
|
}
|
|
return contextTy->isBitwiseCopyable();
|
|
}
|