//===----------------------------------------------------------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2017 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 // //===----------------------------------------------------------------------===// import SwiftShims /// Class object and class metadata structures public struct ClassMetadata { var superclassMetadata: UnsafeMutablePointer? // There is no way to express the actual calling convention on this // function (swiftcc with 'self') currently, so let's use UnsafeRawPointer // and a helper function in C (_swift_embedded_invoke_heap_object_destroy). var destroy: UnsafeRawPointer // There is no way to express the actual calling convention on this // function (swiftcc with 'self') currently, so let's use UnsafeRawPointer // and a helper function in C (_swift_embedded_invoke_heap_object_optional_ivardestroyer). var ivarDestroyer: UnsafeRawPointer? } /* Embedded Swift Refcounting Scheme ================================= The scheme for storing and maintaining a refcount on heap objects is very simple in Embedded Swift, and is much simpler than regular Swift's. This is mainly due to the fact that we currently only maintain the regular ("strong") refcount and we don't allow weak references, unowned references and we don't track refcount during deinit of the object. The refcount is always stored directly inline in the heap object, in the `refcount` field (see HeapObject struct below). This field has the following structure (on 32-bit, and similar on other bitwidths): ┌──────────────┬──────────────────────────────────────────────┐ │ b31 │ b30:b0 │ ├──────────────┼──────────────────────────────────────────────┤ │ doNotFreeBit │ actual number of references │ └──────────────┴──────────────────────────────────────────────┘ If the highest bit (doNotFreeBit) is set, the behavior of dropping the last reference (release operation where refcount ends up being 0) is altered to avoid calling free() on the object (deinit is still run). This is crutial for class instances that are promoted by the compiler from being heap-allocated to instead be located on the stack (see swift_initStackObject). To retrieve the actual number of references from the `refcount` field, refcountMask needs to be applied, which masks off the doNotFreeBit. The actual number of references has one possible value that has a special meaning, immortalRefCount (all bits set, i.e. 0x7fff_ffff on 32-bit systems). When used, retain and release operations do nothing, references are not counted, and the object can never be deinit'd / free'd. This is used for class instances that are promoted by the compiler to be allocated statically in global memory (see swift_initStaticObject). Note that there are two different scenarios for this currently: - In most cases, a class instance that is promoted to a global, is still dynamically initialized with a runtime call to swift_initStaticObject. This function will set the refcount field to immortalRefCount | doNotFreeBit. - As a special case to allow arrays be fully statically initialized without runtime overhead, instances of _ContiguousArrayStorage can be promoted to __StaticArrayStorage with the HeapObject header emitted directly by the compiler and refcount field directly set to immortalRefCount | doNotFreeBit (see irgen::emitConstantObject). Tne immortalRefCount is additionally also used as a placeholder value for objects (heap-allocated or stack-allocated) when they're currently inside their deinit(). This is done to prevent further retains and releases inside deinit from triggering deinitialization again, without the need to reserve another bit for this purpose. Retains and releases in deinit() are allowed, as long as they are balanced at the end, i.e. the object is not escaped (user's responsibility) and not over-released (this can only be caused by unsafe code). The following table summarizes the meaning of the possible combinations of doNotFreeBit and have immortal refcount value: ┌───────────╥──────────╥─────────────────────────────────────────────────┐ │ doNotFree ║ immortal ║ │ ╞═══════════╬══════════╬═════════════════════════════════════════════════╡ │ 0 ║ no ║ regular class instance │ ├───────────╫──────────╫─────────────────────────────────────────────────┤ │ 0 ║ yes ║ regular class instance during deinit() │ ├───────────╫──────────╫─────────────────────────────────────────────────┤ │ 1 ║ no ║ stack-allocated │ ├───────────╫──────────╫─────────────────────────────────────────────────┤ │ 1 ║ yes ║ global-allocated, no need to track references, │ │ ║ ║ or stack-allocated instance during deinit() │ └───────────╨──────────╨─────────────────────────────────────────────────┘ */ public struct HeapObject { // There is no way to express the custom ptrauth signature on the metadata // field, so let's use UnsafeRawPointer and a helper function in C instead // (_swift_embedded_set_heap_object_metadata_pointer). var metadata: UnsafeRawPointer // TODO: This is just an initial support for strong refcounting only. We need // to think about supporting (or banning) weak and/or unowned references. var refcount: Int // Note: The immortalRefCount value is also hard-coded in IRGen in `irgen::emitConstantObject`. #if _pointerBitWidth(_64) static let doNotFreeBit = Int(bitPattern: 0x8000_0000_0000_0000) static let refcountMask = Int(bitPattern: 0x7fff_ffff_ffff_ffff) static let immortalRefCount = Int(bitPattern: 0x7fff_ffff_ffff_ffff) // Make sure we don't have doNotFreeBit set #elseif _pointerBitWidth(_32) static let doNotFreeBit = Int(bitPattern: 0x8000_0000) static let refcountMask = Int(bitPattern: 0x7fff_ffff) static let immortalRefCount = Int(bitPattern: 0x7fff_ffff) // Make sure we don't have doNotFreeBit set #elseif _pointerBitWidth(_16) static let doNotFreeBit = Int(bitPattern: 0x8000) static let refcountMask = Int(bitPattern: 0x7fff) static let immortalRefCount = Int(bitPattern: 0x7fff) // Make sure we don't have doNotFreeBit set #endif #if _pointerBitWidth(_64) static let immortalObjectPointerBit = UInt(0x8000_0000_0000_0000) #endif #if _pointerBitWidth(_64) static let bridgeObjectToPlainObjectMask = UInt(0x8fff_ffff_ffff_fff8) #elseif _pointerBitWidth(_32) static let bridgeObjectToPlainObjectMask = UInt(0xffff_ffff) #elseif _pointerBitWidth(_16) static let bridgeObjectToPlainObjectMask = UInt(0xffff) #endif } /// Forward declarations of C functions @_extern(c, "posix_memalign") func posix_memalign(_: UnsafeMutablePointer, _: Int, _: Int) -> CInt @_extern(c, "free") func free(_ p: UnsafeMutableRawPointer?) /// Allocations func alignedAlloc(size: Int, alignment: Int) -> UnsafeMutableRawPointer? { let alignment = max(alignment, MemoryLayout.size) var r: UnsafeMutableRawPointer? = nil _ = posix_memalign(&r, alignment, size) return r } @_cdecl("swift_slowAlloc") public func swift_slowAlloc(_ size: Int, _ alignMask: Int) -> UnsafeMutableRawPointer? { let alignment: Int if alignMask == -1 { alignment = _swift_MinAllocationAlignment } else { alignment = alignMask + 1 } return alignedAlloc(size: size, alignment: alignment) } @_cdecl("swift_slowDealloc") public func swift_slowDealloc(_ ptr: UnsafeMutableRawPointer, _ size: Int, _ alignMask: Int) { free(ptr) } @_cdecl("swift_allocObject") public func swift_allocObject(metadata: Builtin.RawPointer, requiredSize: Int, requiredAlignmentMask: Int) -> Builtin.RawPointer { return swift_allocObject(metadata: UnsafeMutablePointer(metadata), requiredSize: requiredSize, requiredAlignmentMask: requiredAlignmentMask)._rawValue } func swift_allocObject(metadata: UnsafeMutablePointer, requiredSize: Int, requiredAlignmentMask: Int) -> UnsafeMutablePointer { let p = swift_slowAlloc(requiredSize, requiredAlignmentMask)! let object = p.assumingMemoryBound(to: HeapObject.self) _swift_embedded_set_heap_object_metadata_pointer(object, metadata) object.pointee.refcount = 1 return object } @_cdecl("swift_deallocObject") public func swift_deallocObject(object: Builtin.RawPointer, allocatedSize: Int, allocatedAlignMask: Int) { swift_deallocObject(object: UnsafeMutablePointer(object), allocatedSize: allocatedSize, allocatedAlignMask: allocatedAlignMask) } func swift_deallocObject(object: UnsafeMutablePointer, allocatedSize: Int, allocatedAlignMask: Int) { free(UnsafeMutableRawPointer(object)) } @_cdecl("swift_deallocClassInstance") public func swift_deallocClassInstance(object: Builtin.RawPointer, allocatedSize: Int, allocatedAlignMask: Int) { swift_deallocClassInstance(object: UnsafeMutablePointer(object), allocatedSize: allocatedSize, allocatedAlignMask: allocatedAlignMask) } func swift_deallocClassInstance(object: UnsafeMutablePointer, allocatedSize: Int, allocatedAlignMask: Int) { if (object.pointee.refcount & HeapObject.doNotFreeBit) != 0 { return } free(UnsafeMutableRawPointer(object)) } @_cdecl("swift_deallocPartialClassInstance") public func swift_deallocPartialClassInstance(object: Builtin.RawPointer, metadata: Builtin.RawPointer, allocatedSize: Int, allocatedAlignMask: Int) { swift_deallocPartialClassInstance(object: UnsafeMutablePointer(object), metadata: UnsafeMutablePointer(metadata), allocatedSize: allocatedSize, allocatedAlignMask: allocatedAlignMask) } func swift_deallocPartialClassInstance(object: UnsafeMutablePointer, metadata: UnsafeMutablePointer, allocatedSize: Int, allocatedAlignMask: Int) { var classMetadata = _swift_embedded_get_heap_object_metadata_pointer(object).assumingMemoryBound(to: ClassMetadata.self) while classMetadata != metadata { _swift_embedded_invoke_heap_object_optional_ivardestroyer(object, classMetadata) guard let superclassMetadata = classMetadata.pointee.superclassMetadata else { break } classMetadata = superclassMetadata } } @_cdecl("swift_initStaticObject") public func swift_initStaticObject(metadata: Builtin.RawPointer, object: Builtin.RawPointer) -> Builtin.RawPointer { return swift_initStaticObject(metadata: UnsafeMutablePointer(metadata), object: UnsafeMutablePointer(object))._rawValue } func swift_initStaticObject(metadata: UnsafeMutablePointer, object: UnsafeMutablePointer) -> UnsafeMutablePointer { _swift_embedded_set_heap_object_metadata_pointer(object, metadata) object.pointee.refcount = HeapObject.immortalRefCount | HeapObject.doNotFreeBit return object } @_cdecl("swift_initStackObject") public func swift_initStackObject(metadata: Builtin.RawPointer, object: Builtin.RawPointer) -> Builtin.RawPointer { return swift_initStackObject(metadata: UnsafeMutablePointer(metadata), object: UnsafeMutablePointer(object))._rawValue } func swift_initStackObject(metadata: UnsafeMutablePointer, object: UnsafeMutablePointer) -> UnsafeMutablePointer { _swift_embedded_set_heap_object_metadata_pointer(object, metadata) object.pointee.refcount = 1 | HeapObject.doNotFreeBit return object } /// Refcounting func isValidPointerForNativeRetain(object: Builtin.RawPointer) -> Bool { let objectBits = UInt(Builtin.ptrtoint_Word(object)) if objectBits == 0 { return false } #if _pointerBitWidth(_64) if (objectBits & HeapObject.immortalObjectPointerBit) != 0 { return false } #endif return true } @_cdecl("swift_setDeallocating") public func swift_setDeallocating(object: Builtin.RawPointer) { } @_cdecl("swift_dynamicCastClass") public func swift_dynamicCastClass(object: UnsafeMutableRawPointer, targetMetadata: UnsafeRawPointer) -> UnsafeMutableRawPointer? { let sourceObj = object.assumingMemoryBound(to: HeapObject.self) var type = _swift_embedded_get_heap_object_metadata_pointer(sourceObj).assumingMemoryBound(to: ClassMetadata.self) let targetType = targetMetadata.assumingMemoryBound(to: ClassMetadata.self) while type != targetType { guard let superType = type.pointee.superclassMetadata else { return nil } type = UnsafeMutablePointer(superType) } return object } @_cdecl("swift_dynamicCastClassUnconditional") public func swift_dynamicCastClassUnconditional(object: UnsafeMutableRawPointer, targetMetadata: UnsafeRawPointer, file: UnsafePointer, line: CUnsignedInt, column: CUnsignedInt) -> UnsafeMutableRawPointer { guard let result = swift_dynamicCastClass(object: object, targetMetadata: targetMetadata) else { Builtin.int_trap() } return result } @_cdecl("swift_isUniquelyReferenced_native") public func swift_isUniquelyReferenced_native(object: Builtin.RawPointer) -> Bool { if !isValidPointerForNativeRetain(object: object) { return false } return swift_isUniquelyReferenced_nonNull_native(object: UnsafeMutablePointer(object)) } @_cdecl("swift_isUniquelyReferenced_nonNull_native") public func swift_isUniquelyReferenced_nonNull_native(object: Builtin.RawPointer) -> Bool { return swift_isUniquelyReferenced_nonNull_native(object: UnsafeMutablePointer(object)) } func swift_isUniquelyReferenced_nonNull_native(object: UnsafeMutablePointer) -> Bool { let refcount = refcountPointer(for: object) return loadAcquire(refcount) == 1 } @_cdecl("swift_retain") public func swift_retain(object: Builtin.RawPointer) -> Builtin.RawPointer { if !isValidPointerForNativeRetain(object: object) { return object } let o = UnsafeMutablePointer(object) return swift_retain_n_(object: o, n: 1)._rawValue } // Cannot use UnsafeMutablePointer? directly in the function argument or return value as it causes IRGen crashes @_cdecl("swift_retain_n") public func swift_retain_n(object: Builtin.RawPointer, n: UInt32) -> Builtin.RawPointer { if !isValidPointerForNativeRetain(object: object) { return object } let o = UnsafeMutablePointer(object) return swift_retain_n_(object: o, n: n)._rawValue } func swift_retain_n_(object: UnsafeMutablePointer, n: UInt32) -> UnsafeMutablePointer { let refcount = refcountPointer(for: object) if loadRelaxed(refcount) & HeapObject.refcountMask == HeapObject.immortalRefCount { return object } addRelaxed(refcount, n: Int(n)) return object } @_cdecl("swift_bridgeObjectRetain") public func swift_bridgeObjectRetain(object: Builtin.RawPointer) -> Builtin.RawPointer { return swift_bridgeObjectRetain_n(object: object, n: 1) } @_cdecl("swift_bridgeObjectRetain_n") public func swift_bridgeObjectRetain_n(object: Builtin.RawPointer, n: UInt32) -> Builtin.RawPointer { let objectBits = UInt(Builtin.ptrtoint_Word(object)) let untaggedObject = Builtin.inttoptr_Word((objectBits & HeapObject.bridgeObjectToPlainObjectMask)._builtinWordValue) return swift_retain_n(object: untaggedObject, n: n) } @_cdecl("swift_release") public func swift_release(object: Builtin.RawPointer) { if !isValidPointerForNativeRetain(object: object) { return } let o = UnsafeMutablePointer(object) swift_release_n_(object: o, n: 1) } @_cdecl("swift_release_n") public func swift_release_n(object: Builtin.RawPointer, n: UInt32) { if !isValidPointerForNativeRetain(object: object) { return } let o = UnsafeMutablePointer(object) swift_release_n_(object: o, n: n) } func swift_release_n_(object: UnsafeMutablePointer?, n: UInt32) { guard let object else { return } let refcount = refcountPointer(for: object) let loadedRefcount = loadRelaxed(refcount) if loadedRefcount & HeapObject.refcountMask == HeapObject.immortalRefCount { return } let resultingRefcount = subFetchAcquireRelease(refcount, n: Int(n)) & HeapObject.refcountMask if resultingRefcount == 0 { // Set the refcount to immortalRefCount before calling the object destroyer // to prevent future retains/releases from having any effect. Unlike the // full Swift runtime, we don't track the refcount inside deinit, so we // won't be able to detect escapes or over-releases of `self` in deinit. We // might want to reconsider that in the future. // // There can only be one thread with a reference at this point (because // we're releasing the last existing reference), so a relaxed store is // enough. let doNotFree = (loadedRefcount & HeapObject.doNotFreeBit) != 0 storeRelaxed(refcount, newValue: HeapObject.immortalRefCount | (doNotFree ? HeapObject.doNotFreeBit : 0)) _swift_embedded_invoke_heap_object_destroy(object) } else if resultingRefcount < 0 { fatalError("negative refcount") } } @_cdecl("swift_bridgeObjectRelease") public func swift_bridgeObjectRelease(object: Builtin.RawPointer) { swift_bridgeObjectRelease_n(object: object, n: 1) } @_cdecl("swift_bridgeObjectRelease_n") public func swift_bridgeObjectRelease_n(object: Builtin.RawPointer, n: UInt32) { let objectBits = UInt(Builtin.ptrtoint_Word(object)) let untaggedObject = Builtin.inttoptr_Word((objectBits & HeapObject.bridgeObjectToPlainObjectMask)._builtinWordValue) swift_release_n(object: untaggedObject, n: n) } @_cdecl("swift_retainCount") public func swift_retainCount(object: Builtin.RawPointer) -> Int { if !isValidPointerForNativeRetain(object: object) { return 0 } let o = UnsafeMutablePointer(object) let refcount = refcountPointer(for: o) return loadAcquire(refcount) & HeapObject.refcountMask } /// Refcount helpers fileprivate func refcountPointer(for object: UnsafeMutablePointer) -> UnsafeMutablePointer { // TODO: This should use MemoryLayout.offset(to: \.refcount) but we don't have KeyPaths yet return UnsafeMutablePointer(UnsafeRawPointer(object).advanced(by: MemoryLayout.size)._rawValue) } fileprivate func loadRelaxed(_ atomic: UnsafeMutablePointer) -> Int { Int(Builtin.atomicload_monotonic_Word(atomic._rawValue)) } fileprivate func loadAcquire(_ atomic: UnsafeMutablePointer) -> Int { Int(Builtin.atomicload_acquire_Word(atomic._rawValue)) } fileprivate func subFetchAcquireRelease(_ atomic: UnsafeMutablePointer, n: Int) -> Int { let oldValue = Int(Builtin.atomicrmw_sub_acqrel_Word(atomic._rawValue, n._builtinWordValue)) return oldValue - n } fileprivate func addRelaxed(_ atomic: UnsafeMutablePointer, n: Int) { _ = Builtin.atomicrmw_add_monotonic_Word(atomic._rawValue, n._builtinWordValue) } fileprivate func compareExchangeRelaxed(_ atomic: UnsafeMutablePointer, expectedOldValue: Int, desiredNewValue: Int) -> Bool { let (_, won) = Builtin.cmpxchg_monotonic_monotonic_Word(atomic._rawValue, expectedOldValue._builtinWordValue, desiredNewValue._builtinWordValue) return Bool(won) } fileprivate func storeRelease(_ atomic: UnsafeMutablePointer, newValue: Int) { Builtin.atomicstore_release_Word(atomic._rawValue, newValue._builtinWordValue) } fileprivate func storeRelaxed(_ atomic: UnsafeMutablePointer, newValue: Int) { Builtin.atomicstore_monotonic_Word(atomic._rawValue, newValue._builtinWordValue) } /// Exclusivity checking @_cdecl("swift_beginAccess") public func swift_beginAccess(pointer: UnsafeMutableRawPointer, buffer: UnsafeMutableRawPointer, flags: UInt, pc: UnsafeMutableRawPointer) { // TODO: Add actual exclusivity checking. } @_cdecl("swift_endAccess") public func swift_endAccess(buffer: UnsafeMutableRawPointer) { // TODO: Add actual exclusivity checking. } // Once @_cdecl("swift_once") public func swift_once(predicate: UnsafeMutablePointer, fn: (@convention(c) (UnsafeMutableRawPointer)->()), context: UnsafeMutableRawPointer) { let checkedLoadAcquire = { predicate in let value = loadAcquire(predicate) assert(value == -1 || value == 0 || value == 1) return value } if checkedLoadAcquire(predicate) < 0 { return } let won = compareExchangeRelaxed(predicate, expectedOldValue: 0, desiredNewValue: 1) if won { fn(context) storeRelease(predicate, newValue: -1) return } // TODO: This should really use an OS provided lock while checkedLoadAcquire(predicate) >= 0 { // spin } } // Misc @_cdecl("swift_deletedMethodError") public func swift_deletedMethodError() -> Never { Builtin.int_trap() } @_silgen_name("swift_willThrow") // This is actually expected to be swiftcc (@_silgen_name and not @_cdecl). public func swift_willThrow() throws { } /// Called when a typed error will be thrown. @_silgen_name("swift_willThrowTyped") public func _willThrowTyped(_ error: E) { } @_extern(c, "arc4random_buf") func arc4random_buf(buf: UnsafeMutableRawPointer, nbytes: Int) public func swift_stdlib_random(_ buf: UnsafeMutableRawPointer, _ nbytes: Int) { arc4random_buf(buf: buf, nbytes: nbytes) } @_cdecl("swift_clearSensitive") @inline(never) public func swift_clearSensitive(buf: UnsafeMutableRawPointer, nbytes: Int) { // TODO: use memset_s if available // Though, it shouldn't make too much difference because the `@inline(never)` should prevent // the optimizer from removing the loop below. let bytePtr = buf.assumingMemoryBound(to: UInt8.self) for i in 0.. 0 { print(": ", terminator: "") } print(message) } @usableFromInline func _embeddedReportFatalErrorInFile(prefix: StaticString, message: StaticString, file: StaticString, line: UInt) { print(file, terminator: ":") print(line, terminator: ": ") print(prefix, terminator: "") if message.utf8CodeUnitCount > 0 { print(": ", terminator: "") } print(message) }