author | duke |
Wed, 05 Jul 2017 17:53:44 +0200 | |
changeset 10759 | 2829f5535620 |
parent 8921 | 14bfe81f2a9d |
child 11429 | e894217a5d94 |
permissions | -rw-r--r-- |
1 | 1 |
# |
8921
14bfe81f2a9d
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents:
8114
diff
changeset
|
2 |
# Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
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 |
|
7 |
# published by the Free Software Foundation. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
# accompanied this code). |
|
14 |
# |
|
15 |
# You should have received a copy of the GNU General Public License version |
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5352
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5352
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5352
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
24 |
||
25 |
# This makefile (adlc.make) is included from the adlc.make in the |
|
26 |
# build directories. |
|
27 |
# It knows how to compile, link, and run the adlc. |
|
28 |
||
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
29 |
include $(GAMMADIR)/make/$(Platform_os_family)/makefiles/rules.make |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7397
diff
changeset
|
30 |
include $(GAMMADIR)/make/altsrc.make |
1 | 31 |
|
32 |
# ######################################################################### |
|
33 |
||
34 |
# OUTDIR must be the same as AD_Dir = $(GENERATED)/adfiles in top.make: |
|
35 |
GENERATED = ../generated |
|
36 |
OUTDIR = $(GENERATED)/adfiles |
|
37 |
||
38 |
ARCH = $(Platform_arch) |
|
39 |
OS = $(Platform_os_family) |
|
40 |
||
41 |
SOURCE.AD = $(OUTDIR)/$(OS)_$(Platform_arch_model).ad |
|
42 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7397
diff
changeset
|
43 |
SOURCES.AD = \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7397
diff
changeset
|
44 |
$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch_model).ad) \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7397
diff
changeset
|
45 |
$(call altsrc-replace,$(HS_COMMON_SRC)/os_cpu/$(OS)_$(ARCH)/vm/$(OS)_$(Platform_arch_model).ad) |
1 | 46 |
|
47 |
EXEC = $(OUTDIR)/adlc |
|
48 |
||
49 |
# set VPATH so make knows where to look for source files |
|
7397 | 50 |
Src_Dirs_V += $(GAMMADIR)/src/share/vm/adlc |
51 |
VPATH += $(Src_Dirs_V:%=%:) |
|
1 | 52 |
|
53 |
# set INCLUDES for C preprocessor |
|
7397 | 54 |
Src_Dirs_I += $(GAMMADIR)/src/share/vm/adlc $(GENERATED) |
1 | 55 |
INCLUDES += $(Src_Dirs_I:%=-I%) |
56 |
||
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
57 |
# set flags for adlc compilation |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
58 |
CPPFLAGS = $(SYSDEFS) $(INCLUDES) |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
59 |
|
1 | 60 |
# Force assertions on. |
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
61 |
CPPFLAGS += -DASSERT |
1 | 62 |
|
63 |
ifndef USE_GCC |
|
64 |
# We need libCstd.so for adlc |
|
65 |
CFLAGS += -library=Cstd -g |
|
66 |
LFLAGS += -library=Cstd -g |
|
67 |
endif |
|
68 |
||
69 |
# CFLAGS_WARN holds compiler options to suppress/enable warnings. |
|
2129
e810a33b5c67
6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents:
1662
diff
changeset
|
70 |
# Compiler warnings are treated as errors |
3174 | 71 |
ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1) |
72 |
CFLAGS_WARN = +w -errwarn |
|
73 |
endif |
|
1 | 74 |
CFLAGS += $(CFLAGS_WARN) |
75 |
||
76 |
ifeq ("${Platform_compiler}", "sparcWorks") |
|
77 |
# Enable the following CFLAGS addition if you need to compare the |
|
78 |
# built ELF objects. |
|
79 |
# |
|
80 |
# The -g option makes static data global and the "-Qoption ccfe |
|
81 |
# -xglobalstatic" option tells the compiler to not globalize static |
|
82 |
# data using a unique globalization prefix. Instead force the use |
|
83 |
# of a static globalization prefix based on the source filepath so |
|
84 |
# the objects from two identical compilations are the same. |
|
85 |
#CFLAGS += -Qoption ccfe -xglobalstatic |
|
86 |
endif # Platform_compiler == sparcWorks |
|
87 |
||
88 |
OBJECTNAMES = \ |
|
89 |
adlparse.o \ |
|
90 |
archDesc.o \ |
|
91 |
arena.o \ |
|
92 |
dfa.o \ |
|
93 |
dict2.o \ |
|
94 |
filebuff.o \ |
|
95 |
forms.o \ |
|
96 |
formsopt.o \ |
|
97 |
formssel.o \ |
|
98 |
main.o \ |
|
99 |
adlc-opcodes.o \ |
|
100 |
output_c.o \ |
|
101 |
output_h.o \ |
|
102 |
||
103 |
OBJECTS = $(OBJECTNAMES:%=$(OUTDIR)/%) |
|
104 |
||
105 |
GENERATEDNAMES = \ |
|
106 |
ad_$(Platform_arch_model).cpp \ |
|
107 |
ad_$(Platform_arch_model).hpp \ |
|
108 |
ad_$(Platform_arch_model)_clone.cpp \ |
|
109 |
ad_$(Platform_arch_model)_expand.cpp \ |
|
110 |
ad_$(Platform_arch_model)_format.cpp \ |
|
111 |
ad_$(Platform_arch_model)_gen.cpp \ |
|
112 |
ad_$(Platform_arch_model)_misc.cpp \ |
|
113 |
ad_$(Platform_arch_model)_peephole.cpp \ |
|
114 |
ad_$(Platform_arch_model)_pipeline.cpp \ |
|
115 |
adGlobals_$(Platform_arch_model).hpp \ |
|
116 |
dfa_$(Platform_arch_model).cpp \ |
|
117 |
||
118 |
GENERATEDFILES = $(GENERATEDNAMES:%=$(OUTDIR)/%) |
|
119 |
||
120 |
# ######################################################################### |
|
121 |
||
122 |
all: $(EXEC) |
|
123 |
||
124 |
$(EXEC) : $(OBJECTS) |
|
125 |
@echo Making adlc |
|
126 |
$(QUIETLY) $(LINK_NOPROF.CC) -o $(EXEC) $(OBJECTS) |
|
127 |
||
128 |
# Random dependencies: |
|
129 |
$(OBJECTS): opcodes.hpp classes.hpp adlc.hpp adlcVMDeps.hpp adlparse.hpp archDesc.hpp arena.hpp dict2.hpp filebuff.hpp forms.hpp formsopt.hpp formssel.hpp |
|
130 |
||
131 |
# The source files refer to ostream.h, which sparcworks calls iostream.h |
|
132 |
$(OBJECTS): ostream.h |
|
133 |
||
134 |
ostream.h : |
|
135 |
@echo >$@ '#include <iostream.h>' |
|
136 |
||
137 |
dump: |
|
138 |
: OUTDIR=$(OUTDIR) |
|
139 |
: OBJECTS=$(OBJECTS) |
|
140 |
: products = $(GENERATEDFILES) |
|
141 |
||
142 |
all: $(GENERATEDFILES) |
|
143 |
||
144 |
$(GENERATEDFILES): refresh_adfiles |
|
145 |
||
146 |
# Get a unique temporary directory name, so multiple makes can run in parallel. |
|
147 |
# Note that product files are updated via "mv", which is atomic. |
|
148 |
TEMPDIR := $(OUTDIR)/mktmp$(shell echo $$$$) |
|
149 |
||
5352
cee8f7acb7bc
6946040: add intrinsic for short and char reverseBytes
never
parents:
3174
diff
changeset
|
150 |
# Debuggable by default |
cee8f7acb7bc
6946040: add intrinsic for short and char reverseBytes
never
parents:
3174
diff
changeset
|
151 |
CFLAGS += -g |
cee8f7acb7bc
6946040: add intrinsic for short and char reverseBytes
never
parents:
3174
diff
changeset
|
152 |
|
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
153 |
# Pass -D flags into ADLC. |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
154 |
ADLCFLAGS += $(SYSDEFS) |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
155 |
|
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
156 |
# Note "+="; it is a hook so flags.make can add more flags, like -g or -DFOO. |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
157 |
ADLCFLAGS += -q -T |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
158 |
|
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
159 |
# Normally, debugging is done directly on the ad_<arch>*.cpp files. |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
160 |
# But -g will put #line directives in those files pointing back to <arch>.ad. |
5352
cee8f7acb7bc
6946040: add intrinsic for short and char reverseBytes
never
parents:
3174
diff
changeset
|
161 |
ADLCFLAGS += -g |
1 | 162 |
|
163 |
ifdef LP64 |
|
164 |
ADLCFLAGS += -D_LP64 |
|
165 |
else |
|
166 |
ADLCFLAGS += -U_LP64 |
|
167 |
endif |
|
168 |
||
169 |
# |
|
170 |
# adlc_updater is a simple sh script, under sccs control. It is |
|
171 |
# used to selectively update generated adlc files. This should |
|
172 |
# provide a nice compilation speed improvement. |
|
173 |
# |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
174 |
ADLC_UPDATER_DIRECTORY = $(GAMMADIR)/make/$(OS) |
1 | 175 |
ADLC_UPDATER = adlc_updater |
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
176 |
$(ADLC_UPDATER): $(ADLC_UPDATER_DIRECTORY)/$(ADLC_UPDATER) |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
177 |
$(QUIETLY) cp $< $@; chmod +x $@ |
1 | 178 |
|
179 |
# This action refreshes all generated adlc files simultaneously. |
|
180 |
# The way it works is this: |
|
181 |
# 1) create a scratch directory to work in. |
|
182 |
# 2) if the current working directory does not have $(ADLC_UPDATER), copy it. |
|
183 |
# 3) run the compiled adlc executable. This will create new adlc files in the scratch directory. |
|
184 |
# 4) call $(ADLC_UPDATER) on each generated adlc file. It will selectively update changed or missing files. |
|
185 |
# 5) If we actually updated any files, echo a notice. |
|
186 |
# |
|
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
187 |
refresh_adfiles: $(EXEC) $(SOURCE.AD) $(ADLC_UPDATER) |
1 | 188 |
@rm -rf $(TEMPDIR); mkdir $(TEMPDIR) |
189 |
$(QUIETLY) $(EXEC) $(ADLCFLAGS) $(SOURCE.AD) \ |
|
190 |
-c$(TEMPDIR)/ad_$(Platform_arch_model).cpp -h$(TEMPDIR)/ad_$(Platform_arch_model).hpp -a$(TEMPDIR)/dfa_$(Platform_arch_model).cpp -v$(TEMPDIR)/adGlobals_$(Platform_arch_model).hpp \ |
|
191 |
|| { rm -rf $(TEMPDIR); exit 1; } |
|
192 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR) |
|
193 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR) |
|
194 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_clone.cpp $(TEMPDIR) $(OUTDIR) |
|
195 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_expand.cpp $(TEMPDIR) $(OUTDIR) |
|
196 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_format.cpp $(TEMPDIR) $(OUTDIR) |
|
197 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_gen.cpp $(TEMPDIR) $(OUTDIR) |
|
198 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_misc.cpp $(TEMPDIR) $(OUTDIR) |
|
199 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_peephole.cpp $(TEMPDIR) $(OUTDIR) |
|
200 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_pipeline.cpp $(TEMPDIR) $(OUTDIR) |
|
201 |
$(QUIETLY) ./$(ADLC_UPDATER) adGlobals_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR) |
|
202 |
$(QUIETLY) ./$(ADLC_UPDATER) dfa_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR) |
|
203 |
$(QUIETLY) [ -f $(TEMPDIR)/made-change ] \ |
|
204 |
|| echo "Rescanned $(SOURCE.AD) but encountered no changes." |
|
205 |
$(QUIETLY) rm -rf $(TEMPDIR) |
|
206 |
||
207 |
||
208 |
# ######################################################################### |
|
209 |
||
210 |
$(SOURCE.AD): $(SOURCES.AD) |
|
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
211 |
$(QUIETLY) $(PROCESS_AD_FILES) $(SOURCES.AD) > $(SOURCE.AD) |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
212 |
|
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
213 |
#PROCESS_AD_FILES = cat |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
214 |
# Pass through #line directives, in case user enables -g option above: |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
215 |
PROCESS_AD_FILES = awk '{ \ |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
216 |
if (CUR_FN != FILENAME) { CUR_FN=FILENAME; NR_BASE=NR-1; need_lineno=1 } \ |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
217 |
if (need_lineno && $$0 !~ /\/\//) \ |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
218 |
{ print "\n\n\#line " (NR-NR_BASE) " \"" FILENAME "\""; need_lineno=0 }; \ |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
219 |
print }' |
1 | 220 |
|
221 |
$(OUTDIR)/%.o: %.cpp |
|
222 |
@echo Compiling $< |
|
223 |
$(QUIETLY) $(REMOVE_TARGET) |
|
224 |
$(QUIETLY) $(COMPILE.CC) -o $@ $< $(COMPILE_DONE) |
|
225 |
||
226 |
# Some object files are given a prefix, to disambiguate |
|
227 |
# them from objects of the same name built for the VM. |
|
228 |
$(OUTDIR)/adlc-%.o: %.cpp |
|
229 |
@echo Compiling $< |
|
230 |
$(QUIETLY) $(REMOVE_TARGET) |
|
231 |
$(QUIETLY) $(COMPILE.CC) -o $@ $< $(COMPILE_DONE) |
|
232 |
||
233 |
# ######################################################################### |
|
234 |
||
235 |
clean : |
|
236 |
rm $(OBJECTS) |
|
237 |
||
238 |
cleanall : |
|
239 |
rm $(OBJECTS) $(EXEC) |
|
240 |
||
241 |
# ######################################################################### |
|
242 |
||
243 |
.PHONY: all dump refresh_adfiles clean cleanall |