# HG changeset patch # User Thomas Wuerthinger # Date 1308425040 -7200 # Node ID a197fd9e273c692767407654c4caf858460a413f # Parent 9fed07e4a375cb8f01f533658bd8ac6d84d9c775 added run scripts diff -r 9fed07e4a375 -r a197fd9e273c runeclipse.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/runeclipse.sh Sat Jun 18 21:24:00 2011 +0200 @@ -0,0 +1,21 @@ +#!/bin/bash +if [ -z "${JDK7}" ]; then + echo "JDK7 is not defined." + exit 1; +fi +if [ -z "${MAXINE}" ]; then + echo "MAXINE is not defined. It must point to a maxine repository directory." + exit 1; +fi +if [ -z "${GRAAL}" ]; then + echo "GRAAL is not defined. It must point to a maxine repository directory." + exit 1; +fi +if [ -z "${DACAPO}" ]; then + echo "DACAPO is not defined. It must point to a Dacapo benchmark directory." + exit 1; +fi +COMMAND="${JDK7}/bin/java -client -d64 -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 5 eclipse" +echo $COMMAND +$COMMAND +echo $COMMAND diff -r 9fed07e4a375 -r a197fd9e273c runlusearch.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/runlusearch.sh Sat Jun 18 21:24:00 2011 +0200 @@ -0,0 +1,21 @@ +#!/bin/bash +if [ -z "${JDK7}" ]; then + echo "JDK7 is not defined." + exit 1; +fi +if [ -z "${MAXINE}" ]; then + echo "MAXINE is not defined. It must point to a maxine repository directory." + exit 1; +fi +if [ -z "${GRAAL}" ]; then + echo "GRAAL is not defined. It must point to a maxine repository directory." + exit 1; +fi +if [ -z "${DACAPO}" ]; then + echo "DACAPO is not defined. It must point to a Dacapo benchmark directory." + exit 1; +fi +COMMAND="${JDK7}/bin/java -client -d64 -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 5 lusearch" +echo $COMMAND +$COMMAND +echo $COMMAND