1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
|
//===--- SILGenAvailability.cpp - SILGen for availability queries ---------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2022 - 2025 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 "SILGenFunction.h"
#include "SILGenFunctionBuilder.h"
#include "Scope.h"
#include "swift/Basic/Assertions.h"
#include "swift/Basic/Platform.h"
#include "swift/SIL/SILDeclRef.h"
using namespace swift;
using namespace Lowering;
/// Emit literals for the major, minor, and subminor components of the version
/// and return a tuple of SILValues for them.
static std::tuple<SILValue, SILValue, SILValue>
emitVersionLiterals(SILLocation loc, SILGenBuilder &B, ASTContext &ctx,
llvm::VersionTuple Vers) {
unsigned major = Vers.getMajor();
unsigned minor = Vers.getMinor().value_or(0);
unsigned subminor = Vers.getSubminor().value_or(0);
SILType wordType = SILType::getBuiltinWordType(ctx);
SILValue majorValue = B.createIntegerLiteral(loc, wordType, major);
SILValue minorValue = B.createIntegerLiteral(loc, wordType, minor);
SILValue subminorValue = B.createIntegerLiteral(loc, wordType, subminor);
return std::make_tuple(majorValue, minorValue, subminorValue);
}
/// Emit a check that returns 1 if the running OS version is in
/// the specified version range and 0 otherwise. The returned SILValue
/// (which has type Builtin.Int1) represents the result of this check.
static SILValue emitOSVersionRangeCheck(SILGenFunction &SGF, SILLocation loc,
const VersionRange &range,
bool forTargetVariant) {
auto &ctx = SGF.getASTContext();
auto &B = SGF.B;
// Emit constants for the checked version range.
SILValue majorValue;
SILValue minorValue;
SILValue subminorValue;
std::tie(majorValue, minorValue, subminorValue) =
emitVersionLiterals(loc, B, ctx, range.getLowerEndpoint());
// Emit call to _stdlib_isOSVersionAtLeast(major, minor, patch)
FuncDecl *versionQueryDecl = ctx.getIsOSVersionAtLeastDecl();
// When targeting macCatalyst, the version number will be an iOS version
// number and so we call a variant of the query function that understands iOS
// versions.
if (forTargetVariant)
versionQueryDecl = ctx.getIsVariantOSVersionAtLeastDecl();
assert(versionQueryDecl);
auto declRef = SILDeclRef(versionQueryDecl);
SILValue availabilityGTEFn = SGF.emitGlobalFunctionRef(
loc, declRef,
SGF.getConstantInfo(SGF.getTypeExpansionContext(), declRef));
SILValue args[] = {majorValue, minorValue, subminorValue};
return B.createApply(loc, availabilityGTEFn, SubstitutionMap(), args);
}
static SILValue
emitOSVersionOrVariantVersionRangeCheck(SILGenFunction &SGF, SILLocation loc,
const VersionRange &targetRange,
const VersionRange &variantRange) {
auto &ctx = SGF.getASTContext();
auto &B = SGF.B;
SILValue targetMajorValue;
SILValue targetMinorValue;
SILValue targetSubminorValue;
std::tie(targetMajorValue, targetMinorValue, targetSubminorValue) =
emitVersionLiterals(loc, B, ctx, targetRange.getLowerEndpoint());
SILValue variantMajorValue;
SILValue variantMinorValue;
SILValue variantSubminorValue;
std::tie(variantMajorValue, variantMinorValue, variantSubminorValue) =
emitVersionLiterals(loc, B, ctx, variantRange.getLowerEndpoint());
FuncDecl *versionQueryDecl =
ctx.getIsOSVersionAtLeastOrVariantVersionAtLeast();
assert(versionQueryDecl);
auto declRef = SILDeclRef(versionQueryDecl);
SILValue availabilityGTEFn = SGF.emitGlobalFunctionRef(
loc, declRef,
SGF.getConstantInfo(SGF.getTypeExpansionContext(), declRef));
SILValue args[] = {targetMajorValue, targetMinorValue,
targetSubminorValue, variantMajorValue,
variantMinorValue, variantSubminorValue};
return B.createApply(loc, availabilityGTEFn, SubstitutionMap(), args);
}
SILValue emitZipperedOSVersionRangeCheck(SILGenFunction &SGF, SILLocation loc,
const VersionRange &targetRange,
const VersionRange &variantRange) {
auto &ctx = SGF.getASTContext();
auto &B = SGF.B;
assert(ctx.LangOpts.TargetVariant);
VersionRange targetVersion = targetRange;
VersionRange variantVersion = variantRange;
// We're building zippered, so we need to pass both macOS and iOS versions to
// the runtime version range check. At run time that check will determine what
// kind of process this code is loaded into. In a macOS process it will use
// the macOS version; in an macCatalyst process it will use the iOS version.
llvm::Triple targetTriple = ctx.LangOpts.Target;
llvm::Triple variantTriple = *ctx.LangOpts.TargetVariant;
// From perspective of the driver and most of the frontend, -target and
// -target-variant are symmetric. That is, the user can pass either:
// -target x86_64-apple-macosx10.15 \
// -target-variant x86_64-apple-ios13.1-macabi
// or:
// -target x86_64-apple-ios13.1-macabi \
// -target-variant x86_64-apple-macosx10.15
//
// However, the runtime availability-checking entry points need to compare
// against an actual running OS version and so can't be symmetric. Here we
// standardize on "target" means macOS version and "targetVariant" means iOS
// version.
if (tripleIsMacCatalystEnvironment(targetTriple)) {
assert(variantTriple.isMacOSX());
// Normalize so that "variant" always means iOS version.
std::swap(targetVersion, variantVersion);
std::swap(targetTriple, variantTriple);
}
// If there is no check for either the target platform or the target-variant
// platform then the condition is trivially true.
if (targetVersion.isAll() && variantVersion.isAll()) {
SILType i1 = SILType::getBuiltinIntegerType(1, ctx);
return B.createIntegerLiteral(loc, i1, true);
}
// If either version is "never" then the check is trivially false because it
// can never succeed.
if (targetVersion.isEmpty() || variantVersion.isEmpty()) {
SILType i1 = SILType::getBuiltinIntegerType(1, ctx);
return B.createIntegerLiteral(loc, i1, false);
}
// The variant-only availability-checking entrypoint is not part of the
// Swift 5.0 ABI. It is only available in macOS 10.15 and above.
bool isVariantEntrypointAvailable = !targetTriple.isMacOSXVersionLT(10, 15);
// If there is no check for the target but there is for the variant, then we
// only need to emit code for the variant check.
if (isVariantEntrypointAvailable && targetVersion.isAll() &&
!variantVersion.isAll())
return emitOSVersionRangeCheck(SGF, loc, variantVersion,
/*forVariant*/ true);
// Similarly, if there is a check for the target but not for the target
// variant then we only to emit code for the target check.
if (!targetVersion.isAll() && variantVersion.isAll())
return emitOSVersionRangeCheck(SGF, loc, targetVersion,
/*forVariant*/ false);
if (!isVariantEntrypointAvailable ||
(!targetVersion.isAll() && !variantVersion.isAll())) {
// If the variant-only entrypoint isn't available (as is the case
// pre-macOS 10.15) we need to use the zippered entrypoint (which is part of
// the Swift 5.0 ABI) even when the macOS version is '*' (all). In this
// case, use the minimum macOS deployment version from the target triple.
// This ensures the check always passes on macOS.
if (!isVariantEntrypointAvailable && targetVersion.isAll()) {
assert(targetTriple.isMacOSX());
llvm::VersionTuple macosVersion;
targetTriple.getMacOSXVersion(macosVersion);
targetVersion = VersionRange::allGTE(macosVersion);
}
return emitOSVersionOrVariantVersionRangeCheck(SGF, loc, targetVersion,
variantVersion);
}
llvm_unreachable("Unhandled zippered configuration");
}
/// Given a value, extracts all elements to `result` from this value if it's a
/// tuple. Otherwise, add this value directly to `result`.
static void extractAllElements(SILValue val, SILLocation loc,
SILBuilder &builder,
SmallVectorImpl<SILValue> &result) {
auto &fn = builder.getFunction();
auto tupleType = val->getType().getAs<TupleType>();
if (!tupleType) {
result.push_back(val);
return;
}
if (!fn.hasOwnership()) {
for (auto i : range(tupleType->getNumElements()))
result.push_back(builder.createTupleExtract(loc, val, i));
return;
}
if (tupleType->getNumElements() == 0)
return;
builder.emitDestructureValueOperation(loc, val, result);
}
static Type getResultInterfaceType(AbstractFunctionDecl *AFD) {
if (auto *FD = dyn_cast<FuncDecl>(AFD))
return FD->getResultInterfaceType();
if (auto *CD = dyn_cast<ConstructorDecl>(AFD))
return CD->getResultInterfaceType();
llvm_unreachable("Unhandled AbstractFunctionDecl type");
}
static SILValue emitZipperedBackDeployIfAvailableBooleanTestValue(
SILGenFunction &SGF, AbstractFunctionDecl *AFD, SILLocation loc,
SILBasicBlock *availableBB, SILBasicBlock *unavailableBB) {
auto &ctx = SGF.getASTContext();
assert(ctx.LangOpts.TargetVariant);
VersionRange OSVersion = VersionRange::all();
if (auto version = AFD->getBackDeployedBeforeOSVersion(ctx)) {
OSVersion = VersionRange::allGTE(*version);
}
VersionRange VariantOSVersion = VersionRange::all();
if (auto version =
AFD->getBackDeployedBeforeOSVersion(ctx, /*forTargetVariant=*/true)) {
VariantOSVersion = VersionRange::allGTE(*version);
}
return emitZipperedOSVersionRangeCheck(SGF, loc, OSVersion, VariantOSVersion);
}
/// Emit the following branch SIL instruction:
/// \verbatim
/// if #available(OSVersion) {
/// <availableBB>
/// } else {
/// <unavailableBB>
/// }
/// \endverbatim
static void emitBackDeployIfAvailableCondition(SILGenFunction &SGF,
AbstractFunctionDecl *AFD,
SILLocation loc,
SILBasicBlock *availableBB,
SILBasicBlock *unavailableBB) {
if (SGF.getASTContext().LangOpts.TargetVariant) {
SILValue booleanTestValue =
emitZipperedBackDeployIfAvailableBooleanTestValue(
SGF, AFD, loc, availableBB, unavailableBB);
SGF.B.createCondBranch(loc, booleanTestValue, availableBB, unavailableBB);
return;
}
auto version = AFD->getBackDeployedBeforeOSVersion(SGF.SGM.getASTContext());
VersionRange OSVersion = VersionRange::empty();
if (version.has_value()) {
OSVersion = VersionRange::allGTE(*version);
}
SILValue booleanTestValue;
if (OSVersion.isEmpty() || OSVersion.isAll()) {
// If there's no check for the current platform, this condition is
// trivially true.
SILType i1 = SILType::getBuiltinIntegerType(1, SGF.getASTContext());
booleanTestValue = SGF.B.createIntegerLiteral(loc, i1, 1);
} else {
bool isMacCatalyst =
tripleIsMacCatalystEnvironment(SGF.getASTContext().LangOpts.Target);
booleanTestValue =
emitOSVersionRangeCheck(SGF, loc, OSVersion, isMacCatalyst);
}
SGF.B.createCondBranch(loc, booleanTestValue, availableBB, unavailableBB);
}
/// Emits a function or method application, forwarding parameters.
static void emitBackDeployForwardApplyAndReturnOrThrow(
SILGenFunction &SGF, AbstractFunctionDecl *AFD, SILLocation loc,
SILDeclRef function, SmallVector<SILValue, 8> ¶ms) {
// Only statically dispatched class methods are supported.
if (auto classDecl = dyn_cast<ClassDecl>(AFD->getDeclContext())) {
assert(classDecl->isFinal() || AFD->isFinal() ||
AFD->hasForcedStaticDispatch());
}
TypeExpansionContext TEC = SGF.getTypeExpansionContext();
auto fnType = SGF.SGM.Types.getConstantOverrideType(TEC, function);
auto silFnType =
SILType::getPrimitiveObjectType(fnType).castTo<SILFunctionType>();
SILFunctionConventions fnConv(silFnType, SGF.SGM.M);
SILValue functionRef = SGF.emitGlobalFunctionRef(loc, function);
auto subs = SGF.F.getForwardingSubstitutionMap();
SmallVector<SILValue, 4> directResults;
// If the function is a coroutine, we need to use 'begin_apply'.
if (silFnType->isCoroutine()) {
assert(!silFnType->hasErrorResult() && "throwing coroutine?");
// Apply the coroutine, yield the result, and finally branch to either the
// terminal return or unwind basic block via intermediate basic blocks. The
// intermediates are needed to avoid forming critical edges.
SILBasicBlock *resumeBB = SGF.createBasicBlock();
SILBasicBlock *unwindBB = SGF.createBasicBlock();
auto *apply = SGF.B.createBeginApply(loc, functionRef, subs, params);
SmallVector<SILValue, 4> rawResults;
for (auto result : apply->getAllResults())
rawResults.push_back(result);
auto token = rawResults.pop_back_val();
SGF.B.createYield(loc, rawResults, resumeBB, unwindBB);
// Emit resume block.
SGF.B.emitBlock(resumeBB);
SGF.B.createEndApply(loc, token,
SILType::getEmptyTupleType(SGF.getASTContext()));
SGF.B.createBranch(loc, SGF.ReturnDest.getBlock());
// Emit unwind block.
SGF.B.emitBlock(unwindBB);
SGF.B.createEndApply(loc, token,
SILType::getEmptyTupleType(SGF.getASTContext()));
SGF.B.createBranch(loc, SGF.CoroutineUnwindDest.getBlock());
return;
}
// Use try_apply for functions that throw.
if (silFnType->hasErrorResult()) {
// Apply the throwing function and forward the results and the error to the
// return/throw blocks via intermediate basic blocks. The intermediates
// are needed to avoid forming critical edges.
SILBasicBlock *normalBB = SGF.createBasicBlock();
SILBasicBlock *errorBB = SGF.createBasicBlock();
SGF.B.createTryApply(loc, functionRef, subs, params, normalBB, errorBB);
// Emit error block.
SGF.B.emitBlock(errorBB);
ManagedValue error =
SGF.B.createPhi(SGF.F.mapTypeIntoContext(fnConv.getSILErrorType(TEC)),
OwnershipKind::Owned);
SGF.B.createBranch(loc, SGF.ThrowDest.getBlock(), {error});
// Emit normal block.
SGF.B.emitBlock(normalBB);
SILValue result = normalBB->createPhiArgument(
SGF.F.mapTypeIntoContext(fnConv.getSILResultType(TEC)),
OwnershipKind::Owned);
SmallVector<SILValue, 4> directResults;
extractAllElements(result, loc, SGF.B, directResults);
SGF.B.createBranch(loc, SGF.ReturnDest.getBlock(), directResults);
return;
}
// The original function is neither throwing nor a coroutine. Apply it and
// forward its results straight to the return block.
auto *apply = SGF.B.createApply(loc, functionRef, subs, params);
extractAllElements(apply, loc, SGF.B, directResults);
SGF.B.createBranch(loc, SGF.ReturnDest.getBlock(), directResults);
}
SILValue
SILGenFunction::emitIfAvailableQuery(SILLocation loc,
PoundAvailableInfo *availability) {
auto &ctx = getASTContext();
SILValue result;
// Creates a boolean literal for availability conditions that have been
// evaluated at compile time. Automatically inverts the value for
// `#unavailable` queries.
auto createBooleanTestLiteral = [&](bool value) {
SILType i1 = SILType::getBuiltinIntegerType(1, ctx);
if (availability->isUnavailability())
value = !value;
return B.createIntegerLiteral(loc, i1, value);
};
auto versionRange = availability->getAvailableRange();
// The OS version might be left empty if availability checking was disabled.
// Treat it as always-true in that case.
assert(versionRange || ctx.LangOpts.DisableAvailabilityChecking);
if (ctx.LangOpts.TargetVariant && !ctx.LangOpts.DisableAvailabilityChecking) {
// We're building zippered, so we need to pass both macOS and iOS versions
// to the the runtime version range check. At run time that check will
// determine what kind of process this code is loaded into. In a macOS
// process it will use the macOS version; in an macCatalyst process it will
// use the iOS version.
auto variantVersionRange = availability->getVariantAvailableRange();
assert(variantVersionRange);
if (versionRange && variantVersionRange) {
result = emitZipperedOSVersionRangeCheck(*this, loc, *versionRange,
*variantVersionRange);
} else {
// Type checking did not fill in versions so as a fallback treat this
// condition as trivially true.
result = createBooleanTestLiteral(true);
}
return result;
}
if (!versionRange) {
// Type checking did not fill in version so as a fallback treat this
// condition as trivially true.
result = createBooleanTestLiteral(true);
} else if (versionRange->isAll()) {
result = createBooleanTestLiteral(true);
} else if (versionRange->isEmpty()) {
result = createBooleanTestLiteral(false);
} else {
bool isMacCatalyst = tripleIsMacCatalystEnvironment(ctx.LangOpts.Target);
result = emitOSVersionRangeCheck(*this, loc, versionRange.value(),
isMacCatalyst);
if (availability->isUnavailability()) {
// If this is an unavailability check, invert the result
// by emitting a call to Builtin.xor_Int1(lhs, -1).
SILType i1 = SILType::getBuiltinIntegerType(1, ctx);
SILValue minusOne = B.createIntegerLiteral(loc, i1, -1);
result =
B.createBuiltinBinaryFunction(loc, "xor", i1, i1, {result, minusOne});
}
}
return result;
}
bool SILGenModule::requiresBackDeploymentThunk(ValueDecl *decl,
ResilienceExpansion expansion) {
auto &ctx = getASTContext();
auto backDeployBeforeVersion = decl->getBackDeployedBeforeOSVersion(ctx);
if (!backDeployBeforeVersion)
return false;
switch (expansion) {
case ResilienceExpansion::Minimal:
// In a minimal resilience expansion we must always call the back deployment
// thunk since we can't predict the deployment targets of the modules that
// might inline the call.
return true;
case ResilienceExpansion::Maximal:
// FIXME: We can skip thunking if we're in the same module.
break;
}
// Use of a back deployment thunk is unnecessary if the deployment target is
// high enough that the ABI implementation of the back deployed declaration is
// guaranteed to be available.
auto deploymentAvailability = AvailabilityRange::forDeploymentTarget(ctx);
auto declAvailability = AvailabilityRange(*backDeployBeforeVersion);
if (deploymentAvailability.isContainedIn(declAvailability))
return false;
return true;
}
void SILGenFunction::emitBackDeploymentThunk(SILDeclRef thunk) {
// Generate code equivalent to:
//
// func X_thunk(...) async throws -> ... {
// if #available(...) {
// return try await X(...)
// } else {
// return try await X_fallback(...)
// }
// }
assert(thunk.isBackDeploymentThunk());
auto loc = thunk.getAsRegularLocation();
loc.markAutoGenerated();
Scope scope(Cleanups, CleanupLocation(loc));
auto AFD = cast<AbstractFunctionDecl>(thunk.getDecl());
F.setGenericEnvironment(SGM.Types.getConstantGenericEnvironment(thunk));
// Generate the thunk prolog by collecting parameters.
SmallVector<ManagedValue, 4> params;
SmallVector<ManagedValue, 4> indirectParams;
SmallVector<ManagedValue, 4> indirectErrorResults;
ManagedValue implicitIsolationParam;
collectThunkParams(loc, params, &indirectParams, &indirectErrorResults,
&implicitIsolationParam);
// Build up the list of arguments that we're going to invoke the real
// function with.
SmallVector<SILValue, 8> paramsForForwarding;
for (auto indirectParam : indirectParams) {
paramsForForwarding.emplace_back(indirectParam.getLValueAddress());
}
for (auto indirectErrorResult : indirectErrorResults) {
paramsForForwarding.emplace_back(indirectErrorResult.getLValueAddress());
}
if (implicitIsolationParam) {
paramsForForwarding.emplace_back(implicitIsolationParam.forward(*this));
}
for (auto param : params) {
// We're going to directly call either the original function or the fallback
// function with these arguments and then return. Therefore we just forward
// the arguments instead of handling their ownership conventions.
paramsForForwarding.emplace_back(param.forward(*this));
}
prepareEpilog(AFD,
getResultInterfaceType(AFD),
AFD->getEffectiveThrownErrorType(),
CleanupLocation(AFD));
SILBasicBlock *availableBB = createBasicBlock("availableBB");
SILBasicBlock *unavailableBB = createBasicBlock("unavailableBB");
// if #available(...) {
// <availableBB>
// } else {
// <unavailableBB>
// }
emitBackDeployIfAvailableCondition(*this, AFD, loc, availableBB,
unavailableBB);
// <availableBB>:
// return (try)? (await)? (self.)?X(...)
{
B.emitBlock(availableBB);
SILDeclRef original =
thunk.asBackDeploymentKind(SILDeclRef::BackDeploymentKind::None);
emitBackDeployForwardApplyAndReturnOrThrow(*this, AFD, loc, original,
paramsForForwarding);
}
// <unavailableBB>:
// return (try)? (await)? (self.)?X_fallback(...)
{
B.emitBlock(unavailableBB);
SILDeclRef fallback =
thunk.asBackDeploymentKind(SILDeclRef::BackDeploymentKind::Fallback);
emitBackDeployForwardApplyAndReturnOrThrow(*this, AFD, loc, fallback,
paramsForForwarding);
}
emitEpilog(AFD);
}
|