Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Standard library] Address remaining memory-safety warnings #80279

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stdlib/public/core/Dictionary.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1388,7 +1388,7 @@ extension Dictionary {
return true
}
#else
if unsafe lhs._variant.asNative._storage === rhs._variant.asNative._storage {
if lhs._variant.asNative._storage === rhs._variant.asNative._storage {
return true
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/DictionaryBridging.swift
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ final internal class _SwiftDeferredNSDictionary<Key: Hashable, Value>
defer { _fixLifetime(self) }

var stop: UInt8 = 0
for bucket in unsafe native.hashTable {
for unsafe bucket in unsafe native.hashTable {
let key = unsafe _key(at: bucket, bridgedKeys: bridgedKeys)
let value = unsafe _value(at: bucket, bridgedValues: bridgedValues)
unsafe block(
Expand Down
4 changes: 2 additions & 2 deletions stdlib/public/core/EmbeddedPrint.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ public func print(_ object: some CustomStringConvertible, terminator: StaticStri
}

func print(_ buf: UnsafeBufferPointer<UInt8>, terminator: StaticString = "\n") {
for c in buf {
for unsafe c in unsafe buf {
putchar(CInt(c))
}
var p = unsafe terminator.utf8Start
while unsafe p.pointee != 0 {
unsafe putchar(CInt(p.pointee))
p += 1
unsafe p += 1
}
}

Expand Down
1 change: 1 addition & 0 deletions stdlib/public/core/Equatable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ public func === (lhs: AnyObject?, rhs: AnyObject?) -> Bool {
}
#else
@inlinable // trivial-implementation
@safe
public func ===<T: AnyObject, U: AnyObject>(lhs: T?, rhs: U?) -> Bool {
switch (lhs, rhs) {
case let (l?, r?):
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/Hashing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ internal final class __BridgingHashBuffer
}

deinit {
for bucket in unsafe header.hashTable {
for unsafe bucket in unsafe header.hashTable {
unsafe (firstElementAddress + bucket.offset).deinitialize(count: 1)
}
unsafe _fixLifetime(self)
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/NativeDictionary.swift
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ extension _NativeDictionary where Value: Equatable {
if self.count != other.count { return false }

defer { _fixLifetime(self) }
for bucket in unsafe self.hashTable {
for unsafe bucket in unsafe self.hashTable {
let key = self.uncheckedKey(at: bucket)
let value = self.uncheckedValue(at: bucket)
guard
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/NativeSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ extension _NativeSet {
if self.count != other.count { return false }

defer { _fixLifetime(self) }
for bucket in unsafe self.hashTable {
for unsafe bucket in unsafe self.hashTable {
let key = self.uncheckedElement(at: bucket)
let bridgedKey = _bridgeAnythingToObjectiveC(key)
guard other.contains(bridgedKey) else { return false }
Expand Down
4 changes: 2 additions & 2 deletions stdlib/public/core/RuntimeFunctionCounters.swift
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ func _measureRuntimeFunctionCountersDiffs(
_RuntimeFunctionCounters.disableRuntimeFunctionCountersUpdates()
let globalCountersBefore = _GlobalRuntimeFunctionCountersState()
var objectsCountersBefore: [_ObjectRuntimeFunctionCountersState] = []
for object in unsafe objects {
for unsafe object in unsafe objects {
unsafe objectsCountersBefore.append(_ObjectRuntimeFunctionCountersState(object))
}
// Enable counters updates.
Expand All @@ -535,7 +535,7 @@ func _measureRuntimeFunctionCountersDiffs(

let globalCountersAfter = _GlobalRuntimeFunctionCountersState()
var objectsCountersDiff: [_ObjectRuntimeFunctionCountersState] = []
for (idx, object) in unsafe objects.enumerated() {
for unsafe (idx, object) in unsafe objects.enumerated() {
let objectCountersAfter = unsafe _ObjectRuntimeFunctionCountersState(object)
objectsCountersDiff.append(
objectsCountersBefore[idx].diff(objectCountersAfter))
Expand Down
2 changes: 1 addition & 1 deletion stdlib/public/core/SetBridging.swift
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ final internal class _SwiftDeferredNSSet<Element: Hashable>
let bridged = unsafe __BridgingHashBuffer.allocate(
owner: native._storage,
hashTable: native.hashTable)
for bucket in unsafe native.hashTable {
for unsafe bucket in unsafe native.hashTable {
let object = _bridgeAnythingToObjectiveC(
native.uncheckedElement(at: bucket))
unsafe bridged.initialize(at: bucket, to: object)
Expand Down