-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathIntegerParsing.swift
583 lines (549 loc) · 16.2 KB
/
IntegerParsing.swift
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
//===--- IntegerParsing.swift -------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 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 TestsUtils
// - Definitions
public let benchmarks = [
// IntSmall
BenchmarkInfo(name: "ParseInt.IntSmall.Decimal",
runFunction: run_ParseIntFromIntSmallDecimal,
tags: [.validation, .api],
setUpFunction: {
blackHole(intSmallValuesSum)
blackHole(intSmallDecimalStrings)
}),
BenchmarkInfo(name: "ParseInt.IntSmall.Binary",
runFunction: run_ParseIntFromIntSmallBinary,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(intSmallValuesSum)
blackHole(intSmallBinaryStrings)
}),
BenchmarkInfo(name: "ParseInt.IntSmall.Hex",
runFunction: run_ParseIntFromIntSmallHex,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(intSmallValuesSum)
blackHole(intSmallHexStrings)
}),
BenchmarkInfo(name: "ParseInt.IntSmall.UncommonRadix",
runFunction: run_ParseIntFromIntSmallUncommonRadix,
tags: [.validation, .api],
setUpFunction: {
blackHole(intSmallValuesSum)
blackHole(intSmallUncommonRadixStrings)
}),
// UIntSmall
BenchmarkInfo(name: "ParseInt.UIntSmall.Decimal",
runFunction: run_ParseIntFromUIntSmallDecimal,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uintSmallValuesSum)
blackHole(uintSmallDecimalStrings)
}),
BenchmarkInfo(name: "ParseInt.UIntSmall.Binary",
runFunction: run_ParseIntFromUIntSmallBinary,
tags: [.validation, .api],
setUpFunction: {
blackHole(uintSmallValuesSum)
blackHole(uintSmallBinaryStrings)
}),
BenchmarkInfo(name: "ParseInt.UIntSmall.Hex",
runFunction: run_ParseIntFromUIntSmallHex,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uintSmallValuesSum)
blackHole(uintSmallHexStrings)
}),
BenchmarkInfo(name: "ParseInt.UIntSmall.UncommonRadix",
runFunction: run_ParseIntFromUIntSmallUncommonRadix,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uintSmallValuesSum)
blackHole(uintSmallUncommonRadixStrings)
}),
// Int32
BenchmarkInfo(name: "ParseInt.Int32.Decimal",
runFunction: run_ParseIntFromInt32Decimal,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(int32ValuesSum)
blackHole(int32DecimalStrings)
}),
BenchmarkInfo(name: "ParseInt.Int32.Binary",
runFunction: run_ParseIntFromInt32Binary,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(int32ValuesSum)
blackHole(int32BinaryStrings)
}),
BenchmarkInfo(name: "ParseInt.Int32.Hex",
runFunction: run_ParseIntFromInt32Hex,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(int32ValuesSum)
blackHole(int32HexStrings)
}),
BenchmarkInfo(name: "ParseInt.Int32.UncommonRadix",
runFunction: run_ParseIntFromInt32UncommonRadix,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(int32ValuesSum)
blackHole(int32UncommonRadixStrings)
}),
// Int64
BenchmarkInfo(name: "ParseInt.Int64.Decimal",
runFunction: run_ParseIntFromInt64Decimal,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(int64ValuesSum)
blackHole(int64DecimalStrings)
}),
BenchmarkInfo(name: "ParseInt.Int64.Binary",
runFunction: run_ParseIntFromInt64Binary,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(int64ValuesSum)
blackHole(int64BinaryStrings)
}),
BenchmarkInfo(name: "ParseInt.Int64.Hex",
runFunction: run_ParseIntFromInt64Hex,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(int64ValuesSum)
blackHole(int64HexStrings)
}),
BenchmarkInfo(name: "ParseInt.Int64.UncommonRadix",
runFunction: run_ParseIntFromInt64UncommonRadix,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(int64ValuesSum)
blackHole(int64UncommonRadixStrings)
}),
// UInt32
BenchmarkInfo(name: "ParseInt.UInt32.Decimal",
runFunction: run_ParseIntFromUInt32Decimal,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uint32ValuesSum)
blackHole(uint32DecimalStrings)
}),
BenchmarkInfo(name: "ParseInt.UInt32.Binary",
runFunction: run_ParseIntFromUInt32Binary,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uint32ValuesSum)
blackHole(uint32BinaryStrings)
}),
BenchmarkInfo(name: "ParseInt.UInt32.Hex",
runFunction: run_ParseIntFromUInt32Hex,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uint32ValuesSum)
blackHole(uint32HexStrings)
}),
BenchmarkInfo(name: "ParseInt.UInt32.UncommonRadix",
runFunction: run_ParseIntFromUInt32UncommonRadix,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uint32ValuesSum)
blackHole(uint32UncommonRadixStrings)
}),
// UInt64
BenchmarkInfo(name: "ParseInt.UInt64.Decimal",
runFunction: run_ParseIntFromUInt64Decimal,
tags: [.validation, .api],
setUpFunction: {
blackHole(uint64ValuesSum)
blackHole(uint64DecimalStrings)
}),
BenchmarkInfo(name: "ParseInt.UInt64.Binary",
runFunction: run_ParseIntFromUInt64Binary,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uint64ValuesSum)
blackHole(uint64BinaryStrings)
}),
BenchmarkInfo(name: "ParseInt.UInt64.Hex",
runFunction: run_ParseIntFromUInt64Hex,
tags: [.validation, .api],
setUpFunction: {
blackHole(uint64ValuesSum)
blackHole(uint64HexStrings)
}),
BenchmarkInfo(name: "ParseInt.UInt64.UncommonRadix",
runFunction: run_ParseIntFromUInt64UncommonRadix,
tags: [.validation, .api, .skip],
setUpFunction: {
blackHole(uint64ValuesSum)
blackHole(uint64UncommonRadixStrings)
}),
]
// - Verification Sums
private let intSmallValuesSum: Int
= intSmallValues.reduce(0, &+)
private let uintSmallValuesSum: UInt
= uintSmallValues.reduce(0, &+)
private let int32ValuesSum: Int32
= int32Values.reduce(0, &+)
private let int64ValuesSum: Int64
= int64Values.reduce(0, &+)
private let uint32ValuesSum: UInt32
= uint32Values.reduce(0, &+)
private let uint64ValuesSum: UInt64
= uint64Values.reduce(0, &+)
// - Values
func generateValues<Integer : FixedWidthInteger>(
in range: ClosedRange<Integer>, count: Int
) -> [Integer] {
var rng = SplitMix64(seed: 42)
return (0..<count).map { _ in
Integer.random(in: range, using: &rng)
}
}
private let intSmallValues: [Int]
= generateValues(in: -9999 ... 9999, count: 1000)
private let uintSmallValues: [UInt]
= generateValues(in: 0 ... 9999, count: 1000)
private let int32Values: [Int32]
= generateValues(in: .min ... .max, count: 1000)
private let int64Values: [Int64]
= generateValues(in: .min ... .max, count: 1000)
private let uint32Values: [UInt32]
= generateValues(in: .min ... .max, count: 1000)
private let uint64Values: [UInt64]
= generateValues(in: .min ... .max, count: 1000)
// - Strings
// IntSmall
private let intSmallDecimalStrings: [String]
= intSmallValues.map { String($0, radix: 10) }
private let intSmallBinaryStrings: [String]
= intSmallValues.map { String($0, radix: 2) }
private let intSmallHexStrings: [String]
= intSmallValues.map { String($0, radix: 16) }
private let intSmallUncommonRadixStrings: [String]
= intSmallValues.map { String($0, radix: 7) }
// UIntSmall
private let uintSmallDecimalStrings: [String]
= uintSmallValues.map { String($0, radix: 10) }
private let uintSmallBinaryStrings: [String]
= uintSmallValues.map { String($0, radix: 2) }
private let uintSmallHexStrings: [String]
= uintSmallValues.map { String($0, radix: 16) }
private let uintSmallUncommonRadixStrings: [String]
= uintSmallValues.map { String($0, radix: 7) }
// Int32
private let int32DecimalStrings: [String]
= int32Values.map { String($0, radix: 10) }
private let int32BinaryStrings: [String]
= int32Values.map { String($0, radix: 2) }
private let int32HexStrings: [String]
= int32Values.map { String($0, radix: 16) }
private let int32UncommonRadixStrings: [String]
= int32Values.map { String($0, radix: 7) }
// Int64
private let int64DecimalStrings: [String]
= int64Values.map { String($0, radix: 10) }
private let int64BinaryStrings: [String]
= int64Values.map { String($0, radix: 2) }
private let int64HexStrings: [String]
= int64Values.map { String($0, radix: 16) }
private let int64UncommonRadixStrings: [String]
= int64Values.map { String($0, radix: 7) }
// UInt32
private let uint32DecimalStrings: [String]
= uint32Values.map { String($0, radix: 10) }
private let uint32BinaryStrings: [String]
= uint32Values.map { String($0, radix: 2) }
private let uint32HexStrings: [String]
= uint32Values.map { String($0, radix: 16) }
private let uint32UncommonRadixStrings: [String]
= uint32Values.map { String($0, radix: 7) }
// UInt64
private let uint64DecimalStrings: [String]
= uint64Values.map { String($0, radix: 10) }
private let uint64BinaryStrings: [String]
= uint64Values.map { String($0, radix: 2) }
private let uint64HexStrings: [String]
= uint64Values.map { String($0, radix: 16) }
private let uint64UncommonRadixStrings: [String]
= uint64Values.map { String($0, radix: 7) }
// - Implementations
// IntSmall
@inline(never)
public func run_ParseIntFromIntSmallDecimal(n: Int) {
var result: Int = 0
let count = n * 20
for _ in 0..<count {
for string in intSmallDecimalStrings {
result &+= Int(string, radix: 10)!
}
}
check(result == intSmallValuesSum &* Int(count))
}
@inline(never)
public func run_ParseIntFromIntSmallBinary(n: Int) {
var result: Int = 0
let count = n * 20
for _ in 0..<count {
for string in intSmallBinaryStrings {
result &+= Int(string, radix: 2)!
}
}
check(result == intSmallValuesSum &* Int(count))
}
@inline(never)
public func run_ParseIntFromIntSmallHex(n: Int) {
var result: Int = 0
let count = n * 20
for _ in 0..<count {
for string in intSmallHexStrings {
result &+= Int(string, radix: 16)!
}
}
check(result == intSmallValuesSum &* Int(count))
}
@inline(never)
public func run_ParseIntFromIntSmallUncommonRadix(n: Int) {
var result: Int = 0
let count = n * 20
for _ in 0..<count {
for string in intSmallUncommonRadixStrings {
result &+= Int(string, radix: 7)!
}
}
check(result == intSmallValuesSum &* Int(count))
}
// UIntSmall
@inline(never)
public func run_ParseIntFromUIntSmallDecimal(n: Int) {
var result: UInt = 0
let count = n * 20
for _ in 0..<count {
for string in uintSmallDecimalStrings {
result &+= UInt(string, radix: 10)!
}
}
check(result == uintSmallValuesSum &* UInt(count))
}
@inline(never)
public func run_ParseIntFromUIntSmallBinary(n: Int) {
var result: UInt = 0
let count = n * 20
for _ in 0..<count {
for string in uintSmallBinaryStrings {
result &+= UInt(string, radix: 2)!
}
}
check(result == uintSmallValuesSum &* UInt(count))
}
@inline(never)
public func run_ParseIntFromUIntSmallHex(n: Int) {
var result: UInt = 0
let count = n * 20
for _ in 0..<count {
for string in uintSmallHexStrings {
result &+= UInt(string, radix: 16)!
}
}
check(result == uintSmallValuesSum &* UInt(count))
}
@inline(never)
public func run_ParseIntFromUIntSmallUncommonRadix(n: Int) {
var result: UInt = 0
let count = n * 20
for _ in 0..<count {
for string in uintSmallUncommonRadixStrings {
result &+= UInt(string, radix: 7)!
}
}
check(result == uintSmallValuesSum &* UInt(count))
}
// Int32
@inline(never)
public func run_ParseIntFromInt32Decimal(n: Int) {
var result: Int32 = 0
let count = n * 8
for _ in 0..<count {
for string in int32DecimalStrings {
result &+= Int32(string, radix: 10)!
}
}
check(result == int32ValuesSum &* Int32(count))
}
@inline(never)
public func run_ParseIntFromInt32Binary(n: Int) {
var result: Int32 = 0
let count = n * 8
for _ in 0..<count {
for string in int32BinaryStrings {
result &+= Int32(string, radix: 2)!
}
}
check(result == int32ValuesSum &* Int32(count))
}
@inline(never)
public func run_ParseIntFromInt32Hex(n: Int) {
var result: Int32 = 0
let count = n * 8
for _ in 0..<count {
for string in int32HexStrings {
result &+= Int32(string, radix: 16)!
}
}
check(result == int32ValuesSum &* Int32(count))
}
@inline(never)
public func run_ParseIntFromInt32UncommonRadix(n: Int) {
var result: Int32 = 0
let count = n * 8
for _ in 0..<count {
for string in int32UncommonRadixStrings {
result &+= Int32(string, radix: 7)!
}
}
check(result == int32ValuesSum &* Int32(count))
}
// Int64
@inline(never)
public func run_ParseIntFromInt64Decimal(n: Int) {
var result: Int64 = 0
let count = n * 4
for _ in 0..<count {
for string in int64DecimalStrings {
result &+= Int64(string, radix: 10)!
}
}
check(result == int64ValuesSum &* Int64(count))
}
@inline(never)
public func run_ParseIntFromInt64Binary(n: Int) {
var result: Int64 = 0
let count = n * 4
for _ in 0..<count {
for string in int64BinaryStrings {
result &+= Int64(string, radix: 2)!
}
}
check(result == int64ValuesSum &* Int64(count))
}
@inline(never)
public func run_ParseIntFromInt64Hex(n: Int) {
var result: Int64 = 0
let count = n * 4
for _ in 0..<count {
for string in int64HexStrings {
result &+= Int64(string, radix: 16)!
}
}
check(result == int64ValuesSum &* Int64(count))
}
@inline(never)
public func run_ParseIntFromInt64UncommonRadix(n: Int) {
var result: Int64 = 0
let count = n * 4
for _ in 0..<count {
for string in int64UncommonRadixStrings {
result &+= Int64(string, radix: 7)!
}
}
check(result == int64ValuesSum &* Int64(count))
}
// UInt32
@inline(never)
public func run_ParseIntFromUInt32Decimal(n: Int) {
var result: UInt32 = 0
let count = n * 8
for _ in 0..<count {
for string in uint32DecimalStrings {
result &+= UInt32(string, radix: 10)!
}
}
check(result == uint32ValuesSum &* UInt32(count))
}
@inline(never)
public func run_ParseIntFromUInt32Binary(n: Int) {
var result: UInt32 = 0
let count = n * 8
for _ in 0..<count {
for string in uint32BinaryStrings {
result &+= UInt32(string, radix: 2)!
}
}
check(result == uint32ValuesSum &* UInt32(count))
}
@inline(never)
public func run_ParseIntFromUInt32Hex(n: Int) {
var result: UInt32 = 0
let count = n * 8
for _ in 0..<count {
for string in uint32HexStrings {
result &+= UInt32(string, radix: 16)!
}
}
check(result == uint32ValuesSum &* UInt32(count))
}
@inline(never)
public func run_ParseIntFromUInt32UncommonRadix(n: Int) {
var result: UInt32 = 0
let count = n * 8
for _ in 0..<count {
for string in uint32UncommonRadixStrings {
result &+= UInt32(string, radix: 7)!
}
}
check(result == uint32ValuesSum &* UInt32(count))
}
// UInt64
@inline(never)
public func run_ParseIntFromUInt64Decimal(n: Int) {
var result: UInt64 = 0
let count = n * 4
for _ in 0..<count {
for string in uint64DecimalStrings {
result &+= UInt64(string, radix: 10)!
}
}
check(result == uint64ValuesSum &* UInt64(count))
}
@inline(never)
public func run_ParseIntFromUInt64Binary(n: Int) {
var result: UInt64 = 0
let count = n * 4
for _ in 0..<count {
for string in uint64BinaryStrings {
result &+= UInt64(string, radix: 2)!
}
}
check(result == uint64ValuesSum &* UInt64(count))
}
@inline(never)
public func run_ParseIntFromUInt64Hex(n: Int) {
var result: UInt64 = 0
let count = n * 4
for _ in 0..<count {
for string in uint64HexStrings {
result &+= UInt64(string, radix: 16)!
}
}
check(result == uint64ValuesSum &* UInt64(count))
}
@inline(never)
public func run_ParseIntFromUInt64UncommonRadix(n: Int) {
var result: UInt64 = 0
let count = n * 4
for _ in 0..<count {
for string in uint64UncommonRadixStrings {
result &+= UInt64(string, radix: 7)!
}
}
check(result == uint64ValuesSum &* UInt64(count))
}