File: accessibility_vtables_usableFromInline.swift

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 (47 lines) | stat: -rw-r--r-- 3,756 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
// RUN: %empty-directory(%t)

// RUN: %target-swift-frontend -emit-silgen %S/Inputs/accessibility_vtables_usableFromInline_helper.swift | %FileCheck %s --check-prefix=LIBRARY
// RUN: %target-swift-frontend -enable-library-evolution -emit-silgen %S/Inputs/accessibility_vtables_usableFromInline_helper.swift | %FileCheck %s --check-prefix=LIBRARY

// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/accessibility_vtables_usableFromInline_helper.swift
// RUN: %target-swift-emit-silgen -primary-file %s -I %t | %FileCheck %s --check-prefix=FRAGILE-CLIENT

// RUN: %target-swift-frontend -enable-library-evolution -emit-module -o %t %S/Inputs/accessibility_vtables_usableFromInline_helper.swift
// RUN: %target-swift-emit-silgen -primary-file %s -I %t | %FileCheck %s --check-prefix=RESILIENT-CLIENT

import accessibility_vtables_usableFromInline_helper

public class Derived : Middle {
  open override func internalMethod() {}
  open override func usableFromInlineMethod() {}
}

// LIBRARY-LABEL: sil_vtable {{(\[serialized\] )?}}Base {
// LIBRARY-NEXT:    #Base.internalMethod: (Base) -> () -> () : @$s45accessibility_vtables_usableFromInline_helper4BaseC14internalMethodyyF
// LIBRARY-NEXT:    #Base.usableFromInlineMethod: (Base) -> () -> () : @$s45accessibility_vtables_usableFromInline_helper4BaseC0cdE6MethodyyF
// LIBRARY-NEXT:    #Base.init!allocator: (Base.Type) -> () -> Base : @$s45accessibility_vtables_usableFromInline_helper4BaseCACycfC
// LIBRARY-NEXT:    #Base.deinit!deallocator: @$s45accessibility_vtables_usableFromInline_helper4BaseCfD
// LIBRARY-NEXT:  }

// LIBRARY-LABEL: sil_vtable {{(\[serialized\] )?}}Middle {
// LIBRARY-NEXT:    #Base.internalMethod: (Base) -> () -> () : @$s45accessibility_vtables_usableFromInline_helper6MiddleC14internalMethodyyFAA4BaseCADyyFTV [override]
// LIBRARY-NEXT:      #Base.usableFromInlineMethod: (Base) -> () -> () : @$s45accessibility_vtables_usableFromInline_helper6MiddleC0cdE6MethodyyF [override]
// LIBRARY-NEXT:      #Base.init!allocator: (Base.Type) -> () -> Base : @$s45accessibility_vtables_usableFromInline_helper6MiddleCACycfC [override]
// LIBRARY-NEXT:      #Middle.internalMethod: (Middle) -> () -> () : @$s45accessibility_vtables_usableFromInline_helper6MiddleC14internalMethodyyF
// LIBRARY-NEXT:      #Middle.deinit!deallocator: @$s45accessibility_vtables_usableFromInline_helper6MiddleCfD
// LIBRARY-NEXT:  }

// FRAGILE-CLIENT-LABEL: sil_vtable [serialized] Derived {
// FRAGILE-CLIENT-NEXT:    #Base.internalMethod: (Base) -> () -> () : @$s45accessibility_vtables_usableFromInline_helper6MiddleC14internalMethodyyFAA4BaseCADyyFTV [inherited]
// FRAGILE-CLIENT-NEXT:    #Base.usableFromInlineMethod: (Base) -> () -> () : @$s38accessibility_vtables_usableFromInline7DerivedC0cdE6MethodyyF [override]
// FRAGILE-CLIENT-NEXT:    #Base.init!allocator: (Base.Type) -> () -> Base : @$s45accessibility_vtables_usableFromInline_helper6MiddleCACycfC [inherited]
// FRAGILE-CLIENT-NEXT:    #Middle.internalMethod: (Middle) -> () -> () : @$s38accessibility_vtables_usableFromInline7DerivedC14internalMethodyyF [override]
// FRAGILE-CLIENT-NEXT:    #Derived.deinit!deallocator: @$s38accessibility_vtables_usableFromInline7DerivedCfD

// FRAGILE-CLIENT-NEXT:  }

// RESILIENT-CLIENT-LABEL: sil_vtable [serialized] Derived {
// RESILIENT-CLIENT-NEXT:    #Base.usableFromInlineMethod: (Base) -> () -> () : @$s38accessibility_vtables_usableFromInline7DerivedC0cdE6MethodyyF [override]
// RESILIENT-CLIENT-NEXT:    #Middle.internalMethod: (Middle) -> () -> () : @$s38accessibility_vtables_usableFromInline7DerivedC14internalMethodyyF [override]
// RESILIENT-CLIENT-NEXT:    #Derived.deinit!deallocator: @$s38accessibility_vtables_usableFromInline7DerivedCfD
// RESILIENT-CLIENT-NEXT:  }