mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +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.
60 lines
3.3 KiB
Swift
60 lines
3.3 KiB
Swift
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -emit-module -parse-stdlib -o %t %S/Inputs/def_transparent_std.swift
|
|
// RUN: llvm-bcanalyzer %t/def_transparent_std.swiftmodule | %FileCheck %s
|
|
// RUN: %target-swift-frontend -Xllvm -sil-print-types -emit-sil -sil-debug-serialization -parse-stdlib -I %t %s | %FileCheck %s -check-prefix=SIL
|
|
|
|
// CHECK-NOT: UnknownCode
|
|
|
|
import def_transparent_std
|
|
|
|
// SIL-LABEL: sil public_external [transparent] [canonical] @$s19def_transparent_std3foo1x1yBi1_Bi1__Bi1_tF : $@convention(thin) (Builtin.Int1, Builtin.Int1) -> Builtin.Int1 {
|
|
// SIL: = builtin "cmp_eq_Int1"(%0 : $Builtin.Int1, %1 : $Builtin.Int1) : $Builtin.Int1
|
|
func test_foo(x: Builtin.Int1, y: Builtin.Int1) -> Builtin.Int1 {
|
|
var a = foo(x: x, y: y)
|
|
return a
|
|
}
|
|
|
|
// SIL-LABEL: sil public_external [transparent] [canonical] @$s19def_transparent_std12assign_tuple1x1yyBi64__Bot_BptF : $@convention(thin) (Builtin.Int64, @guaranteed Builtin.NativeObject, Builtin.RawPointer) -> () {
|
|
// SIL: bb0([[ARG0:%.*]] : ${{.*}}, [[ARG1:%.*]] : ${{.*}}, [[ARG2:%.*]] :
|
|
// SIL: [[TUP:%.*]] = tuple ([[ARG0]] : $Builtin.Int64, [[ARG1]] : $Builtin.NativeObject)
|
|
// SIL: retain_value [[TUP]]
|
|
// SIL: [[CASTED_PTR:%.*]] = pointer_to_address [[ARG2]]
|
|
// SIL: [[OLD_VALUE:%.*]] = load [[CASTED_PTR]]
|
|
// SIL: store [[TUP]] to [[CASTED_PTR]]
|
|
// SIL: release_value [[OLD_VALUE]]
|
|
// SIL: } // end sil function '$s19def_transparent_std12assign_tuple1x1yyBi64__Bot_BptF'
|
|
func test_tuple(x: (Builtin.Int64, Builtin.NativeObject),
|
|
y: Builtin.RawPointer) {
|
|
assign_tuple(x: x, y: y)
|
|
}
|
|
|
|
func test_conversion(c: C, t32: Builtin.Int32) {
|
|
// SIL-LABEL: sil public_external [transparent] [canonical] @$s19def_transparent_std22class_to_native_object1cBoAA1CC_tF : $@convention(thin) (@guaranteed C) -> @owned Builtin.NativeObject {
|
|
// SIL: bb0(%0 : $C):
|
|
// SIL-NEXT: strong_retain
|
|
// SIL-NEXT: unchecked_ref_cast %0 : $C to $Builtin.NativeObject
|
|
// SIL-NEXT: return
|
|
var b = class_to_native_object(c: c)
|
|
|
|
// SIL-LABEL: sil public_external [transparent] [canonical] @$s19def_transparent_std24class_from_native_object1pAA1CCBo_tF : $@convention(thin) (@guaranteed Builtin.NativeObject) -> @owned C {
|
|
// SIL: unchecked_ref_cast %0 : $Builtin.NativeObject to $C
|
|
var c = class_from_native_object(p: b)
|
|
|
|
// SIL-LABEL: sil public_external [transparent] [canonical] @$s19def_transparent_std20class_to_raw_pointer1cBpAA1CC_tF : $@convention(thin) (@guaranteed C) -> Builtin.RawPointer {
|
|
// SIL: ref_to_raw_pointer %0 : $C to $Builtin.RawPointer
|
|
var d = class_to_raw_pointer(c: c)
|
|
|
|
// SIL-LABEL: sil public_external [transparent] [canonical] @$s19def_transparent_std22class_from_raw_pointer1pAA1CCBp_tF : $@convention(thin) (Builtin.RawPointer) -> @owned C {
|
|
// SIL: raw_pointer_to_ref %0 : $Builtin.RawPointer to $C
|
|
var e = class_from_raw_pointer(p: d)
|
|
|
|
// SIL-LABEL: sil public_external [transparent] [canonical] @$s19def_transparent_std5gep321p1iBpBp_Bi32_tF : $@convention(thin) (Builtin.RawPointer, Builtin.Int32) -> Builtin.RawPointer {
|
|
// SIL: index_raw_pointer %0 : $Builtin.RawPointer, %1 : $Builtin.Int32
|
|
var f = gep32(p: d, i: t32)
|
|
|
|
// SIL-LABEL: sil public_external [transparent] [canonical] @$s19def_transparent_std11destroy_obj1xyBp_tF : $@convention(thin) (Builtin.RawPointer) -> () {
|
|
// SIL: pointer_to_address %0 : $Builtin.RawPointer to [strict] $*Builtin.NativeObject
|
|
destroy_obj(x: d)
|
|
}
|