duke@435: # drchase@4942: # Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. duke@435: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: # duke@435: # This code is free software; you can redistribute it and/or modify it duke@435: # under the terms of the GNU General Public License version 2 only, as duke@435: # published by the Free Software Foundation. duke@435: # duke@435: # This code is distributed in the hope that it will be useful, but WITHOUT duke@435: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: # version 2 for more details (a copy is included in the LICENSE file that duke@435: # accompanied this code). duke@435: # duke@435: # You should have received a copy of the GNU General Public License version duke@435: # 2 along with this work; if not, write to the Free Software Foundation, duke@435: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: # trims@1907: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA trims@1907: # or visit www.oracle.com if you need additional information or have any trims@1907: # questions. drchase@4942: # duke@435: # duke@435: duke@435: # Sets make macros for making debug version of VM duke@435: duke@435: # Compiler specific DEBUG_CFLAGS are passed in from gcc.make, sparcWorks.make ohair@593: # They may also specify FASTDEBUG_CFLAGS, but it defaults to DEBUG_CFLAGS. duke@435: duke@435: FASTDEBUG_CFLAGS$(FASTDEBUG_CFLAGS) = $(DEBUG_CFLAGS) duke@435: duke@435: # Compiler specific OPT_CFLAGS are passed in from gcc.make, sparcWorks.make duke@435: OPT_CFLAGS/DEFAULT= $(OPT_CFLAGS) duke@435: OPT_CFLAGS/BYFILE = $(OPT_CFLAGS/$@)$(OPT_CFLAGS/DEFAULT$(OPT_CFLAGS/$@)) duke@435: duke@435: ifeq ("${Platform_compiler}", "sparcWorks") duke@435: OPT_CFLAGS/SLOWER = -xO2 ohair@593: twisti@3969: ifeq ($(COMPILER_REV_NUMERIC), 510) coleenp@4037: # Avoid apparent crash because of corrupted methodHandle in a tail call coleenp@4037: OPT_CFLAGS/simpleThresholdPolicy.o = $(OPT_CFLAGS/DEFAULT) $(OPT_CCFLAGS/NO_TAIL_CALL_OPT) twisti@3969: # CC 5.10 has bug XXXXX with -xO4 twisti@3969: OPT_CFLAGS/jvmtiClassFileReconstituter.o = $(OPT_CFLAGS/SLOWER) twisti@3969: endif # COMPILER_REV_NUMERIC == 510 twisti@3969: kvn@865: ifeq ($(COMPILER_REV_NUMERIC), 509) jcoomes@1902: # To avoid jvm98 crash jcoomes@1902: OPT_CFLAGS/instanceKlass.o = $(OPT_CFLAGS/SLOWER) jcoomes@1902: endif # COMPILER_NUMERIC_REV == 509 jcoomes@1902: jcoomes@1902: ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1) jcoomes@1902: # dtrace cannot handle tail call optimization (6672627, 6693876) jcoomes@1902: OPT_CFLAGS/jni.o = $(OPT_CFLAGS/DEFAULT) $(OPT_CCFLAGS/NO_TAIL_CALL_OPT) coleenp@4037: # this hangs in iropt now (7113504) coleenp@4037: OPT_CFLAGS/compileBroker.o = $(OPT_CFLAGS/SLOWER) jcoomes@1902: endif # COMPILER_NUMERIC_REV >= 509 ohair@593: kvn@865: ifeq ($(COMPILER_REV_NUMERIC), 505) ohair@593: # CC 5.5 has bug 4908364 with -xO4 (Fixed in 5.6) duke@435: OPT_CFLAGS/library_call.o = $(OPT_CFLAGS/SLOWER) kvn@865: endif # COMPILER_REV_NUMERIC == 505 ohair@593: kvn@865: ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \<= 504), 1) duke@435: # Compilation of *_.cpp can take an hour or more at O3. Use O2 duke@435: # See comments at top of sparc.make. kvn@868: OPT_CFLAGS/ad_$(Platform_arch_model).o = $(OPT_CFLAGS/SLOWER) kvn@868: OPT_CFLAGS/dfa_$(Platform_arch_model).o = $(OPT_CFLAGS/SLOWER) kvn@865: endif # COMPILER_REV_NUMERIC <= 504 duke@435: kvn@865: ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \< 505), 1) kvn@868: # Same problem with Solaris/x86 compiler (both 5.0 and 5.2) on ad_x86_{32,64}.cpp. kvn@868: # CC build time is also too long for ad_$(Platform_arch_model)_{gen,misc}.o kvn@868: OPT_CFLAGS/ad_$(Platform_arch_model).o = -c kvn@868: OPT_CFLAGS/ad_$(Platform_arch_model)_gen.o = -c kvn@868: OPT_CFLAGS/ad_$(Platform_arch_model)_misc.o = -c kvn@868: ifeq ($(Platform_arch), x86) duke@435: # Same problem for the wrapper roosts: jni.o jvm.o duke@435: OPT_CFLAGS/jni.o = -c duke@435: OPT_CFLAGS/jvm.o = -c duke@435: # Same problem in parse2.o (probably the Big Switch over bytecodes) duke@435: OPT_CFLAGS/parse2.o = -c kvn@868: endif # Platform_arch == x86 duke@435: endif duke@435: duke@435: # Frame size > 100k if we allow inlining via -g0! duke@435: DEBUG_CFLAGS/bytecodeInterpreter.o = -g duke@435: DEBUG_CFLAGS/bytecodeInterpreterWithChecks.o = -g kvn@868: ifeq ($(Platform_arch), x86) duke@435: # ube explodes on x86 duke@435: OPT_CFLAGS/bytecodeInterpreter.o = -xO1 duke@435: OPT_CFLAGS/bytecodeInterpreterWithChecks.o = -xO1 kvn@868: endif # Platform_arch == x86 duke@435: duke@435: endif # Platform_compiler == sparcWorks duke@435: duke@435: # Workaround for a bug in dtrace. If ciEnv::post_compiled_method_load_event() duke@435: # is inlined, the resulting dtrace object file needs a reference to this duke@435: # function, whose symbol name is too long for dtrace. So disable inlining duke@435: # for this method for now. (fix this when dtrace bug 6258412 is fixed) duke@435: OPT_CFLAGS/ciEnv.o = $(OPT_CFLAGS) -xinline=no%__1cFciEnvbFpost_compiled_method_load_event6MpnHnmethod__v_ duke@435: duke@435: # (OPT_CFLAGS/SLOWER is also available, to alter compilation of buggy files) duke@435: duke@435: # If you set HOTSPARC_GENERIC=yes, you disable all OPT_CFLAGS settings duke@435: CFLAGS$(HOTSPARC_GENERIC) += $(OPT_CFLAGS/BYFILE) duke@435: duke@435: # Set the environment variable HOTSPARC_GENERIC to "true" duke@435: # to inhibit the effect of the previous line on CFLAGS. duke@435: duke@435: # The following lines are copied from debug.make, except that we duke@435: # consult FASTDEBUG_CFLAGS instead of DEBUG_CFLAGS. duke@435: # Compiler specific DEBUG_CFLAGS are passed in from gcc.make, sparcWorks.make duke@435: DEBUG_CFLAGS/DEFAULT= $(FASTDEBUG_CFLAGS) duke@435: DEBUG_CFLAGS/BYFILE = $(DEBUG_CFLAGS/$@)$(DEBUG_CFLAGS/DEFAULT$(DEBUG_CFLAGS/$@)) duke@435: CFLAGS += $(DEBUG_CFLAGS/BYFILE) duke@435: duke@435: # Linker mapfiles kamg@526: MAPFILE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers \ never@3095: $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-debug duke@435: drchase@4942: # This mapfile is only needed when compiling with dtrace support, duke@435: # and mustn't be otherwise. kamg@526: MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE) duke@435: duke@435: VERSION = optimized drchase@4942: SYSDEFS += -DASSERT -DCHECK_UNHANDLED_OOPS duke@435: PICFLAGS = DEFAULT