annotate runeclipse.sh @ 3563:8780fa370aab

Support runtime calls to targets that don't fit in a 32-bit immediate: allow to query the maximum offset of a CiRuntimeCall target to determine the required immediate size and patch call sites with a mov/call instruction pair for indirect calls
author Peter Hofer <peter.hofer@jku.at>
date Wed, 31 Aug 2011 14:55:40 +0200
parents 7d9e3ee49ac9
children 37daba6a4e5a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3021
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
1 #!/bin/bash
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
2 if [ -z "${JDK7}" ]; then
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
3 echo "JDK7 is not defined."
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
4 exit 1;
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
5 fi
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
6 if [ -z "${MAXINE}" ]; then
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
7 echo "MAXINE is not defined. It must point to a maxine repository directory."
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
8 exit 1;
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
9 fi
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
10 if [ -z "${GRAAL}" ]; then
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
11 echo "GRAAL is not defined. It must point to a maxine repository directory."
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
12 exit 1;
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
13 fi
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
14 if [ -z "${DACAPO}" ]; then
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
15 echo "DACAPO is not defined. It must point to a Dacapo benchmark directory."
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
16 exit 1;
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
17 fi
3551
7d9e3ee49ac9 Made default for GraalBailoutIsFatal "false".
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 3543
diff changeset
18 COMMAND="${JDK7}/bin/java -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 15 eclipse"
3021
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
19 echo $COMMAND
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
20 $COMMAND
a197fd9e273c added run scripts
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
21 echo $COMMAND