annotate runexamples.sh @ 3584:cda0630a8640

Remove GRAAL env var requirement; Add ResourceMarks in code installer to avoid leaks
author Gilles Duboscq <gilles.m.duboscq@gmail.com>
date Thu, 06 Oct 2011 17:11:04 +0200
parents 344264424174
children f3e823ead645
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 "${DACAPO}" ]; then
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
11 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
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 ant -f create_examples.xml
3543
344264424174 Enable debugging of compiler code from Java IDEs. Moved binary to "graal" subdirectory. New flag for starting Graal is just "-graal".
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 3190
diff changeset
15 COMMAND="${JDK7}/bin/java -graal -Xms1g -Xmx2g -esa -G:Extend -Xcomp -XX:CompileOnly=examples $* -jar examples.jar"
3183
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
16 echo $COMMAND
35effcd5e778 Added example project. Added InliningGuide example extension.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
17 $COMMAND