Mercurial > people > rkennke > jdk9-shenandoah-final > nashorn
annotate bin/verbose_octane.sh @ 629:79f7b79bf97b jdk8-b114
Added tag jdk8-b113 for changeset 676cd7bf5e09
author | cl |
---|---|
date | Thu, 24 Oct 2013 09:10:54 -0700 |
parents | 3a209cbd1d8f |
children |
rev | line source |
---|---|
2 | 1 #!/bin/bash |
6 | 2 # Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
2 | 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 # | |
5 # This code is free software; you can redistribute it and/or modify it | |
6 # under the terms of the GNU General Public License version 2 only, as | |
7 # published by the Free Software Foundation. | |
8 # | |
9 # This code is distributed in the hope that it will be useful, but WITHOUT | |
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
12 # version 2 for more details (a copy is included in the LICENSE file that | |
13 # accompanied this code). | |
14 # | |
15 # You should have received a copy of the GNU General Public License version | |
16 # 2 along with this work; if not, write to the Free Software Foundation, | |
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | |
18 # | |
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | |
20 # or visit www.oracle.com if you need additional information or have any | |
21 # questions. | |
22 # | |
23 | |
24 ITERS=$1 | |
25 if [ -z $ITERS ]; then | |
26 ITERS=7 | |
27 fi | |
28 NASHORN_JAR=dist/nashorn.jar | |
210 | 29 JVM_FLAGS="-Djava.ext.dirs=`dirname $0`/../dist:$JAVA_HOME/jre/lib/ext -XX:+UnlockDiagnosticVMOptions -Dnashorn.unstable.relink.threshold=8 -Xms2G -Xmx2G -XX:+TieredCompilation -server -jar ${NASHORN_JAR}" |
2 | 30 JVM_FLAGS7="-Xbootclasspath/p:${NASHORN_JAR} ${JVM_FLAGS}" |
31 OCTANE_ARGS="--verbose --iterations ${ITERS}" | |
32 | |
23
2a4769fcd13f
8005976: Break out AccessSpecializer into one pass before CodeGenerator instead of iterative applications from CodeGenerator
lagergren
parents:
18
diff
changeset
|
33 BENCHMARKS=( "box2d.js" "code-load.js" "crypto.js" "deltablue.js" "earley-boyer.js" "gbemu.js" "navier-stokes.js" "pdfjs.js" "raytrace.js" "regexp.js" "richards.js" "splay.js" ) |
2 | 34 # TODO mandreel.js has metaspace issues |
35 | |
36 if [ ! -z $JAVA7_HOME ]; then | |
37 echo "running ${ITERS} iterations with java7 using JAVA_HOME=${JAVA7_HOME}..." | |
38 for BENCHMARK in "${BENCHMARKS[@]}" | |
39 do | |
23
2a4769fcd13f
8005976: Break out AccessSpecializer into one pass before CodeGenerator instead of iterative applications from CodeGenerator
lagergren
parents:
18
diff
changeset
|
40 CMD="${JAVA7_HOME}/bin/java ${JVM_FLAGS} test/script/basic/run-octane.js -- test/script/external/octane/${BENCHMARK} ${OCTANE_ARGS}" |
2 | 41 $CMD |
42 done | |
43 else | |
44 echo "no JAVA7_HOME set. skipping java7" | |
45 fi | |
46 | |
47 if [ ! -z $JAVA8_HOME ]; then | |
48 echo "running ${ITERS} iterations with java8 using JAVA_HOME=${JAVA8_HOME}..." | |
49 for BENCHMARK in "${BENCHMARKS[@]}" | |
50 do | |
18
4cd65798ec70
8005940: provide ant targets to get and update external test scripts
sundar
parents:
6
diff
changeset
|
51 CMD="${JAVA8_HOME}/bin/java ${JVM_FLAGS} test/script/basic/run-octane.js -- test/script/external/octane/${BENCHMARK} ${OCTANE_ARGS}" |
2 | 52 $CMD |
53 done | |
54 else | |
23
2a4769fcd13f
8005976: Break out AccessSpecializer into one pass before CodeGenerator instead of iterative applications from CodeGenerator
lagergren
parents:
18
diff
changeset
|
55 echo "no JAVA8_HOME set." |
2 | 56 fi |
57 | |
58 echo "Done" |