File: BitArray%2BCopy.swift

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (176 lines) | stat: -rw-r--r-- 5,300 bytes parent folder | download
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift Collections open source project
//
// Copyright (c) 2021 - 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

extension BitArray {
  internal mutating func _copy(
    from range: Range<Int>,
    to target: Int
  ) {
    _update { handle in
      handle.copy(from: range, to: target)
    }
  }

  internal mutating func _copy(
    from range: Range<Int>,
    in source: UnsafeBufferPointer<_Word>,
    to target: Int
  ) {
    _update { handle in
      handle.copy(from: range, in: source, to: target)
    }
  }

  internal mutating func _copy(
    from source: BitArray,
    to target: Int
  ) {
    _copy(from: source[...], to: target)
  }

  internal mutating func _copy(
    from source: BitArray.SubSequence,
    to target: Int
  ) {
    let range = source._bounds
    source.base._storage.withUnsafeBufferPointer { words in
      self._copy(from: range, in: words, to: target)
    }
  }

  internal mutating func _copy<S: Sequence>(
    from source: S,
    to range: Range<Int>
  ) where S.Element == Bool {
    _update { $0.copy(from: source, to: range) }
  }
}

extension BitArray._UnsafeHandle {
  internal mutating func _copy(
    bits: _Word, count: UInt, to target: _BitPosition
  ) {
    assert(count <= _Word.capacity)
    assert(count == _Word.capacity || bits.shiftedDown(by: count).isEmpty)
    assert(target.value + count <= _count)
    let start = target.split
    let end = _BitPosition(target.value + count).endSplit
    let words = _mutableWords
    if start.word == end.word {
      let mask = _Word(from: start.bit, to: end.bit)
      words[start.word].formIntersection(mask.complement())
      words[start.word].formUnion(bits.shiftedUp(by: start.bit))
      return
    }
    assert(start.word + 1 == end.word)
    words[start.word].formIntersection(_Word(upTo: start.bit))
    words[start.word].formUnion(bits.shiftedUp(by: start.bit))
    words[end.word].formIntersection(_Word(upTo: end.bit).complement())
    words[end.word].formUnion(
      bits.shiftedDown(by: UInt(_Word.capacity) &- start.bit))
  }

  internal mutating func copy(
    from range: Range<Int>,
    to target: Int
  ) {
    assert(
      range.lowerBound >= 0 && range.upperBound <= self.count,
      "Source range out of bounds")
    copy(from: range, in: _words, to: target)
  }

  internal mutating func copy(
    from range: Range<Int>,
    in source: UnsafeBufferPointer<_Word>,
    to target: Int
  ) {
    ensureMutable()
    assert(
      range.lowerBound >= 0 && range.upperBound <= source.count * _Word.capacity,
      "Source range out of bounds")
    assert(
      target >= 0 && target + range.count <= count,
      "Target out of bounds")
    guard !range.isEmpty else { return }
    
    func goForward() -> Bool {
      let target = _BitPosition(target).split
      let lowerSource = _BitPosition(range.lowerBound).split
      let upperSource = _BitPosition(range.upperBound).endSplit

      
      let targetPtr = _words._ptr(at: target.word)
      let lowerSourcePtr = source._ptr(at: lowerSource.word)
      let upperSourcePtr = source._ptr(at: upperSource.word)

      if targetPtr < lowerSourcePtr || targetPtr > upperSourcePtr {
        return true
      }
      if targetPtr == lowerSourcePtr, target.bit < lowerSource.bit {
        return true
      }
      if targetPtr == upperSourcePtr, target.bit >= upperSource.bit {
        return true
      }
      return false
    }
    
    if goForward() {
      // Copy forward from a disjoint or following overlapping range.
      var src = _ChunkedBitsForwardIterator(words: source, range: range)
      var dst = _BitPosition(target)
      while let (bits, count) = src.next() {
        _copy(bits: bits, count: count, to: dst)
        dst.value += count
      }
      assert(dst.value == target + range.count)
    } else {
      // Copy backward from a non-following overlapping range.
      var src = _ChunkedBitsBackwardIterator(words: source, range: range)
      var dst = _BitPosition(target + range.count)
      while let (bits, count) = src.next() {
        dst.value -= count
        _copy(bits: bits, count: count, to: dst)
      }
      assert(dst.value == target)
    }
  }
}

extension BitArray._UnsafeHandle {
  internal mutating func copy(
    from source: some Sequence<Bool>,
    to range: Range<Int>
  ) {
    assert(range.lowerBound >= 0 && range.upperBound <= self.count)
    var pos = _BitPosition(range.lowerBound)
    var it = source.makeIterator()
    if pos.bit > 0 {
      let (bits, count) = it._nextChunk(
        maximumCount: UInt(_Word.capacity) - pos.bit)
      _copy(bits: bits, count: count, to: pos)
      pos.value += count
    }
    while true {
      let (bits, count) = it._nextChunk()
      guard count > 0 else { break }
      assert(pos.bit == 0)
      _copy(bits: bits, count: count, to: pos)
      pos.value += count
    }
    precondition(pos.value == range.upperBound)
  }
}