1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift Collections open source project
//
// Copyright (c) 2022 - 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
//
//===----------------------------------------------------------------------===//
#if !COLLECTIONS_SINGLE_MODULE
import InternalCollectionsUtilities
#endif
/// A set of `_Bucket` values, represented by a 32-bit wide bitset.
@usableFromInline
@frozen
internal struct _Bitmap {
@usableFromInline
internal typealias Value = UInt32
@usableFromInline
internal var _value: Value
@inlinable @inline(__always)
init(_value: Value) {
self._value = _value
}
@inlinable @inline(__always)
init(bitPattern: Int) {
self._value = Value(bitPattern)
}
@inlinable @inline(__always)
internal init(_ bucket: _Bucket) {
assert(bucket.value < Self.capacity)
_value = (1 &<< bucket.value)
}
@inlinable @inline(__always)
internal init(_ bucket1: _Bucket, _ bucket2: _Bucket) {
assert(bucket1.value < Self.capacity && bucket2.value < Self.capacity)
assert(bucket1 != bucket2)
_value = (1 &<< bucket1.value) | (1 &<< bucket2.value)
}
@inlinable
internal init(upTo bucket: _Bucket) {
assert(bucket.value < Self.capacity)
_value = (1 &<< bucket.value) &- 1
}
}
extension _Bitmap: Equatable {
@inlinable @inline(__always)
internal static func ==(left: Self, right: Self) -> Bool {
left._value == right._value
}
}
extension _Bitmap: CustomStringConvertible {
@usableFromInline
internal var description: String {
let b = String(_value, radix: 2)
let bits = String(repeating: "0", count: _Bitmap.capacity - b.count) + b
return "\(String(bits.reversed())) (\(_value))"
}
}
extension _Bitmap {
@inlinable @inline(__always)
internal static var empty: Self { .init(_value: 0) }
@inlinable @inline(__always)
internal static var capacity: Int { Value.bitWidth }
@inlinable @inline(__always)
internal static var bitWidth: Int { capacity.trailingZeroBitCount }
@inlinable @inline(__always)
internal var count: Int { _value.nonzeroBitCount }
@inlinable @inline(__always)
internal var capacity: Int { Value.bitWidth }
@inlinable @inline(__always)
internal var isEmpty: Bool { _value == 0 }
@inlinable @inline(__always)
internal var hasExactlyOneMember: Bool {
_value != 0 && _value & (_value &- 1) == 0
}
@inlinable @inline(__always)
internal var first: _Bucket? {
guard !isEmpty else { return nil }
return _Bucket(
_value: UInt8(truncatingIfNeeded: _value.trailingZeroBitCount))
}
@inlinable @inline(__always)
internal mutating func popFirst() -> _Bucket? {
guard let bucket = first else { return nil }
_value &= _value &- 1 // Clear lowest nonzero bit.
return bucket
}
}
extension _Bitmap {
@inlinable @inline(__always)
internal func contains(_ bucket: _Bucket) -> Bool {
assert(bucket.value < capacity)
return _value & (1 &<< bucket.value) != 0
}
@inlinable @inline(__always)
internal mutating func insert(_ bucket: _Bucket) {
assert(bucket.value < capacity)
_value |= (1 &<< bucket.value)
}
@inlinable @inline(__always)
internal func inserting(_ bucket: _Bucket) -> _Bitmap {
assert(bucket.value < capacity)
return _Bitmap(_value: _value | (1 &<< bucket.value))
}
@inlinable @inline(__always)
internal mutating func remove(_ bucket: _Bucket) {
assert(bucket.value < capacity)
_value &= ~(1 &<< bucket.value)
}
@inlinable @inline(__always)
internal func removing(_ bucket: _Bucket) -> _Bitmap {
assert(bucket.value < capacity)
return _Bitmap(_value: _value & ~(1 &<< bucket.value))
}
@inlinable @inline(__always)
internal func slot(of bucket: _Bucket) -> _HashSlot {
_HashSlot(_value._rank(ofBit: bucket.value))
}
@inlinable @inline(__always)
internal func bucket(at slot: _HashSlot) -> _Bucket {
_Bucket(_value._bit(ranked: slot.value)!)
}
}
extension _Bitmap {
@inlinable @inline(__always)
internal func isSubset(of other: Self) -> Bool {
_value & ~other._value == 0
}
@inlinable @inline(__always)
internal func isDisjoint(with other: Self) -> Bool {
_value & other._value == 0
}
@inlinable @inline(__always)
internal func union(_ other: Self) -> Self {
Self(_value: _value | other._value)
}
@inlinable @inline(__always)
internal func intersection(_ other: Self) -> Self {
Self(_value: _value & other._value)
}
@inlinable @inline(__always)
internal func symmetricDifference(_ other: Self) -> Self {
Self(_value: _value & other._value)
}
@inlinable @inline(__always)
internal func subtracting(_ other: Self) -> Self {
Self(_value: _value & ~other._value)
}
}
extension _Bitmap: Sequence {
@usableFromInline
internal typealias Element = (bucket: _Bucket, slot: _HashSlot)
@usableFromInline
@frozen
internal struct Iterator: IteratorProtocol {
@usableFromInline
internal var bitmap: _Bitmap
@usableFromInline
internal var slot: _HashSlot
@inlinable
internal init(_ bitmap: _Bitmap) {
self.bitmap = bitmap
self.slot = .zero
}
/// Return the index of the lowest set bit in this word,
/// and also destructively clear it.
@inlinable
internal mutating func next() -> Element? {
guard let bucket = bitmap.popFirst() else { return nil }
defer { slot = slot.next() }
return (bucket, slot)
}
}
@inlinable
internal var underestimatedCount: Int { count }
@inlinable
internal func makeIterator() -> Iterator {
Iterator(self)
}
}
|