mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Use the generic type lowering algorithm described in "docs/CallingConvention.rst#physical-lowering" to map from IRGen's explosion type to the type expected by the ABI. Change IRGen to use the swift calling convention (swiftcc) for native swift functions. Use the 'swiftself' attribute on self parameters and for closures contexts. Use the 'swifterror' parameter for swift error parameters. Change functions in the runtime that are called as native swift functions to use the swift calling convention. rdar://19978563
39 lines
1.6 KiB
Swift
39 lines
1.6 KiB
Swift
// RUN: %target-swift-frontend -Xllvm -new-mangling-for-tests %s -emit-ir -g -o %t.ll
|
|
// RUN: %FileCheck %s < %t.ll
|
|
|
|
class UIWindow {}
|
|
class AppDelegate {
|
|
var window: UIWindow?
|
|
// CHECK: define hidden {{.*}}i1 {{.*}}11AppDelegateC1f
|
|
func f() -> Bool {
|
|
// Test for -O0 shadow copies.
|
|
// CHECK: call void @llvm.dbg.declare({{.*}}, metadata ![[B:.*]], metadata !{{[0-9]+}})
|
|
// CHECK-NOT: call void @llvm.dbg.value({{.*}}, metadata ![[B]], metadata !{{[0-9]+}})
|
|
// CHECK: call void @llvm.dbg.declare({{.*}}, metadata ![[SELF:.*]], metadata !{{[0-9]+}})
|
|
let a = "let"
|
|
// CHECK-NOT: call void @llvm.dbg.value({{.*}}, metadata ![[SELF]], metadata !{{[0-9]+}})
|
|
// CHECK: call void @llvm.dbg.declare({{.*}}, metadata ![[A:.*]], metadata !{{[0-9]+}})
|
|
// CHECK-NOT: call void @llvm.dbg.value({{.*}}, metadata ![[A]], metadata !{{[0-9]+}})
|
|
// CHECK-DAG: ![[A]] = !DILocalVariable(name: "a",{{.*}} line: [[@LINE-4]],
|
|
// CHECK-DAG: ![[SELF]] = !DILocalVariable(name: "self", arg: 1{{.*}} line: [[@LINE-10]],
|
|
// CHECK-DAG: ![[B]] = !DILocalVariable(name: "b",{{.*}} line: [[@LINE+1]],
|
|
var b = "var"
|
|
self.window = UIWindow()
|
|
return true
|
|
}
|
|
}
|
|
|
|
// End-to-end test:
|
|
// RUN: llc %t.ll -filetype=obj -o %t.o
|
|
// RUN: %llvm-dwarfdump %t.o | %FileCheck %s --check-prefix DWARF-CHECK
|
|
// DWARF-CHECK: DW_AT_name {{.*}} "f"
|
|
//
|
|
// DWARF-CHECK: DW_TAG_formal_parameter
|
|
// DWARF-CHECK: DW_AT_name {{.*}} "self"
|
|
//
|
|
// DWARF-CHECK: DW_TAG_variable
|
|
// DWARF-CHECK: DW_AT_name {{.*}} "b"
|
|
//
|
|
// DWARF-CHECK: DW_TAG_variable
|
|
// DWARF-CHECK: DW_AT_name {{.*}} "a"
|