// RUN: %target-swift-frontend %s -O -emit-ir -g -o %t.ll -module-name a // RUN: cat %t.ll | %FileCheck %s --check-prefix=CASE_0 // RUN: cat %t.ll | %FileCheck %s --check-prefix=CASE_1 // RUN: cat %t.ll | %FileCheck %s --check-prefix=CASE_2 public enum Result { case success(Value) case failure(Error) } extension Result { public func map(_ transform: (Value) -> U) -> Result { switch self { case .success(let value): return .success(transform(value)) case .failure(let error): return .failure(error) } } } @inline(never) func use(_ t : T) { print(t) } public class SomeClass { public let s = "hello" } extension Result where Value : SomeClass { public func f() -> Self { use(self) return map({ $0 }) } } extension Result { public func g() { use(self) } } let x : Result = .success(SomeClass()) let y : Result<(Int64, Int64, Int64, Int64)> = .success((1, 2, 3, 4)) x.f() y.g() // Here we have three types, all named $s1a6ResultOyxGD (---> a.Result), // but with different storage sizes: // // 0. Unsized from the subroutine type of map. // 1. Enum wrapping a pointer-sized object [map() and f()]. // 2. Enum wrapping a 4x64-bit tuple. // // Test that bound generic enums are *not* using their mangled name as a unique // identifier. // (0) unsized. // CASE_0-DAG: !DISubprogram(name: "map", {{.*}}line: 11, type: ![[SBTY:[0-9]+]] // CASE_0-DAG: ![[SBTY]] = !DISubroutineType(types: ![[SBTYS:[0-9]+]]) // CASE_0-DAG: ![[SBTYS]] = !{!{{[0-9]+}}, !{{[0-9]+}}, ![[SELFTY:[0-9]+]]} // CASE_0-DAG: ![[SELFTY]] = !DICompositeType(tag: DW_TAG_structure_type, {{.*}}DIFlagFwdDecl // The unique unsized type. // CASE_0-DAG: !DICompositeType(tag: DW_TAG_structure_type, name: "$s1a6ResultOyxGD", {{.*}}DIFlagFwdDecl // (1) // CASE_1-DAG: ![[F:[0-9]+]] = distinct !DISubprogram(name: "f", // CASE_1-DAG: !DILocalVariable(name: "self", arg: 1, scope: ![[F]],{{.*}} line: 31,{{.*}} type: ![[C_CLASS:[0-9]+]] // CASE_1-DAG: ![[C_CLASS]] = !DIDerivedType(tag: DW_TAG_const_type,{{.*}} baseType: ![[CLASS:[0-9]+]]) // CASE_1-DAG: ![[CLASS]] = !DICompositeType(tag: DW_TAG_structure_type,{{.*}} size: {{40|72}} // (2) // CASE_2-DAG: ![[G:[0-9]+]] = distinct !DISubprogram(name: "g", // CASE_2-DAG: !DILocalVariable(name: "self", arg: 1, scope: ![[G]],{{.*}} line: 38,{{.*}} type: ![[C_TUP:[0-9]+]] // CASE_2-DAG: ![[C_TUP]] = !DIDerivedType(tag: DW_TAG_const_type,{{.*}} baseType: ![[TUP:[0-9]+]]) // CASE_2-DAG: ![[TUP]] = !DICompositeType(tag: DW_TAG_structure_type,{{.*}} size: {{264|512}},