-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathBenchmarks.swift
78 lines (66 loc) · 1.87 KB
/
Benchmarks.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
import JavaScriptKit
class Benchmark {
init(_ title: String) {
self.title = title
}
let title: String
func testSuite(_ name: String, _ body: @escaping () -> Void) {
let jsBody = JSClosure { arguments -> JSValue in
body()
return .undefined
}
benchmarkRunner("\(title)/\(name)", jsBody)
}
}
@JS func run() {
let call = Benchmark("Call")
call.testSuite("JavaScript function call through Wasm import") {
for _ in 0..<20_000_000 {
benchmarkHelperNoop()
}
}
call.testSuite("JavaScript function call through Wasm import with int") {
for _ in 0..<10_000_000 {
benchmarkHelperNoopWithNumber(42)
}
}
let propertyAccess = Benchmark("Property access")
do {
let swiftInt: Double = 42
let object = JSObject()
object.jsNumber = JSValue.number(swiftInt)
propertyAccess.testSuite("Write Number") {
for _ in 0..<1_000_000 {
object.jsNumber = JSValue.number(swiftInt)
}
}
}
do {
let object = JSObject()
object.jsNumber = JSValue.number(42)
propertyAccess.testSuite("Read Number") {
for _ in 0..<1_000_000 {
_ = object.jsNumber.number
}
}
}
do {
let swiftString = "Hello, world"
let object = JSObject()
object.jsString = swiftString.jsValue
propertyAccess.testSuite("Write String") {
for _ in 0..<1_000_000 {
object.jsString = swiftString.jsValue
}
}
}
do {
let object = JSObject()
object.jsString = JSValue.string("Hello, world")
propertyAccess.testSuite("Read String") {
for _ in 0..<1_000_000 {
_ = object.jsString.string
}
}
}
}