bin/runopt.sh

Wed, 29 Oct 2014 10:50:44 -0700

author
katleman
date
Wed, 29 Oct 2014 10:50:44 -0700
changeset 1069
21efaa9e20a5
parent 963
e2497b11a021
child 1071
78eb2b415108
permissions
-rw-r--r--

Added tag jdk8u40-b12 for changeset 375a3a3256d0

     1 #!/bin/sh
     2 #
     3 # Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
     4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5 # 
     6 # This code is free software; you can redistribute it and/or modify it
     7 # under the terms of the GNU General Public License version 2 only, as
     8 # published by the Free Software Foundation.
     9 # 
    10 # This code is distributed in the hope that it will be useful, but WITHOUT
    11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    13 # version 2 for more details (a copy is included in the LICENSE file that
    14 # accompanied this code).
    15 # 
    16 # You should have received a copy of the GNU General Public License version
    17 # 2 along with this work; if not, write to the Free Software Foundation,
    18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    19 # 
    20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    21 # or visit www.oracle.com if you need additional information or have any
    22 # questions.
    23 #
    25 ###########################################################################################
    26 # This is a helper script to evaluate nashorn with optimistic types
    27 # it produces a flight recording for every run, and uses the best 
    28 # known flags for performance for the current configration
    29 ###########################################################################################
    31 # Flags to instrument lambdaform computation, caching, interpretation and compilation
    32 # Default compile threshold for lambdaforms is 30
    33 #FLAGS="-Djava.lang.invoke.MethodHandle.COMPILE_THRESHOLD=3 -Djava.lang.invoke.MethodHandle.DUMP_CLASS_FILES=true -Djava.lang.invoke.MethodHandle.TRACE_METHOD_LINKAGE=true -Djava.lang.invoke.MethodHandle.TRACE_INTERPRETER=true"
    36 # Flags to run trusted tests from the Nashorn test suite
    37 #FLAGS="-Djava.security.manager -Djava.security.policy=../build/nashorn.policy -Dnashorn.debug"
    40 # Unique timestamped file name for JFR recordings. For JFR, we also have to
    41 # crank up the stack cutoff depth to 1024, because of ridiculously long lambda form
    42 # stack traces.
    43 #
    44 # It is also recommended that you go into $JAVA_HOME/jre/lib/jfr/default.jfc and
    45 # set the "method-sampling-interval" Normal and Maximum sample time as low as you
    46 # can go (10 ms on most platforms). The default is normally higher. The increased
    47 # sampling overhead is usually negligible for Nashorn runs, but the data is better
    49 JFR_FILENAME="./nashorn_$(date|sed "s/ /_/g"|sed "s/:/_/g").jfr"
    52 # Directory where to look for nashorn.jar in a dist folder. The default is "..", assuming
    53 # that we run the script from the make dir
    54 DIR=..
    55 NASHORN_JAR=$DIR/dist/nashorn.jar
    58 # The built Nashorn jar is placed first in the bootclasspath to override the JDK
    59 # nashorn.jar in $JAVA_HOME/jre/lib/ext. Thus, we also need -esa, as assertions in
    60 # nashorn count as system assertions in this configuration
    62 $JAVA_HOME/bin/java \
    63 $FLAGS \
    64 -ea \
    65 -esa \
    66 -Xbootclasspath/p:$NASHORN_JAR \
    67 -Xms2G -Xmx2G \
    68 -cp $CLASSPATH:../build/test/classes/ \
    69 jdk.nashorn.tools.Shell ${@}
    71 # Below are flags that may come in handy, but aren't used for default runs
    74 # Type profiling default level is 111, 222 adds some compile time, but produces better code.
    75 # -XX:TypeProfileLevel=222 \
    78 # Testing out new code optimizations using the generic hotspot "new code" parameter
    79 #-XX:+UnlockDiagnosticVMOptions \
    80 #-XX:+UseNewCode \
    83 # Type specialization and math intrinsic replacement should be enabled by default in 8u20 and nine,
    84 # keeping this flag around for experimental reasons. Replace + with - to switch it off
    85 #-XX:+UseTypeSpeculation \
    88 # Same with math intrinsics. They should be enabled by default in 8u20 and 9
    89 #-XX:+UseMathExactIntrinsics \
    92 # Add -Dnashorn.time to time the compilation phases.
    93 #-Dnashorn.time \
    96 # Add ShowHiddenFrames to get lambda form internals on the stack traces
    97 #-XX:+ShowHiddenFrames \
   100 # Add print optoassembly to get an asm dump. This requires 1) a debug build, not product,
   101 # That tired compilation is switched off, for C2 only output and that the number of
   102 # compiler threads is set to 1 for determinsm.
   103 #-XX:+PrintOptoAssembly -XX:-TieredCompilation -XX:CICompilerCount=1 \
   105 # Tier compile threasholds. Default value is 10. (1-100 is useful for experiments)
   106 # -XX:IncreaseFirstTierCompileThresholdAt=XX

mercurial