comparison runscimark.sh @ 1449:8cfe3537a0d3

Pointer verification stub. Two loose oop fixes in C1X C++ part. Logging which methods have been compiled.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Thu, 11 Nov 2010 14:09:37 +0100
parents
children 9b22e3e5df8e
comparison
equal deleted inserted replaced
1445:a7b84a5e16c6 1449:8cfe3537a0d3
1 #!/bin/bash
2 if [ -z "${JRE7}" ]; then
3 echo "JRE7 is not defined."
4 exit 1;
5 fi
6 if [ -z "${MAXINE}" ]; then
7 echo "MAXINE is not defined. It must point to a maxine repository directory."
8 exit 1;
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 for (( i = 1; i <= 4000; i++ )) ### Outer for loop ###
15 do
16 echo "$i "
17 ${JRE7}/bin/java -client -esa -ea -XX:+UseC1X -Xms32m -Xmx100m -Xbootclasspath/p:${MAXINE}/C1X/bin:${MAXINE}/CRI/bin:${MAXINE}/Base/bin:${MAXINE}/Assembler/bin:${C1X}/c1x4hotspotsrc/HotSpotVM/bin -Xbootclasspath/a:/home/tw/Benchmarks/scimark/ -classpath "${SCIMARK}" -C1X:+PrintTimers jnt.scimark2.commandline -large
18 done