annotate make/solaris/makefiles/top.make @ 3762:5c0a3c1858b1

7048782: CMS: assert(last_chunk_index_to_check<= last_chunk_index) failed: parCardTableModRefBS.cpp:359 Summary: The LNC array is sized before the start of a scavenge, while the heap may expand during a scavenge. With CMS, the last block of an arbitrary suffice of the LNC array may expand due to coalition with the expansion delta. We now take care not to attempt access past the end of the LNC array. LNC array code will be cleaned up and suitably encapsulated as part of the forthcoming performance RFE 7043675. Reviewed-by: brutisso
author ysr
date Thu, 02 Jun 2011 10:23:36 -0700
parents 1d1603768966
children f09ae3853e3b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2199
diff changeset
2 # Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 971
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 971
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 971
diff changeset
21 # questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # top.make is included in the Makefile in the build directories.
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # It DOES NOT include the vm dependency info in order to be faster.
971
0fc81f0a8ca8 6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents: 433
diff changeset
27 # Its main job is to implement the incremental form of make lists.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 # It also:
a61af66fc99e Initial load
duke
parents:
diff changeset
29 # -builds and runs adlc via adlc.make
a61af66fc99e Initial load
duke
parents:
diff changeset
30 # -generates JVMTI source and docs via jvmti.make (JSR-163)
a61af66fc99e Initial load
duke
parents:
diff changeset
31 # -generate sa-jdi.jar (JDI binding to core files)
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 # It assumes the following flags are set:
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 # CFLAGS Platform_file, Src_Dirs_I, Src_Dirs_V, SYSDEFS, AOUT, Jvm_Obj_Files
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 # -- D. Ungar (5/97) from a file by Bill Bush
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 # Don't override the built-in $(MAKE).
a61af66fc99e Initial load
duke
parents:
diff changeset
39 # Instead, use "gmake" (or "gnumake") from the command line. --Rose
a61af66fc99e Initial load
duke
parents:
diff changeset
40 #MAKE = gmake
a61af66fc99e Initial load
duke
parents:
diff changeset
41
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 1972
diff changeset
42 include $(GAMMADIR)/make/altsrc.make
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 1972
diff changeset
43
0
a61af66fc99e Initial load
duke
parents:
diff changeset
44 GENERATED = ../generated
a61af66fc99e Initial load
duke
parents:
diff changeset
45 VM = $(GAMMADIR)/src/share/vm
a61af66fc99e Initial load
duke
parents:
diff changeset
46 Plat_File = $(Platform_file)
a61af66fc99e Initial load
duke
parents:
diff changeset
47 CDG = cd $(GENERATED);
a61af66fc99e Initial load
duke
parents:
diff changeset
48
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
49 Cached_plat = $(GENERATED)/platform.current
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 AD_Dir = $(GENERATED)/adfiles
a61af66fc99e Initial load
duke
parents:
diff changeset
52 ADLC = $(AD_Dir)/adlc
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 1972
diff changeset
53 AD_Spec = $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad)
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 1972
diff changeset
54 AD_Src = $(call altsrc-replace,$(HS_COMMON_SRC)/share/vm/adlc)
433
c1345e85f901 6767659: Conversion from i486 to x86 missed some entries in makefiles
kvn
parents: 356
diff changeset
55 AD_Names = ad_$(Platform_arch_model).hpp ad_$(Platform_arch_model).cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 AD_Files = $(AD_Names:%=$(AD_Dir)/%)
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 # AD_Files_If_Required/COMPILER1 = ad_stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
59 AD_Files_If_Required/COMPILER2 = ad_stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
60 AD_Files_If_Required/TIERED = ad_stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
61 AD_Files_If_Required = $(AD_Files_If_Required/$(TYPE))
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 # Wierd argument adjustment for "gnumake -j..."
a61af66fc99e Initial load
duke
parents:
diff changeset
64 adjust-mflags = $(GENERATED)/adjust-mflags
a61af66fc99e Initial load
duke
parents:
diff changeset
65 MFLAGS-adjusted = -r `$(adjust-mflags) "$(MFLAGS)" "$(HOTSPOT_BUILD_JOBS)"`
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
68 # default target: update lists, make vm
0
a61af66fc99e Initial load
duke
parents:
diff changeset
69 # done in stages to force sequential order with parallel make
a61af66fc99e Initial load
duke
parents:
diff changeset
70 #
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 default: vm_build_preliminaries the_vm
a61af66fc99e Initial load
duke
parents:
diff changeset
73 @echo All done.
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 # This is an explicit dependency for the sake of parallel makes.
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
76 vm_build_preliminaries: checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff sa_stuff
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 @# We need a null action here, so implicit rules don't get consulted.
a61af66fc99e Initial load
duke
parents:
diff changeset
78
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
79 $(Cached_plat): $(Plat_File)
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
80 $(CDG) cp $(Plat_File) $(Cached_plat)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 # make AD files as necessary
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
83 ad_stuff: $(Cached_plat) $(adjust-mflags)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 @$(MAKE) -f adlc.make $(MFLAGS-adjusted)
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 # generate JVMTI files from the spec
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
87 jvmti_stuff: $(Cached_plat) $(adjust-mflags)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88 @$(MAKE) -f jvmti.make $(MFLAGS-adjusted)
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 # generate SA jar files and native header
a61af66fc99e Initial load
duke
parents:
diff changeset
91 sa_stuff:
a61af66fc99e Initial load
duke
parents:
diff changeset
92 @$(MAKE) -f sa.make $(MFLAGS-adjusted)
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 # and the VM: must use other makefile with dependencies included
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 # We have to go to great lengths to get control over the -jN argument
a61af66fc99e Initial load
duke
parents:
diff changeset
97 # to the recursive invocation of vm.make. The problem is that gnumake
a61af66fc99e Initial load
duke
parents:
diff changeset
98 # resets -jN to -j1 for recursive runs. (How helpful.)
a61af66fc99e Initial load
duke
parents:
diff changeset
99 # Note that the user must specify the desired parallelism level via a
a61af66fc99e Initial load
duke
parents:
diff changeset
100 # command-line or environment variable name HOTSPOT_BUILD_JOBS.
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
101 $(adjust-mflags): $(GAMMADIR)/make/$(Platform_os_family)/makefiles/adjust-mflags.sh
0
a61af66fc99e Initial load
duke
parents:
diff changeset
102 @+rm -f $@ $@+
a61af66fc99e Initial load
duke
parents:
diff changeset
103 @+cat $< > $@+
a61af66fc99e Initial load
duke
parents:
diff changeset
104 @+chmod +x $@+
a61af66fc99e Initial load
duke
parents:
diff changeset
105 @+mv $@+ $@
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 the_vm: vm_build_preliminaries $(adjust-mflags)
a61af66fc99e Initial load
duke
parents:
diff changeset
108 @$(MAKE) -f vm.make $(MFLAGS-adjusted)
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 install: the_vm
a61af66fc99e Initial load
duke
parents:
diff changeset
111 @$(MAKE) -f vm.make install
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 # next rules support "make foo.[oi]"
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 %.o %.i %.s:
a61af66fc99e Initial load
duke
parents:
diff changeset
116 $(MAKE) -f vm.make $(MFLAGS) $@
a61af66fc99e Initial load
duke
parents:
diff changeset
117 #$(MAKE) -f vm.make $@
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 # this should force everything to be rebuilt
a61af66fc99e Initial load
duke
parents:
diff changeset
120 clean:
a61af66fc99e Initial load
duke
parents:
diff changeset
121 rm -f $(GENERATED)/*.class
a61af66fc99e Initial load
duke
parents:
diff changeset
122 $(MAKE) -f vm.make $(MFLAGS) clean
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 # just in case it doesn't, this should do it
a61af66fc99e Initial load
duke
parents:
diff changeset
125 realclean:
a61af66fc99e Initial load
duke
parents:
diff changeset
126 $(MAKE) -f vm.make $(MFLAGS) clean
a61af66fc99e Initial load
duke
parents:
diff changeset
127 rm -fr $(GENERATED)
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 .PHONY: default vm_build_preliminaries
a61af66fc99e Initial load
duke
parents:
diff changeset
130 .PHONY: lists ad_stuff jvmti_stuff sa_stuff the_vm clean realclean
a61af66fc99e Initial load
duke
parents:
diff changeset
131 .PHONY: checks check_os_version install