mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Type annotations for instruction operands are omitted, e.g. ``` %3 = struct $S(%1, %2) ``` Operand types are redundant anyway and were only used for sanity checking in the SIL parser. But: operand types _are_ printed if the definition of the operand value was not printed yet. This happens: * if the block with the definition appears after the block where the operand's instruction is located * if a block or instruction is printed in isolation, e.g. in a debugger The old behavior can be restored with `-Xllvm -sil-print-types`. This option is added to many existing test files which check for operand types in their check-lines.
29 lines
976 B
Plaintext
29 lines
976 B
Plaintext
|
|
// RUN: %target-sil-opt -sil-print-types -enable-sil-verify-all %s -mem2reg -enable-library-evolution | %FileCheck %s
|
|
|
|
import Builtin
|
|
import Swift
|
|
|
|
public struct ResilientStruct {
|
|
var x: AnyObject
|
|
}
|
|
|
|
// CHECK-LABEL: sil [ossa] @mem2reg_debug_value :
|
|
// CHECK: bb0(%0 : $*ResilientStruct):
|
|
// CHECK-NEXT: %1 = load [copy] %0 : $*ResilientStruct
|
|
// CHECK-NEXT: debug_value %1 : $ResilientStruct
|
|
// CHECK-NEXT: destroy_value %1 : $ResilientStruct
|
|
// CHECK-LABEL: } // end sil function 'mem2reg_debug_value'
|
|
sil [ossa] @mem2reg_debug_value : $@convention(thin) (@in_guaranteed ResilientStruct) -> () {
|
|
bb0(%0 : $*ResilientStruct):
|
|
%1 = alloc_stack $ResilientStruct
|
|
%2 = load [copy] %0 : $*ResilientStruct
|
|
store %2 to [init] %1 : $*ResilientStruct
|
|
debug_value %1 : $*ResilientStruct, expr op_deref
|
|
%3 = load [take] %1 : $*ResilientStruct
|
|
destroy_value %3 : $ResilientStruct
|
|
dealloc_stack %1 : $*ResilientStruct
|
|
%4 = tuple ()
|
|
return %4 : $()
|
|
}
|