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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
// RUN: %target-run-simple-swift(%S/Inputs/ExperimentalFixedArray.swift -enable-experimental-feature Embedded -enable-experimental-feature FixedArrays -parse-as-library -runtime-compatibility-version none -wmo -Xfrontend -disable-objc-interop) | %FileCheck %s
// RUN: %target-run-simple-swift(-O %S/Inputs/ExperimentalFixedArray.swift -enable-experimental-feature Embedded -enable-experimental-feature FixedArrays -parse-as-library -runtime-compatibility-version none -wmo -Xfrontend -disable-objc-interop) | %FileCheck %s
// Also test in non-embedded mode
// RUN: %target-run-simple-swift(%S/Inputs/ExperimentalFixedArray.swift -enable-experimental-feature FixedArrays -parse-as-library -wmo) | %FileCheck %s
// RUN: %target-run-simple-swift(-O %S/Inputs/ExperimentalFixedArray.swift -enable-experimental-feature FixedArrays -parse-as-library -wmo) | %FileCheck %s
// REQUIRES: executable_test
// REQUIRES: optimized_stdlib
// REQUIRES: VENDOR=apple
// REQUIRES: OS=macosx
func simpleStackAllocated() {
var a = FixedArray<Int>(capacity: 10)
a.append(27)
a.append(28)
a.append(29)
a.append(30)
printit(a)
}
func testDestroyOfElements() {
var a = FixedArray<CheckLifetime>(capacity: 10)
a.append(CheckLifetime(27))
a.append(CheckLifetime(28))
a.append(CheckLifetime(29))
a.append(CheckLifetime(30))
// The `*` is a prefix operator and serves as syntatic sugar for FixedArray.view.
printit(*a)
}
struct IntByte: Printable {
let i: Int32
let b: Int8
func print() {
Swift.print(i, terminator: "")
Swift.print(",", terminator: "")
Swift.print(b, terminator: "")
}
}
extension Optional: Printable where Wrapped == Int64 {
func print() {
if let x = self {
Swift.print(x, terminator: "")
} else {
Swift.print("nil", terminator: "")
}
}
}
struct S {
// Space for elements is reserved in the data section, but not initialized, yet
static var a = FixedArray<Int>(capacity: 10)
// Elements are initialized in the data section.
// The `^` is a prefix operator and serves as syntatic sugar to create a FixedArray literal.
static let b = ^[1, 2, 3]
static let c: FixedArray<Int64?> = ^[10, 20, 30]
static let d: FixedArray<IntByte> = ^[IntByte(i: 1, b: 2), IntByte(i: 3, b: 4), IntByte(i: 5, b: 6)]
static var e = FixedArray<Int64?>(capacity: 3)
static var f = FixedArray<IntByte>(capacity: 3)
}
func globalWithAppend() {
S.a.append(27)
S.a.append(28)
S.a.append(29)
S.a.append(30)
printit(S.a)
}
// First method to pass a FixedArray to a function: as `borrowing` parameter
func printit<T: Printable>(_ a: borrowing FixedArray<T>) {
// Currently FixedArray cannot conform to Collection, yet.
// For iteration, we need to take the detour through BufferView.
for x in *a {
x.print()
print("")
}
}
// Second method to pass a FixedArray to a function: pass a view to its elements
func printit<T: Printable>(_ a: BufferView<T>) {
for x in a {
x.print()
print("")
}
}
extension FixedArray {
// Functions _can_ return a FixedArray, but must be declared as `@_transparent`.
@_transparent
func map<V>(_ c: (T) -> V) -> FixedArray<V> {
var newArray = FixedArray<V>(capacity: self.count)
for element in view() {
newArray.append(c(element))
}
return newArray
}
}
func testMap() {
let a = ^[1, 2, 3]
printit(a.map { $0 + 100 })
}
// A somehow more complex exmample, where FixedArray is used in another struct
struct Matrix<T: Printable>: ~Copyable {
var elements: FixedArray<T>
let rows: Int
let columns: Int
@_transparent
init(rows: Int, columns: Int, _ elements: [T]) {
self.rows = rows
self.columns = columns
precondition(rows * columns == elements.count)
self.elements = FixedArray(elements: elements)
}
@_transparent
init(rows: Int, columns: Int, initialValue: T) {
self.rows = rows
self.columns = columns
self.elements = FixedArray(repeating: initialValue, count: rows * columns)
}
subscript(row: Int, col: Int) -> T {
get {
return elements[row * columns + col]
}
set {
elements[row * columns + col] = newValue
}
}
func rowView(for row: Int) -> BufferView<T> {
let start = elements.view().startIndex.advanced(by: row * columns)
let end = start.advanced(by: columns)
return elements.view()[start..<end]
}
func print() {
for r in 0..<rows {
Swift.print("(", terminator: "")
for c in 0..<columns {
self[r, c].print()
if c < columns - 1 {
Swift.print(",", terminator: "")
} else {
Swift.print(")")
}
}
}
}
}
// Functions _can_ return a struct containing a FixedArray, but must be declared as `@_transparent`.
@_transparent
func +(lhs: borrowing Matrix<Int>, rhs: borrowing Matrix<Int>) -> Matrix<Int> {
var result = Matrix(rows: lhs.rows, columns: lhs.columns, initialValue: 0)
for i in 0..<lhs.rows {
for j in 0..<lhs.columns {
result[i, j] = lhs[i, j] + rhs[i, j]
}
}
return result
}
struct MatricConsts {
// A Matrix, containing a FixedArray, initialized with an Array literal -> elements are allocated in the data section.
static let c = Matrix(rows: 2, columns: 3,
[ 10, 20, 30,
40, 50, 60 ])
}
func testMatrixAdd() {
let x = Matrix(rows: 2, columns: 3,
[ 1, 2, 3,
4, 5, 6 ])
let y = x + MatricConsts.c
y.print()
}
// Example of another type, using the basic non-allocating buffer utilities (allocateVector).
// It's possible to implement such a type outside of the stdlib.
struct RingBuffer<Element>: ~Copyable {
private let buffer: UnsafeMutablePointer<Element>
private let capacity: Int
private var writeIndex: Int
private var readIndex = 0
@_transparent
public init(capacity: Int) {
self.capacity = capacity
self.buffer = _allocateVector(elementType: Element.self, capacity: capacity)
self.writeIndex = 0
}
@_transparent
init(repeating repeatedValue: Element, count: Int) {
self.capacity = count + 1
self.buffer = _allocateVector(elementType: Element.self, capacity: capacity)
self.writeIndex = count
for i in 0..<count {
(buffer + i).initialize(to: repeatedValue)
}
}
var isEmpty: Bool { readIndex == writeIndex }
mutating func push(_ element: Element) -> Bool {
guard (writeIndex + 1) % capacity != readIndex else {
return false
}
(buffer + writeIndex).initialize(to: element)
writeIndex = (writeIndex + 1) % capacity
return true
}
mutating func next() -> Element? {
if isEmpty {
return nil
}
let value = (buffer + readIndex).move()
readIndex = (readIndex + 1) % capacity
return value
}
deinit {
var idx = readIndex
while idx != writeIndex {
_ = (buffer + idx).move()
idx = (idx + 1) % capacity
}
}
}
func testRingBuffer() {
var rb = RingBuffer<Int>(capacity: 3)
print(rb.push(1))
print(rb.push(2))
print(rb.next())
print(rb.push(3))
print(rb.push(4))
print(rb.next())
print(rb.next())
print(rb.next())
}
// Test utilities
protocol Printable {
func print()
}
extension Int: Printable {
func print() {
Swift.print(self, terminator: "")
}
}
func print(_ i: Int?) {
if let i = i {
print(i)
} else {
print("nil")
}
}
final class CheckLifetime: Printable {
let x: Int
init(_ x: Int) {
self.x = x
}
deinit {
Swift.print("deinit ", terminator: "")
Swift.print(x)
}
func print() {
Swift.print("CheckLifetime(", terminator: "")
Swift.print(x, terminator: ")")
}
}
// Check for correctness
@main
struct Main {
static func main() {
// CHECK-LABEL: ### simpleStackAllocated
// CHECK-NEXT: 27
// CHECK-NEXT: 28
// CHECK-NEXT: 29
// CHECK-NEXT: 30
print("### simpleStackAllocated")
simpleStackAllocated()
// CHECK-LABEL: ### testDestroyOfElements
// CHECK-NEXT: CheckLifetime(27)
// CHECK-NEXT: CheckLifetime(28)
// CHECK-NEXT: CheckLifetime(29)
// CHECK-NEXT: CheckLifetime(30)
// CHECK-NEXT: deinit 27
// CHECK-NEXT: deinit 28
// CHECK-NEXT: deinit 29
// CHECK-NEXT: deinit 30
print("### testDestroyOfElements")
testDestroyOfElements()
// CHECK-LABEL: ### globalWithAppend
// CHECK-NEXT: 27
// CHECK-NEXT: 28
// CHECK-NEXT: 29
// CHECK-NEXT: 30
print("### globalWithAppend")
globalWithAppend()
// CHECK-LABEL: ### globalLiteral
// CHECK-NEXT: 1
// CHECK-NEXT: 2
// CHECK-NEXT: 3
print("### globalLiteral")
printit(S.b)
// CHECK-LABEL: ### globalOptional
// CHECK-NEXT: 10
// CHECK-NEXT: 20
// CHECK-NEXT: 30
print("### globalOptional")
printit(S.c)
// CHECK-LABEL: ### globalStruct
// CHECK-NEXT: 1,2
// CHECK-NEXT: 3,4
// CHECK-NEXT: 5,6
print("### globalStruct")
printit(S.d)
// CHECK-LABEL: ### globalUninitOptional
// CHECK-NEXT: 100
// CHECK-NEXT: 200
// CHECK-NEXT: 300
print("### globalUninitOptional")
S.e.append(100)
S.e.append(200)
S.e.append(300)
printit(S.e)
// CHECK-LABEL: ### globalUninitStruct
// CHECK-NEXT: 11,21
// CHECK-NEXT: 31,41
// CHECK-NEXT: 51,61
print("### globalUninitStruct")
S.f.append(IntByte(i: 11, b: 21))
S.f.append(IntByte(i: 31, b: 41))
S.f.append(IntByte(i: 51, b: 61))
printit(S.f)
// CHECK-LABEL: ### testMap
// CHECK-NEXT: 101
// CHECK-NEXT: 102
// CHECK-NEXT: 103
print("### testMap")
testMap()
// CHECK-LABEL: ### testMatrixAdd
// CHECK-NEXT: (11,22,33)
// CHECK-NEXT: (44,55,66)
print("### testMatrixAdd")
testMatrixAdd()
// CHECK-LABEL: ### testRingBuffer
// CHECK-NEXT: true
// CHECK-NEXT: true
// CHECK-NEXT: 1
// CHECK-NEXT: true
// CHECK-NEXT: false
// CHECK-NEXT: 2
// CHECK-NEXT: 3
// CHECK-NEXT: nil
print("### testRingBuffer")
testRingBuffer()
}
}
|