annotate runexamples.sh @ 3186:0baa318b28f5

Merge
author Josef Haider <josef.haider@khg.jku.at>
date Thu, 07 Jul 2011 18:31:25 +0200
parents 35effcd5e778
children ce2952ab2028
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3183
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
1 #!/bin/bash
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
2 if [ -z "${JDK7}" ]; then
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
3 echo "JDK7 is not defined."
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
4 exit 1;
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
5 fi
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
6 if [ -z "${MAXINE}" ]; then
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
7 echo "MAXINE is not defined. It must point to a maxine repository directory."
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
8 exit 1;
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
9 fi
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
10 if [ -z "${GRAAL}" ]; then
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
11 echo "GRAAL is not defined. It must point to a maxine repository directory."
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
12 exit 1;
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
13 fi
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
14 if [ -z "${DACAPO}" ]; then
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
15 echo "DACAPO is not defined. It must point to a Dacapo benchmark directory."
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
16 exit 1;
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
17 fi
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
18 ant -f create_examples.xml
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
19 COMMAND="${JDK7}/bin/java -client -d64 -graal -Xms1g -Xmx2g -esa -G:Extend -Xcomp -XX:CompileOnly=examples -XX:+PrintCompilation $* -jar examples.jar"
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
20 echo $COMMAND
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
21 $COMMAND