File: reflection_metadata_isolated_any.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 (35 lines) | stat: -rw-r--r-- 1,618 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
// RUN: %target-swift-frontend -emit-ir -target %target-cpu-apple-macos99.99 %s | %FileCheck --check-prefix=CHECK --check-prefix=CHECK-PRESENT %s
// RUN: %target-swift-frontend -emit-ir -target %target-cpu-apple-macos14.4 %s | %FileCheck --check-prefix=CHECK --check-prefix=CHECK-SUPPRESSED %s

// REQUIRES: OS=macosx
// UNSUPPORTED: CPU=arm64e

// Make sure that we only emit a demangling-based type description
// for @isolated(any) types when deploying to runtimes that support it.
// If we don't, we fall back on using a type metadata accessor, which
// is fine.  Since this is for reflective metadata, we could go a step
// further if we decide we really only care about layout equivalence for
// these; if so, we could just suppress the @isolated(any) part of the
// type completely, since it has the the same external layout as an
// ordinary function type.
// rdar://129861211

// Closure capture metadata:

// CHECK-LABEL: @"\01l__swift5_reflection_descriptor" = private constant
// CHECK-PRESENT-SAME: ptr @"symbolic SiIeAgd_"
// CHECK-SUPPRESSED-SAME: ptr @"symbolic SiIegd_"
// CHECK-LABEL: @metadata = private constant %swift.full_boxmetadata { {{.*}}, ptr @"\01l__swift5_reflection_descriptor" }, align
func makeClosure(fn: @escaping @isolated(any) () -> Int) -> (() async -> Int) {
  return { await fn() + 1 }
}

// Struct field metadata:

public struct MyStruct {
  let fn: @isolated(any) () -> ()
}

// CHECK-LABEL: @"$s32reflection_metadata_isolated_any8MyStructVMF" = internal constant
// CHECK-PRESENT-SAME: ptr @"symbolic yyYAc"
// CHECK-SUPPRESSED-SAME: ptr @"get_type_metadata yyYAc.{{[0-9]+}}"