-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathCanonicalizeBorrowScope.cpp
886 lines (779 loc) · 31.5 KB
/
CanonicalizeBorrowScope.cpp
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
//===--- CanonicalizeBorrowScope.cpp - Canonicalize OSSA borrow scopes ----===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2021 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
//
//===----------------------------------------------------------------------===//
///
/// TODO: Enable -canonical-ossa-rewrite-borrows by default (see
/// CopyPropagation).
///
/// TODO: Add support for load_borrows, and reborrows by using persistentCopies.
///
/// TODO: Hoist struct/tuple with multiple operands out of borrow scopes if that
/// ever happens. Consider modeling them as reborrows instead.
///
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "copy-propagation"
#include "swift/Basic/Assertions.h"
#include "swift/SILOptimizer/Utils/CanonicalizeBorrowScope.h"
#include "swift/Basic/Defer.h"
#include "swift/SIL/InstructionUtils.h"
#include "swift/SIL/OwnershipUtils.h"
#include "swift/SIL/Test.h"
#include "swift/SILOptimizer/Utils/CFGOptUtils.h"
#include "swift/SILOptimizer/Utils/CanonicalizeOSSALifetime.h"
#include "swift/SILOptimizer/Utils/DebugOptUtils.h"
#include "swift/SILOptimizer/Utils/InstructionDeleter.h"
#include "swift/SILOptimizer/Utils/ValueLifetime.h"
#include "llvm/ADT/Statistic.h"
using namespace swift;
//===----------------------------------------------------------------------===//
// MARK: Local utilities
//===----------------------------------------------------------------------===//
static bool hasValueOwnership(SILValue value) {
return value->getOwnershipKind() == OwnershipKind::Guaranteed ||
value->getOwnershipKind() == OwnershipKind::Owned;
}
static SingleValueInstruction *asCopyOrMove(SILValue v) {
if (auto *copy = dyn_cast<CopyValueInst>(v))
return copy;
if (auto *move = dyn_cast<MoveValueInst>(v))
return move;
return nullptr;
}
/// Delete a chain of unused copies and moves leading to \p v.
static void deleteCopyAndMoveChain(SILValue v, InstructionDeleter &deleter) {
while (auto *inst = asCopyOrMove(v)) {
if (!onlyHaveDebugUses(inst))
break;
v = inst->getOperand(CopyLikeInstruction::Src);
LLVM_DEBUG(llvm::dbgs() << " Deleting " << *inst);
++NumCopiesAndMovesEliminated;
deleter.forceDelete(inst);
}
}
//===----------------------------------------------------------------------===//
// MARK: Rewrite borrow scopes
//===----------------------------------------------------------------------===//
/// Does this instruction forward ownership, and can it be hoisted out of a
/// borrow scope or sunk to its uses?
///
/// Currently requires the first operand to forward ownership.
///
/// Handles:
/// OwnershipForwardingConversionInst (all kinds of ref casts)
/// OwnershipForwardingMultipleValueInstruction
/// (DestructureStruct, DestructureTuple)
/// FirstArgOwnershipForwardingSingleValueInst
/// (Object, Enum, UncheckedEnumData, Open/InitExistentialRef,
/// MarkDependence)
///
/// TODO:
/// Enum, InitExistential, MarkDependence
/// Struct, Tuple
/// SelectEnum, SwitchEnum, CheckCastBranch
bool CanonicalizeBorrowScope::isRewritableOSSAForward(SILInstruction *inst) {
if (!inst->isTriviallyDuplicatable())
return false;
// TODO: check other operands for dominance and even attempt to hoist them.
if (inst->getNumOperands() != 1)
return false;
if (!isa<OwnershipForwardingSingleValueInstruction>(inst) &&
!isa<OwnershipForwardingMultipleValueInstruction>(inst))
return false;
Operand *forwardedOper = &inst->getOperandRef(0);
// Trivial conversions do not need to be hoisted out of a borrow scope.
auto operOwnership = forwardedOper->getOperandOwnership();
if (operOwnership == OperandOwnership::TrivialUse)
return false;
// Don't mess with unowned conversions. They need to be copied immediately.
if (operOwnership != OperandOwnership::GuaranteedForwarding &&
operOwnership != OperandOwnership::ForwardingConsume) {
return false;
}
assert(operOwnership == OperandOwnership::GuaranteedForwarding ||
operOwnership == OperandOwnership::ForwardingConsume);
// Filter instructions that belong to a Forwarding*ValueInst mixin but
// cannot be converted to forward owned value (struct_extract).
if (!canOpcodeForwardOwnedValues(forwardedOper))
return false;
return true;
}
/// Return the root of a borrowed extended lifetime for \p def or invalid.
///
/// \p def may be any guaranteed value.
SILValue CanonicalizeBorrowScope::getCanonicalBorrowedDef(SILValue def) {
while (true) {
if (def->getOwnershipKind() != OwnershipKind::Guaranteed)
break;
if (auto borrowedVal = BorrowedValue(def)) {
// Any def's that aren't filtered out here must be handled by
// computeBorrowLiveness.
switch (borrowedVal.kind) {
case BorrowedValueKind::Invalid:
llvm_unreachable("Using invalid case?!");
case BorrowedValueKind::SILFunctionArgument:
case BorrowedValueKind::BeginBorrow:
return def;
case BorrowedValueKind::LoadBorrow:
case BorrowedValueKind::Phi:
case BorrowedValueKind::BeginApplyToken:
break;
}
}
// Look through hoistable guaranteed forwarding instructions on the
// use-def chain.
SILInstruction *defInst = def->getDefiningInstruction();
if (!defInst)
break;
if (!CanonicalizeBorrowScope::isRewritableOSSAForward(defInst))
break;
def = defInst->getOperand(0);
}
return SILValue();
}
bool CanonicalizeBorrowScope::computeBorrowLiveness() {
switch (borrowedValue.kind) {
case BorrowedValueKind::Invalid:
llvm_unreachable("Used invalid");
case BorrowedValueKind::SILFunctionArgument:
// For efficiency, function arguments skip liveness.
return true;
case BorrowedValueKind::LoadBorrow:
case BorrowedValueKind::Phi:
// TODO: Canonicalize load_borrow scope and phi once consolidateBorrowScope
// can handle persistentCopies.
return false;
case BorrowedValueKind::BeginBorrow:
case BorrowedValueKind::BeginApplyToken:
break;
}
// Note that there is no need to look through any reborrows. The reborrowed
// value is considered a separate lifetime for canonicalization. Any copies of
// the reborrowed value will not be rewritten when canonicalizing the current
// borrow scope because they are "hidden" behind the reborrow.
borrowedValue.visitLocalScopeEndingUses([this](Operand *use) {
liveness->updateForUse(use->getUser(), /*lifetimeEnding*/ true);
return true;
});
return true;
}
/// Return the source of a use within a borrow scope. This is the use-def
/// equivalent to the logic in visitBorrowScopeUses that recurses through
/// copies. The use-def and def-use logic must be consistent.
SILValue CanonicalizeBorrowScope::findDefInBorrowScope(SILValue value) {
while (auto *inst = asCopyOrMove(value)) {
auto *copy = dyn_cast<CopyValueInst>(inst);
if (copy && isPersistentCopy(copy))
return copy;
value = inst->getOperand(0);
}
return value;
}
/// Visit all extended uses within the borrow scope, looking through copies and
/// moves. Call visitUse for uses which could potentially be outside the borrow
/// scope. Call visitForwardingUse for hoistable forwarding operations which
/// could potentially be inside the borrow scope.
///
/// The visitor may or may not be able to determine which uses are outside the
/// scope, but it can filter uses that are definitely within the scope. For
/// example, guaranteed uses and uses in live-out blocks must both be within
/// the scope.
///
/// This def-use traversal is similar to findExtendedTransitiveGuaranteedUses(),
/// however, to cover the canonical lifetime, it looks through copies. It also
/// considers uses within the introduced borrow scope itself (instead of simply
/// visiting the scope-ending uses). It does not, however, look into nested
/// borrow scopes uses, since nested scopes are canonicalized independently.
///
/// \p innerValue is either the initial begin_borrow, or a forwarding operation
/// within the borrow scope.
template <typename Visitor>
bool CanonicalizeBorrowScope::visitBorrowScopeUses(SILValue innerValue,
Visitor &visitor) {
// defUseWorklist is used recursively here.
// This avoids revisiting uses in case we ever recurse through
// both structs and destructures.
unsigned defUseStart = defUseWorklist.size();
defUseWorklist.insert(innerValue);
while (defUseStart < defUseWorklist.size()) {
SILValue value = defUseWorklist.pop();
// Gather the uses before updating any of them.
// 'value' may be deleted in this loop after rewriting its last use.
// 'use' may become invalid after processing its user.
SmallVector<Operand *, 4> uses(value->getUses());
for (auto *use : uses) {
auto *user = use->getUser();
// Incidental uses, such as debug_value may be deleted before they can be
// processed. Their user will now be nullptr. This means that value
// is dead, so just bail.
if (!user)
break;
// Recurse through copies and moves.
if (auto *copy = dyn_cast<CopyValueInst>(user)) {
if (!isPersistentCopy(copy)) {
defUseWorklist.insert(copy);
continue;
}
} else if (auto *move = dyn_cast<MoveValueInst>(user)) {
if (!move->isLexical() || innerValue->isLexical()) {
defUseWorklist.insert(move);
continue;
}
}
// Note: debug_value uses are handled like normal uses here. If they are
// inner uses, they remain. If they are outer uses, then they will be
// stripped if needed when the outer copy or persistent copy is
// canonicalized.
switch (use->getOperandOwnership()) {
case OperandOwnership::NonUse:
break;
case OperandOwnership::TrivialUse:
llvm_unreachable("this operand cannot handle ownership");
case OperandOwnership::InteriorPointer:
case OperandOwnership::AnyInteriorPointer:
case OperandOwnership::EndBorrow:
case OperandOwnership::Reborrow:
// Ignore uses that must be within the borrow scope.
// Rewriting does not look through reborrowed values--it considers them
// part of a separate lifetime.
break;
case OperandOwnership::ForwardingUnowned:
case OperandOwnership::PointerEscape:
// Pointer escapes are only allowed if they use the guaranteed value,
// which means that the escaped value must be confined to the current
// borrow scope.
if (use->get()->getOwnershipKind() != OwnershipKind::Guaranteed &&
!isa<SILFunctionArgument>(borrowedValue.value)) {
return false;
}
if (!visitor.visitUse(use)) {
return false;
}
break;
case OperandOwnership::GuaranteedForwarding:
case OperandOwnership::ForwardingConsume:
if (CanonicalizeBorrowScope::isRewritableOSSAForward(user)) {
if (!visitor.visitForwardingUse(use)) {
return false;
}
break;
}
LLVM_FALLTHROUGH;
case OperandOwnership::Borrow:
case OperandOwnership::InstantaneousUse:
case OperandOwnership::UnownedInstantaneousUse:
case OperandOwnership::BitwiseEscape:
case OperandOwnership::DestroyingConsume:
if (!visitor.visitUse(use)) {
return false;
}
break;
} // end switch OperandOwnership
}
} // end def-use traversal
return true;
}
namespace {
using OuterUsers = CanonicalizeBorrowScope::OuterUsers;
/// Find all potential outer uses within a borrow scope.
///
/// Implements visitBorrowScopeUses<Visitor>
class FindBorrowScopeUses {
CanonicalizeBorrowScope &scope;
/// useInsts are the potentially outer use instructions. This set is built up
/// recursively. It is pared down to only the outer uses outside this class by
/// filterOuterBorrowUseInsts.
OuterUsers useInsts;
public:
FindBorrowScopeUses(CanonicalizeBorrowScope &scope) : scope(scope) {}
std::optional<OuterUsers> findUses() && {
scope.beginVisitBorrowScopeUses();
if (!scope.visitBorrowScopeUses(scope.getBorrowedValue().value, *this))
return std::nullopt;
return std::move(useInsts);
}
bool visitUse(Operand *use) {
// A guaranteed use can never be outside this borrow scope
if (use->get()->getOwnershipKind() == OwnershipKind::Guaranteed)
return true;
auto *user = use->getUser();
if (!isUserInLiveOutBlock(user)) {
useInsts.insert(user);
}
if (auto borrowingOper = BorrowingOperand(use)) {
// For borrows, record the scope-ending instructions to outer use
// points. Note: The logic in filterOuterBorrowUseInsts that checks
// whether a borrow scope is an outer use must visit the same set of uses.
if (!borrowingOper.visitExtendedScopeEndingUses([&](Operand *endBorrow) {
auto *endInst = endBorrow->getUser();
if (!isUserInLiveOutBlock(endInst)) {
useInsts.insert(endInst);
}
return true;
})) {
// Bail out on dead borrow scopes and scopes with unknown uses.
return false;
}
}
return true;
}
// Recurse through forwards.
bool visitForwardingUse(Operand *use) {
auto *user = use->getUser();
if (!isUserInLiveOutBlock(user)) {
useInsts.insert(user);
}
for (auto result : user->getResults()) {
if (hasValueOwnership(result)) {
if (!scope.visitBorrowScopeUses(result, *this))
return false;
}
}
return true;
}
protected:
bool isUserInLiveOutBlock(SILInstruction *user) {
return (scope.getLiveness().getBlockLiveness(user->getParent())
== PrunedLiveBlocks::LiveOut);
return false;
};
};
} // namespace
/// Erase users from \p outerUseInsts that are actually within the borrow scope.
void CanonicalizeBorrowScope::filterOuterBorrowUseInsts(
OuterUsers &outerUseInsts) {
auto *beginBorrow = cast<BeginBorrowInst>(borrowedValue.value);
SmallVector<SILInstruction *, 4> scopeEndingInsts;
BorrowedValue(beginBorrow).getLocalScopeEndingInstructions(scopeEndingInsts);
blockWorklist.clear();
// Remove outer uses that occur before the end of the borrow scope by
// reverse iterating from the end_borrow.
auto scanBlock = [&](SILBasicBlock *bb, SILBasicBlock::iterator endIter) {
auto beginIter = bb->begin();
if (bb == beginBorrow->getParent()) {
beginIter = std::next(beginBorrow->getIterator());
} else {
blockWorklist.insert(bb);
}
for (auto instIter = endIter; instIter != beginIter;) {
--instIter;
outerUseInsts.erase(&*instIter);
}
};
for (auto *scopeEnd : scopeEndingInsts) {
scanBlock(scopeEnd->getParent(), std::next(scopeEnd->getIterator()));
}
// This worklist is also a visited set, so we never pop the entries.
while (auto *bb = blockWorklist.pop()) {
for (auto *predBB : bb->getPredecessorBlocks()) {
scanBlock(predBB, predBB->end());
}
}
}
namespace {
/// Remove redundant copies/destroys within a borrow scope.
///
/// The visitor callbacks must always return true since this rewrites in-place.
class RewriteInnerBorrowUses {
CanonicalizeBorrowScope &scope;
public:
RewriteInnerBorrowUses(CanonicalizeBorrowScope &scope): scope(scope) {}
CanonicalizeBorrowScope &getScope() const { return scope; }
// Implements visitBorrowScopeUses<Visitor>
bool visitUse(Operand *use) {
auto *user = use->getUser();
SILValue value = use->get();
// destroys are never needed within a borrow scope.
if (isa<DestroyValueInst>(user)) {
scope.getDeleter().forceDelete(user);
deleteCopyAndMoveChain(value, scope.getDeleter());
return true;
}
SILValue def = scope.findDefInBorrowScope(value);
if (use->isConsuming()) {
if (use->get()->getType().isMoveOnly()) {
// Can't produce a copy of a non-copyable value on demand. Bail out.
return false;
}
// All in-scope consuming uses need a unique copy in the same block.
auto *copy = dyn_cast<CopyValueInst>(use->get());
if (copy && copy->hasOneUse() && copy->getParent() == user->getParent()) {
value = copy->getOperand();
copy->setOperand(def);
} else {
use->set(def);
copyLiveUse(use, scope.getCallbacks());
}
deleteCopyAndMoveChain(value, scope.getDeleter());
return true;
}
// Non-consuming use.
use->set(def);
deleteCopyAndMoveChain(value, scope.getDeleter());
return true;
}
// Recurse through forwards.
//
// Implements visitBorrowScopeUses<Visitor>
bool visitForwardingUse(Operand *use) {
auto *user = use->getUser();
assert(CanonicalizeBorrowScope::isRewritableOSSAForward(user));
for (auto result : user->getResults()) {
if (!hasValueOwnership(result)) {
continue;
}
if (!scope.visitBorrowScopeUses(result, *this)) {
return false;
}
}
// Update this operand bypassing any copies.
SILValue value = use->get();
use->set(scope.findDefInBorrowScope(value));
ForwardingOperand(use).setForwardingOwnershipKind(
OwnershipKind::Guaranteed);
deleteCopyAndMoveChain(value, scope.getDeleter());
return true;
}
};
/// Generate copies outside this borrow scope, hoist forwarding operations,
/// rewrite the operands of uses outside the scope, and record the outer uses
/// that are consumes.
///
/// Each hoisted forwarding operation instantiates a new instance of this
/// visitor. They are rewritten separately.
///
/// Implements visitBorrowScopeUses<Visitor>
///
/// The visitor callbacks must always return true since this rewrites in-place.
class RewriteOuterBorrowUses {
CanonicalizeBorrowScope &scope;
RewriteInnerBorrowUses &innerRewriter;
const OuterUsers &outerUseInsts;
/// Map values inside the borrow scope to cloned-and-copied values outside the
/// borrow scope.
using InnerToOuterMap = llvm::SmallDenseMap<SILValue, SILValue, 8>;
InnerToOuterMap &innerToOuterMap;
// Outer uses specific to the current incomingValue, including hoisted
// forwarding instructions, which are not part of outerUseInsts.
SmallVector<Operand *, 4> consumingUses;
SmallPtrSet<SILInstruction *, 4> unclaimedConsumingUsers;
RewriteOuterBorrowUses(RewriteInnerBorrowUses &innerRewriter,
const OuterUsers &outerUseInsts,
InnerToOuterMap &innerToOuterMap)
: scope(innerRewriter.getScope()), innerRewriter(innerRewriter),
outerUseInsts(outerUseInsts), innerToOuterMap(innerToOuterMap) {}
public:
static void rewrite(BeginBorrowInst *beginBorrow,
CanonicalizeBorrowScope &scope,
const OuterUsers &outerUseInsts) {
SILBuilderWithScope builder(beginBorrow);
auto loc = RegularLocation::getAutoGeneratedLocation(beginBorrow->getLoc());
auto *outerCopy =
createOuterCopy(beginBorrow->getOperand(), builder, loc, scope);
llvm::SmallDenseMap<SILValue, SILValue, 8> innerToOuterMap;
innerToOuterMap[beginBorrow] = outerCopy;
RewriteInnerBorrowUses innerRewriter(scope);
RewriteOuterBorrowUses rewriter(innerRewriter, outerUseInsts,
innerToOuterMap);
scope.beginVisitBorrowScopeUses();
auto outerVal = rewriter.recursivelyRewriteOuterUses(beginBorrow);
assert(outerVal == outerCopy);
}
// Implements visitBorrowScopeUses<Visitor>
bool visitUse(Operand *use) {
auto *user = use->getUser();
if (outerUseInsts.count(user)) {
rewriteOuterUse(use);
return true;
}
// If this use begins a borrow scope, check if any of the scope ending
// instructions are outside the current scope (this can happen if any copy
// has occurred on the def-use chain within the current scope).
if (auto borrowingOper = BorrowingOperand(use)) {
if (!borrowingOper.visitExtendedScopeEndingUses(
[&](Operand *endBorrow) {
return !outerUseInsts.count(endBorrow->getUser());
})) {
rewriteOuterUse(use);
return true;
}
}
innerRewriter.visitUse(use);
return true;
}
// Recurse through forwards.
//
// Implements visitBorrowScopeUses<Visitor>
bool visitForwardingUse(Operand *use) {
auto *user = use->getUser();
assert(CanonicalizeBorrowScope::isRewritableOSSAForward(user));
if (outerUseInsts.count(user)) {
rewriteOuterUse(use);
return true;
}
// Process transitive users and add this forwarding operation to
// outerUseInsts if any outer uses were found.
SILInstruction *outerClone = nullptr;
for (auto result : user->getResults()) {
if (!hasValueOwnership(result)) {
continue;
}
RewriteOuterBorrowUses rewriter(innerRewriter, outerUseInsts,
innerToOuterMap);
auto outerVal = rewriter.recursivelyRewriteOuterUses(result);
if (outerVal)
outerClone = outerVal->getDefiningInstruction();
}
// Record the forwarded operand of this hoisted instruction as an outer use.
if (outerClone) {
recordOuterUse(&outerClone->getOperandRef(0));
}
// If it's not already dead, update this operand bypassing any copies.
SILValue innerValue = use->get();
if (scope.getDeleter().deleteIfDead(user, /*fixLifetime=*/false)) {
LLVM_DEBUG(llvm::dbgs() << " Deleted " << *user);
} else {
use->set(scope.findDefInBorrowScope(use->get()));
ForwardingOperand(use).setForwardingOwnershipKind(
OwnershipKind::Guaranteed);
}
deleteCopyAndMoveChain(innerValue, scope.getDeleter());
return true;
}
protected:
// Create a copy for outer uses of the borrow scope introduced by
// currentDef. This copy should only be used by outer uses in the same block
// as the borrow scope.
//
// To use an existing outer copy, we could find its earliest consume. But the
// new copy will immediately canonicalized and a canonical begin_borrow scope
// have no outer uses of its first block.
static CopyValueInst *createOuterCopy(SILValue incomingValue,
SILBuilder &builder, SILLocation loc,
CanonicalizeBorrowScope &scope) {
auto *copy = builder.createCopyValue(loc, incomingValue);
scope.getCallbacks().createdNewInst(copy);
scope.recordOuterCopy(copy);
++NumCopiesGenerated;
LLVM_DEBUG(llvm::dbgs() << " Outer copy " << *copy);
return copy;
}
SILValue recursivelyRewriteOuterUses(SILValue innerValue) {
bool succeed = scope.visitBorrowScopeUses(innerValue, *this);
assert(succeed && "should be filtered by FindBorrowScopeUses");
auto iter = innerToOuterMap.find(innerValue);
if (iter == innerToOuterMap.end()) {
return SILValue();
}
SILValue outerValue = iter->second;
cleanupOuterValue(outerValue);
return outerValue;
}
void recordOuterUse(Operand *use) {
if (use->isLifetimeEnding()) {
consumingUses.push_back(use);
unclaimedConsumingUsers.insert(use->getUser());
}
};
void rewriteOuterUse(Operand *use) {
LLVM_DEBUG(llvm::dbgs() << " Use of outer copy " << *use->getUser());
SILValue innerValue = use->get();
SILValue outerValue = createOuterValues(innerValue);
use->set(outerValue);
deleteCopyAndMoveChain(innerValue, scope.getDeleter());
recordOuterUse(use);
};
SILValue createOuterValues(SILValue innerValue);
void cleanupOuterValue(SILValue outerValue);
};
} // namespace
// Incrementally create a def-use chain outside the current borrow scope for
// all instructions between currentDef and \p innerValue, where \p innerValue
// has at least one use outside the borrow scope.
SILValue RewriteOuterBorrowUses::createOuterValues(SILValue innerValue) {
// Poke through the copies just like rewriteOuterBorrowUsesAndFindConsumes
// does on the def-use side.
while (auto *copy = dyn_cast<CopyValueInst>(innerValue)) {
innerValue = copy->getOperand();
}
auto iter = innerToOuterMap.find(innerValue);
if (iter != innerToOuterMap.end()) {
return iter->second;
}
auto *innerInst = innerValue->getDefiningInstruction();
assert(CanonicalizeBorrowScope::isRewritableOSSAForward(innerInst));
SILValue incomingInnerVal = innerInst->getOperand(0);
auto incomingOuterVal = createOuterValues(incomingInnerVal);
auto *insertPt = innerValue->getDefiningInsertionPoint();
auto *clone = innerInst->clone(insertPt);
scope.getCallbacks().createdNewInst(clone);
Operand *use = &clone->getOperandRef(0);
use->set(incomingOuterVal);
ForwardingOperand(use).setForwardingOwnershipKind(OwnershipKind::Owned);
LLVM_DEBUG(llvm::dbgs() << " Hoisted forward " << *clone);
for (unsigned idx = 0, endIdx = clone->getNumResults(); idx < endIdx; ++idx) {
innerToOuterMap[innerInst->getResult(idx)] = clone->getResult(idx);
}
return innerToOuterMap[innerValue];
}
// Insert destroys on the outer copy's or forwarding consume's lifetime
// frontier, or claim a existing consumes. Insert copies for unclaimed consumes.
void RewriteOuterBorrowUses::cleanupOuterValue(SILValue outerValue) {
// Gather outerValue's transitive ownership uses for ValueLifetimeAnalysis.
SmallVector<SILInstruction *, 4> outerUses;
for (Operand *use : outerValue->getUses()) {
outerUses.push_back(use->getUser());
if (auto borrowingOper = BorrowingOperand(use)) {
borrowingOper.visitExtendedScopeEndingUses([&](Operand *endBorrow) {
outerUses.push_back(endBorrow->getUser());
return true;
});
}
}
ValueLifetimeAnalysis lifetimeAnalysis(outerValue.getDefiningInstruction(),
outerUses);
auto createDestroy = [&](SILBuilder &b, SILLocation loc) {
auto *dvi = b.createDestroyValue(loc, outerValue);
scope.getCallbacks().createdNewInst(dvi);
};
if (outerUses.empty()) {
SILBuilder b(outerValue->getNextInstruction());
createDestroy(b, outerValue.getLoc());
return;
}
ValueLifetimeBoundary boundary;
lifetimeAnalysis.computeLifetimeBoundary(boundary);
for (auto *boundaryEdge : boundary.boundaryEdges) {
if (DeadEndBlocks::triviallyEndsInUnreachable(boundaryEdge))
continue;
auto insertPt = boundaryEdge->begin();
auto *dvi = SILBuilderWithScope(insertPt).createDestroyValue(
insertPt->getLoc(), outerValue);
scope.getCallbacks().createdNewInst(dvi);
}
for (SILInstruction *lastUser : boundary.lastUsers) {
if (unclaimedConsumingUsers.erase(lastUser))
continue;
SILBuilderWithScope::insertAfter(lastUser, [&](SILBuilder &b) {
createDestroy(b, lastUser->getLoc());
});
}
// Add copies for consuming users of outerValue.
for (auto *use : consumingUses) {
// If the user is still in the unclaimedConsumingUsers set, then it does not
// end the outer copy's lifetime and therefore requires a copy. Only one
// operand can be claimed as ending the lifetime, so return its user to the
// unclaimedConsumingUsers set after skipping the first copy.
auto iterAndInserted = unclaimedConsumingUsers.insert(use->getUser());
if (!iterAndInserted.second) {
copyLiveUse(use, scope.getCallbacks());
scope.recordOuterCopy(cast<CopyValueInst>(use->get()));
}
}
}
// If this succeeds, then all uses of the borrowed value outside the borrow
// scope will be rewritten to use an outer copy, and all remaining uses of the
// borrowed value will be confined to the borrow scope.
//
// TODO: Canonicalize multi-block borrow scopes, load_borrow scope, and phi
// borrow scopes by adding one copy per block to persistentCopies for
// each block that dominates an outer use.
bool CanonicalizeBorrowScope::consolidateBorrowScope() {
OuterUsers outerUseInsts;
if (!isa<SILFunctionArgument>(borrowedValue.value)) {
// getCanonicalCopiedDef ensures that if currentDef is a guaranteed value,
// then it is a borrow scope introducer.
assert(borrowedValue.isLocalScope());
// Gather all potential outer uses before rewriting any to avoid scanning
// any basic block more than once.
std::optional<OuterUsers> outerUsers =
FindBorrowScopeUses(*this).findUses();
if (!outerUsers)
return false;
outerUseInsts = std::move(outerUsers).value();
filterOuterBorrowUseInsts(outerUseInsts);
}
// If there are no outer uses, then canonicalization is a simple matter of
// removing all the destroys and rewriting the copies.
if (outerUseInsts.empty()) {
RewriteInnerBorrowUses innerRewriter(*this);
beginVisitBorrowScopeUses(); // reset the def/use worklist
return visitBorrowScopeUses(borrowedValue.value, innerRewriter);
}
LLVM_DEBUG(llvm::dbgs() << " Outer uses:\n";
for (SILInstruction *inst
: outerUseInsts) { llvm::dbgs() << " " << *inst; });
RewriteOuterBorrowUses::rewrite(cast<BeginBorrowInst>(borrowedValue.value),
*this, outerUseInsts);
return true;
}
//===----------------------------------------------------------------------===//
// MARK: Top-Level CanonicalizeBorrowScope
//===----------------------------------------------------------------------===//
bool CanonicalizeBorrowScope::canonicalizeFunctionArgument(
SILFunctionArgument *arg) {
BorrowedValue borrow(arg);
if (!borrow)
return false;
initBorrow(borrow);
LLVM_DEBUG(llvm::dbgs() << "*** Canonicalize Borrow: " << borrowedValue);
RewriteInnerBorrowUses innerRewriter(*this);
beginVisitBorrowScopeUses(); // reset the def/use worklist
return visitBorrowScopeUses(borrowedValue.value, innerRewriter);
}
namespace swift::test {
// Arguments:
// - SILFunctionArgument: function argument to canonicalize
// Dumps:
// - function after argument canonicalization
static FunctionTest CanonicalizeFunctionArgumentTest(
"canonicalize_function_argument",
[](auto &function, auto &arguments, auto &test) {
auto *argument = cast<SILFunctionArgument>(arguments.takeBlockArgument());
InstructionDeleter deleter;
CanonicalizeBorrowScope canonicalizer(&function, deleter);
canonicalizer.canonicalizeFunctionArgument(argument);
function.print(llvm::outs());
});
} // end namespace swift::test
/// Canonicalize a worklist of extended lifetimes. This iterates after rewriting
/// borrow scopes to handle new outer copies and new owned lifetimes from
/// forwarding operations.
bool CanonicalizeBorrowScope::
canonicalizeBorrowScope(BorrowedValue borrowedValue) {
BitfieldRef<SSAPrunedLiveness>::StackState livenessBitfieldContainer(
liveness, function);
LLVM_DEBUG(llvm::dbgs() << "*** Canonicalize Borrow: " << borrowedValue);
initBorrow(borrowedValue);
if (!computeBorrowLiveness())
return false;
// Set outerCopy and persistentCopies and rewrite uses
// outside the scope.
if (!consolidateBorrowScope())
return false;
return true;
}
namespace swift::test {
// Arguments:
// - SILValue: value to canonicalize
// Dumps:
// - function after value canonicalization
static FunctionTest CanonicalizeBorrowScopeTest(
"canonicalize_borrow_scope",
[](auto &function, auto &arguments, auto &test) {
auto value = arguments.takeValue();
auto borrowedValue = BorrowedValue(value);
assert(borrowedValue && "specified value isn't a BorrowedValue!?");
InstructionDeleter deleter;
CanonicalizeBorrowScope canonicalizer(value->getFunction(), deleter);
canonicalizer.canonicalizeBorrowScope(borrowedValue);
function.print(llvm::outs());
});
} // end namespace swift::test