// RUN: %target-sil-opt -enable-sil-verify-all %s -sil-deadfuncelim | %FileCheck --check-prefix=KEEP %s // RUN: %target-sil-opt -enable-sil-verify-all %s -sil-deadfuncelim | %FileCheck %s sil_stage canonical import Builtin import Swift import SwiftShims // CHECK-LABEL: sil_global private @privateGlobal sil_global private @privateGlobal : $Int64 // This function needs to be removed. // KEEP-NOT: @remove_me sil private @remove_me : $@convention(thin) (Builtin.Int64) -> Builtin.Int64 { bb0(%0 : $Builtin.Int64): %2 = integer_literal $Builtin.Int1, 0 %3 = builtin "umul_with_overflow_Int64"(%0 : $Builtin.Int64, %0 : $Builtin.Int64, %2 : $Builtin.Int1) : $(Builtin.Int64, Builtin.Int1) %4 = tuple_extract %3 : $(Builtin.Int64, Builtin.Int1), 0 return %4: $Builtin.Int64 } sil_global @globalFunctionPointer : $@callee_guaranteed () -> () = { %0 = function_ref @alivePrivateFunc : $@convention(thin) () -> () %initval = thin_to_thick_function %0 : $@convention(thin) () -> () to $@callee_guaranteed () -> () } // CHECK-LABEL: sil_global private @self_referencing_private_global sil_global private @self_referencing_private_global : $Builtin.RawPointer = { %0 = global_addr @self_referencing_private_global : $*Builtin.RawPointer %initval = address_to_pointer %0 : $*Builtin.RawPointer to $Builtin.RawPointer } // CHECK-LABEL: sil_global private @referencing_other_private_global sil_global private @referencing_other_private_global : $Builtin.RawPointer = { %0 = global_addr @self_referencing_private_global : $*Builtin.RawPointer %initval = address_to_pointer %0 : $*Builtin.RawPointer to $Builtin.RawPointer } // CHECK-LABEL: sil_global @referencing_private_globals sil_global @referencing_private_globals : $Builtin.RawPointer = { %0 = global_addr @referencing_other_private_global : $*Builtin.RawPointer %initval = address_to_pointer %0 : $*Builtin.RawPointer to $Builtin.RawPointer } // CHECK-LABEL: sil_global private @array_buffer sil_global private @array_buffer : $_ContiguousArrayStorage = { %0 = integer_literal $Builtin.Int64, 3 %1 = struct $Int (%0 : $Builtin.Int64) %2 = integer_literal $Builtin.Int64, 6 %3 = struct $UInt (%2 : $Builtin.Int64) %4 = struct $_SwiftArrayBodyStorage (%1 : $Int, %3 : $UInt) %5 = struct $_ArrayBody (%4 : $_SwiftArrayBodyStorage) %6 = integer_literal $Builtin.Int64, 1 %7 = struct $Int (%6 : $Builtin.Int64) %8 = integer_literal $Builtin.Int64, 2 %9 = struct $Int (%8 : $Builtin.Int64) %initval = object $_ContiguousArrayStorage (%5 : $_ArrayBody, [tail_elems] %7 : $Int, %9 : $Int, %1 : $Int) } // CHECK-LABEL: sil_global @referencing_object sil_global @referencing_object : $Builtin.BridgeObject = { %0 = global_value @array_buffer : $_ContiguousArrayStorage %initval = unchecked_ref_cast %0 : $_ContiguousArrayStorage to $Builtin.BridgeObject } // KEEP-NOT: @dead_self_referencing_private_global sil_global private @dead_self_referencing_private_global : $Builtin.RawPointer = { %0 = global_addr @dead_self_referencing_private_global : $*Builtin.RawPointer %initval = address_to_pointer %0 : $*Builtin.RawPointer to $Builtin.RawPointer } // CHECK-LABEL: sil private @alivePrivateFunc sil private @alivePrivateFunc : $@convention(thin) () -> () { bb0: alloc_global @privateGlobal %0 = tuple () return %0 : $() } // KEEP-NOT: @privateFunctionPointer sil_global private @privateFunctionPointer : $@callee_guaranteed () -> () = { %0 = function_ref @deadPrivateFunc : $@convention(thin) () -> () %initval = thin_to_thick_function %0 : $@convention(thin) () -> () to $@callee_guaranteed () -> () } // KEEP-NOT: @deadPrivateFunc sil private @deadPrivateFunc : $@convention(thin) () -> () { bb0: %0 = global_addr @privateFunctionPointer : $*@callee_guaranteed () -> () %1 = load %0 : $*@callee_guaranteed () -> () %2 = apply %1() : $@callee_guaranteed () -> () %3 = tuple () return %3 : $() }