-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathbench_test.go
540 lines (453 loc) · 12.2 KB
/
bench_test.go
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
/*
* gomacro - A Go interpreter with Lisp-like macros
*
* Copyright (C) 2017-2019 Massimiliano Ghilardi
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*
* bench_test.go
*
* Created on: Mar 06 2017
* Author: Massimiliano Ghilardi
*/
package main
import (
"fmt"
"os"
r "reflect"
"testing"
"github.com/cosmos72/gomacro/classic"
"github.com/cosmos72/gomacro/fast"
)
var (
collatz_arg = uint(837799) // sequence climbs to 1487492288, which also fits 32-bit ints
collatz_arg_int = int(837799)
sum_arg = 1000
fib_arg = 12
bigswitch_arg = 100
verbose = len(os.Args) == 0
)
/*
--------- 2017-05-21: results on Intel Core i7 4770 ---------------
BenchmarkFibonacciCompiler-8 3000000 501 ns/op
BenchmarkFibonacciFast-8 100000 15774 ns/op
BenchmarkFibonacciFast2-8 100000 15141 ns/op
BenchmarkFibonacciClassic-8 2000 915990 ns/op
BenchmarkFibonacciClassic2-8 2000 912180 ns/op
BenchmarkFibonacciClosureValues-8 5000 259074 ns/op
BenchmarkFibonacciClosureInterfaces-8 10000 193098 ns/op
BenchmarkFibonacciClosureMaps-8 5000 358345 ns/op
BenchmarkShellSortCompiler-8 20000000 74.0 ns/op
BenchmarkShellSortFast-8 200000 7790 ns/op
BenchmarkShellSortClassic-8 5000 276673 ns/op
BenchmarkSwitchCompiler-8 1000000 2363 ns/op
BenchmarkSwitchFast-8 50000 37773 ns/op
BenchmarkSwitchClassic-8 500 3454461 ns/op
BenchmarkArithCompiler1-8 200000000 8.41 ns/op
BenchmarkArithCompiler2-8 200000000 8.41 ns/op
BenchmarkArithFast-8 50000000 30.8 ns/op
BenchmarkArithFast2-8 30000000 50.6 ns/op
BenchmarkArithFastConst-8 100000000 15.2 ns/op
BenchmarkArithFastCompileLoop-8 100000 21442 ns/op
BenchmarkArithClassic-8 1000000 1686 ns/op
BenchmarkArithClassic2-8 500000 2916 ns/op
BenchmarkCollatzCompiler-8 5000000 265 ns/op
BenchmarkCollatzFast-8 200000 11812 ns/op
BenchmarkCollatzClassic-8 2000 654139 ns/op
BenchmarkCollatzBytecodeInterfaces-8 50000 30203 ns/op
BenchmarkCollatzClosureValues-8 100000 16570 ns/op
BenchmarkSumCompiler-8 5000000 294 ns/op
BenchmarkSumFast-8 100000 20789 ns/op
BenchmarkSumFast2-8 100000 20720 ns/op
BenchmarkSumClassic-8 1000 1223624 ns/op
BenchmarkSumBytecodeValues-8 20000 76201 ns/op
BenchmarkSumBytecodeInterfaces-8 30000 53031 ns/op
BenchmarkSumClosureValues-8 30000 41124 ns/op
BenchmarkSumClosureInterfaces-8 10000 147109 ns/op
BenchmarkSumClosureMaps-8 20000 93320 ns/op
*/
// ---------------------- recursion: fibonacci ----------------------
func fibonacci(n int) int {
if n <= 2 {
return 1
}
return fibonacci(n-1) + fibonacci(n-2)
}
func BenchmarkFibonacciCompiler(b *testing.B) {
var total int
n := fib_arg
for i := 0; i < b.N; i++ {
total += fibonacci(n)
}
if verbose {
println(total)
}
}
func BenchmarkFibonacciFast(b *testing.B) {
ir := fast.New()
ir.Eval(fibonacci_source_string)
// compile the call to fibonacci(fib_n)
expr := ir.Compile(fmt.Sprintf("fibonacci(%d)", fib_arg))
fun := expr.Fun.(func(*fast.Env) int)
env := ir.PrepareEnv()
fun(env) // warm up
b.ResetTimer()
var total int
for i := 0; i < b.N; i++ {
total += fun(env)
}
}
func BenchmarkFibonacciFast2(b *testing.B) {
ir := fast.New()
ir.Eval(fibonacci_source_string)
// alternative: extract the function fibonacci, and call it ourselves
//
// ValueOf is the method to retrieve constants, functions and variables from the classic and fast interpreters
// (if you are going to read or write the same interpreter variable repeatedly,
// dereferencing the address returned by AddressOfVar is faster)
fun := ir.ValueOf("fibonacci").Interface().(func(int) int)
fun(fib_arg) // warm up
b.ResetTimer()
var total int
for i := 0; i < b.N; i++ {
total += fun(fib_arg)
}
}
func BenchmarkFibonacciClassic(b *testing.B) {
ir := classic.New()
ir.Eval(fibonacci_source_string)
// compile the call to fibonacci(fib_n)
form := ir.Parse(fmt.Sprintf("fibonacci(%d)", fib_arg))
b.ResetTimer()
var total int
for i := 0; i < b.N; i++ {
total += int(ir.EvalAst1(form).Int())
}
}
func BenchmarkFibonacciClassic2(b *testing.B) {
ir := classic.New()
ir.Eval(fibonacci_source_string)
// alternative: extract the function fibonacci, and call it ourselves
fun := ir.ValueOf("fibonacci").Interface().(func(int) int)
fun(fib_arg) // warm up
b.ResetTimer()
var total int
for i := 0; i < b.N; i++ {
total += fun(fib_arg)
}
}
// ---------------------- switch ------------------------
func bigswitch(n int) int {
for i := 0; i < 1000; i++ {
switch n & 15 {
case 0:
n++
case 1:
n += 2
case 2:
n += 3
case 3:
n += 4
case 4:
n += 5
case 5:
n += 6
case 6:
n += 7
case 7:
n += 8
case 8:
n += 9
case 9:
n += 10
case 10:
n += 11
case 11:
n += 12
case 12:
n += 13
case 13:
n += 14
case 14:
n += 15
case 15:
n--
}
}
return n
}
func BenchmarkSwitchCompiler(b *testing.B) {
var total int
for i := 0; i < b.N; i++ {
total += bigswitch(bigswitch_arg)
}
if verbose {
println(total)
}
}
func BenchmarkSwitchFast(b *testing.B) {
ir := fast.New()
ir.Eval(switch_source_string)
fun := ir.ValueOf("bigswitch").Interface().(func(int) int)
fun(bigswitch_arg)
b.ResetTimer()
var total int
for i := 0; i < b.N; i++ {
total += fun(bigswitch_arg)
}
}
func BenchmarkSwitchClassic(b *testing.B) {
ir := classic.New()
ir.Eval(switch_source_string)
fun := ir.ValueOf("bigswitch").Interface().(func(int) int)
fun(bigswitch_arg)
b.ResetTimer()
var total int
for i := 0; i < b.N; i++ {
total += fun(bigswitch_arg)
}
}
// ---------------- simple arithmetic ------------------
//go:noinline
func arith(n int) int {
return ((((n*2 + 3) | 4) &^ 5) ^ 6) - ((n & 2) | 1)
}
const arith_source = "((((n*2+3)|4) &^ 5) ^ 6) - ((n & 2) | 1)"
func BenchmarkArithCompiler1(b *testing.B) {
total := 0
for i := 0; i < b.N; i++ {
n := b.N
total += ((((n*2 + 3) | 4) &^ 5) ^ 6) - ((n & 2) | 1)
}
if verbose {
println(total)
}
}
func BenchmarkArithCompiler2(b *testing.B) {
total := 0
for i := 0; i < b.N; i++ {
total += arith(b.N)
}
if verbose {
println(total)
}
}
func BenchmarkArithFast(b *testing.B) {
ir := fast.New()
ir.DeclVar("n", nil, int(0))
addr := ir.AddressOfVar("n").Interface().(*int)
expr := ir.Compile(arith_source)
fun := expr.Fun.(func(*fast.Env) int)
env := ir.PrepareEnv()
fun(env)
// interpreted code performs only arithmetic - iteration performed here
b.ResetTimer()
total := 0
for i := 0; i < b.N; i++ {
*addr = b.N
total += fun(env)
}
if verbose {
println(total)
}
}
func BenchmarkArithFast2(b *testing.B) {
ir := fast.New()
ir.Eval("var i, n, total int")
n := ir.AddressOfVar("n").Interface().(*int)
total := ir.AddressOfVar("total").Interface().(*int)
// interpreted code performs iteration and arithmetic
fun := ir.Compile("for i = 0; i < n; i++ { total += " + arith_source + " }").AsX()
env := ir.PrepareEnv()
fun(env)
b.ResetTimer()
*n = b.N
*total = 0
fun(env)
if verbose {
println(*total)
}
}
func BenchmarkArithFastConst(b *testing.B) {
ir := fast.New()
// "cheat" a bit and declare n as a constant. checks if constant propagation works :)
ir.DeclConst("n", nil, b.N)
// interpreted code performs only arithmetic - iteration performed here
expr := ir.Compile(arith_source)
fun := expr.WithFun().(func(*fast.Env) int)
env := ir.PrepareEnv()
fun(env)
b.ResetTimer()
total := 0
for i := 0; i < b.N; i++ {
total += fun(env)
}
if verbose {
println(total)
}
}
func BenchmarkArithFastConst2(b *testing.B) {
ir := fast.New()
ir.Eval("var i, total int")
// "cheat" a bit and declare n as a constant. checks if constant propagation works :)
ir.DeclConst("n", nil, int(b.N))
total := ir.AddressOfVar("total").Interface().(*int)
// interpreted code performs iteration and arithmetic
fun := ir.Compile("for i = 0; i < n; i++ { total += " + arith_source + " }").AsX()
env := ir.PrepareEnv()
fun(env)
b.ResetTimer()
*total = 0
fun(env)
if verbose {
println(*total)
}
}
func BenchmarkArithFastCompileLoop(b *testing.B) {
ir := fast.New()
ir.Eval("var i, n, total int")
b.ResetTimer()
for i := 0; i < b.N; i++ {
ir.Compile("total = 0; for i = 0; i < n; i++ { total += " + arith_source + " }; total")
}
}
func BenchmarkArithClassic(b *testing.B) {
ir := classic.New()
ir.Eval("n:=0")
form := ir.Parse(arith_source)
value := ir.ValueOf("n")
var ret r.Value
ir.EvalAst(form)
// interpreted code performs only arithmetic - iteration performed here
b.ResetTimer()
total := 0
for i := 0; i < b.N; i++ {
value.SetInt(int64(b.N))
ret, _ = ir.EvalAst(form)
total += int(ret.Int())
}
if verbose {
println(total)
}
}
func BenchmarkArithClassic2(b *testing.B) {
ir := classic.New()
ir.Eval("var n, total int")
// interpreted code performs iteration and arithmetic
form := ir.Parse("total = 0; for i:= 0; i < n; i++ { total += " + arith_source + " }; total")
value := ir.ValueOf("n")
ir.EvalAst(form)
b.ResetTimer()
value.SetInt(int64(b.N))
ret, _ := ir.EvalAst(form)
if verbose {
println(ret.Int())
}
}
// ---------------- collatz conjecture --------------------
func collatz(n uint) uint {
for n > 1 {
if n&1 != 0 {
n = ((n * 3) + 1) >> 1
} else {
n >>= 1
}
}
return n
}
func BenchmarkCollatzCompiler(b *testing.B) {
var n uint = collatz_arg
for i := 0; i < b.N; i++ {
collatz(n)
}
}
func BenchmarkCollatzFast(b *testing.B) {
ir := fast.New()
ir.DeclVar("n", nil, uint(0))
addr := ir.AddressOfVar("n").Interface().(*uint)
fun := ir.Compile("for n > 1 { if n&1 != 0 { n = ((n * 3) + 1) >> 1 } else { n >>= 1 } }").AsX()
env := ir.PrepareEnv()
fun(env)
b.ResetTimer()
for i := 0; i < b.N; i++ {
*addr = collatz_arg
fun(env)
}
}
func BenchmarkCollatzClassic(b *testing.B) {
ir := classic.New()
ir.EvalAst(ir.Parse("var n uint"))
addr := ir.ValueOf("n").Addr().Interface().(*uint)
form := ir.Parse("for n > 1 { if n&1 != 0 { n = ((n * 3) + 1) >> 1 } else { n >>= 1 } }")
ir.EvalAst(form)
b.ResetTimer()
for i := 0; i < b.N; i++ {
*addr = collatz_arg
ir.EvalAst(form)
}
}
// ------------- looping: sum the integers from 1 to N -------------------
func sum(n int) int {
total := 0
for i := 1; i <= n; i++ {
total += i
}
return total
}
func BenchmarkSumCompiler(b *testing.B) {
var total int
for i := 0; i < b.N; i++ {
total += sum(sum_arg)
}
if verbose {
println(total)
}
}
func BenchmarkSumFast(b *testing.B) {
ir := fast.New()
ir.Eval("var i, total uint")
ir.DeclConst("n", nil, uint(sum_arg))
expr := ir.Compile("total = 0; for i = 1; i <= n; i++ { total += i }; total")
fun := expr.Fun.(func(*fast.Env) uint)
env := ir.PrepareEnv()
fun(env)
var total uint
b.ResetTimer()
for i := 0; i < b.N; i++ {
total += fun(env)
}
if verbose {
println(total)
}
}
func BenchmarkSumFast2(b *testing.B) {
ir := fast.New()
ir.Eval("var i, total uint")
ir.DeclConst("n", nil, uint(sum_arg))
fun := ir.Compile("for i = 1; i <= n; i++ { total += i }").AsX()
env := ir.PrepareEnv()
fun(env)
total := ir.AddressOfVar("total").Interface().(*uint)
b.ResetTimer()
for i := 0; i < b.N; i++ {
*total = 0
fun(env)
}
if verbose {
println(*total)
}
}
func BenchmarkSumClassic(b *testing.B) {
ir := classic.New()
ir.Eval("var i, n, total int")
ir.ValueOf("n").SetInt(int64(sum_arg))
form := ir.Parse("total = 0; for i = 1; i <= n; i++ { total += i }; total")
b.ResetTimer()
var total int
for i := 0; i < b.N; i++ {
total += int(ir.EvalAst1(form).Int())
}
}