Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/SILOptimizer/Analysis/EscapeAnalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2020,12 +2020,9 @@ void EscapeAnalysis::analyzeInstruction(SILInstruction *I,
ConGraph->getNode(cast<SingleValueInstruction>(I));
return;

#define UNCHECKED_REF_STORAGE(Name, ...) \
case SILInstructionKind::StrongCopy##Name##ValueInst:
#define ALWAYS_OR_SOMETIMES_LOADABLE_CHECKED_REF_STORAGE(Name, ...) \
case SILInstructionKind::Name##RetainInst: \
case SILInstructionKind::StrongRetain##Name##Inst: \
case SILInstructionKind::StrongCopy##Name##ValueInst:
case SILInstructionKind::StrongRetain##Name##Inst:
#include "swift/AST/ReferenceStorage.def"
case SILInstructionKind::DeallocStackInst:
case SILInstructionKind::StrongRetainInst:
Expand All @@ -2043,8 +2040,11 @@ void EscapeAnalysis::analyzeInstruction(SILInstruction *I,
case SILInstructionKind::SetDeallocatingInst:
case SILInstructionKind::FixLifetimeInst:
case SILInstructionKind::ClassifyBridgeObjectInst:
case SILInstructionKind::ValueToBridgeObjectInst:
// These instructions don't have any effect on escaping.
// Early bailout: These instructions never produce a pointer value and
// have no escaping effect on their operands.
assert(!llvm::any_of(I->getResults(), [this](SILValue result) {
return isPointer(result);
}));
return;

#define ALWAYS_OR_SOMETIMES_LOADABLE_CHECKED_REF_STORAGE(Name, ...) \
Expand Down
44 changes: 44 additions & 0 deletions test/SILOptimizer/escape_analysis.sil
Original file line number Diff line number Diff line change
Expand Up @@ -1844,3 +1844,47 @@ bb3(%4 : $AnyObject):
%5 = tuple ()
return %5 : $()
}

// Test value_to_bridge_object merged with a local reference. A graph node
// must be created for all values involved, and they must point to an
// escaping content node.
// CHECK-LABEL: CG of testValueToBridgeObject
// CHECK-NEXT: Val [ref] %1 Esc: , Succ: (%5.1)
// CHECK-NEXT: Val [ref] %5 Esc: , Succ: (%5.1)
// CHECK-NEXT: Con [int] %5.1 Esc: G, Succ: (%5.2)
// CHECK-NEXT: Con %5.2 Esc: G, Succ:
// CHECK-NEXT: Val [ref] %7 Esc: , Succ: (%5.1), %1, %5
// CHECK-NEXT: Ret [ref] return Esc: , Succ: %7
// CHECK-LABEL: End
sil @testValueToBridgeObject : $@convention(thin) (Builtin.Word) -> C {
bb0(%0 : $Builtin.Word):
%1 = alloc_ref $C
cond_br undef, bb1, bb2

bb1:
%derived = ref_to_bridge_object %1 : $C, %0 : $Builtin.Word
br bb3(%derived : $Builtin.BridgeObject)

bb2:
%5 = value_to_bridge_object %0 : $Builtin.Word
br bb3(%5 : $Builtin.BridgeObject)

bb3(%7 : $Builtin.BridgeObject):
%result = bridge_object_to_ref %7 : $Builtin.BridgeObject to $C
return %result : $C
}

// Test strong_copy_unowned_value returned. It must be marked escaping,
// not simply "returned", because it's reference is formed from a
// function argument.
// CHECK-LABEL: CG of testStrongCopyUnowned
// CHECK-NEXT: Val [ref] %1 Esc: , Succ: (%1.1)
// CHECK-NEXT: Con [int] %1.1 Esc: G, Succ: (%1.2)
// CHECK-NEXT: Con %1.2 Esc: G, Succ:
// CHECK-NEXT: Ret [ref] return Esc: , Succ: %1
// CHECK-LABEL: End
sil [ossa] @testStrongCopyUnowned : $@convention(thin) (@guaranteed @sil_unowned Builtin.NativeObject) -> @owned Builtin.NativeObject {
bb0(%0 : @guaranteed $@sil_unowned Builtin.NativeObject):
%1 = strong_copy_unowned_value %0 : $@sil_unowned Builtin.NativeObject
return %1 : $Builtin.NativeObject
}