Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/make/bsd/makefiles/adlc.make
32285 views
1
#
2
# Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
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
#
19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
# or visit www.oracle.com if you need additional information or have any
21
# questions.
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
29
include $(GAMMADIR)/make/$(Platform_os_family)/makefiles/rules.make
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
42
ifeq ("${Platform_arch_model}", "${Platform_arch}")
43
SOURCES.AD = \
44
$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch_model).ad)
45
else
46
SOURCES.AD = \
47
$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch_model).ad) \
48
$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch).ad)
49
endif
50
51
EXEC = $(OUTDIR)/adlc
52
53
# set VPATH so make knows where to look for source files
54
Src_Dirs_V += $(GAMMADIR)/src/share/vm/adlc
55
VPATH += $(Src_Dirs_V:%=%:)
56
57
# set INCLUDES for C preprocessor
58
Src_Dirs_I += $(GAMMADIR)/src/share/vm/adlc $(GENERATED)
59
INCLUDES += $(Src_Dirs_I:%=-I%)
60
61
# set flags for adlc compilation
62
CXXFLAGS = $(SYSDEFS) $(INCLUDES)
63
64
# Force assertions on.
65
CXXFLAGS += -DASSERT
66
67
# if target Darwin then set arch
68
# ifeq ($(OS_VENDOR), Darwin)
69
CXXFLAGS += -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1
70
# endif
71
72
# CFLAGS_WARN holds compiler options to suppress/enable warnings.
73
# Compiler warnings are treated as errors
74
ifneq ($(COMPILER_WARNINGS_FATAL),false)
75
CFLAGS_WARN = $(WARNINGS_ARE_ERRORS)
76
endif
77
CFLAGS += $(CFLAGS_WARN)
78
79
OBJECTNAMES = \
80
adlparse.o \
81
archDesc.o \
82
arena.o \
83
dfa.o \
84
dict2.o \
85
filebuff.o \
86
forms.o \
87
formsopt.o \
88
formssel.o \
89
main.o \
90
adlc-opcodes.o \
91
output_c.o \
92
output_h.o \
93
94
OBJECTS = $(OBJECTNAMES:%=$(OUTDIR)/%)
95
96
GENERATEDNAMES = \
97
ad_$(Platform_arch_model).cpp \
98
ad_$(Platform_arch_model).hpp \
99
ad_$(Platform_arch_model)_clone.cpp \
100
ad_$(Platform_arch_model)_expand.cpp \
101
ad_$(Platform_arch_model)_format.cpp \
102
ad_$(Platform_arch_model)_gen.cpp \
103
ad_$(Platform_arch_model)_misc.cpp \
104
ad_$(Platform_arch_model)_peephole.cpp \
105
ad_$(Platform_arch_model)_pipeline.cpp \
106
adGlobals_$(Platform_arch_model).hpp \
107
dfa_$(Platform_arch_model).cpp \
108
109
GENERATEDFILES = $(GENERATEDNAMES:%=$(OUTDIR)/%)
110
111
# #########################################################################
112
113
all: $(EXEC)
114
115
$(EXEC) : $(OBJECTS)
116
@echo Making adlc
117
$(QUIETLY) $(HOST.LINK_NOPROF.CXX) -o $(EXEC) $(OBJECTS) -lc++
118
119
# Random dependencies:
120
$(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
121
122
# The source files refer to ostream.h, which sparcworks calls iostream.h
123
$(OBJECTS): ostream.h
124
125
ostream.h :
126
@echo >$@ '#include <iostream.h>'
127
128
dump:
129
: OUTDIR=$(OUTDIR)
130
: OBJECTS=$(OBJECTS)
131
: products = $(GENERATEDFILES)
132
133
all: $(GENERATEDFILES)
134
135
$(GENERATEDFILES): refresh_adfiles
136
137
# Get a unique temporary directory name, so multiple makes can run in parallel.
138
# Note that product files are updated via "mv", which is atomic.
139
TEMPDIR := $(OUTDIR)/mktmp$(shell echo $$$$)
140
141
# Debuggable by default
142
CFLAGS += -g
143
144
# Pass -D flags into ADLC.
145
ADLCFLAGS += $(SYSDEFS)
146
147
# Note "+="; it is a hook so flags.make can add more flags, like -g or -DFOO.
148
ADLCFLAGS += -q -T
149
150
# Normally, debugging is done directly on the ad_<arch>*.cpp files.
151
# But -g will put #line directives in those files pointing back to <arch>.ad.
152
# Some builds of gcc 3.2 have a bug that gets tickled by the extra #line directives
153
# so skip it for 3.2 and ealier.
154
ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
155
ADLCFLAGS += -g
156
endif
157
158
ifdef LP64
159
ADLCFLAGS += -D_LP64
160
else
161
ADLCFLAGS += -U_LP64
162
endif
163
164
#
165
# adlc_updater is a simple sh script, under sccs control. It is
166
# used to selectively update generated adlc files. This should
167
# provide a nice compilation speed improvement.
168
#
169
ADLC_UPDATER_DIRECTORY = $(GAMMADIR)/make/$(OS)
170
ADLC_UPDATER = adlc_updater
171
$(ADLC_UPDATER): $(ADLC_UPDATER_DIRECTORY)/$(ADLC_UPDATER)
172
$(QUIETLY) cp $< $@; chmod +x $@
173
174
# This action refreshes all generated adlc files simultaneously.
175
# The way it works is this:
176
# 1) create a scratch directory to work in.
177
# 2) if the current working directory does not have $(ADLC_UPDATER), copy it.
178
# 3) run the compiled adlc executable. This will create new adlc files in the scratch directory.
179
# 4) call $(ADLC_UPDATER) on each generated adlc file. It will selectively update changed or missing files.
180
# 5) If we actually updated any files, echo a notice.
181
#
182
refresh_adfiles: $(EXEC) $(SOURCE.AD) $(ADLC_UPDATER)
183
@rm -rf $(TEMPDIR); mkdir $(TEMPDIR)
184
$(QUIETLY) $(EXEC) $(ADLCFLAGS) $(SOURCE.AD) \
185
-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 \
186
|| { rm -rf $(TEMPDIR); exit 1; }
187
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
188
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
189
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_clone.cpp $(TEMPDIR) $(OUTDIR)
190
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_expand.cpp $(TEMPDIR) $(OUTDIR)
191
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_format.cpp $(TEMPDIR) $(OUTDIR)
192
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_gen.cpp $(TEMPDIR) $(OUTDIR)
193
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_misc.cpp $(TEMPDIR) $(OUTDIR)
194
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_peephole.cpp $(TEMPDIR) $(OUTDIR)
195
$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_pipeline.cpp $(TEMPDIR) $(OUTDIR)
196
$(QUIETLY) ./$(ADLC_UPDATER) adGlobals_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
197
$(QUIETLY) ./$(ADLC_UPDATER) dfa_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
198
$(QUIETLY) [ -f $(TEMPDIR)/made-change ] \
199
|| echo "Rescanned $(SOURCE.AD) but encountered no changes."
200
$(QUIETLY) rm -rf $(TEMPDIR)
201
202
203
# #########################################################################
204
205
$(SOURCE.AD): $(SOURCES.AD)
206
$(QUIETLY) $(PROCESS_AD_FILES) $(SOURCES.AD) > $(SOURCE.AD)
207
208
#PROCESS_AD_FILES = cat
209
# Pass through #line directives, in case user enables -g option above:
210
PROCESS_AD_FILES = awk '{ \
211
if (CUR_FN != FILENAME) { CUR_FN=FILENAME; NR_BASE=NR-1; need_lineno=1 } \
212
if (need_lineno && $$0 !~ /\/\//) \
213
{ print "\n\n\#line " (NR-NR_BASE) " \"" FILENAME "\""; need_lineno=0 }; \
214
print }'
215
216
$(OUTDIR)/%.o: %.cpp
217
@echo Compiling $<
218
$(QUIETLY) $(REMOVE_TARGET)
219
$(QUIETLY) $(HOST.COMPILE.CXX) -o $@ $< $(COMPILE_DONE)
220
221
# Some object files are given a prefix, to disambiguate
222
# them from objects of the same name built for the VM.
223
$(OUTDIR)/adlc-%.o: %.cpp
224
@echo Compiling $<
225
$(QUIETLY) $(REMOVE_TARGET)
226
$(QUIETLY) $(HOST.COMPILE.CXX) -o $@ $< $(COMPILE_DONE)
227
228
# #########################################################################
229
230
clean :
231
rm $(OBJECTS)
232
233
cleanall :
234
rm $(OBJECTS) $(EXEC)
235
236
# #########################################################################
237
238
.PHONY: all dump refresh_adfiles clean cleanall
239
240