File: layout_reabstraction.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 (100 lines) | stat: -rw-r--r-- 2,394 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
98
99
100
// RUN: %target-run-simple-swift | %FileCheck %s
// REQUIRES: executable_test

struct S {}
struct Q {}

func printMetatype<T>(_ x: Any, _: T.Type) {
  debugPrint(x as! T.Type)
}

func printMetatypeConditional<T>(_ x: Any, _: T.Type) {
  if let y = x as? T.Type {
    debugPrint(y)
  } else {
    print("nope")
  }
}

var any: Any = S.self
// CHECK: downcast in substituted context:
print("downcast in substituted context:")
// CHECK-NEXT: main.S
debugPrint(any as! S.Type)
// CHECK-NEXT: nope
if let q = any as? Q.Type {
  print(q)
} else {
  print("nope")
}

// CHECK-NEXT: downcast in generic context:
print("downcast in generic context:")
// CHECK-NEXT: main.S
printMetatype(any, S.self)
// CHECK-NEXT: main.S
printMetatypeConditional(any, S.self)
// CHECK-NEXT: nope
printMetatypeConditional(any, Q.self)

// Unspecialized wrapper around sizeof(T) to force us to get the runtime's idea
// of the size of a type.
@inline(never)
func unspecializedSizeOf<T>(_ t: T.Type) -> Int {
  return MemoryLayout<T>.size
}

struct ContainsTrivialMetatype<T> {
  var x: T
  var meta: S.Type
}

struct ContainsTupleOfTrivialMetatype<T> {
  var x: (T, S.Type)
}

// CHECK-NEXT: 8
print(MemoryLayout<ContainsTrivialMetatype<Int64>>.size)
// CHECK-NEXT: 8
print(unspecializedSizeOf(ContainsTrivialMetatype<Int64>.self))

// CHECK-NEXT: 8
print(MemoryLayout<ContainsTupleOfTrivialMetatype<Int64>>.size)
// CHECK-NEXT: 8
print(unspecializedSizeOf(ContainsTupleOfTrivialMetatype<Int64>.self))

struct ContainsTupleOfFunctions<T> {
  var x: (T, (T) -> T)
  
  func apply() -> T {
    return x.1(x.0)
  }
}

// CHECK-NEXT: 2
print(MemoryLayout<ContainsTupleOfFunctions<()>>.size / MemoryLayout<Int>.size)
// CHECK-NEXT: 2
print(unspecializedSizeOf(ContainsTupleOfFunctions<()>.self) / MemoryLayout<Int>.size)
// CHECK-NEXT: 3
print(MemoryLayout<ContainsTupleOfFunctions<Int>>.size / MemoryLayout<Int>.size)
// CHECK-NEXT: 3
print(unspecializedSizeOf(ContainsTupleOfFunctions<Int>.self) / MemoryLayout<Int>.size)

let x = ContainsTupleOfFunctions(x: (1, { $0 + 1 }))
let y = ContainsTupleOfFunctions(x: ("foo", { $0 + "bar" }))

// CHECK-NEXT: 2
print(x.apply())
// CHECK-NEXT: foobar
print(y.apply())

func callAny<T>(_ f: Any, _ x: T) -> T {
  return (f as! (T) -> T)(x)
}

any = {(x: Int) -> Int in x + x}
// CHECK-NEXT: 24
print((any as! (Int) -> Int)(12))
// CHECK-NEXT: 24
let ca = callAny(any, 12)
print(ca)