Cleanup the tests so we can cross reference them with the documentation. Update the tests to allow multiple annotations and defaults.
8.9 KiB
@_lifetime annotation
Introduction
@_lifetime annotations are now available under -enable-experimental-features Lifetimes. The feature proposal is documented in PR: Lifetime dependencies #2750.
To summarize the basic syntax: functions require a @_lifetime annotation when they return a non-Escapable type, either as the function result, or as an inout parameter. The annotation syntax pattern is @_lifetime(target: <scope> source) where target is a function output and source is an input. If target: is omitted, then it is assumed to be the function's result.
<scope> ::= [borrow|&|copy]
borrow creates a new borrow scope that guarantees exclusive read access to the caller's source argument over all uses of target.
& creates a new borrow scope that guarantees exclusive write access to the caller's source argument over all uses of target.
copy copies the lifetime constraints on the caller's source argument to target.
The @lifetime annotation is enforced both in the body of the function and at each call site. For both borrow and & scoped dependencies, the function's implementation guarantees that target is valid as long as source is alive, and each caller of the function guarantees that source will outlive target. For copy dependencies, the function's implementation guarantees that all constraints on target are copied from source, and the caller propagates all lifetime constraints on source to all uses of target.
Default lifetimes
The Swift 6.2 compiler provided default @_lifetime behavior whenever it can do so without ambiguity. Often, despite ambiguity, an "obvious" default exists, but we wanted to introduce defaults slowly after developers have enough experience to inform discussion about them. This document tracks the current state of the implementation as it progresses from the original 6.2 implementation. Corresponding tests are in test/Sema/lifetime_depend_infer.swift; searching for "DEFAULT:" highlights the rules defined below...
Single parameter default rule
Given a function or method that returns a non-Escapable result:
-
Default to
@_lifetime(<scope> a)for a~Escapableresult on functions with a single parametera. -
Default to
@_lifetime(<scope> self)for a~Escapableresult on methods with no parameters.
| Type of parameter | default |
(a or self) |
lifetime dependency |
|---|---|
Escapable |
@_lifetime(borrow param)1 |
inout Escapable |
@_lifetime(¶m)1 |
~Escapable |
none2 |
Examples:
struct A: Escapable {
let obj: AnyObject // ~BitwiseCopyable
}
struct NE: ~Escapable {...}
/* DEFAULT: @_lifetime(borrow a) */
func oneParam_NEResult(a: A) -> NE
/* DEFAULT: @_lifetime(&a) */
func oneInoutParam_NEResult(a: inout A) -> NE
extension A /* Self: Escapable */ {
/* DEFAULT: @_lifetime(borrow self) */
func noParam_NEResult() -> NE
/* DEFAULT: @_lifetime(&self) */
mutating func mutating_noParam_NEResult() -> NE
}
Implicit initializer and setter defaults
An implicit setter of a ~Escapable stored property defaults to @_lifetime(self: copy self, copy newValue). This is always correct because the setter simply assigns the stored property to the newValue. Assigning a ~Escapable variable copies the lifetime dependency.
Similarly, an implicit initializer of a non-Escapable struct defaults to @_lifetime(self: copy arg) if all of the initializer arguments are ~Escapable. This is equivalent to assigning each ~Escapable stored property. If, however, any initializer arguments are Escapable, then no default lifetime is provided unless it is the sole argument, in which case the single parameter rule applies.
inout parameter default rule
-
Default to
@_lifetime(a: copy a)for allinoutparameters whereais~Escapable. -
Default to
@_lifetime(self: copy self)onmutatingmethods whereselfis~Escapable.
Examples
struct A: Escapable {
let obj: AnyObject // ~BitwiseCopyable
}
struct NE: ~Escapable {...}
/* DEFAULT: @_lifetime(a: copy a) */
func inoutNEParam_void(_: inout NE) -> ()
/* DEFAULT: @_lifetime(a: copy a) */
/* DEFAULT: @_lifetime(b: copy b) */
func inoutNEParam_inoutNEParam_void(a: inout NE, b: inout NE) -> ()
/* DEFAULT: @_lifetime(ne: copy ne) */
@_lifetime(&ne)
func inoutNEParam_NEResult(ne: inout NE) -> NE
extension A /* Self: Escapable */ {
/* DEFAULT: @_lifetime(ne: copy NE) */
func inoutNEParam_void(a: inout ) -> ()
/* DEFAULT: @_lifetime(ne: copy NE) */
mutating func mutating_inoutNEParam_void() -> ()
/* DEFAULT: @_lifetime(ne: copy NE) */
@_lifetime(&self)
func inoutNEParam_NEResult(ne: inout NE) -> NE
}
extension NE /* Self: ~Escapable */ {
/* DEFAULT: @_lifetime(self: copy self) */
mutating func mutating_noParam_void() -> ()
/* DEFAULT: @_lifetime(self: copy self) */
mutating func mutating_oneParam_void(_: NE) -> ()
/* DEFAULT: @_lifetime(self: copy self) */
/* DEFAULT: @_lifetime(ne: copy ne) */
mutating func mutating_inoutParam_void(ne: inout NE) -> ()
/* DEFAULT: @_lifetime(self: copy self) */
@_lifetime(&self)
mutating func mutating_noParam_NEResult() -> NE
}
Same-type default lifetime (unimplemented)
Given a function declaration:
func foo(..., a: A, ...) -> R { ... }
Where R: ~Escapable and A == R, default to @_lifetime(copy a).
For methods, the same rule applies to implicit Self parameter.
This handles the obvious cases in which both the parameter and result are ~Escapable. For example:
extension Span {
/* DEFAULT: @_lifetime(copy self) */
func extracting(droppingLast k: Int) -> Self { ... }
}
Generic same-type default lifetime (unimplemented)
The same-type default lifetime rule described above is convenient for nominal types but essential for generic type parameters.
Given a generic function declaration:
func foo<A, R>(..., a: A, ...) -> R { ... }
The same-type default lifetime rule applies to the types in the function declaration's generic context just as it did for nominal types in the previous example. So, again, if type resolution determines R: ~Escapable and A == R, then @_lifetime(copy a) will be default.
Unlike nominal types, the programmer is not allowed to explicitly declare a lifetime dependency, @_lifetime(copy a), unless the argument and result types are equivalent (A == R). Copying a lifetime dependency from one value to another requires that both values are non-Escapable. Generic types are conditionally non-Escapable (their lifetime dependencies are type-erased), so type equivalence is the only way to ensure that both values are non-Escapable under the same conditions.
Here we see how same-type lifetime requirement applies to type substitution and associated types:
protocol P {
associatedtype T: ~Escapable
}
protocol Q {
associatedtype U: ~Escapable
}
struct S<A: P, B: Q> {
/* OK: @_lifetime(copy a) is valid and default */
func foo(a: A.T) -> B.U where A.T == B.U
}
Note that lifetime dependencies are resolved at function declaration time, which determines the function's type. The generic context at the point of function invocation is not considered. For example, the following declaration of foo is invalid, because it's argument and results types don't match at the point of declaraion, even though the argument and result do have the same type when invoked inside bar:
struct S<T: ~Escapable, U: ~Escapable> {
static func foo(a: T) -> U // ERROR: missing lifetime dependency
}
/* OK: @_lifetime(copy a) is valid and default */
func bar<T: ~Escapable>(a: T) -> T {
S<T, T>.foo(a: a) // The same-type rule is satisfied in this context, but 'foo's declaration is invalid.
}
-
When the parameter is
BitwiseCopyable, such as an integer or unsafe pointer, the single parameter default rule applies to function parameters but not to the implicitselfparameter. Depending on aBitwiseCopyablevalue is a convenience for APIs that construct span-like values from anUnsafePointerpassed as an argument. This creates a dependency on a local copy of the pointer variable with subtle semantics. User-definedBitwiseCopyablestructs should generally avoid such subtle lifetime dependencies. If needed, the author of the data type should explicitly opt into them. ↩︎ -
When the single parameter is also
~Escapable, the result must depend on it, but the dependency may either be scoped (borrowor&) or it may be copied (copy).copyis the obvious choice when the parameter and result are the same type, but it is not always correct. Furthermore, a lifetime dependency can only be copied from a generic type when result as the same generic type. This case is therefore handled by same-type default lifetime (discussed below) rather than as a default@_lifetimerule. ↩︎