make Runtime._syscall() protected so it can be overridden from outside the package
[nestedvm.git] / doc / charts / chart1.gnuplot
1 # don't touch this
2 set terminal postscript landscape color "Helvetica" 19 
3 set output 'unfilled.eps'
4
5 set yrange [0:6]
6 set xrange [1:7.4]
7 set data style boxes
8 set boxwidth 0.4
9 set xtics ("256" 1.8, "128" 3.4, "64" 5.0, "32" 6.6)
10 set xlabel "Max Instructions Per Method"
11 set ylabel "Seconds"
12 set title "Optimal Max Instructions Per Method"
13 set grid
14
15 plot \
16   'chart1.dat' using ($1-0.8):($2) title "libjpeg",      \
17   'chart1.dat' using ($1-0.4):($3) title "libfreetype",    \
18   'chart1.dat' using     ($1):($4) title "libmspack"
19