Files
swift-mirror/test/SILOptimizer/shrink_borrow_scope.swift
Nate Chandler d55c169d80 [CopyPropagation] Destroy hoist -> canonicalize.
Replace usages of lexical destroy hoisting with owned value
canonicalization now that the latter supports lexical values.
2024-07-22 20:35:30 -07:00

40 lines
2.1 KiB
Swift

// RUN: %target-swift-frontend -c -O -enable-copy-propagation=true -enable-lexical-lifetimes=true -sil-verify-all -Xllvm -sil-print-final-ossa-module %s | %FileCheck %s
// =============================================================================
// = DECLARATIONS {{
// =============================================================================
@_silgen_name("consumeAndProduce")
func consumeAndProduce(_ arg: __owned AnyObject) -> AnyObject
// =============================================================================
// = DECLARATIONS }}
// =============================================================================
// =============================================================================
// = TESTS {{
// =============================================================================
@_silgen_name("eliminate_copy_of_returned_then_consumed_owned_value")
public func eliminate_copy_of_returned_then_consumed_owned_value(arg: __owned AnyObject) {
// CHECK-LABEL: sil [ossa] @eliminate_copy_of_returned_then_consumed_owned_value : {{.*}} {
// CHECK: {{bb[0-9]+}}([[ARG:%[^,]+]] : @owned $AnyObject):
// retain arg
// CHECK: [[ARG_COPY:%[^,]+]] = copy_value [[ARG]]
let x = consumeAndProduce(arg)
// CHECK: [[X:%[^,]+]] = apply {{%[^,]+}}([[ARG_COPY]])
// CHECK: [[MOVE_X:%[^,]+]] = move_value [lexical] [var_decl] [[X]]
// no copy of 'x'
_ = consumeAndProduce(x)
// CHECK: [[RESULT:%[^,]+]] = apply {{%[^,]+}}([[MOVE_X]])
// release arg
// release result
// CHECK: destroy_value [[RESULT]]
// CHECK: destroy_value [[ARG]]
// CHECK-LABEL: } // end sil function 'eliminate_copy_of_returned_then_consumed_owned_value'
}
// =============================================================================
// = TESTS }}
// =============================================================================