File: remove_unused_func.sil

package info (click to toggle)
swiftlang 6.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,532 kB
  • sloc: cpp: 9,901,743; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (97 lines) | stat: -rw-r--r-- 3,941 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// 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<Int> = {
  %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<Int> (%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<Int>
  %initval = unchecked_ref_cast %0 : $_ContiguousArrayStorage<Int> 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 : $()
}