README: document nit_env.sh
[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 run_command "$@" ../src/nitc.nit -o "nitc.$title.bin"
52 bench_command "nitc-g" "nitc --global --no-cc ../src/nitls.nit" "./nitc.$title.bin" -v --global --no-cc ../src/nitls.nit
53 bench_command "nitc-s" "nitc --separate ../src/nitc.nit" "./nitc.$title.bin" -v --no-cc --separate ../src/nitc.nit
54 run_command "$@" ../src/nit.nit -o "nit.$title.bin"
55 bench_command "nit-queens" "nit queens.nit 8" "./nit.$title.bin" ../lib/ai/examples/queens.nit -q 8
56 bench_command "nit-nitcc" "nit nitcc.nit calc.sablecc" "./nit.$title.bin" ../contrib/nitcc/src/nitcc.nit ../contrib/nitcc/examples/calc.sablecc
57 rm calc* 2> /dev/null # remove generated cruft
58 run_command "$@" ../src/nitdoc.nit -o "nitdoc.$title.bin"
59 rm -r out 2> /dev/null
60 mkdir out 2> /dev/null
61 bench_command "nitdoc" "nitdoc ../src/nitls.nit" "./nitdoc.$title.bin" -v ../src/nitls.nit -d out
62 run_command "$@" ../examples/shoot/src/shoot_logic.nit -o "shoot.$title.bin"
63 bench_command "shoot" "shoot_logic 15" "./shoot.$title.bin" 15
64 run_command "$@" ../tests/bench_bintree_gen.nit -o "bintrees.$title.bin"
65 bench_command "bintrees" "bench_bintree_gen 17" "./bintrees.$title.bin" 17
66 #run_command "$@" "../contrib/pep8analysis/src/pep8analysis.nit" -o "pep8a.$title.bin"
67 #bench_command "pep8analisis" "bench_pep8analisis" "./pep8a.$title.bin" "../contrib/pep8analysis/tests/privat/"*.pep
68 run_command "$@" "../lib/ai/examples/queens.nit" -o "queens.$title.bin"
69 bench_command "queens" "bench_queens 13" "./queens.$title.bin" 13
70 run_command "$@" "../lib/ai/examples/puzzle.nit" -o "puzzle.$title.bin"
71 bench_command "puzzle" "puzzle 15-hard" "./puzzle.$title.bin" kleg.mondcafjhbi
72 run_command "$@" "markdown/engines/nitmd/nitmd.nit" -o "nitmd.$title.bin"
73 bench_command "nitmd" "markdown" "./nitmd.$title.bin" markdown/benches/out/mixed.md 80
74 fi
75
76 rm -r *.bin out 2> /dev/null
77 }
78
79 ## HANDLE OPTIONS ##
80
81 function usage()
82 {
83 echo "run_bench: [options]* benchname"
84 echo " -v: verbose mode"
85 echo " -n count: number of execution for each bar (default: $count)"
86 echo " --dry: Do not run the commands, just reuse the data and generate the graph"
87 echo " --fast: Run less and faster tests"
88 echo " -h: this help"
89 }
90
91 stop=false
92 while [ "$stop" = false ]; do
93 case "$1" in
94 -v) verbose=true; shift;;
95 -h) usage; exit;;
96 -n) count="$2"; shift; shift;;
97 --dry) dry_run=true; shift;;
98 --fast) fast=true$fast; shift;;
99 --html) shift;; # Deprecated
100 *) stop=true
101 esac
102 done
103
104 html="index.html"
105 echo >"$html" "<html><head></head><body>"
106
107 xml="bench_engines.xml"
108 echo "<testsuites><testsuite>" > "$xml"
109
110 NOTSKIPED="$*"
111
112 if test -z "$NOTSKIPED"; then
113 usage
114 echo "List of available benches:"
115 echo "* all: run all the benches"
116 fi
117
118 ## COMPILE ENGINES
119
120 # get the bootstrapped nitc
121 cp ../bin/nitc .
122
123 if test -z "$fast"; then
124 make -C markdown/benches
125 make -C ../contrib/nitcc
126 fi
127
128 ## EFFECTIVE BENCHS ##
129
130 function bench_steps()
131 {
132 name="$FUNCNAME"
133 skip_test "$name" && return
134 prepare_res "$name-nitc.dat" "nitc-g" "Various steps of nitc --global"
135 bench_command "parse" "" ./nitc --global --only-parse ../src/nitc.nit
136 bench_command "metamodel" "" ./nitc --global --only-metamodel ../src/nitc.nit
137 bench_command "generate c" "" ./nitc --global --no-cc ../src/nitc.nit
138 bench_command "full" "" ./nitc --global ../src/nitc.nit -o "nitc_nitc.bin"
139
140 prepare_res "$name-nitc-s.dat" "nitc-s" "Various steps of nitc --separate"
141 bench_command "parse" "" ./nitc --separate --only-parse ../src/nitc.nit
142 bench_command "metamodel" "" ./nitc --separate --only-metamodel ../src/nitc.nit
143 bench_command "generate c" "" ./nitc --separate --no-cc ../src/nitc.nit
144 bench_command "full" "" ./nitc --separate ../src/nitc.nit -o "nitc_nitc-e.bin"
145
146 prepare_res "$name-nitc-e.dat" "nitc-e" "Various steps of nitc --erasure"
147 bench_command "parse" "" ./nitc --erasure --only-parse ../src/nitc.nit
148 bench_command "metamodel" "" ./nitc --erasure --only-metamodel ../src/nitc.nit
149 bench_command "generate c" "" ./nitc --erasure --no-cc ../src/nitc.nit
150 bench_command "full" "" ./nitc --erasure ../src/nitc.nit -o "nitc_nitc-e.bin"
151
152 plot "$name.gnu"
153 }
154 bench_steps
155
156 # Simple script to compare various options on nitc
157 #
158 # usage: *name* *common* [NOALL] *options*...
159 #
160 # * *name*, the name of the bench
161 # * *common*, options to use on each case
162 # * NOALL, optional flag to avoid a last case including all additional options
163 # * *options*, sequences of options, one for each case
164 #
165 # Example: `bench_nitc_options "foo" "-a -b" -c "-d -e"` generates 4 cases:
166 #
167 # * only *common*: `nitc -a -b`
168 # * *common* and first *options*: `nitc -a -b -c`
169 # * *common* and second *options*: `nitc -a -b -d -e`
170 # * all: *common* and all *options*: `nitc -a -b -c -d -e`
171 function bench_nitc_options()
172 {
173 tag=$1
174 shift
175 common=$1
176 shift
177 name="$FUNCNAME-$tag$common"
178 name=${name// /}
179 skip_test "$name" && return
180 prepare_res "$name.dat" "no options" "nitc $common without more options"
181 run_compiler "nitc-$name" ./nitc $common
182
183 if test "$1" = NOALL; then
184 withall=
185 shift
186 else
187 withall=true
188 fi
189
190 for opt in "$@"; do
191 ot=${opt// /}
192 prepare_res "$name$ot.dat" "$opt" "nitc with option $opt"
193 run_compiler "nitc-$name" ./nitc $common $opt
194 done
195
196 if test -n "$2" -a -n "$withall"; then
197 prepare_res "$name-all.dat" "all" "nitc with all options $@"
198 run_compiler "nitc-$name" ./nitc $common $@
199 fi
200
201 plot "$name.gnu"
202 }
203
204 bench_nitc_options "slower" --global --hardening --no-shortcut-range
205 bench_nitc_options "nocheck" --global --no-check-null --no-check-autocast --no-check-attr-isset --no-check-covariance --no-check-assert
206
207 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
208 bench_nitc_options "nocheck" --separate --no-check-null --no-check-autocast --no-check-attr-isset --no-check-covariance --no-check-assert
209 bench_nitc_options "faster" --separate --skip-dead-methods --inline-coloring-numbers --inline-some-methods --direct-call-monomorph "--inline-some-methods --direct-call-monomorph"
210
211 bench_nitc_options "slower" --erasure --hardening --no-shortcut-equal --no-union-attribute --no-shortcut-range --no-inline-intern
212 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
213 bench_nitc_options "faster" --erasure --skip-dead-methods --inline-coloring-numbers --inline-some-methods --direct-call-monomorph --rta
214
215 bench_nitc_options "engine" "" NOALL "--separate" "--erasure" "--separate --semi-global" "--erasure --semi-global" "--erasure --semi-global --rta" "--global"
216 bench_nitc_options "policy" "" NOALL "--separate" "--erasure" "--separate --no-check-covariance" "--erasure --no-check-covariance --no-check-erasure-cast"
217 bench_nitc_options "nullables" "" "--no-check-attr-isset" "--no-union-attribute"
218 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"
219 bench_nitc_options "monomorph" "" --direct-call-monomorph0 --direct-call-monomorph
220
221 bench_nitc_options "misc" "" --log --typing-test-metrics --invocation-metrics --isset-checks-metrics --tables-metrics --no-stacktrace --release --debug #FIXME add --sloppy
222
223 function bench_nitc-e_gc()
224 {
225 name="$FUNCNAME"
226 skip_test "$name" && return
227 prepare_res "$name-nitc-e.dat" "nitc-e" "nitc with --erasure"
228 run_compiler "nitc-e" ./nitc --erasure
229 prepare_res "$name-nitc-e-malloc.dat" "nitc-e-malloc" "nitc with --erasure and malloc"
230 NIT_GC_OPTION="malloc" run_compiler "nitc-e-malloc" ./nitc --erasure
231 prepare_res "$name-nitc-e-large.dat" "nitc-e-large" "nitc with --erasure and large"
232 NIT_GC_OPTION="large" run_compiler "nitc-e-large" ./nitc --erasure
233 plot "$name.gnu"
234 }
235 bench_nitc-e_gc
236
237 function bench_cc_nitc-e()
238 {
239 name="$FUNCNAME"
240 skip_test "$name" && return
241 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
242 f=`echo "$o" | cut -f1 -d:`
243 o=`echo "$o" | cut -f2 -d:`
244 prepare_res "$name-nitc-e-$f.dat" "nitc-e-$f" "nitc with --erasure --make-flags $o"
245 run_compiler "nitc-e-$f" ./nitc --erasure --make-flags "$o"
246 done
247 plot "$name.gnu"
248 }
249 bench_cc_nitc-e
250
251 function bench_compilation_time
252 {
253 name="$FUNCNAME"
254 skip_test "$name" && return
255 prepare_res "$name-nitc-g.dat" "nitc-g" "nitc --global"
256 for i in ../examples/hello_world.nit ../src/test_parser.nit ../src/nitc.nit; do
257 bench_command `basename "$i" .nit` "" ./nitc --global "$i" --no-cc
258 done
259 prepare_res "$name-nitc-s.dat" "nitc-s" "nitc --separate"
260 for i in ../examples/hello_world.nit ../src/test_parser.nit ../src/nitc.nit; do
261 bench_command `basename "$i" .nit` "" ./nitc --separate "$i" --no-cc
262 done
263 prepare_res "$name-nitc-e.dat" "nitc-e" "nitc --erasure"
264 for i in ../examples/hello_world.nit ../src/test_parser.nit ../src/nitc.nit; do
265 bench_command `basename "$i" .nit` "" ./nitc --erasure "$i" --no-cc
266 done
267 plot "$name.gnu"
268 }
269 bench_compilation_time
270
271 echo >>"$html" "</body></html>"
272
273 echo >>"$xml" "</testsuite></testsuites>"
274
275 if test -n "$died"; then
276 echo "Some commands failed"
277 exit 1
278 fi
279 exit 0