blob: 4f5bf5c46a69f3d9cbd1c3b2db789567be72d6d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
;;; TOOL: run-stats
;;; ARGS: --cutoff 3
(module
(func
i32.const 1
i32.const 2
i32.const 3
i32.const 4
i32.const 5
f32.const 6
f32.const 7
f32.const 8
f64.const 9
return))
(;; STDOUT ;;;
Total opcodes: 11
Opcode counts:
i32.const: 5
f32.const: 3
Opcode counts with immediates:
;;; STDOUT ;;)
|