comparison make/solaris/makefiles/fastdebug.make @ 6725:da91efe96a93

6964458: Reimplement class meta-data storage to use native memory Summary: Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland Contributed-by: jmasa <jon.masamitsu@oracle.com>, stefank <stefan.karlsson@oracle.com>, mgerdin <mikael.gerdin@oracle.com>, never <tom.rodriguez@oracle.com>
author coleenp
date Sat, 01 Sep 2012 13:25:18 -0400
parents ee7edf31f688
children 78b56e53050e
comparison
equal deleted inserted replaced
6724:36d1d483d5d6 6725:da91efe96a93
1 # 1 #
2 # Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 # 4 #
5 # This code is free software; you can redistribute it and/or modify it 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 6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
35 35
36 ifeq ("${Platform_compiler}", "sparcWorks") 36 ifeq ("${Platform_compiler}", "sparcWorks")
37 OPT_CFLAGS/SLOWER = -xO2 37 OPT_CFLAGS/SLOWER = -xO2
38 38
39 ifeq ($(COMPILER_REV_NUMERIC), 510) 39 ifeq ($(COMPILER_REV_NUMERIC), 510)
40 # Avoid apparent crash because of corrupted methodHandle in a tail call
41 OPT_CFLAGS/simpleThresholdPolicy.o = $(OPT_CFLAGS/DEFAULT) $(OPT_CCFLAGS/NO_TAIL_CALL_OPT)
40 # CC 5.10 has bug XXXXX with -xO4 42 # CC 5.10 has bug XXXXX with -xO4
41 OPT_CFLAGS/jvmtiClassFileReconstituter.o = $(OPT_CFLAGS/SLOWER) 43 OPT_CFLAGS/jvmtiClassFileReconstituter.o = $(OPT_CFLAGS/SLOWER)
44 # jvm98 crashes on solaris-i586-fastdebug and solaris-sparc-fastdebug with stack overflow
45 OPT_CFLAGS/escape.o = $(OPT_CFLAGS) -xspace
46 OPT_CFLAGS/matcher.o = $(OPT_CFLAGS) -xspace
42 endif # COMPILER_REV_NUMERIC == 510 47 endif # COMPILER_REV_NUMERIC == 510
43 48
44 ifeq ($(COMPILER_REV_NUMERIC), 509) 49 ifeq ($(COMPILER_REV_NUMERIC), 509)
45 # To avoid jvm98 crash 50 # To avoid jvm98 crash
46 OPT_CFLAGS/instanceKlass.o = $(OPT_CFLAGS/SLOWER) 51 OPT_CFLAGS/instanceKlass.o = $(OPT_CFLAGS/SLOWER)
47 endif # COMPILER_NUMERIC_REV == 509 52 endif # COMPILER_NUMERIC_REV == 509
48 53
49 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1) 54 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
50 # dtrace cannot handle tail call optimization (6672627, 6693876) 55 # dtrace cannot handle tail call optimization (6672627, 6693876)
51 OPT_CFLAGS/jni.o = $(OPT_CFLAGS/DEFAULT) $(OPT_CCFLAGS/NO_TAIL_CALL_OPT) 56 OPT_CFLAGS/jni.o = $(OPT_CFLAGS/DEFAULT) $(OPT_CCFLAGS/NO_TAIL_CALL_OPT)
57 # this hangs in iropt now (7113504)
58 OPT_CFLAGS/compileBroker.o = $(OPT_CFLAGS/SLOWER)
52 endif # COMPILER_NUMERIC_REV >= 509 59 endif # COMPILER_NUMERIC_REV >= 509
53 60
54 ifeq ($(COMPILER_REV_NUMERIC), 505) 61 ifeq ($(COMPILER_REV_NUMERIC), 505)
55 # CC 5.5 has bug 4908364 with -xO4 (Fixed in 5.6) 62 # CC 5.5 has bug 4908364 with -xO4 (Fixed in 5.6)
56 OPT_CFLAGS/library_call.o = $(OPT_CFLAGS/SLOWER) 63 OPT_CFLAGS/library_call.o = $(OPT_CFLAGS/SLOWER)