oils.pub
OSH Parser Performance
We time $sh -n $file for various files under various shells, and repeat then
run under cachegrind for stable metrics.
Source code: oils/benchmarks/osh-parser.sh
Raw files
Summary
Instructions Per Line (via cachegrind)
Lower numbers are generally better, but each shell recognizes a different
language, and OSH uses a more thorough parsing algorithm. In thousands of
"I refs".
| shell label |
total lines |
thousand irefs per line |
| bash |
118,863 |
7.3 |
| dash |
111,674 |
2.4 |
| osh-native |
118,863 |
11.1 |
| osh-nosouffle |
118,863 |
12.8 |
(zsh isn't measured because zsh -n unexpectedly forks.)
Average Parsing Rate, Measured on Two Machines (lines/ms)
Shell startup time is included in the elapsed time measurements, but long files
are chosen to minimize its effect.
| shell label |
total lines |
host no-host |
| dash |
111,674 |
3,199 |
| bash |
118,863 |
1,398 |
| osh-native |
118,863 |
495 |
| osh-nosouffle |
118,863 |
474 |
| osh-cpython |
118,863 |
11 |
Per-File Measurements
Time and Memory
| shell label |
elapsed ms |
user ms |
sys ms |
max rss MB |
num lines |
filename |
| dash |
1 |
0 |
1 |
2 |
2,698 |
Build.sh |
| bash |
3 |
2 |
1 |
3 |
2,698 |
Build.sh |
| osh-native |
7 |
5 |
2 |
9 |
2,698 |
Build.sh |
| osh-nosouffle |
7 |
7 |
0 |
9 |
2,698 |
Build.sh |
| osh-cpython |
283 |
265 |
17 |
22 |
2,698 |
Build.sh |
| dash |
2 |
1 |
1 |
2 |
2,512 |
abuild |
| bash |
3 |
3 |
0 |
3 |
2,512 |
abuild |
| osh-native |
9 |
6 |
3 |
9 |
2,512 |
abuild |
| osh-nosouffle |
10 |
8 |
2 |
9 |
2,512 |
abuild |
| osh-cpython |
392 |
374 |
18 |
23 |
2,512 |
abuild |
| dash |
7 |
6 |
1 |
2 |
20,489 |
configure |
| bash |
16 |
15 |
1 |
4 |
20,489 |
configure |
| osh-native |
39 |
29 |
10 |
22 |
20,489 |
configure |
| osh-nosouffle |
40 |
30 |
10 |
23 |
20,489 |
configure |
| osh-cpython |
1,867 |
1,841 |
26 |
44 |
20,489 |
configure |
| dash |
18 |
16 |
2 |
2 |
69,779 |
configure-coreutils |
| bash |
38 |
35 |
3 |
4 |
69,779 |
configure-coreutils |
| osh-native |
133 |
116 |
17 |
52 |
69,779 |
configure-coreutils |
| osh-nosouffle |
136 |
111 |
25 |
52 |
69,779 |
configure-coreutils |
| osh-cpython |
5,415 |
5,351 |
64 |
91 |
69,779 |
configure-coreutils |
| bash |
3 |
3 |
0 |
3 |
2,029 |
configure-helper.sh |
| osh-native |
6 |
5 |
1 |
9 |
2,029 |
configure-helper.sh |
| osh-nosouffle |
6 |
5 |
2 |
9 |
2,029 |
configure-helper.sh |
| osh-cpython |
278 |
263 |
14 |
22 |
2,029 |
configure-helper.sh |
| dash |
1 |
1 |
0 |
2 |
1,733 |
functions |
| bash |
2 |
2 |
0 |
3 |
1,733 |
functions |
| osh-native |
6 |
6 |
0 |
9 |
1,733 |
functions |
| osh-nosouffle |
6 |
4 |
3 |
9 |
1,733 |
functions |
| osh-cpython |
267 |
250 |
17 |
21 |
1,733 |
functions |
| dash |
4 |
2 |
2 |
2 |
9,661 |
ltmain.sh |
| bash |
8 |
8 |
0 |
4 |
9,661 |
ltmain.sh |
| osh-native |
19 |
13 |
6 |
15 |
9,661 |
ltmain.sh |
| osh-nosouffle |
20 |
14 |
6 |
16 |
9,661 |
ltmain.sh |
| osh-cpython |
890 |
866 |
24 |
30 |
9,661 |
ltmain.sh |
| dash |
1 |
1 |
0 |
2 |
1,679 |
t4014-format-patch.sh |
| bash |
2 |
1 |
1 |
3 |
1,679 |
t4014-format-patch.sh |
| osh-native |
3 |
0 |
3 |
7 |
1,679 |
t4014-format-patch.sh |
| osh-nosouffle |
3 |
2 |
2 |
8 |
1,679 |
t4014-format-patch.sh |
| osh-cpython |
101 |
86 |
15 |
19 |
1,679 |
t4014-format-patch.sh |
| dash |
1 |
1 |
0 |
1 |
3,123 |
t9300-fast-import.sh |
| bash |
2 |
1 |
1 |
3 |
3,123 |
t9300-fast-import.sh |
| osh-native |
4 |
1 |
3 |
8 |
3,123 |
t9300-fast-import.sh |
| osh-nosouffle |
4 |
3 |
1 |
8 |
3,123 |
t9300-fast-import.sh |
| osh-cpython |
116 |
105 |
11 |
19 |
3,123 |
t9300-fast-import.sh |
| bash |
7 |
6 |
1 |
3 |
5,160 |
test-cmd-util.sh |
| osh-native |
16 |
12 |
4 |
13 |
5,160 |
test-cmd-util.sh |
| osh-nosouffle |
17 |
14 |
4 |
13 |
5,160 |
test-cmd-util.sh |
| osh-cpython |
808 |
789 |
18 |
28 |
5,160 |
test-cmd-util.sh |
Instruction Counts
| shell label |
irefs |
num lines |
filename |
| dash |
6,684,258 |
2,698 |
Build.sh |
| bash |
19,403,577 |
2,698 |
Build.sh |
| osh-native |
31,601,615 |
2,698 |
Build.sh |
| osh-nosouffle |
35,849,921 |
2,698 |
Build.sh |
| dash |
7,346,197 |
2,512 |
abuild |
| bash |
23,586,858 |
2,512 |
abuild |
| osh-native |
44,724,176 |
2,512 |
abuild |
| osh-nosouffle |
52,281,014 |
2,512 |
abuild |
| dash |
55,988,490 |
20,489 |
configure |
| bash |
166,013,802 |
20,489 |
configure |
| osh-native |
231,144,978 |
20,489 |
configure |
| osh-nosouffle |
263,063,757 |
20,489 |
configure |
| dash |
161,016,284 |
69,779 |
configure-coreutils |
| bash |
440,767,942 |
69,779 |
configure-coreutils |
| osh-native |
748,388,540 |
69,779 |
configure-coreutils |
| osh-nosouffle |
862,833,830 |
69,779 |
configure-coreutils |
| bash |
22,799,636 |
2,029 |
configure-helper.sh |
| osh-native |
25,988,167 |
2,029 |
configure-helper.sh |
| osh-nosouffle |
30,266,431 |
2,029 |
configure-helper.sh |
| dash |
4,811,799 |
1,733 |
functions |
| bash |
15,312,098 |
1,733 |
functions |
| osh-native |
24,472,070 |
1,733 |
functions |
| osh-nosouffle |
28,861,557 |
1,733 |
functions |
| dash |
24,904,718 |
9,661 |
ltmain.sh |
| bash |
80,310,064 |
9,661 |
ltmain.sh |
| osh-native |
96,275,677 |
9,661 |
ltmain.sh |
| osh-nosouffle |
112,486,271 |
9,661 |
ltmain.sh |
| dash |
3,294,377 |
1,679 |
t4014-format-patch.sh |
| osh-native |
10,065,970 |
1,679 |
t4014-format-patch.sh |
| osh-nosouffle |
11,040,876 |
1,679 |
t4014-format-patch.sh |
| bash |
11,082,677 |
1,679 |
t4014-format-patch.sh |
| dash |
4,585,030 |
3,123 |
t9300-fast-import.sh |
| osh-native |
11,870,393 |
3,123 |
t9300-fast-import.sh |
| osh-nosouffle |
13,020,856 |
3,123 |
t9300-fast-import.sh |
| bash |
16,659,503 |
3,123 |
t9300-fast-import.sh |
| bash |
73,195,614 |
5,160 |
test-cmd-util.sh |
| osh-native |
96,187,207 |
5,160 |
test-cmd-util.sh |
| osh-nosouffle |
112,291,020 |
5,160 |
test-cmd-util.sh |
Shell and Host Details
Raw Data