mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
300 lines
12 KiB
Swift
300 lines
12 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// Evaluates a closure while ensuring that the given instance is not destroyed
|
|
/// before the closure returns.
|
|
///
|
|
/// - Parameters:
|
|
/// - x: An instance to preserve until the execution of `body` is completed.
|
|
/// - body: A closure to execute that depends on the lifetime of `x` being
|
|
/// extended. If `body` has a return value, that value is also used as the
|
|
/// return value for the `withExtendedLifetime(_:_:)` method.
|
|
/// - Returns: The return value, if any, of the `body` closure parameter.
|
|
@_alwaysEmitIntoClient
|
|
public func withExtendedLifetime<T: ~Copyable, E: Error, Result: ~Copyable>(
|
|
_ x: borrowing T,
|
|
_ body: () throws(E) -> Result
|
|
) throws(E) -> Result {
|
|
defer { _fixLifetime(x) }
|
|
return try body()
|
|
}
|
|
|
|
@_spi(SwiftStdlibLegacyABI) @available(swift, obsoleted: 1)
|
|
@_silgen_name("$ss20withExtendedLifetimeyq_x_q_yKXEtKr0_lF")
|
|
@usableFromInline
|
|
internal func __abi_withExtendedLifetime<T, Result>(
|
|
_ x: T, _ body: () throws -> Result
|
|
) rethrows -> Result {
|
|
defer { _fixLifetime(x) }
|
|
return try body()
|
|
}
|
|
|
|
/// Evaluates a closure while ensuring that the given instance is not destroyed
|
|
/// before the closure returns.
|
|
///
|
|
/// - Parameters:
|
|
/// - x: An instance to preserve until the execution of `body` is completed.
|
|
/// - body: A closure to execute that depends on the lifetime of `x` being
|
|
/// extended. If `body` has a return value, that value is also used as the
|
|
/// return value for the `withExtendedLifetime(_:_:)` method.
|
|
/// - Returns: The return value, if any, of the `body` closure parameter.
|
|
@_alwaysEmitIntoClient
|
|
public func withExtendedLifetime<T: ~Copyable, E: Error, Result: ~Copyable>(
|
|
_ x: borrowing T,
|
|
_ body: (borrowing T) throws(E) -> Result
|
|
) throws(E) -> Result {
|
|
defer { _fixLifetime(x) }
|
|
return try body(x)
|
|
}
|
|
|
|
@_spi(SwiftStdlibLegacyABI) @available(swift, obsoleted: 1)
|
|
@_silgen_name("$ss20withExtendedLifetimeyq_x_q_xKXEtKr0_lF")
|
|
@usableFromInline
|
|
internal func __abi_withExtendedLifetime<T, Result>(
|
|
_ x: T, _ body: (T) throws -> Result
|
|
) rethrows -> Result {
|
|
defer { _fixLifetime(x) }
|
|
return try body(x)
|
|
}
|
|
|
|
// Fix the lifetime of the given instruction so that the ARC optimizer does not
|
|
// shorten the lifetime of x to be before this point.
|
|
@_transparent
|
|
@_preInverseGenerics
|
|
public func _fixLifetime<T: ~Copyable>(_ x: borrowing T) {
|
|
Builtin.fixLifetime(x)
|
|
}
|
|
|
|
/// Calls the given closure with a mutable pointer to the given argument.
|
|
///
|
|
/// The `withUnsafeMutablePointer(to:_:)` function is useful for calling
|
|
/// Objective-C APIs that take in/out parameters (and default-constructible
|
|
/// out parameters) by pointer.
|
|
///
|
|
/// The pointer argument to `body` is valid only during the execution of
|
|
/// `withUnsafeMutablePointer(to:_:)`. Do not store or return the pointer for
|
|
/// later use.
|
|
///
|
|
/// - Parameters:
|
|
/// - value: An instance to temporarily use via pointer. Note that the `inout`
|
|
/// exclusivity rules mean that, like any other `inout` argument, `value`
|
|
/// cannot be directly accessed by other code for the duration of `body`.
|
|
/// Access must only occur through the pointer argument to `body` until
|
|
/// `body` returns.
|
|
/// - body: A closure that takes a mutable pointer to `value` as its sole
|
|
/// argument. If the closure has a return value, that value is also used
|
|
/// as the return value of the `withUnsafeMutablePointer(to:_:)` function.
|
|
/// The pointer argument is valid only for the duration of the function's
|
|
/// execution.
|
|
/// - Returns: The return value, if any, of the `body` closure.
|
|
@_alwaysEmitIntoClient
|
|
public func withUnsafeMutablePointer<
|
|
T: ~Copyable, E: Error, Result: ~Copyable
|
|
>(
|
|
to value: inout T,
|
|
_ body: (UnsafeMutablePointer<T>) throws(E) -> Result
|
|
) throws(E) -> Result {
|
|
try unsafe body(UnsafeMutablePointer<T>(Builtin.addressof(&value)))
|
|
}
|
|
|
|
@_spi(SwiftStdlibLegacyABI) @available(swift, obsoleted: 1)
|
|
@_silgen_name("$ss24withUnsafeMutablePointer2to_q_xz_q_SpyxGKXEtKr0_lF")
|
|
@usableFromInline
|
|
internal func __abi_se0413_withUnsafeMutablePointer<T, Result>(
|
|
to value: inout T,
|
|
_ body: (UnsafeMutablePointer<T>) throws -> Result
|
|
) throws -> Result {
|
|
return try unsafe body(UnsafeMutablePointer<T>(Builtin.addressof(&value)))
|
|
}
|
|
|
|
/// Calls the given closure with a mutable pointer to the given argument.
|
|
///
|
|
/// This function is similar to `withUnsafeMutablePointer`, except that it
|
|
/// doesn't trigger stack protection for the pointer.
|
|
@_alwaysEmitIntoClient
|
|
public func _withUnprotectedUnsafeMutablePointer<
|
|
T: ~Copyable, E: Error, Result: ~Copyable
|
|
>(
|
|
to value: inout T,
|
|
_ body: (UnsafeMutablePointer<T>) throws(E) -> Result
|
|
) throws(E) -> Result
|
|
{
|
|
#if $BuiltinUnprotectedAddressOf
|
|
return try unsafe body(UnsafeMutablePointer<T>(Builtin.unprotectedAddressOf(&value)))
|
|
#else
|
|
return try body(UnsafeMutablePointer<T>(Builtin.addressof(&value)))
|
|
#endif
|
|
}
|
|
|
|
/// Invokes the given closure with a pointer to the given argument.
|
|
///
|
|
/// The `withUnsafePointer(to:_:)` function is useful for calling Objective-C
|
|
/// APIs that take in parameters by const pointer.
|
|
///
|
|
/// The pointer argument to `body` is valid only during the execution of
|
|
/// `withUnsafePointer(to:_:)`. Do not store or return the pointer for later
|
|
/// use.
|
|
///
|
|
/// - Parameters:
|
|
/// - value: An instance to temporarily use via pointer.
|
|
/// - body: A closure that takes a pointer to `value` as its sole argument. If
|
|
/// the closure has a return value, that value is also used as the return
|
|
/// value of the `withUnsafePointer(to:_:)` function. The pointer argument
|
|
/// is valid only for the duration of the function's execution.
|
|
/// It is undefined behavior to try to mutate through the pointer argument
|
|
/// by converting it to `UnsafeMutablePointer` or any other mutable pointer
|
|
/// type. If you need to mutate the argument through the pointer, use
|
|
/// `withUnsafeMutablePointer(to:_:)` instead.
|
|
/// - Returns: The return value, if any, of the `body` closure.
|
|
@_alwaysEmitIntoClient
|
|
public func withUnsafePointer<T: ~Copyable, E: Error, Result: ~Copyable>(
|
|
to value: borrowing T,
|
|
_ body: (UnsafePointer<T>) throws(E) -> Result
|
|
) throws(E) -> Result
|
|
{
|
|
return try unsafe body(UnsafePointer<T>(Builtin.addressOfBorrow(value)))
|
|
}
|
|
|
|
/// ABI: Historical withUnsafePointer(to:_:) rethrows, expressed as "throws",
|
|
/// which is ABI-compatible with "rethrows".
|
|
@_spi(SwiftStdlibLegacyABI) @available(swift, obsoleted: 1)
|
|
@_silgen_name("$ss17withUnsafePointer2to_q_x_q_SPyxGKXEtKr0_lF")
|
|
@usableFromInline
|
|
internal func __abi_withUnsafePointer<T, Result>(
|
|
to value: T,
|
|
_ body: (UnsafePointer<T>) throws -> Result
|
|
) throws -> Result
|
|
{
|
|
return try unsafe body(UnsafePointer<T>(Builtin.addressOfBorrow(value)))
|
|
}
|
|
|
|
/// Invokes the given closure with a pointer to the given argument.
|
|
///
|
|
/// The `withUnsafePointer(to:_:)` function is useful for calling Objective-C
|
|
/// APIs that take in parameters by const pointer.
|
|
///
|
|
/// The pointer argument to `body` is valid only during the execution of
|
|
/// `withUnsafePointer(to:_:)`. Do not store or return the pointer for later
|
|
/// use.
|
|
///
|
|
/// - Parameters:
|
|
/// - value: An instance to temporarily use via pointer. Note that the `inout`
|
|
/// exclusivity rules mean that, like any other `inout` argument, `value`
|
|
/// cannot be directly accessed by other code for the duration of `body`.
|
|
/// Access must only occur through the pointer argument to `body` until
|
|
/// `body` returns.
|
|
/// - body: A closure that takes a pointer to `value` as its sole argument. If
|
|
/// the closure has a return value, that value is also used as the return
|
|
/// value of the `withUnsafePointer(to:_:)` function. The pointer argument
|
|
/// is valid only for the duration of the function's execution.
|
|
/// It is undefined behavior to try to mutate through the pointer argument
|
|
/// by converting it to `UnsafeMutablePointer` or any other mutable pointer
|
|
/// type. If you need to mutate the argument through the pointer, use
|
|
/// `withUnsafeMutablePointer(to:_:)` instead.
|
|
/// - Returns: The return value, if any, of the `body` closure.
|
|
@_alwaysEmitIntoClient
|
|
public func withUnsafePointer<T: ~Copyable, E: Error, Result: ~Copyable>(
|
|
to value: inout T,
|
|
_ body: (UnsafePointer<T>) throws(E) -> Result
|
|
) throws(E) -> Result {
|
|
try unsafe body(UnsafePointer<T>(Builtin.addressof(&value)))
|
|
}
|
|
|
|
/// ABI: Historical withUnsafePointer(to:_:) rethrows,
|
|
/// expressed as "throws", which is ABI-compatible with "rethrows".
|
|
@_spi(SwiftStdlibLegacyABI) @available(swift, obsoleted: 1)
|
|
@_silgen_name("$ss17withUnsafePointer2to_q_xz_q_SPyxGKXEtKr0_lF")
|
|
@usableFromInline
|
|
internal func __abi_se0413_withUnsafePointer<T, Result>(
|
|
to value: inout T,
|
|
_ body: (UnsafePointer<T>) throws -> Result
|
|
) throws -> Result {
|
|
return try unsafe body(UnsafePointer<T>(Builtin.addressof(&value)))
|
|
}
|
|
|
|
/// Invokes the given closure with a pointer to the given argument.
|
|
///
|
|
/// This function is similar to `withUnsafePointer`, except that it
|
|
/// doesn't trigger stack protection for the pointer.
|
|
@_alwaysEmitIntoClient
|
|
public func _withUnprotectedUnsafePointer<
|
|
T: ~Copyable, E: Error, Result: ~Copyable
|
|
>(
|
|
to value: inout T,
|
|
_ body: (UnsafePointer<T>) throws(E) -> Result
|
|
) throws(E) -> Result {
|
|
#if $BuiltinUnprotectedAddressOf
|
|
return try unsafe body(UnsafePointer<T>(Builtin.unprotectedAddressOf(&value)))
|
|
#else
|
|
return try body(UnsafePointer<T>(Builtin.addressof(&value)))
|
|
#endif
|
|
}
|
|
|
|
/// Invokes the given closure with a pointer to the given argument.
|
|
///
|
|
/// This function is similar to `withUnsafePointer`, except that it
|
|
/// doesn't trigger stack protection for the pointer.
|
|
@_alwaysEmitIntoClient
|
|
public func _withUnprotectedUnsafePointer<
|
|
T: ~Copyable, E: Error, Result: ~Copyable
|
|
>(
|
|
to value: borrowing T,
|
|
_ body: (UnsafePointer<T>) throws(E) -> Result
|
|
) throws(E) -> Result {
|
|
return try unsafe body(UnsafePointer<T>(Builtin.unprotectedAddressOfBorrow(value)))
|
|
}
|
|
|
|
@available(*, deprecated, message: "Use the copy operator")
|
|
@_alwaysEmitIntoClient
|
|
@inlinable
|
|
@_transparent
|
|
@_semantics("lifetimemanagement.copy")
|
|
public func _copy<T>(_ value: T) -> T {
|
|
copy value
|
|
}
|
|
|
|
/// Unsafely discard any lifetime dependency on the `dependent` argument. Return
|
|
/// a value identical to `dependent` with a lifetime dependency on the caller's
|
|
/// borrow scope of the `source` argument.
|
|
@unsafe
|
|
@_unsafeNonescapableResult
|
|
@_alwaysEmitIntoClient
|
|
@_transparent
|
|
@lifetime(borrow source)
|
|
internal func _overrideLifetime<
|
|
T: ~Copyable & ~Escapable, U: ~Copyable & ~Escapable
|
|
>(
|
|
_ dependent: consuming T, borrowing source: borrowing U
|
|
) -> T {
|
|
// TODO: Remove @_unsafeNonescapableResult. Instead, the unsafe dependence
|
|
// should be expressed by a builtin that is hidden within the function body.
|
|
dependent
|
|
}
|
|
|
|
/// Unsafely discard any lifetime dependency on the `dependent` argument. Return
|
|
/// a value identical to `dependent` that inherits all lifetime dependencies from
|
|
/// the `source` argument.
|
|
@unsafe
|
|
@_unsafeNonescapableResult
|
|
@_alwaysEmitIntoClient
|
|
@_transparent
|
|
@lifetime(copy source)
|
|
internal func _overrideLifetime<
|
|
T: ~Copyable & ~Escapable, U: ~Copyable & ~Escapable
|
|
>(
|
|
_ dependent: consuming T, copying source: borrowing U
|
|
) -> T {
|
|
// TODO: Remove @_unsafeNonescapableResult. Instead, the unsafe dependence
|
|
// should be expressed by a builtin that is hidden within the function body.
|
|
dependent
|
|
}
|