make/solaris/makefiles/fastdebug.make

Fri, 13 Jun 2008 14:52:30 -0700

author
ohair
date
Fri, 13 Jun 2008 14:52:30 -0700
changeset 636
86658812ca35
parent 593
a49545cab84a
child 631
d1605aabd0a1
permissions
-rw-r--r--

6714043: Minor fix to SS12 makefile changes
Reviewed-by: sspitsyn

duke@435 1 #
duke@435 2 # Copyright 1998-2005 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
duke@435 19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 # have any questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # Sets make macros for making debug version of VM
duke@435 26
duke@435 27 # Compiler specific DEBUG_CFLAGS are passed in from gcc.make, sparcWorks.make
ohair@593 28 # They may also specify FASTDEBUG_CFLAGS, but it defaults to DEBUG_CFLAGS.
duke@435 29
duke@435 30 FASTDEBUG_CFLAGS$(FASTDEBUG_CFLAGS) = $(DEBUG_CFLAGS)
duke@435 31
duke@435 32 # Compiler specific OPT_CFLAGS are passed in from gcc.make, sparcWorks.make
duke@435 33 OPT_CFLAGS/DEFAULT= $(OPT_CFLAGS)
duke@435 34 OPT_CFLAGS/BYFILE = $(OPT_CFLAGS/$@)$(OPT_CFLAGS/DEFAULT$(OPT_CFLAGS/$@))
duke@435 35
duke@435 36 ifeq ("${Platform_compiler}", "sparcWorks")
duke@435 37 OPT_CFLAGS/SLOWER = -xO2
ohair@593 38
ohair@593 39 # Problem with SS12 compiler, dtrace doesn't like the .o files (bug 6693876)
ohair@593 40 ifeq ($(COMPILER_REV), 5.9)
ohair@593 41 # Not clear this workaround could be skipped in some cases.
ohair@593 42 OPT_CFLAGS/vmGCOperations.o = $(OPT_CFLAGS/SLOWER)
ohair@593 43 OPT_CFLAGS/java.o = $(OPT_CFLAGS/SLOWER)
ohair@593 44 OPT_CFLAGS/jni.o = $(OPT_CFLAGS/SLOWER)
ohair@593 45 endif
ohair@593 46
ohair@593 47 ifeq ($(COMPILER_REV), 5.5)
ohair@593 48 # CC 5.5 has bug 4908364 with -xO4 (Fixed in 5.6)
duke@435 49 OPT_CFLAGS/library_call.o = $(OPT_CFLAGS/SLOWER)
ohair@593 50 endif # COMPILER_REV == 5.5
ohair@593 51
ohair@593 52 ifeq ($(shell expr $(COMPILER_REV) \<= 5.4), 1)
duke@435 53 # Compilation of *_<arch>.cpp can take an hour or more at O3. Use O2
duke@435 54 # See comments at top of sparc.make.
duke@435 55 OPT_CFLAGS/ad_$(Platform_arch).o = $(OPT_CFLAGS/SLOWER)
duke@435 56 OPT_CFLAGS/dfa_$(Platform_arch).o = $(OPT_CFLAGS/SLOWER)
ohair@593 57 endif # COMPILER_REV <= 5.4
duke@435 58
duke@435 59 ifeq (${COMPILER_REV}, 5.0)
duke@435 60 # Avoid a compiler bug caused by using -xO<level> -g<level>
duke@435 61 # Since the bug also occurs with -xO0, use an innocuous value (must not be null)
duke@435 62 OPT_CFLAGS/c1_LIROptimizer_i486.o = -c
duke@435 63 endif
duke@435 64
duke@435 65 ifeq ($(shell expr $(COMPILER_REV) \< 5.5), 1)
duke@435 66 # Same problem with Solaris/x86 compiler (both 5.0 and 5.2) on ad_i486.cpp.
duke@435 67 # CC build time is also too long for ad_i486_{gen,misc}.o
duke@435 68 OPT_CFLAGS/ad_i486.o = -c
duke@435 69 OPT_CFLAGS/ad_i486_gen.o = -c
duke@435 70 OPT_CFLAGS/ad_i486_misc.o = -c
duke@435 71 ifeq ($(Platform_arch), i486)
duke@435 72 # Same problem for the wrapper roosts: jni.o jvm.o
duke@435 73 OPT_CFLAGS/jni.o = -c
duke@435 74 OPT_CFLAGS/jvm.o = -c
duke@435 75 # Same problem in parse2.o (probably the Big Switch over bytecodes)
duke@435 76 OPT_CFLAGS/parse2.o = -c
duke@435 77 endif # Platform_arch == i486
duke@435 78 endif
duke@435 79
duke@435 80 # Frame size > 100k if we allow inlining via -g0!
duke@435 81 DEBUG_CFLAGS/bytecodeInterpreter.o = -g
duke@435 82 DEBUG_CFLAGS/bytecodeInterpreterWithChecks.o = -g
duke@435 83 ifeq ($(Platform_arch), i486)
duke@435 84 # ube explodes on x86
duke@435 85 OPT_CFLAGS/bytecodeInterpreter.o = -xO1
duke@435 86 OPT_CFLAGS/bytecodeInterpreterWithChecks.o = -xO1
duke@435 87 endif # Platform_arch == i486
duke@435 88
duke@435 89 endif # Platform_compiler == sparcWorks
duke@435 90
duke@435 91 # Workaround for a bug in dtrace. If ciEnv::post_compiled_method_load_event()
duke@435 92 # is inlined, the resulting dtrace object file needs a reference to this
duke@435 93 # function, whose symbol name is too long for dtrace. So disable inlining
duke@435 94 # for this method for now. (fix this when dtrace bug 6258412 is fixed)
duke@435 95 OPT_CFLAGS/ciEnv.o = $(OPT_CFLAGS) -xinline=no%__1cFciEnvbFpost_compiled_method_load_event6MpnHnmethod__v_
duke@435 96
duke@435 97
duke@435 98 # (OPT_CFLAGS/SLOWER is also available, to alter compilation of buggy files)
duke@435 99
duke@435 100 # If you set HOTSPARC_GENERIC=yes, you disable all OPT_CFLAGS settings
duke@435 101 CFLAGS$(HOTSPARC_GENERIC) += $(OPT_CFLAGS/BYFILE)
duke@435 102
duke@435 103 # Set the environment variable HOTSPARC_GENERIC to "true"
duke@435 104 # to inhibit the effect of the previous line on CFLAGS.
duke@435 105
duke@435 106 # The following lines are copied from debug.make, except that we
duke@435 107 # consult FASTDEBUG_CFLAGS instead of DEBUG_CFLAGS.
duke@435 108 # Compiler specific DEBUG_CFLAGS are passed in from gcc.make, sparcWorks.make
duke@435 109 DEBUG_CFLAGS/DEFAULT= $(FASTDEBUG_CFLAGS)
duke@435 110 DEBUG_CFLAGS/BYFILE = $(DEBUG_CFLAGS/$@)$(DEBUG_CFLAGS/DEFAULT$(DEBUG_CFLAGS/$@))
duke@435 111 CFLAGS += $(DEBUG_CFLAGS/BYFILE)
duke@435 112
duke@435 113 # Linker mapfiles
kamg@526 114 MAPFILE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers \
kamg@526 115 $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-debug \
kamg@526 116 $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-nonproduct
duke@435 117
duke@435 118 # This mapfile is only needed when compiling with dtrace support,
duke@435 119 # and mustn't be otherwise.
kamg@526 120 MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE)
duke@435 121
duke@435 122
duke@435 123 G_SUFFIX =
duke@435 124 VERSION = optimized
duke@435 125 SYSDEFS += -DASSERT -DFASTDEBUG -DCHECK_UNHANDLED_OOPS
duke@435 126 PICFLAGS = DEFAULT

mercurial