mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Replace usages of lexical destroy hoisting with owned value canonicalization now that the latter supports lexical values.
40 lines
2.1 KiB
Swift
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 }}
|
|
// =============================================================================
|