mirror of
https://github.com/apple/swift.git
synced 2026-03-04 18:24:35 +01:00
Repurpose mangling operator `Y` as an umbrella operator that covers new attributes on function types. Free up operators `J`, `j`, and `k`. ``` async ::= 'Ya' // 'async' annotation on function types sendable ::= 'Yb' // @Sendable on function types throws ::= 'K' // 'throws' annotation on function types differentiable ::= 'Yjf' // @differentiable(_forward) on function type differentiable ::= 'Yjr' // @differentiable(reverse) on function type differentiable ::= 'Yjd' // @differentiable on function type differentiable ::= 'Yjl' // @differentiable(_linear) on function type ``` Resolves rdar://76299796.
42 lines
1.8 KiB
Swift
42 lines
1.8 KiB
Swift
// RUN: %target-swift-frontend %s -emit-ir -g -o - \
|
|
// RUN: -module-name M -enable-experimental-concurrency \
|
|
// RUN: -parse-as-library | %FileCheck %s
|
|
// REQUIRES: concurrency
|
|
|
|
func use<T>(_ t: T) {}
|
|
func forceSplit() async {
|
|
}
|
|
func withGenericArg<T>(_ msg: T) async {
|
|
// This odd debug info is part of a contract with CoroSplit/CoroFrame to fix
|
|
// this up after coroutine splitting.
|
|
// CHECK-LABEL: {{^define .*}} @"$s1M14withGenericArgyyxYalF"(%swift.context* swiftasync %0
|
|
// CHECK: call void @llvm.dbg.declare(metadata %swift.context* %0,
|
|
// CHECK-SAME: metadata ![[MSG:[0-9]+]], metadata !DIExpression(
|
|
// CHECK-SAME: DW_OP_plus_uconst, {{[0-9]+}}, DW_OP_deref))
|
|
// CHECK: call void @llvm.dbg.declare(metadata %swift.context* %0,
|
|
// CHECK-SAME: metadata ![[TAU:[0-9]+]], metadata !DIExpression(
|
|
// CHECK-SAME: DW_OP_plus_uconst, {{[0-9]+}}))
|
|
|
|
await forceSplit()
|
|
// CHECK-LABEL: {{^define .*}} @"$s1M14withGenericArgyyxYalFTQ0_"(i8* swiftasync %0)
|
|
// CHECK: call void @llvm.dbg.declare(metadata i8* %0,
|
|
// CHECK-SAME: metadata ![[MSG_R:[0-9]+]], metadata !DIExpression(DW_OP_deref,
|
|
// CHECK-SAME: DW_OP_plus_uconst, [[OFFSET:[0-9]+]],
|
|
// CHECK-SAME: DW_OP_plus_uconst, {{[0-9]+}}, DW_OP_deref))
|
|
// CHECK: call void @llvm.dbg.declare(metadata i8* %0,
|
|
// CHECK-SAME: metadata ![[TAU_R:[0-9]+]], metadata !DIExpression(DW_OP_deref,
|
|
// CHECK-SAME: DW_OP_plus_uconst, [[OFFSET]],
|
|
// CHECK-SAME: DW_OP_plus_uconst, {{[0-9]+}}))
|
|
use(msg)
|
|
}
|
|
// CHECK-LABEL: {{^define }}
|
|
@main struct Main {
|
|
static func main() async {
|
|
await withGenericArg("hello (asynchronously)")
|
|
}
|
|
}
|
|
// CHECK: ![[MSG]] = !DILocalVariable(name: "msg", arg: 1,
|
|
// CHECK: ![[TAU]] = !DILocalVariable(name: "$\CF\84_0_0",
|
|
// CHECK: ![[MSG_R]] = !DILocalVariable(name: "msg", arg: 1,
|
|
// CHECK: ![[TAU_R]] = !DILocalVariable(name: "$\CF\84_0_0",
|