author | kvn |
Sat, 06 Aug 2011 08:28:08 -0700 | |
changeset 10259 | fc6e02d351c4 |
parent 8868 | 1bae515b806b |
child 11429 | e894217a5d94 |
permissions | -rw-r--r-- |
1 | 1 |
# |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
2 |
# Copyright (c) 1999, 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 |
1 | 30 |
|
31 |
# ######################################################################### |
|
32 |
||
33 |
# OUTDIR must be the same as AD_Dir = $(GENERATED)/adfiles in top.make: |
|
34 |
GENERATED = ../generated |
|
35 |
OUTDIR = $(GENERATED)/adfiles |
|
36 |
||
37 |
ARCH = $(Platform_arch) |
|
38 |
OS = $(Platform_os_family) |
|
39 |
||
40 |
SOURCE.AD = $(OUTDIR)/$(OS)_$(Platform_arch_model).ad |
|
41 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
42 |
SOURCES.AD = \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
43 |
$(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:
8107
diff
changeset
|
44 |
$(call altsrc-replace,$(HS_COMMON_SRC)/os_cpu/$(OS)_$(ARCH)/vm/$(OS)_$(Platform_arch_model).ad) |
1 | 45 |
|
46 |
EXEC = $(OUTDIR)/adlc |
|
47 |
||
48 |
# set VPATH so make knows where to look for source files |
|
7397 | 49 |
Src_Dirs_V += $(GAMMADIR)/src/share/vm/adlc |
50 |
VPATH += $(Src_Dirs_V:%=%:) |
|
1 | 51 |
|
52 |
# set INCLUDES for C preprocessor |
|
7397 | 53 |
Src_Dirs_I += $(GAMMADIR)/src/share/vm/adlc $(GENERATED) |
1 | 54 |
INCLUDES += $(Src_Dirs_I:%=-I%) |
55 |
||
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
56 |
# set flags for adlc compilation |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
57 |
CPPFLAGS = $(SYSDEFS) $(INCLUDES) |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
58 |
|
1 | 59 |
# Force assertions on. |
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
60 |
CPPFLAGS += -DASSERT |
1 | 61 |
|
62 |
# CFLAGS_WARN holds compiler options to suppress/enable warnings. |
|
2129
e810a33b5c67
6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents:
1662
diff
changeset
|
63 |
# Compiler warnings are treated as errors |
e810a33b5c67
6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents:
1662
diff
changeset
|
64 |
CFLAGS_WARN = -Werror |
1 | 65 |
CFLAGS += $(CFLAGS_WARN) |
66 |
||
67 |
OBJECTNAMES = \ |
|
68 |
adlparse.o \ |
|
69 |
archDesc.o \ |
|
70 |
arena.o \ |
|
71 |
dfa.o \ |
|
72 |
dict2.o \ |
|
73 |
filebuff.o \ |
|
74 |
forms.o \ |
|
75 |
formsopt.o \ |
|
76 |
formssel.o \ |
|
77 |
main.o \ |
|
78 |
adlc-opcodes.o \ |
|
79 |
output_c.o \ |
|
80 |
output_h.o \ |
|
81 |
||
82 |
OBJECTS = $(OBJECTNAMES:%=$(OUTDIR)/%) |
|
83 |
||
84 |
GENERATEDNAMES = \ |
|
85 |
ad_$(Platform_arch_model).cpp \ |
|
86 |
ad_$(Platform_arch_model).hpp \ |
|
87 |
ad_$(Platform_arch_model)_clone.cpp \ |
|
88 |
ad_$(Platform_arch_model)_expand.cpp \ |
|
89 |
ad_$(Platform_arch_model)_format.cpp \ |
|
90 |
ad_$(Platform_arch_model)_gen.cpp \ |
|
91 |
ad_$(Platform_arch_model)_misc.cpp \ |
|
92 |
ad_$(Platform_arch_model)_peephole.cpp \ |
|
93 |
ad_$(Platform_arch_model)_pipeline.cpp \ |
|
94 |
adGlobals_$(Platform_arch_model).hpp \ |
|
95 |
dfa_$(Platform_arch_model).cpp \ |
|
96 |
||
97 |
GENERATEDFILES = $(GENERATEDNAMES:%=$(OUTDIR)/%) |
|
98 |
||
99 |
# ######################################################################### |
|
100 |
||
101 |
all: $(EXEC) |
|
102 |
||
103 |
$(EXEC) : $(OBJECTS) |
|
104 |
@echo Making adlc |
|
8868
1bae515b806b
7029017: Additional architecture support for c2 compiler
roland
parents:
8114
diff
changeset
|
105 |
$(QUIETLY) $(HOST.LINK_NOPROF.CC) -o $(EXEC) $(OBJECTS) |
1 | 106 |
|
107 |
# Random dependencies: |
|
108 |
$(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 |
|
109 |
||
110 |
# The source files refer to ostream.h, which sparcworks calls iostream.h |
|
111 |
$(OBJECTS): ostream.h |
|
112 |
||
113 |
ostream.h : |
|
114 |
@echo >$@ '#include <iostream.h>' |
|
115 |
||
116 |
dump: |
|
117 |
: OUTDIR=$(OUTDIR) |
|
118 |
: OBJECTS=$(OBJECTS) |
|
119 |
: products = $(GENERATEDFILES) |
|
120 |
||
121 |
all: $(GENERATEDFILES) |
|
122 |
||
123 |
$(GENERATEDFILES): refresh_adfiles |
|
124 |
||
125 |
# Get a unique temporary directory name, so multiple makes can run in parallel. |
|
126 |
# Note that product files are updated via "mv", which is atomic. |
|
127 |
TEMPDIR := $(OUTDIR)/mktmp$(shell echo $$$$) |
|
128 |
||
5352
cee8f7acb7bc
6946040: add intrinsic for short and char reverseBytes
never
parents:
2154
diff
changeset
|
129 |
# Debuggable by default |
cee8f7acb7bc
6946040: add intrinsic for short and char reverseBytes
never
parents:
2154
diff
changeset
|
130 |
CFLAGS += -g |
cee8f7acb7bc
6946040: add intrinsic for short and char reverseBytes
never
parents:
2154
diff
changeset
|
131 |
|
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
132 |
# Pass -D flags into ADLC. |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
133 |
ADLCFLAGS += $(SYSDEFS) |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
134 |
|
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
135 |
# 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
|
136 |
ADLCFLAGS += -q -T |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
137 |
|
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
138 |
# 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
|
139 |
# But -g will put #line directives in those files pointing back to <arch>.ad. |
5886
988a6337d55e
6952176: Remove debug flag from adlc makefile for 6Update trains
never
parents:
5547
diff
changeset
|
140 |
# Some builds of gcc 3.2 have a bug that gets tickled by the extra #line directives |
988a6337d55e
6952176: Remove debug flag from adlc makefile for 6Update trains
never
parents:
5547
diff
changeset
|
141 |
# so skip it for 3.2 and ealier. |
988a6337d55e
6952176: Remove debug flag from adlc makefile for 6Update trains
never
parents:
5547
diff
changeset
|
142 |
ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0" |
5352
cee8f7acb7bc
6946040: add intrinsic for short and char reverseBytes
never
parents:
2154
diff
changeset
|
143 |
ADLCFLAGS += -g |
5886
988a6337d55e
6952176: Remove debug flag from adlc makefile for 6Update trains
never
parents:
5547
diff
changeset
|
144 |
endif |
1 | 145 |
|
146 |
ifdef LP64 |
|
147 |
ADLCFLAGS += -D_LP64 |
|
148 |
else |
|
149 |
ADLCFLAGS += -U_LP64 |
|
150 |
endif |
|
151 |
||
152 |
# |
|
153 |
# adlc_updater is a simple sh script, under sccs control. It is |
|
154 |
# used to selectively update generated adlc files. This should |
|
155 |
# provide a nice compilation speed improvement. |
|
156 |
# |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
157 |
ADLC_UPDATER_DIRECTORY = $(GAMMADIR)/make/$(OS) |
1 | 158 |
ADLC_UPDATER = adlc_updater |
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
159 |
$(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
|
160 |
$(QUIETLY) cp $< $@; chmod +x $@ |
1 | 161 |
|
162 |
# This action refreshes all generated adlc files simultaneously. |
|
163 |
# The way it works is this: |
|
164 |
# 1) create a scratch directory to work in. |
|
165 |
# 2) if the current working directory does not have $(ADLC_UPDATER), copy it. |
|
166 |
# 3) run the compiled adlc executable. This will create new adlc files in the scratch directory. |
|
167 |
# 4) call $(ADLC_UPDATER) on each generated adlc file. It will selectively update changed or missing files. |
|
168 |
# 5) If we actually updated any files, echo a notice. |
|
169 |
# |
|
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
170 |
refresh_adfiles: $(EXEC) $(SOURCE.AD) $(ADLC_UPDATER) |
1 | 171 |
@rm -rf $(TEMPDIR); mkdir $(TEMPDIR) |
172 |
$(QUIETLY) $(EXEC) $(ADLCFLAGS) $(SOURCE.AD) \ |
|
173 |
-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 \ |
|
174 |
|| { rm -rf $(TEMPDIR); exit 1; } |
|
175 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR) |
|
176 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR) |
|
177 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_clone.cpp $(TEMPDIR) $(OUTDIR) |
|
178 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_expand.cpp $(TEMPDIR) $(OUTDIR) |
|
179 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_format.cpp $(TEMPDIR) $(OUTDIR) |
|
180 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_gen.cpp $(TEMPDIR) $(OUTDIR) |
|
181 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_misc.cpp $(TEMPDIR) $(OUTDIR) |
|
182 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_peephole.cpp $(TEMPDIR) $(OUTDIR) |
|
183 |
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_pipeline.cpp $(TEMPDIR) $(OUTDIR) |
|
184 |
$(QUIETLY) ./$(ADLC_UPDATER) adGlobals_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR) |
|
185 |
$(QUIETLY) ./$(ADLC_UPDATER) dfa_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR) |
|
186 |
$(QUIETLY) [ -f $(TEMPDIR)/made-change ] \ |
|
187 |
|| echo "Rescanned $(SOURCE.AD) but encountered no changes." |
|
188 |
$(QUIETLY) rm -rf $(TEMPDIR) |
|
189 |
||
190 |
||
191 |
# ######################################################################### |
|
192 |
||
193 |
$(SOURCE.AD): $(SOURCES.AD) |
|
1662
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
194 |
$(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
|
195 |
|
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
196 |
#PROCESS_AD_FILES = cat |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
197 |
# 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
|
198 |
PROCESS_AD_FILES = awk '{ \ |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
199 |
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
|
200 |
if (need_lineno && $$0 !~ /\/\//) \ |
76a93a5fb765
6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents:
670
diff
changeset
|
201 |
{ 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
|
202 |
print }' |
1 | 203 |
|
204 |
$(OUTDIR)/%.o: %.cpp |
|
205 |
@echo Compiling $< |
|
206 |
$(QUIETLY) $(REMOVE_TARGET) |
|
8868
1bae515b806b
7029017: Additional architecture support for c2 compiler
roland
parents:
8114
diff
changeset
|
207 |
$(QUIETLY) $(HOST.COMPILE.CC) -o $@ $< $(COMPILE_DONE) |
1 | 208 |
|
209 |
# Some object files are given a prefix, to disambiguate |
|
210 |
# them from objects of the same name built for the VM. |
|
211 |
$(OUTDIR)/adlc-%.o: %.cpp |
|
212 |
@echo Compiling $< |
|
213 |
$(QUIETLY) $(REMOVE_TARGET) |
|
8868
1bae515b806b
7029017: Additional architecture support for c2 compiler
roland
parents:
8114
diff
changeset
|
214 |
$(QUIETLY) $(HOST.COMPILE.CC) -o $@ $< $(COMPILE_DONE) |
1 | 215 |
|
216 |
# ######################################################################### |
|
217 |
||
218 |
clean : |
|
219 |
rm $(OBJECTS) |
|
220 |
||
221 |
cleanall : |
|
222 |
rm $(OBJECTS) $(EXEC) |
|
223 |
||
224 |
# ######################################################################### |
|
225 |
||
226 |
.PHONY: all dump refresh_adfiles clean cleanall |