File: witness_method.sil

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (43 lines) | stat: -rw-r--r-- 2,306 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
// RUN: %target-sil-opt %s -module-name=witness_tables | %target-sil-opt -module-name=witness_tables | %FileCheck %s

protocol AssocReqt {
  func requiredMethod()
}

struct ConformingAssoc : AssocReqt {
  func requiredMethod()
}

// CHECK-LABEL: sil @witness_method : $@convention(witness_method: AssocReqt) (@inout ConformingAssoc) -> () {
sil @witness_method : $@convention(witness_method: AssocReqt) (@inout ConformingAssoc) -> () {
bb0(%0 : $*ConformingAssoc):
  %1 = tuple ()
  return %1 : $()
}

// CHECK-LABEL: sil hidden @existential
sil hidden @existential : $@convention(thin) (@in AssocReqt) -> () {
bb0(%0 : $*AssocReqt):
  // CHECK: open_existential_addr
  %2 = open_existential_addr immutable_access %0 : $*AssocReqt to $*@opened("B2FFFC12-C4BD-11E7-A4BB-38C98616C0EA", AssocReqt) Self
  // CHECK: witness_method $@opened({{.*}}, any AssocReqt) Self, #AssocReqt.requiredMethod {{.*}} $@convention(witness_method: AssocReqt)
  %3 = witness_method $@opened("B2FFFC12-C4BD-11E7-A4BB-38C98616C0EA", AssocReqt) Self, #AssocReqt.requiredMethod : <Self where Self : AssocReqt> (Self) -> () -> (), %2 : $*@opened("B2FFFC12-C4BD-11E7-A4BB-38C98616C0EA", AssocReqt) Self : $@convention(witness_method: AssocReqt) <τ_0_0 where τ_0_0 : AssocReqt> (@in_guaranteed τ_0_0) -> ()
  // CHECK: apply {{.*}} $@convention(witness_method: AssocReqt)
  %4 = apply %3<@opened("B2FFFC12-C4BD-11E7-A4BB-38C98616C0EA", AssocReqt) Self>(%2) : $@convention(witness_method: AssocReqt) <τ_0_0 where τ_0_0 : AssocReqt> (@in_guaranteed τ_0_0) -> ()
  destroy_addr %0 : $*AssocReqt
  %6 = tuple ()
  return %6 : $()
}

// CHECK-LABEL: sil hidden @generic
sil hidden @generic : $@convention(thin) <T where T : AssocReqt> (@in T) -> () {
bb0(%0 : $*T):
  // CHECK: witness_method $T, #AssocReqt.requiredMethod {{.*}} $@convention(witness_method: AssocReqt)
  %2 = witness_method $T, #AssocReqt.requiredMethod : <Self where Self : AssocReqt> (Self) -> () -> () : $@convention(witness_method: AssocReqt) <τ_0_0 where τ_0_0 : AssocReqt> (@in_guaranteed τ_0_0) -> ()
  // CHECK: apply {{.*}} $@convention(witness_method: AssocReqt)
  %3 = apply %2<T>(%0) : $@convention(witness_method: AssocReqt) <τ_0_0 where τ_0_0 : AssocReqt> (@in_guaranteed τ_0_0) -> ()
  destroy_addr %0 : $*T
  %5 = tuple ()
  return %5 : $()
}