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 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384
|
//===--- ClosureSpecialization.swift ---------------------------===//
//
// 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 contains the closure-specialization optimizations for general and differentiable Swift.
/// General Closure Specialization
/// ------------------------------------
/// TODO: Add description when the functionality is added.
/// AutoDiff Closure Specialization
/// -------------------------------
/// This optimization performs closure specialization tailored for the patterns seen in Swift Autodiff. In principle,
/// the optimization does the same thing as the existing closure specialization pass. However, it is tailored to the
/// patterns of Swift Autodiff.
///
/// The compiler performs reverse-mode differentiation on functions marked with `@differentiable(reverse)`. In doing so,
/// it generates corresponding VJP and Pullback functions, which perform the forward and reverse pass respectively. You
/// can think of VJPs as functions that "differentiate" an original function and Pullbacks as the calculated
/// "derivative" of the original function.
///
/// VJPs always return a tuple of 2 values -- the original result and the Pullback. Pullbacks are essentially a chain
/// of closures, where the closure-contexts are implicitly used as the so-called "tape" during the reverse
/// differentiation process. It is this chain of closures contained within the Pullbacks that this optimization aims
/// to optimize via closure specialization.
///
/// The code patterns that this optimization targets, look similar to the one below:
/// ``` swift
///
/// // Since `foo` is marked with the `differentiable(reverse)` attribute the compiler
/// // will generate corresponding VJP and Pullback functions in SIL. Let's assume that
/// // these functions are called `vjp_foo` and `pb_foo` respectively.
/// @differentiable(reverse)
/// func foo(_ x: Float) -> Float {
/// return sin(x)
/// }
///
/// //============== Before closure specialization ==============//
/// // VJP of `foo`. Returns the original result and the Pullback of `foo`.
/// sil @vjp_foo: $(Float) -> (originalResult: Float, pullback: (Float) -> Float) {
/// bb0(%0: $Float):
/// // __Inlined__ `vjp_sin`: It is important for all intermediate VJPs to have
/// // been inlined in `vjp_foo`, otherwise `vjp_foo` will not be able to determine
/// // that `pb_foo` is closing over other closures and no specialization will happen.
/// \
/// %originalResult = apply @sin(%0): $(Float) -> Float \__ Inlined `vjp_sin`
/// %partially_applied_pb_sin = partial_apply pb_sin(%0): $(Float) -> Float /
/// /
///
/// %pb_foo = function_ref @pb_foo: $@convention(thin) (Float, (Float) -> Float) -> Float
/// %partially_applied_pb_foo = partial_apply %pb_foo(%partially_applied_pb_sin): $(Float, (Float) -> Float) -> Float
///
/// return (%originalResult, %partially_applied_pb_foo)
/// }
///
/// // Pullback of `foo`.
/// //
/// // It receives what are called as intermediate closures that represent
/// // the calculations that the Pullback needs to perform to calculate a function's
/// // derivative.
/// //
/// // The intermediate closures may themselves contain intermediate closures and
/// // that is why the Pullback for a function differentiated at the "top" level
/// // may end up being a "chain" of closures.
/// sil @pb_foo: $(Float, (Float) -> Float) -> Float {
/// bb0(%0: $Float, %pb_sin: $(Float) -> Float):
/// %derivative_of_sin = apply %pb_sin(%0): $(Float) -> Float
/// return %derivative_of_sin: Float
/// }
///
/// //============== After closure specialization ==============//
/// sil @vjp_foo: $(Float) -> (originalResult: Float, pullback: (Float) -> Float) {
/// bb0(%0: $Float):
/// %originalResult = apply @sin(%0): $(Float) -> Float
///
/// // Before the optimization, pullback of `foo` used to take a closure for computing
/// // pullback of `sin`. Now, the specialized pullback of `foo` takes the arguments that
/// // pullback of `sin` used to close over and pullback of `sin` is instead copied over
/// // inside pullback of `foo`.
/// %specialized_pb_foo = function_ref @specialized_pb_foo: $@convention(thin) (Float, Float) -> Float
/// %partially_applied_pb_foo = partial_apply %specialized_pb_foo(%0): $(Float, Float) -> Float
///
/// return (%originalResult, %partially_applied_pb_foo)
/// }
///
/// sil @specialized_pb_foo: $(Float, Float) -> Float {
/// bb0(%0: $Float, %1: $Float):
/// %2 = partial_apply @pb_sin(%1): $(Float) -> Float
/// %3 = apply %2(): $() -> Float
/// return %3: $Float
/// }
/// ```
import AST
import SIL
import SILBridging
private let verbose = false
private func log(_ message: @autoclosure () -> String) {
if verbose {
print("### \(message())")
}
}
// =========== Entry point =========== //
let generalClosureSpecialization = FunctionPass(name: "experimental-swift-based-closure-specialization") {
(function: Function, context: FunctionPassContext) in
// TODO: Implement general closure specialization optimization
print("NOT IMPLEMENTED")
}
let autodiffClosureSpecialization = FunctionPass(name: "autodiff-closure-specialization") {
(function: Function, context: FunctionPassContext) in
guard !function.isDefinedExternally,
function.isAutodiffVJP,
function.blocks.singleElement != nil else {
return
}
var remainingSpecializationRounds = 5
var callerModified = false
repeat {
var callSites = gatherCallSites(in: function, context)
if !callSites.isEmpty {
for callSite in callSites {
var (specializedFunction, alreadyExists) = getOrCreateSpecializedFunction(basedOn: callSite, context)
if !alreadyExists {
context.notifyNewFunction(function: specializedFunction, derivedFrom: callSite.applyCallee)
}
rewriteApplyInstruction(using: specializedFunction, callSite: callSite, context)
}
var deadClosures: InstructionWorklist = callSites.reduce(into: InstructionWorklist(context)) { deadClosures, callSite in
callSite.closureArgDescriptors
.map { $0.closure }
.forEach { deadClosures.pushIfNotVisited($0) }
}
defer {
deadClosures.deinitialize()
}
while let deadClosure = deadClosures.pop() {
let isDeleted = context.tryDeleteDeadClosure(closure: deadClosure as! SingleValueInstruction)
if isDeleted {
context.notifyInvalidatedStackNesting()
}
}
if context.needFixStackNesting {
function.fixStackNesting(context)
}
}
callerModified = callSites.count > 0
remainingSpecializationRounds -= 1
} while callerModified && remainingSpecializationRounds > 0
}
// =========== Top-level functions ========== //
private let specializationLevelLimit = 2
private func gatherCallSites(in caller: Function, _ context: FunctionPassContext) -> [CallSite] {
/// __Root__ closures created via `partial_apply` or `thin_to_thick_function` may be converted and reabstracted
/// before finally being used at an apply site. We do not want to handle these intermediate closures separately
/// as they are handled and cloned into the specialized function as part of the root closures. Therefore, we keep
/// track of these intermediate closures in a set.
///
/// This set is populated via the `markConvertedAndReabstractedClosuresAsUsed` function which is called when we're
/// handling the different uses of our root closures.
///
/// Below SIL example illustrates the above point.
/// ```
/// // The below set of a "root" closure and its reabstractions/conversions
/// // will be handled as a unit and the entire set will be copied over
/// // in the specialized version of `takesClosure` if we determine that we
/// // can specialize `takesClosure` against its closure argument.
/// __
/// %someFunction = function_ref @someFunction: $@convention(thin) (Int, Int) -> Int \
/// %rootClosure = partial_apply [callee_guaranteed] %someFunction (%someInt): $(Int, Int) -> Int \
/// %thunk = function_ref @reabstractionThunk : $@convention(thin) (@callee_guaranteed (Int) -> Int) -> @out Int /
/// %reabstractedClosure = partial_apply [callee_guaranteed] %thunk(%rootClosure) : /
/// $@convention(thin) (@callee_guaranteed (Int) -> Int) -> @out Int __/
///
/// %takesClosure = function_ref @takesClosure : $@convention(thin) (@owned @callee_guaranteed (Int) -> @out Int) -> Int
/// %result = partial_apply %takesClosure(%reabstractedClosure) : $@convention(thin) (@owned @callee_guaranteed () -> @out Int) -> Int
/// ret %result
/// ```
var convertedAndReabstractedClosures = InstructionSet(context)
defer {
convertedAndReabstractedClosures.deinitialize()
}
var callSiteMap = CallSiteMap()
for inst in caller.instructions {
if !convertedAndReabstractedClosures.contains(inst),
let rootClosure = inst.asSupportedClosure
{
updateCallSites(for: rootClosure, in: &callSiteMap,
convertedAndReabstractedClosures: &convertedAndReabstractedClosures, context)
}
}
return callSiteMap.callSites
}
private func getOrCreateSpecializedFunction(basedOn callSite: CallSite, _ context: FunctionPassContext)
-> (function: Function, alreadyExists: Bool)
{
let specializedFunctionName = callSite.specializedCalleeName(context)
if let specializedFunction = context.lookupFunction(name: specializedFunctionName) {
return (specializedFunction, true)
}
let applySiteCallee = callSite.applyCallee
let specializedParameters = applySiteCallee.convention.getSpecializedParameters(basedOn: callSite)
let specializedFunction =
context.createFunctionForClosureSpecialization(from: applySiteCallee, withName: specializedFunctionName,
withParams: specializedParameters,
withSerialization: applySiteCallee.isSerialized)
context.buildSpecializedFunction(specializedFunction: specializedFunction,
buildFn: { (emptySpecializedFunction, functionPassContext) in
let closureSpecCloner = SpecializationCloner(emptySpecializedFunction: emptySpecializedFunction, functionPassContext)
closureSpecCloner.cloneAndSpecializeFunctionBody(using: callSite)
})
return (specializedFunction, false)
}
private func rewriteApplyInstruction(using specializedCallee: Function, callSite: CallSite,
_ context: FunctionPassContext) {
let newApplyArgs = callSite.getArgumentsForSpecializedApply(of: specializedCallee)
for newApplyArg in newApplyArgs {
if case let .PreviouslyCaptured(capturedArg, needsRetain, parentClosureArgIndex) = newApplyArg,
needsRetain
{
let closureArgDesc = callSite.closureArgDesc(at: parentClosureArgIndex)!
var builder = Builder(before: closureArgDesc.closure, context)
// TODO: Support only OSSA instructions once the OSSA elimination pass is moved after all function optimization
// passes.
if callSite.applySite.parentBlock != closureArgDesc.closure.parentBlock {
// Emit the retain and release that keeps the argument live across the callee using the closure.
builder.createRetainValue(operand: capturedArg)
for instr in closureArgDesc.lifetimeFrontier {
builder = Builder(before: instr, context)
builder.createReleaseValue(operand: capturedArg)
}
// Emit the retain that matches the captured argument by the partial_apply in the callee that is consumed by
// the partial_apply.
builder = Builder(before: callSite.applySite, context)
builder.createRetainValue(operand: capturedArg)
} else {
builder.createRetainValue(operand: capturedArg)
}
}
}
// Rewrite apply instruction
var builder = Builder(before: callSite.applySite, context)
let oldApply = callSite.applySite as! PartialApplyInst
let funcRef = builder.createFunctionRef(specializedCallee)
let capturedArgs = Array(newApplyArgs.map { $0.value })
let newApply = builder.createPartialApply(function: funcRef, substitutionMap: SubstitutionMap(),
capturedArguments: capturedArgs, calleeConvention: oldApply.calleeConvention,
hasUnknownResultIsolation: oldApply.hasUnknownResultIsolation,
isOnStack: oldApply.isOnStack)
builder = Builder(before: callSite.applySite.next!, context)
// TODO: Support only OSSA instructions once the OSSA elimination pass is moved after all function optimization
// passes.
for closureArgDesc in callSite.closureArgDescriptors {
if closureArgDesc.isClosureConsumed,
!closureArgDesc.isPartialApplyOnStack,
!closureArgDesc.parameterInfo.isTrivialNoescapeClosure
{
builder.createReleaseValue(operand: closureArgDesc.closure)
}
}
oldApply.uses.replaceAll(with: newApply, context)
context.erase(instruction: oldApply)
}
// ===================== Utility functions and extensions ===================== //
private func updateCallSites(for rootClosure: SingleValueInstruction, in callSiteMap: inout CallSiteMap,
convertedAndReabstractedClosures: inout InstructionSet, _ context: FunctionPassContext) {
var rootClosurePossibleLiveRange = InstructionRange(begin: rootClosure, context)
defer {
rootClosurePossibleLiveRange.deinitialize()
}
var rootClosureApplies = OperandWorklist(context)
defer {
rootClosureApplies.deinitialize()
}
// A "root" closure undergoing conversions and/or reabstractions has additional restrictions placed upon it, in order
// for a call site to be specialized against it. We handle conversion/reabstraction uses before we handle apply uses
// to gather the parameters required to evaluate these restrictions or to skip call site uses of "unsupported"
// closures altogether.
//
// There are currently 2 restrictions that are evaluated prior to specializing a callsite against a converted and/or
// reabstracted closure -
// 1. A reabstracted root closure can only be specialized against, if the reabstracted closure is ultimately passed
// trivially (as a noescape+thick function) into the call site.
//
// 2. A root closure may be a partial_apply [stack], in which case we need to make sure that all mark_dependence
// bases for it will be available in the specialized callee in case the call site is specialized against this root
// closure.
let (foundUnexpectedUse, haveUsedReabstraction) =
handleNonApplies(for: rootClosure, rootClosureApplies: &rootClosureApplies,
rootClosurePossibleLiveRange: &rootClosurePossibleLiveRange, context);
if foundUnexpectedUse {
return
}
let intermediateClosureArgDescriptorData =
handleApplies(for: rootClosure, callSiteMap: &callSiteMap, rootClosureApplies: &rootClosureApplies,
rootClosurePossibleLiveRange: &rootClosurePossibleLiveRange,
convertedAndReabstractedClosures: &convertedAndReabstractedClosures,
haveUsedReabstraction: haveUsedReabstraction, context)
finalizeCallSites(for: rootClosure, in: &callSiteMap,
rootClosurePossibleLiveRange: rootClosurePossibleLiveRange,
intermediateClosureArgDescriptorData: intermediateClosureArgDescriptorData, context)
}
/// Handles all non-apply direct and transitive uses of `rootClosure`.
///
/// Returns:
/// haveUsedReabstraction - whether the root closure is reabstracted via a thunk
/// foundUnexpectedUse - whether the root closure is directly or transitively used in an instruction that we don't know
/// how to handle. If true, then `rootClosure` should not be specialized against.
private func handleNonApplies(for rootClosure: SingleValueInstruction,
rootClosureApplies: inout OperandWorklist,
rootClosurePossibleLiveRange: inout InstructionRange,
_ context: FunctionPassContext)
-> (foundUnexpectedUse: Bool, haveUsedReabstraction: Bool)
{
var foundUnexpectedUse = false
var haveUsedReabstraction = false
/// The root closure or an intermediate closure created by reabstracting the root closure may be a `partial_apply
/// [stack]` and we need to make sure that all `mark_dependence` bases for this `onStack` closure will be available in
/// the specialized callee, in case the call site is specialized against this root closure.
///
/// `possibleMarkDependenceBases` keeps track of all potential values that may be used as bases for creating
/// `mark_dependence`s for our `onStack` root/reabstracted closures. For root closures these values are non-trivial
/// closure captures (which are always available as function arguments in the specialized callee). For reabstracted
/// closures these values may be the root closure or its conversions (below is a short SIL example representing this
/// case).
/// ```
/// %someFunction = function_ref @someFunction : $@convention(thin) (Int) -> Int
/// %rootClosure = partial_apply [callee_guaranteed] %someFunction(%someInt) : $@convention(thin) (Int) -> Int
/// %noescapeRootClosure = convert_escape_to_noescape %rootClosure : $@callee_guaranteed () -> Int to $@noescape @callee_guaranteed () -> Int
/// %thunk = function_ref @reabstractionThunk : $@convention(thin) (@noescape @callee_guaranteed () -> Int) -> @out Int
/// %thunkedRootClosure = partial_apply [callee_guaranteed] [on_stack] %thunk(%noescapeRootClosure) : $@convention(thin) (@noescape @callee_guaranteed () -> Int) -> @out Int
/// %dependency = mark_dependence %thunkedRootClosure : $@noescape @callee_guaranteed () -> @out Int on %noescapeClosure : $@noescape @callee_guaranteed () -> Int
/// %takesClosure = function_ref @takesClosure : $@convention(thin) (@owned @noescape @callee_guaranteed () -> @out Int)
/// %ret = apply %takesClosure(%dependency) : $@convention(thin) (@owned @noescape @callee_guaranteed () -> @out Int)
/// ```
///
/// Any value outside of the aforementioned values is not going to be available in the specialized callee and a
/// `mark_dependence` of the root closure on such a value means that we cannot specialize the call site against it.
var possibleMarkDependenceBases = ValueSet(context)
defer {
possibleMarkDependenceBases.deinitialize()
}
var rootClosureConversionsAndReabstractions = OperandWorklist(context)
rootClosureConversionsAndReabstractions.pushIfNotVisited(contentsOf: rootClosure.uses)
defer {
rootClosureConversionsAndReabstractions.deinitialize()
}
if let pai = rootClosure as? PartialApplyInst {
for arg in pai.arguments {
possibleMarkDependenceBases.insert(arg)
}
}
while let use = rootClosureConversionsAndReabstractions.pop() {
switch use.instruction {
case let cfi as ConvertFunctionInst:
rootClosureConversionsAndReabstractions.pushIfNotVisited(contentsOf: cfi.uses)
possibleMarkDependenceBases.insert(cfi)
rootClosurePossibleLiveRange.insert(use.instruction)
case let cvt as ConvertEscapeToNoEscapeInst:
rootClosureConversionsAndReabstractions.pushIfNotVisited(contentsOf: cvt.uses)
possibleMarkDependenceBases.insert(cvt)
rootClosurePossibleLiveRange.insert(use.instruction)
case let pai as PartialApplyInst:
if !pai.isPullbackInResultOfAutodiffVJP,
pai.isSupportedClosure,
pai.isPartialApplyOfThunk,
// Argument must be a closure
pai.arguments[0].type.isThickFunction
{
rootClosureConversionsAndReabstractions.pushIfNotVisited(contentsOf: pai.uses)
possibleMarkDependenceBases.insert(pai)
rootClosurePossibleLiveRange.insert(use.instruction)
haveUsedReabstraction = true
} else if pai.isPullbackInResultOfAutodiffVJP {
rootClosureApplies.pushIfNotVisited(use)
}
case let mv as MoveValueInst:
rootClosureConversionsAndReabstractions.pushIfNotVisited(contentsOf: mv.uses)
possibleMarkDependenceBases.insert(mv)
rootClosurePossibleLiveRange.insert(use.instruction)
case let mdi as MarkDependenceInst:
if possibleMarkDependenceBases.contains(mdi.base),
mdi.value == use.value,
mdi.value.type.isNoEscapeFunction,
mdi.value.type.isThickFunction
{
rootClosureConversionsAndReabstractions.pushIfNotVisited(contentsOf: mdi.uses)
rootClosurePossibleLiveRange.insert(use.instruction)
}
case is CopyValueInst,
is DestroyValueInst,
is RetainValueInst,
is ReleaseValueInst,
is StrongRetainInst,
is StrongReleaseInst:
rootClosurePossibleLiveRange.insert(use.instruction)
case let ti as TupleInst:
if ti.parentFunction.isAutodiffVJP,
let returnInst = ti.parentFunction.returnInstruction,
ti == returnInst.returnedValue
{
// This is the pullback closure returned from an Autodiff VJP and we don't need to handle it.
} else {
fallthrough
}
default:
foundUnexpectedUse = true
log("Found unexpected direct or transitive user of root closure: \(use.instruction)")
return (foundUnexpectedUse, haveUsedReabstraction)
}
}
return (foundUnexpectedUse, haveUsedReabstraction)
}
private typealias IntermediateClosureArgDescriptorDatum = (applySite: SingleValueInstruction, closureArgIndex: Int, paramInfo: ParameterInfo)
private func handleApplies(for rootClosure: SingleValueInstruction, callSiteMap: inout CallSiteMap,
rootClosureApplies: inout OperandWorklist,
rootClosurePossibleLiveRange: inout InstructionRange,
convertedAndReabstractedClosures: inout InstructionSet, haveUsedReabstraction: Bool,
_ context: FunctionPassContext) -> [IntermediateClosureArgDescriptorDatum]
{
var intermediateClosureArgDescriptorData: [IntermediateClosureArgDescriptorDatum] = []
while let use = rootClosureApplies.pop() {
rootClosurePossibleLiveRange.insert(use.instruction)
// TODO [extend to general swift]: Handle full apply sites
guard let pai = use.instruction as? PartialApplyInst else {
continue
}
// TODO: Handling generic closures may be possible but is not yet implemented
if pai.hasSubstitutions || !pai.calleeIsDynamicFunctionRef || !pai.isPullbackInResultOfAutodiffVJP {
continue
}
guard let callee = pai.referencedFunction else {
continue
}
if callee.isDefinedExternally {
continue
}
// Don't specialize non-fragile (read as non-serialized) callees if the caller is fragile; the specialized callee
// will have shared linkage, and thus cannot be referenced from the fragile caller.
let caller = rootClosure.parentFunction
if caller.isSerialized && !callee.isSerialized {
continue
}
// If the callee uses a dynamic Self, we cannot specialize it, since the resulting specialization might no longer
// have 'self' as the last parameter.
//
// TODO: We could fix this by inserting new arguments more carefully, or changing how we model dynamic Self
// altogether.
if callee.mayBindDynamicSelf {
continue
}
// Proceed if the closure is passed as an argument (and not called). If it is called we have nothing to do.
//
// `closureArgumentIndex` is the index of the closure in the callee's argument list.
guard let closureArgumentIndex = pai.calleeArgumentIndex(of: use) else {
continue
}
// Ok, we know that we can perform the optimization but not whether or not the optimization is profitable. Check if
// the closure is actually called in the callee (or in a function called by the callee).
if !isClosureApplied(in: callee, closureArgIndex: closureArgumentIndex) {
continue
}
let onlyHaveThinToThickClosure = rootClosure is ThinToThickFunctionInst && !haveUsedReabstraction
guard let closureParamInfo = pai.operandConventions[parameter: use.index] else {
fatalError("While handling apply uses, parameter info not found for operand: \(use)!")
}
// If we are going to need to release the copied over closure, we must make sure that we understand all the exit
// blocks, i.e., they terminate with an instruction that clearly indicates whether to release the copied over
// closure or leak it.
if closureParamInfo.convention.isGuaranteed,
!onlyHaveThinToThickClosure,
!callee.blocks.allSatisfy({ $0.isReachableExitBlock || $0.terminator is UnreachableInst })
{
continue
}
// Functions with a readnone, readonly or releasenone effect and a nontrivial context cannot be specialized.
// Inserting a release in such a function results in miscompilation after other optimizations. For now, the
// specialization is disabled.
//
// TODO: A @noescape closure should never be converted to an @owned argument regardless of the function's effect
// attribute.
if !callee.effectAllowsSpecialization && !onlyHaveThinToThickClosure {
continue
}
// Avoid an infinite specialization loop caused by repeated runs of ClosureSpecializer and CapturePropagation.
// CapturePropagation propagates constant function-literals. Such function specializations can then be optimized
// again by the ClosureSpecializer and so on. This happens if a closure argument is called _and_ referenced in
// another closure, which is passed to a recursive call. E.g.
//
// func foo(_ c: @escaping () -> ()) {
// c() foo({ c() })
// }
//
// A limit of 2 is good enough and will not be exceed in "regular" optimization scenarios.
let closureCallee = rootClosure is PartialApplyInst
? (rootClosure as! PartialApplyInst).referencedFunction!
: (rootClosure as! ThinToThickFunctionInst).referencedFunction!
if closureCallee.specializationLevel > specializationLevelLimit {
continue
}
if haveUsedReabstraction {
markConvertedAndReabstractedClosuresAsUsed(rootClosure: rootClosure, convertedAndReabstractedClosure: use.value,
convertedAndReabstractedClosures: &convertedAndReabstractedClosures)
}
if callSiteMap[pai] == nil {
callSiteMap.insert(key: pai, value: CallSite(applySite: pai))
}
intermediateClosureArgDescriptorData
.append((applySite: pai, closureArgIndex: closureArgumentIndex, paramInfo: closureParamInfo))
}
return intermediateClosureArgDescriptorData
}
/// Finalizes the call sites for a given root closure by adding a corresponding `ClosureArgDescriptor`
/// to all call sites where the closure is ultimately passed as an argument.
private func finalizeCallSites(for rootClosure: SingleValueInstruction, in callSiteMap: inout CallSiteMap,
rootClosurePossibleLiveRange: InstructionRange,
intermediateClosureArgDescriptorData: [IntermediateClosureArgDescriptorDatum],
_ context: FunctionPassContext)
{
let closureInfo = ClosureInfo(closure: rootClosure, lifetimeFrontier: Array(rootClosurePossibleLiveRange.ends))
for (applySite, closureArgumentIndex, parameterInfo) in intermediateClosureArgDescriptorData {
guard var callSite = callSiteMap[applySite] else {
fatalError("While finalizing call sites, call site descriptor not found for call site: \(applySite)!")
}
let closureArgDesc = ClosureArgDescriptor(closureInfo: closureInfo, closureArgumentIndex: closureArgumentIndex,
parameterInfo: parameterInfo)
callSite.appendClosureArgDescriptor(closureArgDesc)
callSiteMap.update(key: applySite, value: callSite)
}
}
private func isClosureApplied(in callee: Function, closureArgIndex index: Int) -> Bool {
func inner(_ callee: Function, _ index: Int, _ handledFuncs: inout Set<Function>) -> Bool {
let closureArg = callee.argument(at: index)
for use in closureArg.uses {
if let fai = use.instruction as? ApplySite {
if fai.callee == closureArg {
return true
}
if let faiCallee = fai.referencedFunction,
!faiCallee.blocks.isEmpty,
handledFuncs.insert(faiCallee).inserted,
handledFuncs.count <= recursionBudget
{
if inner(faiCallee, fai.calleeArgumentIndex(of: use)!, &handledFuncs) {
return true
}
}
}
}
return false
}
// Limit the number of recursive calls to not go into exponential behavior in corner cases.
let recursionBudget = 8
var handledFuncs: Set<Function> = []
return inner(callee, index, &handledFuncs)
}
/// Marks any converted/reabstracted closures, corresponding to a given root closure as used. We do not want to
/// look at such closures separately as during function specialization they will be handled as part of the root closure.
private func markConvertedAndReabstractedClosuresAsUsed(rootClosure: Value, convertedAndReabstractedClosure: Value,
convertedAndReabstractedClosures: inout InstructionSet)
{
if convertedAndReabstractedClosure != rootClosure {
switch convertedAndReabstractedClosure {
case let pai as PartialApplyInst:
convertedAndReabstractedClosures.insert(pai)
return
markConvertedAndReabstractedClosuresAsUsed(rootClosure: rootClosure,
convertedAndReabstractedClosure: pai.arguments[0],
convertedAndReabstractedClosures: &convertedAndReabstractedClosures)
case let cvt as ConvertFunctionInst:
convertedAndReabstractedClosures.insert(cvt)
return
markConvertedAndReabstractedClosuresAsUsed(rootClosure: rootClosure,
convertedAndReabstractedClosure: cvt.fromFunction,
convertedAndReabstractedClosures: &convertedAndReabstractedClosures)
case let cvt as ConvertEscapeToNoEscapeInst:
convertedAndReabstractedClosures.insert(cvt)
return
markConvertedAndReabstractedClosuresAsUsed(rootClosure: rootClosure,
convertedAndReabstractedClosure: cvt.fromFunction,
convertedAndReabstractedClosures: &convertedAndReabstractedClosures)
case let mdi as MarkDependenceInst:
convertedAndReabstractedClosures.insert(mdi)
return
markConvertedAndReabstractedClosuresAsUsed(rootClosure: rootClosure, convertedAndReabstractedClosure: mdi.value,
convertedAndReabstractedClosures: &convertedAndReabstractedClosures)
default:
log("Parent function of callSite: \(rootClosure.parentFunction)")
log("Root closure: \(rootClosure)")
log("Converted/reabstracted closure: \(convertedAndReabstractedClosure)")
fatalError("While marking converted/reabstracted closures as used, found unexpected instruction: \(convertedAndReabstractedClosure)")
}
}
}
private extension SpecializationCloner {
func cloneAndSpecializeFunctionBody(using callSite: CallSite) {
self.cloneEntryBlockArgsWithoutOrigClosures(usingOrigCalleeAt: callSite)
let (allSpecializedEntryBlockArgs, closureArgIndexToAllClonedReleasableClosures) = cloneAllClosures(at: callSite)
self.cloneFunctionBody(from: callSite.applyCallee, entryBlockArguments: allSpecializedEntryBlockArgs)
self.insertCleanupCodeForClonedReleasableClosures(
from: callSite, closureArgIndexToAllClonedReleasableClosures: closureArgIndexToAllClonedReleasableClosures)
}
private func cloneEntryBlockArgsWithoutOrigClosures(usingOrigCalleeAt callSite: CallSite) {
let originalEntryBlock = callSite.applyCallee.entryBlock
let clonedFunction = self.cloned
let clonedEntryBlock = self.entryBlock
originalEntryBlock.arguments
.enumerated()
.filter { index, _ in !callSite.hasClosureArg(at: index) }
.forEach { _, arg in
let clonedEntryBlockArgType = arg.type.getLoweredType(in: clonedFunction)
let clonedEntryBlockArg = clonedEntryBlock.addFunctionArgument(type: clonedEntryBlockArgType, self.context)
clonedEntryBlockArg.copyFlags(from: arg as! FunctionArgument)
}
}
/// Clones all closures, originally passed to the callee at the given callSite, into the specialized function.
///
/// Returns the following -
/// - allSpecializedEntryBlockArgs: Complete list of entry block arguments for the specialized function. This includes
/// the original arguments to the function (minus the closure arguments) and the arguments representing the values
/// originally captured by the skipped closure arguments.
///
/// - closureArgIndexToAllClonedReleasableClosures: Mapping from a closure's argument index at `callSite` to the list
/// of corresponding releasable closures cloned into the specialized function. We have a "list" because we clone
/// "closure chains", which consist of a "root" closure and its conversions/reabstractions. This map is used to
/// generate cleanup code for the cloned closures in the specialized function.
private func cloneAllClosures(at callSite: CallSite)
-> (allSpecializedEntryBlockArgs: [Value],
closureArgIndexToAllClonedReleasableClosures: [Int: [SingleValueInstruction]])
{
func entryBlockArgsWithOrigClosuresSkipped() -> [Value?] {
var clonedNonClosureEntryBlockArgs = self.entryBlock.arguments.makeIterator()
return callSite.applyCallee
.entryBlock
.arguments
.enumerated()
.reduce(into: []) { result, origArgTuple in
let (index, _) = origArgTuple
if !callSite.hasClosureArg(at: index) {
result.append(clonedNonClosureEntryBlockArgs.next())
} else {
result.append(Optional.none)
}
}
}
var entryBlockArgs: [Value?] = entryBlockArgsWithOrigClosuresSkipped()
var closureArgIndexToAllClonedReleasableClosures: [Int: [SingleValueInstruction]] = [:]
for closureArgDesc in callSite.closureArgDescriptors {
let (finalClonedReabstractedClosure, allClonedReleasableClosures) =
self.cloneClosureChain(representedBy: closureArgDesc, at: callSite)
entryBlockArgs[closureArgDesc.closureArgIndex] = finalClonedReabstractedClosure
closureArgIndexToAllClonedReleasableClosures[closureArgDesc.closureArgIndex] = allClonedReleasableClosures
}
return (entryBlockArgs.map { $0! }, closureArgIndexToAllClonedReleasableClosures)
}
private func cloneClosureChain(representedBy closureArgDesc: ClosureArgDescriptor, at callSite: CallSite)
-> (finalClonedReabstractedClosure: SingleValueInstruction, allClonedReleasableClosures: [SingleValueInstruction])
{
let (origToClonedValueMap, capturedArgRange) = self.addEntryBlockArgs(forValuesCapturedBy: closureArgDesc)
let clonedFunction = self.cloned
let clonedEntryBlock = self.entryBlock
let clonedClosureArgs = Array(clonedEntryBlock.arguments[capturedArgRange])
let builder = clonedEntryBlock.instructions.isEmpty
? Builder(atStartOf: clonedFunction, self.context)
: Builder(atEndOf: clonedEntryBlock, location: clonedEntryBlock.instructions.last!.location, self.context)
let clonedRootClosure = builder.cloneRootClosure(representedBy: closureArgDesc, capturedArguments: clonedClosureArgs)
let (finalClonedReabstractedClosure, releasableClonedReabstractedClosures) =
builder.cloneRootClosureReabstractions(rootClosure: closureArgDesc.closure, clonedRootClosure: clonedRootClosure,
reabstractedClosure: callSite.appliedArgForClosure(at: closureArgDesc.closureArgIndex)!,
origToClonedValueMap: origToClonedValueMap,
self.context)
let allClonedReleasableClosures = [clonedRootClosure] + releasableClonedReabstractedClosures
return (finalClonedReabstractedClosure, allClonedReleasableClosures)
}
private func addEntryBlockArgs(forValuesCapturedBy closureArgDesc: ClosureArgDescriptor)
-> (origToClonedValueMap: [HashableValue: Value], capturedArgRange: Range<Int>)
{
var origToClonedValueMap: [HashableValue: Value] = [:]
let clonedFunction = self.cloned
let clonedEntryBlock = self.entryBlock
let capturedArgRangeStart = clonedEntryBlock.arguments.count
for arg in closureArgDesc.arguments {
let capturedArg = clonedEntryBlock.addFunctionArgument(type: arg.type.getLoweredType(in: clonedFunction),
self.context)
origToClonedValueMap[arg] = capturedArg
}
let capturedArgRangeEnd = clonedEntryBlock.arguments.count
let capturedArgRange = capturedArgRangeStart == capturedArgRangeEnd
? 0..<0
: capturedArgRangeStart..<capturedArgRangeEnd
return (origToClonedValueMap, capturedArgRange)
}
private func insertCleanupCodeForClonedReleasableClosures(from callSite: CallSite,
closureArgIndexToAllClonedReleasableClosures: [Int: [SingleValueInstruction]])
{
for closureArgDesc in callSite.closureArgDescriptors {
let allClonedReleasableClosures = closureArgIndexToAllClonedReleasableClosures[closureArgDesc.closureArgIndex]!
// Insert a `destroy_value`, for all releasable closures, in all reachable exit BBs if the closure was passed as a
// guaranteed parameter or its type was noescape+thick. This is b/c the closure was passed at +0 originally and we
// need to balance the initial increment of the newly created closure(s).
if closureArgDesc.isClosureGuaranteed || closureArgDesc.parameterInfo.isTrivialNoescapeClosure,
!allClonedReleasableClosures.isEmpty
{
for exitBlock in callSite.reachableExitBBsInCallee {
let clonedExitBlock = self.getClonedBlock(for: exitBlock)
let terminator = clonedExitBlock.terminator is UnreachableInst
? clonedExitBlock.terminator.previous!
: clonedExitBlock.terminator
let builder = Builder(before: terminator, self.context)
for closure in allClonedReleasableClosures {
if let pai = closure as? PartialApplyInst {
builder.destroyPartialApply(pai: pai, self.context)
}
}
}
}
}
if (self.context.needFixStackNesting) {
self.cloned.fixStackNesting(self.context)
}
}
}
private extension [HashableValue: Value] {
subscript(key: Value) -> Value? {
get {
self[key.hashable]
}
set {
self[key.hashable] = newValue
}
}
}
private extension CallSite {
enum NewApplyArg {
case Original(Value)
// TODO: This can be simplified in OSSA. We can just do a copy_value for everything - except for addresses???
case PreviouslyCaptured(
value: Value, needsRetain: Bool, parentClosureArgIndex: Int)
var value: Value {
switch self {
case let .Original(originalArg):
return originalArg
case let .PreviouslyCaptured(capturedArg, _, _):
return capturedArg
}
}
}
func getArgumentsForSpecializedApply(of specializedCallee: Function) -> [NewApplyArg]
{
var newApplyArgs: [NewApplyArg] = []
// Original arguments
for (applySiteIndex, arg) in self.applySite.arguments.enumerated() {
let calleeArgIndex = self.applySite.unappliedArgumentCount + applySiteIndex
if !self.hasClosureArg(at: calleeArgIndex) {
newApplyArgs.append(.Original(arg))
}
}
// Previously captured arguments
for closureArgDesc in self.closureArgDescriptors {
for (applySiteIndex, capturedArg) in closureArgDesc.arguments.enumerated() {
let needsRetain = closureArgDesc.isCapturedArgNonTrivialObjectType(applySiteIndex: applySiteIndex,
specializedCallee: specializedCallee)
newApplyArgs.append(.PreviouslyCaptured(value: capturedArg, needsRetain: needsRetain,
parentClosureArgIndex: closureArgDesc.closureArgIndex))
}
}
return newApplyArgs
}
}
private extension ClosureArgDescriptor {
func isCapturedArgNonTrivialObjectType(applySiteIndex: Int, specializedCallee: Function) -> Bool {
precondition(self.closure is PartialApplyInst, "ClosureArgDescriptor is not for a partial_apply closure!")
let capturedArg = self.arguments[applySiteIndex]
let pai = self.closure as! PartialApplyInst
let capturedArgIndexInCallee = applySiteIndex + pai.unappliedArgumentCount
let capturedArgConvention = self.callee.argumentConventions[capturedArgIndexInCallee]
return !capturedArg.type.isTrivial(in: specializedCallee) &&
!capturedArgConvention.isAllowedIndirectConvForClosureSpec
}
}
private extension Builder {
func cloneRootClosure(representedBy closureArgDesc: ClosureArgDescriptor, capturedArguments: [Value])
-> SingleValueInstruction
{
let function = self.createFunctionRef(closureArgDesc.callee)
if let pai = closureArgDesc.closure as? PartialApplyInst {
return self.createPartialApply(function: function, substitutionMap: SubstitutionMap(),
capturedArguments: capturedArguments, calleeConvention: pai.calleeConvention,
hasUnknownResultIsolation: pai.hasUnknownResultIsolation,
isOnStack: pai.isOnStack)
} else {
return self.createThinToThickFunction(thinFunction: function, resultType: closureArgDesc.closure.type)
}
}
func cloneRootClosureReabstractions(rootClosure: Value, clonedRootClosure: Value, reabstractedClosure: Value,
origToClonedValueMap: [HashableValue: Value], _ context: FunctionPassContext)
-> (finalClonedReabstractedClosure: SingleValueInstruction, releasableClonedReabstractedClosures: [PartialApplyInst])
{
func inner(_ rootClosure: Value, _ clonedRootClosure: Value, _ reabstractedClosure: Value,
_ releasableClonedReabstractedClosures: inout [PartialApplyInst],
_ origToClonedValueMap: inout [HashableValue: Value]) -> Value {
switch reabstractedClosure {
case let reabstractedClosure where reabstractedClosure == rootClosure:
origToClonedValueMap[reabstractedClosure] = clonedRootClosure
return clonedRootClosure
case let cvt as ConvertFunctionInst:
let toBeReabstracted = inner(rootClosure, clonedRootClosure, cvt.fromFunction,
&releasableClonedReabstractedClosures, &origToClonedValueMap)
let reabstracted = self.createConvertFunction(originalFunction: toBeReabstracted, resultType: cvt.type,
withoutActuallyEscaping: cvt.withoutActuallyEscaping)
origToClonedValueMap[cvt] = reabstracted
return reabstracted
case let cvt as ConvertEscapeToNoEscapeInst:
let toBeReabstracted = inner(rootClosure, clonedRootClosure, cvt.fromFunction,
&releasableClonedReabstractedClosures, &origToClonedValueMap)
let reabstracted = self.createConvertEscapeToNoEscape(originalFunction: toBeReabstracted, resultType: cvt.type,
isLifetimeGuaranteed: true)
origToClonedValueMap[cvt] = reabstracted
return reabstracted
case let pai as PartialApplyInst:
let toBeReabstracted = inner(rootClosure, clonedRootClosure, pai.arguments[0],
&releasableClonedReabstractedClosures, &origToClonedValueMap)
guard let function = pai.referencedFunction else {
log("Parent function of callSite: \(rootClosure.parentFunction)")
log("Root closure: \(rootClosure)")
log("Unsupported reabstraction closure: \(pai)")
fatalError("Encountered unsupported reabstraction (via partial_apply) of root closure!")
}
let fri = self.createFunctionRef(function)
let reabstracted = self.createPartialApply(function: fri, substitutionMap: SubstitutionMap(),
capturedArguments: [toBeReabstracted],
calleeConvention: pai.calleeConvention,
hasUnknownResultIsolation: pai.hasUnknownResultIsolation,
isOnStack: pai.isOnStack)
releasableClonedReabstractedClosures.append(reabstracted)
origToClonedValueMap[pai] = reabstracted
return reabstracted
case let mdi as MarkDependenceInst:
let toBeReabstracted = inner(rootClosure, clonedRootClosure, mdi.value, &releasableClonedReabstractedClosures,
&origToClonedValueMap)
let base = origToClonedValueMap[mdi.base]!
let reabstracted = self.createMarkDependence(value: toBeReabstracted, base: base, kind: .Escaping)
origToClonedValueMap[mdi] = reabstracted
return reabstracted
default:
log("Parent function of callSite: \(rootClosure.parentFunction)")
log("Root closure: \(rootClosure)")
log("Converted/reabstracted closure: \(reabstractedClosure)")
fatalError("Encountered unsupported reabstraction of root closure: \(reabstractedClosure)")
}
}
var releasableClonedReabstractedClosures: [PartialApplyInst] = []
var origToClonedValueMap = origToClonedValueMap
let finalClonedReabstractedClosure = inner(rootClosure, clonedRootClosure, reabstractedClosure,
&releasableClonedReabstractedClosures, &origToClonedValueMap)
return (finalClonedReabstractedClosure as! SingleValueInstruction, releasableClonedReabstractedClosures)
}
func destroyPartialApply(pai: PartialApplyInst, _ context: FunctionPassContext){
// TODO: Support only OSSA instructions once the OSSA elimination pass is moved after all function optimization
// passes.
if pai.isOnStack {
// for arg in pai.arguments {
// self.createDestroyValue(operand: arg)
// }
// self.createDestroyValue(operand: pai)
if pai.parentFunction.hasOwnership {
// Under OSSA, the closure acts as an owned value whose lifetime is a borrow scope for the captures, so we need to
// end the borrow scope before ending the lifetimes of the captures themselves.
self.createDestroyValue(operand: pai)
self.destroyCapturedArgs(for: pai)
} else {
self.destroyCapturedArgs(for: pai)
self.createDeallocStack(pai)
context.notifyInvalidatedStackNesting()
}
} else {
if pai.parentFunction.hasOwnership {
self.createDestroyValue(operand: pai)
} else {
self.createReleaseValue(operand: pai)
}
}
}
}
private extension FunctionConvention {
func getSpecializedParameters(basedOn callSite: CallSite) -> [ParameterInfo] {
let applySiteCallee = callSite.applyCallee
var specializedParamInfoList: [ParameterInfo] = []
// Start by adding all original parameters except for the closure parameters.
let firstParamIndex = applySiteCallee.argumentConventions.firstParameterIndex
for (index, paramInfo) in applySiteCallee.convention.parameters.enumerated() {
let argIndex = index + firstParamIndex
if !callSite.hasClosureArg(at: argIndex) {
specializedParamInfoList.append(paramInfo)
}
}
// Now, append parameters captured by each of the original closure parameter.
//
// Captured parameters are always appended to the function signature. If the argument type of the captured
// parameter in the callee is:
// - direct and trivial, pass the new parameter as Direct_Unowned.
// - direct and non-trivial, pass the new parameter as Direct_Owned.
// - indirect, pass the new parameter using the same parameter convention as in
// the original closure.
for closureArgDesc in callSite.closureArgDescriptors {
if let closure = closureArgDesc.closure as? PartialApplyInst {
let closureCallee = closureArgDesc.callee
let closureCalleeConvention = closureCallee.convention
let unappliedArgumentCount = closure.unappliedArgumentCount - closureCalleeConvention.indirectSILResultCount
let prevCapturedParameters =
closureCalleeConvention
.parameters[unappliedArgumentCount...]
.enumerated()
.map { index, paramInfo in
let argIndexOfParam = closureCallee.argumentConventions.firstParameterIndex + unappliedArgumentCount + index
let argType = closureCallee.argumentTypes[argIndexOfParam]
return paramInfo.withSpecializedConvention(isArgTypeTrivial: argType.isTrivial(in: closureCallee))
}
specializedParamInfoList.append(contentsOf: prevCapturedParameters)
}
}
return specializedParamInfoList
}
}
private extension ParameterInfo {
func withSpecializedConvention(isArgTypeTrivial: Bool) -> Self {
let specializedParamConvention = self.convention.isAllowedIndirectConvForClosureSpec
? self.convention
: isArgTypeTrivial ? ArgumentConvention.directUnowned : ArgumentConvention.directOwned
return ParameterInfo(type: self.type, convention: specializedParamConvention, options: self.options,
hasLoweredAddresses: self.hasLoweredAddresses)
}
var isTrivialNoescapeClosure: Bool {
SILFunctionType_isTrivialNoescape(type.bridged)
}
}
private extension ArgumentConvention {
var isAllowedIndirectConvForClosureSpec: Bool {
switch self {
case .indirectInout, .indirectInoutAliasable:
return true
default:
return false
}
}
}
private extension PartialApplyInst {
/// True, if the closure obtained from this partial_apply is the
/// pullback returned from an autodiff VJP
var isPullbackInResultOfAutodiffVJP: Bool {
if self.parentFunction.isAutodiffVJP,
let use = self.uses.singleUse,
let tupleInst = use.instruction as? TupleInst,
let returnInst = self.parentFunction.returnInstruction,
tupleInst == returnInst.returnedValue
{
return true
}
return false
}
var isPartialApplyOfThunk: Bool {
if self.numArguments == 1,
let fun = self.referencedFunction,
fun.thunkKind == .reabstractionThunk || fun.thunkKind == .thunk,
self.arguments[0].type.isFunction,
self.arguments[0].type.isReferenceCounted(in: self.parentFunction) || self.callee.type.isThickFunction
{
return true
}
return false
}
var hasOnlyInoutIndirectArguments: Bool {
self.argumentOperands
.filter { !$0.value.type.isObject }
.allSatisfy { self.convention(of: $0)!.isInout }
}
}
private extension Instruction {
var asSupportedClosure: SingleValueInstruction? {
switch self {
case let tttf as ThinToThickFunctionInst where tttf.callee is FunctionRefInst:
return tttf
// TODO: figure out what to do with non-inout indirect arguments
// https://forums.swift.org/t/non-inout-indirect-types-not-supported-in-closure-specialization-optimization/70826
case let pai as PartialApplyInst where pai.callee is FunctionRefInst && pai.hasOnlyInoutIndirectArguments:
return pai
default:
return nil
}
}
var isSupportedClosure: Bool {
asSupportedClosure != nil
}
}
private extension ApplySite {
var calleeIsDynamicFunctionRef: Bool {
return !(callee is DynamicFunctionRefInst || callee is PreviousDynamicFunctionRefInst)
}
}
private extension Function {
var effectAllowsSpecialization: Bool {
switch self.effectAttribute {
case .readNone, .readOnly, .releaseNone: return false
default: return true
}
}
}
// ===================== Utility Types ===================== //
private struct OrderedDict<Key: Hashable, Value> {
private var valueIndexDict: [Key: Int] = [:]
private var entryList: [(Key, Value)] = []
subscript(key: Key) -> Value? {
if let index = valueIndexDict[key] {
return entryList[index].1
}
return nil
}
mutating func insert(key: Key, value: Value) {
if valueIndexDict[key] == nil {
valueIndexDict[key] = entryList.count
entryList.append((key, value))
}
}
mutating func update(key: Key, value: Value) {
if let index = valueIndexDict[key] {
entryList[index].1 = value
}
}
var keys: LazyMapSequence<Array<(Key, Value)>, Key> {
entryList.lazy.map { $0.0 }
}
var values: LazyMapSequence<Array<(Key, Value)>, Value> {
entryList.lazy.map { $0.1 }
}
}
private typealias CallSiteMap = OrderedDict<SingleValueInstruction, CallSite>
private extension CallSiteMap {
var callSites: [CallSite] {
Array(self.values)
}
}
/// Represents all the information required to represent a closure in isolation, i.e., outside of a callsite context
/// where the closure may be getting passed as an argument.
///
/// Composed with other information inside a `ClosureArgDescriptor` to represent a closure as an argument at a callsite.
private struct ClosureInfo {
let closure: SingleValueInstruction
let lifetimeFrontier: [Instruction]
init(closure: SingleValueInstruction, lifetimeFrontier: [Instruction]) {
self.closure = closure
self.lifetimeFrontier = lifetimeFrontier
}
}
/// Represents a closure as an argument at a callsite.
private struct ClosureArgDescriptor {
let closureInfo: ClosureInfo
/// The index of the closure in the callsite's argument list.
let closureArgumentIndex: Int
let parameterInfo: ParameterInfo
var closure: SingleValueInstruction {
closureInfo.closure
}
var lifetimeFrontier: [Instruction] {
closureInfo.lifetimeFrontier
}
var isPartialApplyOnStack: Bool {
if let pai = closure as? PartialApplyInst {
return pai.isOnStack
}
return false
}
var callee: Function {
if let pai = closure as? PartialApplyInst {
return pai.referencedFunction!
} else {
return (closure as! ThinToThickFunctionInst).referencedFunction!
}
}
var location: Location {
closure.location
}
var closureArgIndex: Int {
closureArgumentIndex
}
var closureParamInfo: ParameterInfo {
parameterInfo
}
var numArguments: Int {
if let pai = closure as? PartialApplyInst {
return pai.numArguments
} else {
return 0
}
}
var arguments: LazyMapSequence<OperandArray, Value> {
if let pai = closure as? PartialApplyInst {
return pai.arguments
}
return OperandArray.empty.lazy.map { $0.value } as LazyMapSequence<OperandArray, Value>
}
var isClosureGuaranteed: Bool {
closureParamInfo.convention.isGuaranteed
}
var isClosureConsumed: Bool {
closureParamInfo.convention.isConsumed
}
}
/// Represents a callsite containing one or more closure arguments.
private struct CallSite {
let applySite: ApplySite
var closureArgDescriptors: [ClosureArgDescriptor] = []
init(applySite: ApplySite) {
self.applySite = applySite
}
mutating func appendClosureArgDescriptor(_ descriptor: ClosureArgDescriptor) {
self.closureArgDescriptors.append(descriptor)
}
var applyCallee: Function {
applySite.referencedFunction!
}
var reachableExitBBsInCallee: [BasicBlock] {
applyCallee.blocks.filter { $0.isReachableExitBlock }
}
func hasClosureArg(at index: Int) -> Bool {
closureArgDescriptors.contains { $0.closureArgumentIndex == index }
}
func closureArgDesc(at index: Int) -> ClosureArgDescriptor? {
closureArgDescriptors.first { $0.closureArgumentIndex == index }
}
func appliedArgForClosure(at index: Int) -> Value? {
if let closureArgDesc = closureArgDesc(at: index) {
return applySite.arguments[closureArgDesc.closureArgIndex - applySite.unappliedArgumentCount]
}
return nil
}
func specializedCalleeName(_ context: FunctionPassContext) -> String {
let closureArgs = Array(self.closureArgDescriptors.map { $0.closure })
let closureIndices = Array(self.closureArgDescriptors.map { $0.closureArgIndex })
return context.mangle(withClosureArguments: closureArgs, closureArgIndices: closureIndices,
from: applyCallee)
}
}
// ===================== Unit tests ===================== //
let gatherCallSitesTest = FunctionTest("closure_specialize_gather_call_sites") { function, arguments, context in
print("Specializing closures in function: \(function.name)")
print("===============================================")
var callSites = gatherCallSites(in: function, context)
callSites.forEach { callSite in
print("PartialApply call site: \(callSite.applySite)")
print("Passed in closures: ")
for index in callSite.closureArgDescriptors.indices {
var closureArgDescriptor = callSite.closureArgDescriptors[index]
print("\(index+1). \(closureArgDescriptor.closureInfo.closure)")
}
}
print("\n")
}
let specializedFunctionSignatureAndBodyTest = FunctionTest(
"closure_specialize_specialized_function_signature_and_body") { function, arguments, context in
var callSites = gatherCallSites(in: function, context)
for callSite in callSites {
let (specializedFunction, _) = getOrCreateSpecializedFunction(basedOn: callSite, context)
print("Generated specialized function: \(specializedFunction.name)")
print("\(specializedFunction)\n")
}
}
let rewrittenCallerBodyTest = FunctionTest("closure_specialize_rewritten_caller_body") { function, arguments, context in
var callSites = gatherCallSites(in: function, context)
for callSite in callSites {
let (specializedFunction, _) = getOrCreateSpecializedFunction(basedOn: callSite, context)
rewriteApplyInstruction(using: specializedFunction, callSite: callSite, context)
print("Rewritten caller body for: \(function.name):")
print("\(function)\n")
}
}
|