comparison runscimark.sh @ 1936:8d88c9ac9247

Correct deopt handler entry. New flag -XX:+TraceSignals. More detailed deopt printing.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Thu, 23 Dec 2010 18:13:28 +0100
parents 1f81c0d18c75
children b21123d5a693
comparison
equal deleted inserted replaced
1935:98dbef29f10b 1936:8d88c9ac9247
5 fi 5 fi
6 if [ -z "${MAXINE}" ]; then 6 if [ -z "${MAXINE}" ]; then
7 echo "MAXINE is not defined. It must point to a maxine repository directory." 7 echo "MAXINE is not defined. It must point to a maxine repository directory."
8 exit 1; 8 exit 1;
9 fi 9 fi
10 if [ -z "${C1X}" ]; then
11 echo "C1X is not defined. It must point to a c1x4hotspot directory."
12 exit 1;
13 fi
14 if [ -z "${SCIMARK}" ]; then 10 if [ -z "${SCIMARK}" ]; then
15 echo "SCIMARK is not defined. It must point to a SciMark benchmark directory." 11 echo "SCIMARK is not defined. It must point to a SciMark benchmark directory."
16 exit 1; 12 exit 1;
17 fi 13 fi
18 for (( i = 1; i <= 5000; i++ )) ### Outer for loop ### 14 for (( i = 1; i <= 5000; i++ )) ### Outer for loop ###
19 do 15 do
20 echo "$i " 16 echo "$i "
21 ${JDK7}/jre/bin/java -client -esa -ea -XX:+PrintCompilation -XX:+PrintCompilation -XX:+PrintCompilation -XX:+PrintCompilation -XX:+PrintCompilation -XX:+PrintCompilation -XX:+PrintCompilation -XX:+PrintCompilation -XX:+PrintCompilation -XX:+UseC1X -Xms32m -Xmx100m -Xbootclasspath/p:${MAXINE}/C1X/bin:${MAXINE}/CRI/bin:${MAXINE}/Base/bin:${MAXINE}/Assembler/bin:${C1X}/c1x4hotspotsrc/HotSpotVM/bin -Xbootclasspath/a:${SCIMARK} -C1X:+PrintTimers jnt.scimark2.commandline -large 17 ${JDK7}/jre/bin/java -client -graal -esa -ea -Xms32m -Xmx100m -Xbootclasspath/a:${SCIMARK} -C1X:+PrintTimers jnt.scimark2.commandline -large
22 done 18 done