annotate make/solaris/makefiles/top.make @ 342:37f87013dfd8

6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
author ysr
date Thu, 05 Jun 2008 15:57:56 -0700
parents a294fd0c4b38
children 1ee8caae33af
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
a61af66fc99e Initial load
duke
parents:
diff changeset
2 # Copyright 1998-2007 Sun Microsystems, Inc. All Rights Reserved.
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 #
a61af66fc99e Initial load
duke
parents:
diff changeset
19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 # CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 # have any questions.
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.
a61af66fc99e Initial load
duke
parents:
diff changeset
27 # It's main job is to implement the incremental form of make lists.
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:
a61af66fc99e Initial load
duke
parents:
diff changeset
34 # CFLAGS Platform_file, Src_Dirs, SYSDEFS, AOUT, Jvm_Obj_Files
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
a61af66fc99e Initial load
duke
parents:
diff changeset
42 GENERATED = ../generated
a61af66fc99e Initial load
duke
parents:
diff changeset
43 VM = $(GAMMADIR)/src/share/vm
a61af66fc99e Initial load
duke
parents:
diff changeset
44 Plat_File = $(Platform_file)
a61af66fc99e Initial load
duke
parents:
diff changeset
45 CDG = cd $(GENERATED);
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 # Pick up MakeDeps' sources and definitions
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
48 include $(GAMMADIR)/make/$(Platform_os_family)/makefiles/makedeps.make
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 MakeDepsClass = MakeDeps.class
a61af66fc99e Initial load
duke
parents:
diff changeset
50 MakeDeps = $(RUN.JAVA) -classpath . MakeDeps
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 Include_DBs/GC = $(VM)/includeDB_gc \
a61af66fc99e Initial load
duke
parents:
diff changeset
53 $(VM)/includeDB_gc_parallel \
a61af66fc99e Initial load
duke
parents:
diff changeset
54 $(VM)/gc_implementation/includeDB_gc_parallelScavenge \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 $(VM)/gc_implementation/includeDB_gc_concurrentMarkSweep \
a61af66fc99e Initial load
duke
parents:
diff changeset
56 $(VM)/gc_implementation/includeDB_gc_parNew \
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 91
diff changeset
57 $(VM)/gc_implementation/includeDB_gc_g1 \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 $(VM)/gc_implementation/includeDB_gc_serial \
a61af66fc99e Initial load
duke
parents:
diff changeset
59 $(VM)/gc_implementation/includeDB_gc_shared
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 Include_DBs/KERNEL = $(VM)/includeDB_core $(VM)/includeDB_gc \
a61af66fc99e Initial load
duke
parents:
diff changeset
63 $(VM)/gc_implementation/includeDB_gc_serial \
a61af66fc99e Initial load
duke
parents:
diff changeset
64 $(VM)/includeDB_jvmti \
a61af66fc99e Initial load
duke
parents:
diff changeset
65 $(VM)/includeDB_compiler1
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 Include_DBs/CORE = $(VM)/includeDB_core $(Include_DBs/GC) \
a61af66fc99e Initial load
duke
parents:
diff changeset
68 $(VM)/includeDB_jvmti \
a61af66fc99e Initial load
duke
parents:
diff changeset
69 $(VM)/includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
70 Include_DBs/COMPILER1 = $(Include_DBs/CORE) $(VM)/includeDB_compiler1
a61af66fc99e Initial load
duke
parents:
diff changeset
71 Include_DBs/COMPILER2 = $(Include_DBs/CORE) $(VM)/includeDB_compiler2
a61af66fc99e Initial load
duke
parents:
diff changeset
72 Include_DBs/TIERED = $(Include_DBs/CORE) $(VM)/includeDB_compiler1 \
a61af66fc99e Initial load
duke
parents:
diff changeset
73 $(VM)/includeDB_compiler2
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 Include_DBs = $(Include_DBs/$(TYPE))
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 Cached_plat = platform.current
a61af66fc99e Initial load
duke
parents:
diff changeset
78 Cached_db = includeDB.current
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 Incremental_Lists =$(GENERATED)/$(Cached_db)
a61af66fc99e Initial load
duke
parents:
diff changeset
81 # list generation also creates $(GENERATED)/$(Cached_plat)
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 AD_Dir = $(GENERATED)/adfiles
a61af66fc99e Initial load
duke
parents:
diff changeset
85 ADLC = $(AD_Dir)/adlc
a61af66fc99e Initial load
duke
parents:
diff changeset
86 AD_Spec = $(GAMMADIR)/src/cpu/$(Platform_arch)/vm/$(Platform_arch).ad
a61af66fc99e Initial load
duke
parents:
diff changeset
87 AD_Src = $(GAMMADIR)/src/share/vm/adlc
a61af66fc99e Initial load
duke
parents:
diff changeset
88 AD_Names = ad_$(Platform_arch).hpp ad_$(Platform_arch).cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
89 AD_Files = $(AD_Names:%=$(AD_Dir)/%)
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 # AD_Files_If_Required/COMPILER1 = ad_stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
92 AD_Files_If_Required/COMPILER2 = ad_stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
93 AD_Files_If_Required/TIERED = ad_stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
94 AD_Files_If_Required = $(AD_Files_If_Required/$(TYPE))
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 # Wierd argument adjustment for "gnumake -j..."
a61af66fc99e Initial load
duke
parents:
diff changeset
97 adjust-mflags = $(GENERATED)/adjust-mflags
a61af66fc99e Initial load
duke
parents:
diff changeset
98 MFLAGS-adjusted = -r `$(adjust-mflags) "$(MFLAGS)" "$(HOTSPOT_BUILD_JOBS)"`
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 # default target: make makeDeps, update lists, make vm
a61af66fc99e Initial load
duke
parents:
diff changeset
102 # done in stages to force sequential order with parallel make
a61af66fc99e Initial load
duke
parents:
diff changeset
103 #
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 default: vm_build_preliminaries the_vm
a61af66fc99e Initial load
duke
parents:
diff changeset
106 @echo All done.
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 # This is an explicit dependency for the sake of parallel makes.
a61af66fc99e Initial load
duke
parents:
diff changeset
109 vm_build_preliminaries: checks $(Incremental_Lists) $(AD_Files_If_Required) jvmti_stuff sa_stuff
a61af66fc99e Initial load
duke
parents:
diff changeset
110 @# We need a null action here, so implicit rules don't get consulted.
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 # make makeDeps: (and zap the cached db files to force a nonincremental run)
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 $(GENERATED)/$(MakeDepsClass): $(MakeDepsSources)
a61af66fc99e Initial load
duke
parents:
diff changeset
115 @$(COMPILE.JAVAC) -classpath $(GAMMADIR)/src/share/tools/MakeDeps -g -d $(GENERATED) $(MakeDepsSources)
a61af66fc99e Initial load
duke
parents:
diff changeset
116 @echo Removing $(Incremental_Lists) to force regeneration.
a61af66fc99e Initial load
duke
parents:
diff changeset
117 @rm -f $(Incremental_Lists)
a61af66fc99e Initial load
duke
parents:
diff changeset
118 @$(CDG) echo >$(Cached_plat)
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 # make incremental_lists, if cached files out of date, run makeDeps
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 $(Incremental_Lists): $(Include_DBs) $(Plat_File) $(GENERATED)/$(MakeDepsClass)
a61af66fc99e Initial load
duke
parents:
diff changeset
123 $(CDG) cat $(Include_DBs) > includeDB
a61af66fc99e Initial load
duke
parents:
diff changeset
124 $(CDG) if [ ! -r incls ] ; then \
a61af66fc99e Initial load
duke
parents:
diff changeset
125 mkdir incls ; \
a61af66fc99e Initial load
duke
parents:
diff changeset
126 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
127 $(CDG) $(MakeDeps) diffs UnixPlatform $(Cached_plat) $(Cached_db) $(Plat_File) includeDB $(MakeDepsOptions)
a61af66fc99e Initial load
duke
parents:
diff changeset
128 $(CDG) cp includeDB $(Cached_db)
a61af66fc99e Initial load
duke
parents:
diff changeset
129 $(CDG) cp $(Plat_File) $(Cached_plat)
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 # symbolic target for command lines
a61af66fc99e Initial load
duke
parents:
diff changeset
132 lists: $(Incremental_Lists)
a61af66fc99e Initial load
duke
parents:
diff changeset
133 @: lists are now up to date
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 # make AD files as necessary
a61af66fc99e Initial load
duke
parents:
diff changeset
136 ad_stuff: $(Incremental_Lists) $(adjust-mflags)
a61af66fc99e Initial load
duke
parents:
diff changeset
137 @$(MAKE) -f adlc.make $(MFLAGS-adjusted)
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 # generate JVMTI files from the spec
a61af66fc99e Initial load
duke
parents:
diff changeset
140 jvmti_stuff: $(Incremental_Lists) $(adjust-mflags)
a61af66fc99e Initial load
duke
parents:
diff changeset
141 @$(MAKE) -f jvmti.make $(MFLAGS-adjusted)
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 # generate SA jar files and native header
a61af66fc99e Initial load
duke
parents:
diff changeset
144 sa_stuff:
a61af66fc99e Initial load
duke
parents:
diff changeset
145 @$(MAKE) -f sa.make $(MFLAGS-adjusted)
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 # and the VM: must use other makefile with dependencies included
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 # We have to go to great lengths to get control over the -jN argument
a61af66fc99e Initial load
duke
parents:
diff changeset
150 # to the recursive invocation of vm.make. The problem is that gnumake
a61af66fc99e Initial load
duke
parents:
diff changeset
151 # resets -jN to -j1 for recursive runs. (How helpful.)
a61af66fc99e Initial load
duke
parents:
diff changeset
152 # Note that the user must specify the desired parallelism level via a
a61af66fc99e Initial load
duke
parents:
diff changeset
153 # 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
154 $(adjust-mflags): $(GAMMADIR)/make/$(Platform_os_family)/makefiles/adjust-mflags.sh
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 @+rm -f $@ $@+
a61af66fc99e Initial load
duke
parents:
diff changeset
156 @+cat $< > $@+
a61af66fc99e Initial load
duke
parents:
diff changeset
157 @+chmod +x $@+
a61af66fc99e Initial load
duke
parents:
diff changeset
158 @+mv $@+ $@
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 the_vm: vm_build_preliminaries $(adjust-mflags)
a61af66fc99e Initial load
duke
parents:
diff changeset
161 @$(MAKE) -f vm.make $(MFLAGS-adjusted)
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 install: the_vm
a61af66fc99e Initial load
duke
parents:
diff changeset
164 @$(MAKE) -f vm.make install
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 # next rules support "make foo.[oi]"
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 %.o %.i %.s:
a61af66fc99e Initial load
duke
parents:
diff changeset
169 $(MAKE) -f vm.make $(MFLAGS) $@
a61af66fc99e Initial load
duke
parents:
diff changeset
170 #$(MAKE) -f vm.make $@
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 # this should force everything to be rebuilt
a61af66fc99e Initial load
duke
parents:
diff changeset
173 clean:
a61af66fc99e Initial load
duke
parents:
diff changeset
174 rm -f $(GENERATED)/*.class
a61af66fc99e Initial load
duke
parents:
diff changeset
175 $(MAKE) $(MFLAGS) $(GENERATED)/$(MakeDepsClass)
a61af66fc99e Initial load
duke
parents:
diff changeset
176 $(MAKE) -f vm.make $(MFLAGS) clean
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 # just in case it doesn't, this should do it
a61af66fc99e Initial load
duke
parents:
diff changeset
179 realclean:
a61af66fc99e Initial load
duke
parents:
diff changeset
180 $(MAKE) -f vm.make $(MFLAGS) clean
a61af66fc99e Initial load
duke
parents:
diff changeset
181 rm -fr $(GENERATED)
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 .PHONY: default vm_build_preliminaries
a61af66fc99e Initial load
duke
parents:
diff changeset
184 .PHONY: lists ad_stuff jvmti_stuff sa_stuff the_vm clean realclean
a61af66fc99e Initial load
duke
parents:
diff changeset
185 .PHONY: checks check_os_version install