bin/verbose_octane.sh

Wed, 27 Apr 2016 01:36:41 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:36:41 +0800
changeset 0
b1a7da25b547
child 952
6d5471a497fb
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/nashorn/
changeset: 1034:4b9cc65dd24d
tag: jdk8u25-b17

     1 #!/bin/bash
     2 # Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
     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 #
    24 ITERS=$1
    25 if [ -z $ITERS ]; then 
    26     ITERS=7
    27 fi
    28 NASHORN_JAR=dist/nashorn.jar
    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}"
    30 JVM_FLAGS7="-Xbootclasspath/p:${NASHORN_JAR} ${JVM_FLAGS}"
    31 OCTANE_ARGS="--verbose --iterations ${ITERS}"
    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" )
    34 # TODO mandreel.js has metaspace issues
    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 
    40 	CMD="${JAVA7_HOME}/bin/java ${JVM_FLAGS} test/script/basic/run-octane.js -- test/script/external/octane/${BENCHMARK} ${OCTANE_ARGS}"
    41 	$CMD
    42     done
    43 else
    44     echo "no JAVA7_HOME set. skipping java7"
    45 fi
    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 
    51 	CMD="${JAVA8_HOME}/bin/java ${JVM_FLAGS} test/script/basic/run-octane.js -- test/script/external/octane/${BENCHMARK} ${OCTANE_ARGS}"
    52 	$CMD
    53     done
    54 else 
    55     echo "no JAVA8_HOME set."
    56 fi
    58 echo "Done"

mercurial