make/solaris/makefiles/optimized.make

Wed, 01 Jul 2009 20:22:18 -0700

author
kvn
date
Wed, 01 Jul 2009 20:22:18 -0700
changeset 1268
acba6af809c8
parent 865
4d20a3aaf1ab
child 1279
bd02caa94611
permissions
-rw-r--r--

6840775: Multiple JVM crashes seen with 1.6.0_10 through 1.6.0_14
Summary: Put missed reference to allocated array in copyOf() intrinsic into OopMap for the call slow_arraycopy().
Reviewed-by: never

     1 #
     2 # Copyright 1998-2008 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20 # CA 95054 USA or visit www.sun.com if you need additional information or
    21 # have any questions.
    22 #  
    23 #
    25 # Sets make macros for making optimized version of Gamma VM
    26 # (This is the "product", not the "release" version.)
    28 # Compiler specific OPT_CFLAGS are passed in from gcc.make, sparcWorks.make
    29 OPT_CFLAGS/DEFAULT= $(OPT_CFLAGS)
    30 OPT_CFLAGS/BYFILE = $(OPT_CFLAGS/$@)$(OPT_CFLAGS/DEFAULT$(OPT_CFLAGS/$@))
    32 # (OPT_CFLAGS/SLOWER is also available, to alter compilation of buggy files)
    33 ifeq ("${Platform_compiler}", "sparcWorks")
    35 # Problem with SS12 compiler, dtrace doesn't like the .o files  (bug 6693876)
    36 ifeq ($(COMPILER_REV_NUMERIC),509)
    37   # Not clear this workaround could be skipped in some cases.
    38   OPT_CFLAGS/vmGCOperations.o = $(OPT_CFLAGS/SLOWER) -g
    39   OPT_CFLAGS/java.o = $(OPT_CFLAGS/SLOWER) -g
    40   OPT_CFLAGS/jni.o = $(OPT_CFLAGS/SLOWER) -g
    41 endif
    43 # Workaround SS11 bug 6345274 (all platforms) (Fixed in SS11 patch and SS12)
    44 ifeq ($(COMPILER_REV_NUMERIC),508)
    45 OPT_CFLAGS/ciTypeFlow.o = $(OPT_CFLAGS/O2)
    46 endif # COMPILER_REV_NUMERIC == 508
    48 endif # Platform_compiler == sparcWorks
    50 # If you set HOTSPARC_GENERIC=yes, you disable all OPT_CFLAGS settings
    51 CFLAGS$(HOTSPARC_GENERIC) += $(OPT_CFLAGS/BYFILE)
    53 # Linker mapfiles
    54 # NOTE: inclusion of nonproduct mapfile not necessary; read it for details
    55 MAPFILE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers \
    56           $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-nonproduct
    58 # This mapfile is only needed when compiling with dtrace support, 
    59 # and mustn't be otherwise.
    60 MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE)
    62 # Set the environment variable HOTSPARC_GENERIC to "true"
    63 # to inhibit the effect of the previous line on CFLAGS.
    65 G_SUFFIX =
    66 VERSION = optimized

mercurial