1 #
2 # Copyright (c) 2013, 2021, 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. Oracle designates this
8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
10 #
11 # This code is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 # version 2 for more details (a copy is included in the LICENSE file that
15 # accompanied this code).
16 #
17 # You should have received a copy of the GNU General Public License version
18 # 2 along with this work; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 #
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 # or visit www.oracle.com if you need additional information or have any
23 # questions.
24 #
25
26 $(eval $(call IncludeCustomExtension, hotspot/gensrc/GensrcAdlc.gmk))
27
28 ifeq ($(call check-jvm-feature, compiler2), true)
29
30 ADLC_SUPPORT_DIR := $(JVM_SUPPORT_DIR)/adlc
31
32 ##############################################################################
33 # Build the ad compiler (the adlc build tool)
34
35 # Flags depending on the build platform/tool chain
36 # NOTE: No optimization or debug flags set here
37 ifeq ($(call isBuildOs, linux), true)
38 ADLC_CFLAGS := -fno-exceptions -DLINUX
39 else ifeq ($(call isBuildOs, aix), true)
40 ADLC_LDFLAGS += -q64
41 ADLC_CFLAGS := -qnortti -qeh -q64 -DAIX
42 else ifeq ($(call isBuildOs, windows), true)
43 ADLC_LDFLAGS += -nologo
44 ADLC_CFLAGS := -nologo -EHsc
45 # NOTE: The old build also have -D_CRT_SECURE_NO_DEPRECATE but it doesn't
46 # seem needed any more.
47 ADLC_CFLAGS_WARNINGS := -W3 -D_CRT_SECURE_NO_WARNINGS
48 endif
49
50 # Set the C++ standard
51 ADLC_CFLAGS += $(ADLC_LANGSTD_CXXFLAG)
52
53 # NOTE: The old build didn't set -DASSERT for windows but it doesn't seem to
54 # hurt.
55 ADLC_CFLAGS += -DASSERT
56
57 ADLC_CFLAGS += -D$(HOTSPOT_TARGET_CPU_DEFINE)
58
59 ADLC_CFLAGS += -I$(TOPDIR)/src/hotspot/share
60
61 # Add file macro mappings
62 ADLC_CFLAGS += $(FILE_MACRO_CFLAGS)
63
64 $(eval $(call SetupNativeCompilation, BUILD_ADLC, \
65 NAME := adlc, \
66 TYPE := EXECUTABLE, \
67 TOOLCHAIN := TOOLCHAIN_BUILD_LINK_CXX, \
68 SRC := $(TOPDIR)/src/hotspot/share/adlc, \
69 EXTRA_FILES := $(TOPDIR)/src/hotspot/share/opto/opcodes.cpp, \
70 CFLAGS := $(ADLC_CFLAGS) $(ADLC_CFLAGS_WARNINGS), \
71 LDFLAGS := $(ADLC_LDFLAGS), \
72 LIBS := $(ADLC_LIBS), \
73 OBJECT_DIR := $(JVM_VARIANT_OUTPUTDIR)/tools/adlc/objs, \
74 OUTPUT_DIR := $(JVM_VARIANT_OUTPUTDIR)/tools/adlc, \
75 DEBUG_SYMBOLS := false, \
76 DISABLED_WARNINGS_clang := tautological-compare, \
77 ))
78
79 ADLC_TOOL := $(BUILD_ADLC_TARGET)
80
81 ##############################################################################
82 # Transform the ad source files into C++ source files using adlc
83
84 # Setup flags for the adlc build tool (ADLCFLAGS).
85 ADLCFLAGS += -q -T
86
87 # ADLC flags depending on target OS
88 ifeq ($(call isTargetOs, linux), true)
89 ADLCFLAGS += -DLINUX=1 -D_GNU_SOURCE=1
90 else ifeq ($(call isTargetOs, aix), true)
91 ADLCFLAGS += -DAIX=1
92 else ifeq ($(call isTargetOs, macosx), true)
93 ADLCFLAGS += -D_ALLBSD_SOURCE=1 -D_GNU_SOURCE=1
94 ifeq ($(HOTSPOT_TARGET_CPU_ARCH), aarch64)
95 ADLCFLAGS += -DR18_RESERVED
96 endif
97 else ifeq ($(call isTargetOs, windows), true)
98 ifeq ($(call isTargetCpuBits, 64), true)
99 ADLCFLAGS += -D_WIN64=1
100 endif
101 ifeq ($(HOTSPOT_TARGET_CPU_ARCH), aarch64)
102 ADLCFLAGS += -DR18_RESERVED
103 endif
104 endif
105
106 ifeq ($(call isTargetOs, windows), false)
107 # NOTE: Windows adlc flags was different in the old build. Is this really
108 # correct?
109
110 # -g makes #line directives in the generated C++ files.
111 ADLCFLAGS += -g
112
113 ADLCFLAGS += -D$(HOTSPOT_TARGET_CPU_DEFINE)=1
114 endif
115
116 # This generates checks in the generated C++ files that _LP64 is correctly
117 # (un)defined when compiling them.
118 ifeq ($(call isTargetCpuBits, 64), true)
119 ADLCFLAGS += -D_LP64=1
120 else
121 ADLCFLAGS += -U_LP64
122 endif
123
124 ifeq ($(HOTSPOT_TARGET_CPU_ARCH), arm)
125 ADLCFLAGS += -DARM=1
126 endif
127
128 ##############################################################################
129 # Concatenate all ad source files into a single file, which will be fed to
130 # adlc. Also include a #line directive at the start of every included file
131 # (after the initial header block), stating the original source file name.
132 #
133 # Normally, debugging is done directly on the ad_<arch>*.cpp files, but the
134 # #line directives in those files will be pointing back to <arch>.ad.
135
136 # AD_SRC_ROOTS might have been added to by a custom extension
137 AD_SRC_ROOTS += $(TOPDIR)/src/hotspot
138
139 AD_SRC_FILES := $(call uniq, $(wildcard $(foreach d, $(AD_SRC_ROOTS), \
140 $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/$(HOTSPOT_TARGET_CPU).ad \
141 $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/$(HOTSPOT_TARGET_CPU_ARCH).ad \
142 $d/os_cpu/$(HOTSPOT_TARGET_OS)_$(HOTSPOT_TARGET_CPU_ARCH)/$(HOTSPOT_TARGET_OS)_$(HOTSPOT_TARGET_CPU_ARCH).ad \
143 )))
144
145 ifeq ($(HOTSPOT_TARGET_CPU_ARCH), aarch64)
146 AD_SRC_FILES += $(call uniq, $(wildcard $(foreach d, $(AD_SRC_ROOTS), \
147 $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/$(HOTSPOT_TARGET_CPU_ARCH)_neon.ad \
148 $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/$(HOTSPOT_TARGET_CPU_ARCH)_sve.ad \
149 )))
150 endif
151
152 ifeq ($(call check-jvm-feature, shenandoahgc), true)
153 AD_SRC_FILES += $(call uniq, $(wildcard $(foreach d, $(AD_SRC_ROOTS), \
154 $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/gc/shenandoah/shenandoah_$(HOTSPOT_TARGET_CPU).ad \
155 $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/gc/shenandoah/shenandoah_$(HOTSPOT_TARGET_CPU_ARCH).ad \
156 )))
157 endif
158
159 ifeq ($(call check-jvm-feature, zgc), true)
160 AD_SRC_FILES += $(call uniq, $(wildcard $(foreach d, $(AD_SRC_ROOTS), \
161 $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/gc/z/z_$(HOTSPOT_TARGET_CPU).ad \
162 $d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/gc/z/z_$(HOTSPOT_TARGET_CPU_ARCH).ad \
163 )))
164 endif
165
166 SINGLE_AD_SRCFILE := $(ADLC_SUPPORT_DIR)/all-ad-src.ad
167
168 INSERT_FILENAME_AWK_SCRIPT := \
169 '{ \
170 if (CUR_FN != FILENAME) { CUR_FN=FILENAME; NR_BASE=NR-1; need_lineno=1 } \
171 if (need_lineno && $$0 !~ /\/\//) \
172 { print "\n\n\#line " (NR-NR_BASE) " \"" FILENAME "\""; need_lineno=0 }; \
173 print \
174 }'
175
176 $(SINGLE_AD_SRCFILE): $(AD_SRC_FILES)
177 $(call LogInfo, Preprocessing adlc files $(^F))
178 $(call MakeDir, $(@D))
179 $(AWK) $(INSERT_FILENAME_AWK_SCRIPT) $^ > $@
180
181 ##############################################################################
182 # Run the adlc tool on the single concatenated ad source file, and store the
183 # output in support/adlc for further processing.
184 $(eval $(call SetupExecute, adlc_run, \
185 INFO := Generating adlc files, \
186 DEPS := $(BUILD_ADLC) $(SINGLE_AD_SRCFILE), \
187 OUTPUT_DIR := $(ADLC_SUPPORT_DIR), \
188 COMMAND := $(FIXPATH) $(ADLC_TOOL) $(ADLCFLAGS) $(SINGLE_AD_SRCFILE) \
189 -c$(ADLC_SUPPORT_DIR)/ad_$(HOTSPOT_TARGET_CPU_ARCH).cpp \
190 -h$(ADLC_SUPPORT_DIR)/ad_$(HOTSPOT_TARGET_CPU_ARCH).hpp \
191 -a$(ADLC_SUPPORT_DIR)/dfa_$(HOTSPOT_TARGET_CPU_ARCH).cpp \
192 -v$(ADLC_SUPPORT_DIR)/adGlobals_$(HOTSPOT_TARGET_CPU_ARCH).hpp, \
193 ))
194
195 ##############################################################################
196 # Finally copy the generated files from support/adlc into gensrc/adfiles,
197 # and postprocess them by fixing dummy #line directives.
198
199 ADLC_GENERATED_FILES := $(addprefix $(JVM_VARIANT_OUTPUTDIR)/gensrc/adfiles/, \
200 ad_$(HOTSPOT_TARGET_CPU_ARCH).cpp \
201 ad_$(HOTSPOT_TARGET_CPU_ARCH).hpp \
202 ad_$(HOTSPOT_TARGET_CPU_ARCH)_clone.cpp \
203 ad_$(HOTSPOT_TARGET_CPU_ARCH)_expand.cpp \
204 ad_$(HOTSPOT_TARGET_CPU_ARCH)_format.cpp \
205 ad_$(HOTSPOT_TARGET_CPU_ARCH)_gen.cpp \
206 ad_$(HOTSPOT_TARGET_CPU_ARCH)_misc.cpp \
207 ad_$(HOTSPOT_TARGET_CPU_ARCH)_peephole.cpp \
208 ad_$(HOTSPOT_TARGET_CPU_ARCH)_pipeline.cpp \
209 adGlobals_$(HOTSPOT_TARGET_CPU_ARCH).hpp \
210 dfa_$(HOTSPOT_TARGET_CPU_ARCH).cpp \
211 )
212
213 $(JVM_VARIANT_OUTPUTDIR)/gensrc/adfiles/%: $(adlc_run_TARGET)
214 $(call LogInfo, Postprocessing adlc file $*)
215 $(call MakeDir, $(@D))
216 $(AWK) \
217 'BEGIN { print "#line 1 \"$*\""; } \
218 /^#line 999999$$/ {print "#line " (NR+1) " \"$*\""; next} \
219 $(if $(call equals, $(ALLOW_ABSOLUTE_PATHS_IN_OUTPUT), false), \
220 /^#line .*$$/ {sub("$(WORKSPACE_ROOT)/","")} \
221 ) \
222 {print}' \
223 < $(ADLC_SUPPORT_DIR)/$* > $@
224
225 TARGETS += $(ADLC_GENERATED_FILES)
226
227 endif
--- EOF ---