505a6acdbfc5fa3788dfff9180b5b1de7f5b2b86
[nit.git] / benchmarks / bench_engines.sh
1 #!/bin/bash
2 # This file is part of NIT ( http://www.nitlanguage.org ).
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # This shell script helps running benchmarks
17
18 # TODO: cleanup and libify the helper-parts
19
20 source ./bench_common.sh
21 source ./bench_plot.sh
22
23 ## CONFIGURATION OPTIONS ##
24
25 # Default number of times a command must be run with bench_command
26 # Can be overrided with 'the option -n'
27 count=2
28
29 # HELPER FOR NIT #
30
31 # Run standards benchs on a compiler command
32 # $1: title
33 # rest: command to run (executable + options)
34 function run_compiler()
35 {
36 local title=$1
37 shift
38 if test "$fast" = truetrue; then
39 run_command "$@" ../examples/hello_world.nit -o "hello.$title.bin"
40 bench_command "hello" "hello_world" "./hello.$title.bin"
41 elif test -n "$fast"; then
42 run_command "$@" ../src/nitc.nit -o "nitc.$title.bin"
43 bench_command "nitc-g" "nitc --global ../src/test_parser.nit" "./nitc.$title.bin" -v --global --no-cc ../src/test_parser.nit
44 run_command "$@" ../src/nit.nit -o "nit.$title.bin"
45 bench_command "nit" "nit ../src/test_parser.nit ../src/location.nit" "./nit.$title.bin" -v ../src/test_parser.nit -- -n ../src/location.nit
46 run_command "$@" ../examples/shoot/src/shoot_logic.nit -o "shoot.$title.bin"
47 bench_command "shoot" "shoot_logic" "./shoot.$title.bin"
48 run_command "$@" ../tests/bench_bintree_gen.nit -o "bintrees.$title.bin"
49 bench_command "bintrees" "bench_bintree_gen 16" "./bintrees.$title.bin" 16
50 else
51 rm -r out 2> /dev/null
52 mkdir out 2> /dev/null
53 run_command "$@" ../src/nitc.nit -o "nitc.$title.bin"
54 bench_command "nitc-g" "nitc --global --no-cc ../src/nitls.nit" "./nitc.$title.bin" -v --global --no-cc ../src/nitls.nit
55 bench_command "nitc-s" "nitc --separate ../src/nitc.nit" "./nitc.$title.bin" -v --no-cc --separate ../src/nitc.nit
56 run_command "$@" ../src/nit.nit -o "nit.$title.bin"
57 bench_command "nit-queens" "nit queens.nit 8" "./nit.$title.bin" ../lib/ai/examples/queens.nit -q 8
58 bench_command "nit-nitcc" "nit nitcc.nit calc.sablecc" "./nit.$title.bin" ../contrib/nitcc/src/nitcc.nit ../contrib/nitcc/examples/calc.sablecc
59 rm calc* 2> /dev/null # remove generated cruft
60 run_command "$@" ../src/nitdoc.nit -o "nitdoc.$title.bin"
61 bench_command "nitdoc" "nitdoc ../src/nitls.nit" "./nitdoc.$title.bin" -v ../src/nitls.nit -d out
62 run_command "$@" ../src/nitlight.nit -o "nitlight.$title.bin"
63 bench_command "nitlight" "nitlight ../lib/[a-f]*/" "./nitlight.$title.bin" ../lib/[a-f]*/ -d out
64 run_command "$@" ../examples/shoot/src/shoot_logic.nit -o "shoot.$title.bin"
65 bench_command "shoot" "shoot_logic 15" "./shoot.$title.bin" 15
66 run_command "$@" ../tests/bench_bintree_gen.nit -o "bintrees.$title.bin"
67 bench_command "bintrees" "bench_bintree_gen 17" "./bintrees.$title.bin" 17
68 #run_command "$@" "../contrib/pep8analysis/src/pep8analysis.nit" -o "pep8a.$title.bin"
69 #bench_command "pep8analisis" "bench_pep8analisis" "./pep8a.$title.bin" "../contrib/pep8analysis/tests/privat/"*.pep
70 run_command "$@" "../lib/ai/examples/queens.nit" -o "queens.$title.bin"
71 bench_command "queens" "bench_queens 13" "./queens.$title.bin" 13
72 run_command "$@" "../lib/ai/examples/puzzle.nit" -o "puzzle.$title.bin"
73 bench_command "puzzle" "puzzle 15-hard" "./puzzle.$title.bin" kleg.mondcafjhbi
74 run_command "$@" "markdown/engines/nitmd/nitmd.nit" -o "nitmd.$title.bin"
75 bench_command "nitmd" "markdown" "./nitmd.$title.bin" markdown/benches/out/mixed.md 80
76 run_command "$@" ../contrib/jwrapper/src/jwrapper.nit -o "jwrapper.$title.bin"
77 bench_command "jwrapper" "jwrapper ant.jar" "./jwrapper.$title.bin" /usr/share/java/ant.jar -o out/ant_jar.nit
78 fi
79
80 rm -r *.bin out 2> /dev/null
81 }
82
83 ## HANDLE OPTIONS ##
84
85 function usage()
86 {
87 echo "run_bench: [options]* benchname"
88 echo " -v: verbose mode"
89 echo " -n count: number of execution for each bar (default: $count)"
90 echo " --dry: Do not run the commands, just reuse the data and generate the graph"
91 echo " --fast: Run less and faster tests"
92 echo " -h: this help"
93 }
94
95 stop=false
96 while [ "$stop" = false ]; do
97 case "$1" in
98 -v) verbose=true; shift;;
99 -h) usage; exit;;
100 -n) count="$2"; shift; shift;;
101 --dry) dry_run=true; shift;;
102 --fast) fast=true$fast; shift;;
103 --html) shift;; # Deprecated
104 *) stop=true
105 esac
106 done
107
108 html="index.html"
109 echo >"$html" "<html><head></head><body>"
110
111 xml="bench_engines.xml"
112 echo "<testsuites><testsuite>" > "$xml"
113
114 NOTSKIPED="$*"
115
116 if test -z "$NOTSKIPED"; then
117 usage
118 echo "List of available benches:"
119 echo "* all: run all the benches"
120 fi
121
122 ## COMPILE ENGINES
123
124 # get the bootstrapped nitc
125 cp ../bin/nitc .
126
127 if test -z "$fast"; then
128 make -C markdown/benches
129 make -C ../contrib/nitcc
130 make pre-build -C ../contrib/jwrapper
131 fi
132
133 ## EFFECTIVE BENCHS ##
134
135 function bench_steps()
136 {
137 name="$FUNCNAME"
138 skip_test "$name" && return
139 prepare_res "$name-nitc.dat" "nitc-g" "Various steps of nitc --global"
140 bench_command "parse" "" ./nitc --global --only-parse ../src/nitc.nit
141 bench_command "metamodel" "" ./nitc --global --only-metamodel ../src/nitc.nit
142 bench_command "generate c" "" ./nitc --global --no-cc ../src/nitc.nit
143 bench_command "full" "" ./nitc --global ../src/nitc.nit -o "nitc_nitc.bin"
144
145 prepare_res "$name-nitc-s.dat" "nitc-s" "Various steps of nitc --separate"
146 bench_command "parse" "" ./nitc --separate --only-parse ../src/nitc.nit
147 bench_command "metamodel" "" ./nitc --separate --only-metamodel ../src/nitc.nit
148 bench_command "generate c" "" ./nitc --separate --no-cc ../src/nitc.nit
149 bench_command "full" "" ./nitc --separate ../src/nitc.nit -o "nitc_nitc-e.bin"
150
151 prepare_res "$name-nitc-e.dat" "nitc-e" "Various steps of nitc --erasure"
152 bench_command "parse" "" ./nitc --erasure --only-parse ../src/nitc.nit
153 bench_command "metamodel" "" ./nitc --erasure --only-metamodel ../src/nitc.nit
154 bench_command "generate c" "" ./nitc --erasure --no-cc ../src/nitc.nit
155 bench_command "full" "" ./nitc --erasure ../src/nitc.nit -o "nitc_nitc-e.bin"
156
157 plot "$name.gnu"
158 }
159 bench_steps
160
161 # Simple script to compare various options on nitc
162 #
163 # usage: *name* *common* [NOALL] *options*...
164 #
165 # * *name*, the name of the bench
166 # * *common*, options to use on each case
167 # * NOALL, optional flag to avoid a last case including all additional options
168 # * *options*, sequences of options, one for each case
169 #
170 # Example: `bench_nitc_options "foo" "-a -b" -c "-d -e"` generates 4 cases:
171 #
172 # * only *common*: `nitc -a -b`
173 # * *common* and first *options*: `nitc -a -b -c`
174 # * *common* and second *options*: `nitc -a -b -d -e`
175 # * all: *common* and all *options*: `nitc -a -b -c -d -e`
176 function bench_nitc_options()
177 {
178 tag=$1
179 shift
180 common=$1
181 shift
182 name="$FUNCNAME-$tag$common"
183 name=${name// /}
184 skip_test "$name" && return
185 prepare_res "$name.dat" "no options" "nitc $common without more options"
186 run_compiler "nitc-$name" ./nitc $common
187
188 if test "$1" = NOALL; then
189 withall=
190 shift
191 else
192 withall=true
193 fi
194
195 for opt in "$@"; do
196 ot=${opt// /}
197 prepare_res "$name$ot.dat" "$opt" "nitc with option $opt"
198 run_compiler "nitc-$name" ./nitc $common $opt
199 done
200
201 if test -n "$2" -a -n "$withall"; then
202 prepare_res "$name-all.dat" "all" "nitc with all options $@"
203 run_compiler "nitc-$name" ./nitc $common $@
204 fi
205
206 plot "$name.gnu"
207 }
208
209 bench_nitc_options "slower" --global --hardening --no-shortcut-range
210 bench_nitc_options "nocheck" --global --no-check-null --no-check-autocast --no-check-attr-isset --no-check-covariance --no-check-assert
211
212 bench_nitc_options "slower" --separate --hardening --no-shortcut-equal --no-union-attribute --no-shortcut-range --no-inline-intern "--no-gcc-directive likely --no-gcc-directive noreturn" "--no-tag-primitives" "--colo-dead-methods" --type-poset
213 bench_nitc_options "nocheck" --separate --no-check-null --no-check-autocast --no-check-attr-isset --no-check-covariance --no-check-assert
214 bench_nitc_options "faster" --separate --skip-dead-methods --inline-coloring-numbers --inline-some-methods --direct-call-monomorph "--inline-some-methods --direct-call-monomorph"
215
216 bench_nitc_options "slower" --erasure --hardening --no-shortcut-equal --no-union-attribute --no-shortcut-range --no-inline-intern
217 bench_nitc_options "nocheck" --erasure --no-check-null --no-check-autocast --no-check-attr-isset --no-check-covariance --no-check-assert --no-check-erasure-cast --no-check-all
218 bench_nitc_options "faster" --erasure --skip-dead-methods --inline-coloring-numbers --inline-some-methods --direct-call-monomorph --rta
219
220 bench_nitc_options "engine" "" NOALL "--separate" "--erasure" "--separate --semi-global" "--erasure --semi-global" "--erasure --semi-global --rta" "--global"
221 bench_nitc_options "policy" "" NOALL "--separate" "--erasure" "--separate --no-check-covariance" "--erasure --no-check-covariance --no-check-erasure-cast"
222 bench_nitc_options "nullables" "" "--no-check-attr-isset" "--no-union-attribute"
223 bench_nitc_options "linkboost" "" NOALL --trampoline-call --colors-are-symbols "--colors-are-symbols --trampoline-call" "--separate --link-boost" "--separate --colors-are-symbols --guard-call" "--separate --colors-are-symbols --direct-call-monomorph0" "--substitute-monomorph"
224 bench_nitc_options "monomorph" "" --direct-call-monomorph0 --direct-call-monomorph
225
226 bench_nitc_options "misc" "" --log --typing-test-metrics --invocation-metrics --isset-checks-metrics --tables-metrics --no-stacktrace --release --debug #FIXME add --sloppy
227
228 function bench_nitc-e_gc()
229 {
230 name="$FUNCNAME"
231 skip_test "$name" && return
232 prepare_res "$name-nitc-e.dat" "nitc-e" "nitc with --erasure"
233 run_compiler "nitc-e" ./nitc --erasure
234 prepare_res "$name-nitc-e-malloc.dat" "nitc-e-malloc" "nitc with --erasure and malloc"
235 NIT_GC_OPTION="malloc" run_compiler "nitc-e-malloc" ./nitc --erasure
236 prepare_res "$name-nitc-e-large.dat" "nitc-e-large" "nitc with --erasure and large"
237 NIT_GC_OPTION="large" run_compiler "nitc-e-large" ./nitc --erasure
238 plot "$name.gnu"
239 }
240 bench_nitc-e_gc
241
242 function bench_cc_nitc-e()
243 {
244 name="$FUNCNAME"
245 skip_test "$name" && return
246 for o in "gcc0:CC=\"ccache gcc\" CFLAGS=-O0" "cl0:CC=\"ccache clang\" CFLAGS=-O0" "gccs:CC=\"ccache gcc\" CFLAGS=-Os" "cls:CC=\"ccache clang\" CFLAGS=-Os" "gcc2:CC=\"ccache gcc\" CFLAGS=-O2" "cl2:CC=\"ccache clang\" CFLAGS=-O2" "gcc3:CC=\"ccache gcc\" CFLAGS=-O3" "cl3:CC=\"ccache clang\" CFLAGS=-O3"; do
247 f=`echo "$o" | cut -f1 -d:`
248 o=`echo "$o" | cut -f2 -d:`
249 prepare_res "$name-nitc-e-$f.dat" "nitc-e-$f" "nitc with --erasure --make-flags $o"
250 run_compiler "nitc-e-$f" ./nitc --erasure --make-flags "$o"
251 done
252 plot "$name.gnu"
253 }
254 bench_cc_nitc-e
255
256 function bench_compilation_time
257 {
258 name="$FUNCNAME"
259 skip_test "$name" && return
260 prepare_res "$name-nitc-g.dat" "nitc-g" "nitc --global"
261 for i in ../examples/hello_world.nit ../src/test_parser.nit ../src/nitc.nit; do
262 bench_command `basename "$i" .nit` "" ./nitc --global "$i" --no-cc
263 done
264 prepare_res "$name-nitc-s.dat" "nitc-s" "nitc --separate"
265 for i in ../examples/hello_world.nit ../src/test_parser.nit ../src/nitc.nit; do
266 bench_command `basename "$i" .nit` "" ./nitc --separate "$i" --no-cc
267 done
268 prepare_res "$name-nitc-e.dat" "nitc-e" "nitc --erasure"
269 for i in ../examples/hello_world.nit ../src/test_parser.nit ../src/nitc.nit; do
270 bench_command `basename "$i" .nit` "" ./nitc --erasure "$i" --no-cc
271 done
272 plot "$name.gnu"
273 }
274 bench_compilation_time
275
276 echo >>"$html" "</body></html>"
277
278 echo >>"$xml" "</testsuite></testsuites>"
279
280 if test -n "$died"; then
281 echo "Some commands failed"
282 exit 1
283 fi
284 exit 0