annotate runxalan.sh @ 3604:e4175b8b85d3

IdealGraphVisualizer: work around a Swing/NetBeans tree UI problem that occurs when mouse events are handled while the tree model is changing, e.g. when using IGV while it still receives graphs from a compiler. BasicTreeUI attempts to get the boundaries for the node associated with the location on screen, but fails and tries to access a null Rectangle, causing a user-visible NullPointerException. By implementing equals() for GraphNode, nodes for graphs that are already in the tree are not removed and re-added when updating groups, and the exception can no longer be reproduced. This potentially also resolves some redraw issues.
author Peter Hofer <peter.hofer@jku.at>
date Mon, 31 Oct 2011 15:55:13 +0100
parents cda0630a8640
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3528
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
1 #!/bin/bash
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
2 if [ -z "${JDK7}" ]; then
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
3 echo "JDK7 is not defined."
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
4 exit 1;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
5 fi
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
6 if [ -z "${MAXINE}" ]; then
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
7 echo "MAXINE is not defined. It must point to a maxine repository directory."
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
8 exit 1;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
9 fi
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
10 if [ -z "${DACAPO}" ]; then
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
11 echo "DACAPO is not defined. It must point to a Dacapo benchmark directory."
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
12 exit 1;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
13 fi
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: 3528
diff changeset
14 COMMAND="${JDK7}/bin/java -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 20 xalan"
3528
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
15 echo $COMMAND
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
16 $COMMAND