author | shade |
Fri, 04 May 2018 19:16:56 +0200 | |
branch | epsilon-gc-branch |
changeset 56533 | 28a4f284ad83 |
parent 49982 | 9042ffe5b7fe |
child 56578 | e8414c8ead61 |
permissions | -rw-r--r-- |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1 |
# |
49120 | 2 |
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
4 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
10 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
15 |
# accompanied this code). |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
16 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
20 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
23 |
# questions. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
24 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
25 |
|
37402 | 26 |
# All valid JVM features, regardless of platform |
47687 | 27 |
VALID_JVM_FEATURES="compiler1 compiler2 zero minimal dtrace jvmti jvmci \ |
56533 | 28 |
graal vm-structs jni-check services management cmsgc g1gc parallelgc serialgc epsilongc nmt cds \ |
42538 | 29 |
static-build link-time-opt aot" |
37402 | 30 |
|
31 |
# All valid JVM variants |
|
47687 | 32 |
VALID_JVM_VARIANTS="server client minimal core zero custom" |
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
33 |
|
37402 | 34 |
############################################################################### |
35 |
# Check if the specified JVM variant should be built. To be used in shell if |
|
36 |
# constructs, like this: |
|
37 |
# if HOTSPOT_CHECK_JVM_VARIANT(server); then |
|
38 |
# |
|
39 |
# Only valid to use after HOTSPOT_SETUP_JVM_VARIANTS has setup variants. |
|
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
40 |
|
37402 | 41 |
# Definition kept in one line to allow inlining in if statements. |
42 |
# Additional [] needed to keep m4 from mangling shell constructs. |
|
43 |
AC_DEFUN([HOTSPOT_CHECK_JVM_VARIANT], |
|
44 |
[ [ [[ " $JVM_VARIANTS " =~ " $1 " ]] ] ]) |
|
22460
0273c023680c
8017568: PPC64: Generic build preparations needed to enable new build on Linux/PPC64
simonis
parents:
17819
diff
changeset
|
45 |
|
34596
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34495
diff
changeset
|
46 |
############################################################################### |
37402 | 47 |
# Check if the specified JVM features are explicitly enabled. To be used in |
48 |
# shell if constructs, like this: |
|
49 |
# if HOTSPOT_CHECK_JVM_FEATURE(jvmti); then |
|
50 |
# |
|
51 |
# Only valid to use after HOTSPOT_SETUP_JVM_FEATURES has setup features. |
|
52 |
||
53 |
# Definition kept in one line to allow inlining in if statements. |
|
54 |
# Additional [] needed to keep m4 from mangling shell constructs. |
|
55 |
AC_DEFUN([HOTSPOT_CHECK_JVM_FEATURE], |
|
56 |
[ [ [[ " $JVM_FEATURES " =~ " $1 " ]] ] ]) |
|
57 |
||
58 |
############################################################################### |
|
59 |
# Check which variants of the JVM that we want to build. Available variants are: |
|
60 |
# server: normal interpreter, and a tiered C1/C2 compiler |
|
61 |
# client: normal interpreter, and C1 (no C2 compiler) |
|
62 |
# minimal: reduced form of client with optional features stripped out |
|
63 |
# core: normal interpreter only, no compiler |
|
64 |
# zero: C++ based interpreter only, no compiler |
|
65 |
# custom: baseline JVM with no default features |
|
66 |
# |
|
34596
e8328ce5b64e
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34495
diff
changeset
|
67 |
AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_VARIANTS], |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
68 |
[ |
20363 | 69 |
AC_ARG_WITH([jvm-variants], [AS_HELP_STRING([--with-jvm-variants], |
47687 | 70 |
[JVM variants (separated by commas) to build (server,client,minimal,core,zero,custom) @<:@server@:>@])]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
71 |
|
42538 | 72 |
SETUP_HOTSPOT_TARGET_CPU_PORT |
73 |
||
20363 | 74 |
if test "x$with_jvm_variants" = x; then |
75 |
with_jvm_variants="server" |
|
76 |
fi |
|
37402 | 77 |
JVM_VARIANTS_OPT="$with_jvm_variants" |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
78 |
|
37402 | 79 |
# Has the user listed more than one variant? |
80 |
# Additional [] needed to keep m4 from mangling shell constructs. |
|
81 |
if [ [[ "$JVM_VARIANTS_OPT" =~ "," ]] ]; then |
|
82 |
BUILDING_MULTIPLE_JVM_VARIANTS=true |
|
83 |
else |
|
84 |
BUILDING_MULTIPLE_JVM_VARIANTS=false |
|
85 |
fi |
|
86 |
# Replace the commas with AND for use in the build directory name. |
|
87 |
JVM_VARIANTS_WITH_AND=`$ECHO "$JVM_VARIANTS_OPT" | $SED -e 's/,/AND/g'` |
|
88 |
||
89 |
AC_MSG_CHECKING([which variants of the JVM to build]) |
|
90 |
# JVM_VARIANTS is a space-separated list. |
|
91 |
# Also use minimal, not minimal1 (which is kept for backwards compatibility). |
|
92 |
JVM_VARIANTS=`$ECHO $JVM_VARIANTS_OPT | $SED -e 's/,/ /g' -e 's/minimal1/minimal/'` |
|
93 |
AC_MSG_RESULT([$JVM_VARIANTS]) |
|
94 |
||
95 |
# Check that the selected variants are valid |
|
49582 | 96 |
BASIC_GET_NON_MATCHING_VALUES(INVALID_VARIANTS, $JVM_VARIANTS, $VALID_JVM_VARIANTS) |
37402 | 97 |
if test "x$INVALID_VARIANTS" != x; then |
49582 | 98 |
AC_MSG_NOTICE([Unknown variant(s) specified: "$INVALID_VARIANTS"]) |
99 |
AC_MSG_NOTICE([The available JVM variants are: "$VALID_JVM_VARIANTS"]) |
|
100 |
AC_MSG_ERROR([Cannot continue]) |
|
37402 | 101 |
fi |
102 |
||
103 |
# All "special" variants share the same output directory ("server") |
|
104 |
VALID_MULTIPLE_JVM_VARIANTS="server client minimal" |
|
49582 | 105 |
BASIC_GET_NON_MATCHING_VALUES(INVALID_MULTIPLE_VARIANTS, $JVM_VARIANTS, $VALID_MULTIPLE_JVM_VARIANTS) |
37402 | 106 |
if test "x$INVALID_MULTIPLE_VARIANTS" != x && test "x$BUILDING_MULTIPLE_JVM_VARIANTS" = xtrue; then |
107 |
AC_MSG_ERROR([You cannot build multiple variants with anything else than $VALID_MULTIPLE_JVM_VARIANTS.]) |
|
108 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
109 |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
110 |
# The "main" variant is the one used by other libs to link against during the |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
111 |
# build. |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
112 |
if test "x$BUILDING_MULTIPLE_JVM_VARIANTS" = "xtrue"; then |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
113 |
MAIN_VARIANT_PRIO_ORDER="server client minimal" |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
114 |
for variant in $MAIN_VARIANT_PRIO_ORDER; do |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
115 |
if HOTSPOT_CHECK_JVM_VARIANT($variant); then |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
116 |
JVM_VARIANT_MAIN="$variant" |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
117 |
break |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
118 |
fi |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
119 |
done |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
120 |
else |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
121 |
JVM_VARIANT_MAIN="$JVM_VARIANTS" |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
122 |
fi |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
123 |
|
37402 | 124 |
AC_SUBST(JVM_VARIANTS) |
125 |
AC_SUBST(VALID_JVM_VARIANTS) |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
39947
diff
changeset
|
126 |
AC_SUBST(JVM_VARIANT_MAIN) |
37402 | 127 |
|
47687 | 128 |
if HOTSPOT_CHECK_JVM_VARIANT(zero); then |
37402 | 129 |
# zero behaves as a platform and rewrites these values. This is really weird. :( |
130 |
# We are guaranteed that we do not build any other variants when building zero. |
|
131 |
HOTSPOT_TARGET_CPU=zero |
|
132 |
HOTSPOT_TARGET_CPU_ARCH=zero |
|
20363 | 133 |
fi |
37402 | 134 |
]) |
135 |
||
136 |
############################################################################### |
|
137 |
# Check if dtrace should be enabled and has all prerequisites present. |
|
138 |
# |
|
139 |
AC_DEFUN_ONCE([HOTSPOT_SETUP_DTRACE], |
|
140 |
[ |
|
141 |
# Test for dtrace dependencies |
|
142 |
AC_ARG_ENABLE([dtrace], [AS_HELP_STRING([--enable-dtrace@<:@=yes/no/auto@:>@], |
|
143 |
[enable dtrace. Default is auto, where dtrace is enabled if all dependencies |
|
144 |
are present.])]) |
|
145 |
||
146 |
DTRACE_DEP_MISSING=false |
|
147 |
||
148 |
AC_MSG_CHECKING([for dtrace tool]) |
|
149 |
if test "x$DTRACE" != "x" && test -x "$DTRACE"; then |
|
150 |
AC_MSG_RESULT([$DTRACE]) |
|
151 |
else |
|
152 |
AC_MSG_RESULT([not found, cannot build dtrace]) |
|
153 |
DTRACE_DEP_MISSING=true |
|
154 |
fi |
|
155 |
||
156 |
AC_CHECK_HEADERS([sys/sdt.h], [DTRACE_HEADERS_OK=yes],[DTRACE_HEADERS_OK=no]) |
|
157 |
if test "x$DTRACE_HEADERS_OK" != "xyes"; then |
|
158 |
DTRACE_DEP_MISSING=true |
|
159 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
160 |
|
37402 | 161 |
AC_MSG_CHECKING([if dtrace should be built]) |
162 |
if test "x$enable_dtrace" = "xyes"; then |
|
163 |
if test "x$DTRACE_DEP_MISSING" = "xtrue"; then |
|
164 |
AC_MSG_RESULT([no, missing dependencies]) |
|
165 |
HELP_MSG_MISSING_DEPENDENCY([dtrace]) |
|
166 |
AC_MSG_ERROR([Cannot enable dtrace with missing dependencies. See above. $HELP_MSG]) |
|
167 |
else |
|
168 |
INCLUDE_DTRACE=true |
|
169 |
AC_MSG_RESULT([yes, forced]) |
|
170 |
fi |
|
171 |
elif test "x$enable_dtrace" = "xno"; then |
|
172 |
INCLUDE_DTRACE=false |
|
173 |
AC_MSG_RESULT([no, forced]) |
|
174 |
elif test "x$enable_dtrace" = "xauto" || test "x$enable_dtrace" = "x"; then |
|
39384
adde8cb7d01b
8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents:
39191
diff
changeset
|
175 |
if test "x$DTRACE_DEP_MISSING" = "xtrue"; then |
37402 | 176 |
INCLUDE_DTRACE=false |
177 |
AC_MSG_RESULT([no, missing dependencies]) |
|
178 |
else |
|
179 |
INCLUDE_DTRACE=true |
|
180 |
AC_MSG_RESULT([yes, dependencies present]) |
|
181 |
fi |
|
182 |
else |
|
183 |
AC_MSG_ERROR([Invalid value for --enable-dtrace: $enable_dtrace]) |
|
184 |
fi |
|
185 |
]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
186 |
|
42532 | 187 |
################################################################################ |
188 |
# Check if AOT should be enabled |
|
189 |
# |
|
190 |
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_AOT], |
|
191 |
[ |
|
192 |
AC_ARG_ENABLE([aot], [AS_HELP_STRING([--enable-aot@<:@=yes/no/auto@:>@], |
|
193 |
[enable ahead of time compilation feature. Default is auto, where aot is enabled if all dependencies are present.])]) |
|
194 |
||
195 |
if test "x$enable_aot" = "x" || test "x$enable_aot" = "xauto"; then |
|
196 |
ENABLE_AOT="true" |
|
197 |
elif test "x$enable_aot" = "xyes"; then |
|
198 |
ENABLE_AOT="true" |
|
199 |
elif test "x$enable_aot" = "xno"; then |
|
200 |
ENABLE_AOT="false" |
|
201 |
AC_MSG_CHECKING([if aot should be enabled]) |
|
202 |
AC_MSG_RESULT([no, forced]) |
|
203 |
else |
|
204 |
AC_MSG_ERROR([Invalid value for --enable-aot: $enable_aot]) |
|
205 |
fi |
|
206 |
||
207 |
if test "x$ENABLE_AOT" = "xtrue"; then |
|
46191
7ec14435e850
8172670: AOT Platform Support for Windows and Mac OS X x64
bobv
parents:
42856
diff
changeset
|
208 |
# Only enable AOT on X64 platforms. |
46233
91715f519bb4
8182052: Test compiler/aot/cli/jaotc/CompileJarTest.java fails in JPRT
bobv
parents:
46218
diff
changeset
|
209 |
if test "x$OPENJDK_TARGET_CPU" = "xx86_64"; then |
47217 | 210 |
if test -e "${TOPDIR}/src/jdk.aot"; then |
211 |
if test -e "${TOPDIR}/src/jdk.internal.vm.compiler"; then |
|
42532 | 212 |
ENABLE_AOT="true" |
213 |
else |
|
214 |
ENABLE_AOT="false" |
|
215 |
if test "x$enable_aot" = "xyes"; then |
|
47217 | 216 |
AC_MSG_ERROR([Cannot build AOT without src/jdk.internal.vm.compiler sources. Remove --enable-aot.]) |
42532 | 217 |
fi |
218 |
fi |
|
219 |
else |
|
220 |
ENABLE_AOT="false" |
|
221 |
if test "x$enable_aot" = "xyes"; then |
|
47217 | 222 |
AC_MSG_ERROR([Cannot build AOT without src/jdk.aot sources. Remove --enable-aot.]) |
42532 | 223 |
fi |
224 |
fi |
|
225 |
else |
|
226 |
ENABLE_AOT="false" |
|
227 |
if test "x$enable_aot" = "xyes"; then |
|
46218 | 228 |
AC_MSG_ERROR([AOT is currently only supported on x86_64. Remove --enable-aot.]) |
42532 | 229 |
fi |
230 |
fi |
|
231 |
fi |
|
232 |
||
233 |
AC_SUBST(ENABLE_AOT) |
|
234 |
]) |
|
235 |
||
47060 | 236 |
################################################################################ |
237 |
# Allow to disable CDS |
|
238 |
# |
|
239 |
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_CDS], |
|
240 |
[ |
|
241 |
AC_ARG_ENABLE([cds], [AS_HELP_STRING([--enable-cds@<:@=yes/no@:>@], |
|
242 |
[enable class data sharing feature in non-minimal VM. Default is yes.])]) |
|
243 |
||
244 |
if test "x$enable_cds" = "x" || test "x$enable_cds" = "xyes"; then |
|
245 |
ENABLE_CDS="true" |
|
246 |
elif test "x$enable_cds" = "xno"; then |
|
247 |
ENABLE_CDS="false" |
|
248 |
else |
|
249 |
AC_MSG_ERROR([Invalid value for --enable-cds: $enable_cds]) |
|
250 |
fi |
|
251 |
||
252 |
AC_SUBST(ENABLE_CDS) |
|
253 |
]) |
|
254 |
||
37402 | 255 |
############################################################################### |
256 |
# Set up all JVM features for each JVM variant. |
|
257 |
# |
|
258 |
AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_FEATURES], |
|
259 |
[ |
|
49582 | 260 |
# Prettify the VALID_JVM_FEATURES string |
261 |
BASIC_SORT_LIST(VALID_JVM_FEATURES, $VALID_JVM_FEATURES) |
|
262 |
||
37402 | 263 |
# The user can in some cases supply additional jvm features. For the custom |
264 |
# variant, this defines the entire variant. |
|
265 |
AC_ARG_WITH([jvm-features], [AS_HELP_STRING([--with-jvm-features], |
|
49582 | 266 |
[JVM features to enable (foo) or disable (-foo), separated by comma. Use '--help' to show possible values @<:@none@:>@])]) |
37402 | 267 |
if test "x$with_jvm_features" != x; then |
49582 | 268 |
AC_MSG_CHECKING([user specified JVM feature list]) |
269 |
USER_JVM_FEATURE_LIST=`$ECHO $with_jvm_features | $SED -e 's/,/ /g'` |
|
270 |
AC_MSG_RESULT([$user_jvm_feature_list]) |
|
271 |
# These features will be added to all variant defaults |
|
49707
f7fd051519ac
8201591: JVM features with "-" in name is not correctly handled
ihse
parents:
49705
diff
changeset
|
272 |
JVM_FEATURES=`$ECHO $USER_JVM_FEATURE_LIST | $AWK '{ for (i=1; i<=NF; i++) if (!match($i, /^-.*/)) print $i }'` |
49582 | 273 |
# These features will be removed from all variant defaults |
49707
f7fd051519ac
8201591: JVM features with "-" in name is not correctly handled
ihse
parents:
49705
diff
changeset
|
274 |
DISABLED_JVM_FEATURES=`$ECHO $USER_JVM_FEATURE_LIST | $AWK '{ for (i=1; i<=NF; i++) if (match($i, /^-.*/)) print substr($i, 2) }'` |
49582 | 275 |
|
276 |
# Verify that the user has provided valid features |
|
277 |
BASIC_GET_NON_MATCHING_VALUES(INVALID_FEATURES, $JVM_FEATURES $DISABLED_JVM_FEATURES, $VALID_JVM_FEATURES) |
|
278 |
if test "x$INVALID_FEATURES" != x; then |
|
279 |
AC_MSG_NOTICE([Unknown JVM features specified: "$INVALID_FEATURES"]) |
|
280 |
AC_MSG_NOTICE([The available JVM features are: "$VALID_JVM_FEATURES"]) |
|
281 |
AC_MSG_ERROR([Cannot continue]) |
|
282 |
fi |
|
283 |
||
37402 | 284 |
fi |
285 |
||
42538 | 286 |
# Override hotspot cpu definitions for ARM platforms |
287 |
if test "x$OPENJDK_TARGET_CPU" = xarm; then |
|
288 |
HOTSPOT_TARGET_CPU=arm_32 |
|
289 |
HOTSPOT_TARGET_CPU_DEFINE="ARM32" |
|
290 |
elif test "x$OPENJDK_TARGET_CPU" = xaarch64 && test "x$HOTSPOT_TARGET_CPU_PORT" = xarm64; then |
|
291 |
HOTSPOT_TARGET_CPU=arm_64 |
|
292 |
HOTSPOT_TARGET_CPU_ARCH=arm |
|
293 |
fi |
|
294 |
||
37402 | 295 |
# Verify that dependencies are met for explicitly set features. |
296 |
if HOTSPOT_CHECK_JVM_FEATURE(jvmti) && ! HOTSPOT_CHECK_JVM_FEATURE(services); then |
|
297 |
AC_MSG_ERROR([Specified JVM feature 'jvmti' requires feature 'services']) |
|
20363 | 298 |
fi |
37402 | 299 |
|
300 |
if HOTSPOT_CHECK_JVM_FEATURE(management) && ! HOTSPOT_CHECK_JVM_FEATURE(nmt); then |
|
301 |
AC_MSG_ERROR([Specified JVM feature 'management' requires feature 'nmt']) |
|
302 |
fi |
|
303 |
||
39946
c82f919f4454
8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents:
39191
diff
changeset
|
304 |
if HOTSPOT_CHECK_JVM_FEATURE(jvmci) && ! (HOTSPOT_CHECK_JVM_FEATURE(compiler1) || HOTSPOT_CHECK_JVM_FEATURE(compiler2)); then |
c82f919f4454
8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents:
39191
diff
changeset
|
305 |
AC_MSG_ERROR([Specified JVM feature 'jvmci' requires feature 'compiler2' or 'compiler1']) |
37402 | 306 |
fi |
307 |
||
49982 | 308 |
if HOTSPOT_CHECK_JVM_FEATURE(cmsgc) && ! HOTSPOT_CHECK_JVM_FEATURE(serialgc); then |
309 |
AC_MSG_ERROR([Specified JVM feature 'cmsgc' requires feature 'serialgc']) |
|
37402 | 310 |
fi |
311 |
||
312 |
# Turn on additional features based on other parts of configure |
|
313 |
if test "x$INCLUDE_DTRACE" = "xtrue"; then |
|
314 |
JVM_FEATURES="$JVM_FEATURES dtrace" |
|
315 |
else |
|
316 |
if HOTSPOT_CHECK_JVM_FEATURE(dtrace); then |
|
317 |
AC_MSG_ERROR([To enable dtrace, you must use --enable-dtrace]) |
|
14810 | 318 |
fi |
20363 | 319 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
320 |
|
37402 | 321 |
if test "x$STATIC_BUILD" = "xtrue"; then |
322 |
JVM_FEATURES="$JVM_FEATURES static-build" |
|
20363 | 323 |
else |
37402 | 324 |
if HOTSPOT_CHECK_JVM_FEATURE(static-build); then |
325 |
AC_MSG_ERROR([To enable static-build, you must use --enable-static-build]) |
|
326 |
fi |
|
327 |
fi |
|
328 |
||
47687 | 329 |
if ! HOTSPOT_CHECK_JVM_VARIANT(zero); then |
37402 | 330 |
if HOTSPOT_CHECK_JVM_FEATURE(zero); then |
47687 | 331 |
AC_MSG_ERROR([To enable zero, you must use --with-jvm-variants=zero]) |
37402 | 332 |
fi |
333 |
fi |
|
334 |
||
39946
c82f919f4454
8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents:
39191
diff
changeset
|
335 |
# Only enable jvmci on x86_64, sparcv9 and aarch64. |
37402 | 336 |
if test "x$OPENJDK_TARGET_CPU" = "xx86_64" || \ |
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
337 |
test "x$OPENJDK_TARGET_CPU" = "xsparcv9" || \ |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
338 |
test "x$OPENJDK_TARGET_CPU" = "xaarch64" ; then |
37402 | 339 |
JVM_FEATURES_jvmci="jvmci" |
340 |
else |
|
341 |
JVM_FEATURES_jvmci="" |
|
20363 | 342 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
343 |
|
43925 | 344 |
AC_MSG_CHECKING([if jdk.internal.vm.compiler should be built]) |
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
345 |
if HOTSPOT_CHECK_JVM_FEATURE(graal); then |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
346 |
AC_MSG_RESULT([yes, forced]) |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
347 |
if test "x$JVM_FEATURES_jvmci" != "xjvmci" ; then |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
348 |
AC_MSG_ERROR([Specified JVM feature 'graal' requires feature 'jvmci']) |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
349 |
fi |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
350 |
INCLUDE_GRAAL="true" |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
351 |
else |
49485 | 352 |
# By default enable graal build on x64 or where AOT is available. |
47056 | 353 |
# graal build requires jvmci. |
354 |
if test "x$JVM_FEATURES_jvmci" = "xjvmci" && \ |
|
49485 | 355 |
(test "x$OPENJDK_TARGET_CPU" = "xx86_64" || \ |
47056 | 356 |
test "x$ENABLE_AOT" = "xtrue") ; then |
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
357 |
AC_MSG_RESULT([yes]) |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
358 |
JVM_FEATURES_graal="graal" |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
359 |
INCLUDE_GRAAL="true" |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
360 |
else |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
361 |
AC_MSG_RESULT([no]) |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
362 |
JVM_FEATURES_graal="" |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
363 |
INCLUDE_GRAAL="false" |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
364 |
fi |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
365 |
fi |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
366 |
|
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
367 |
AC_SUBST(INCLUDE_GRAAL) |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42510
diff
changeset
|
368 |
|
42532 | 369 |
AC_MSG_CHECKING([if aot should be enabled]) |
370 |
if test "x$ENABLE_AOT" = "xtrue"; then |
|
371 |
if test "x$enable_aot" = "xyes"; then |
|
372 |
AC_MSG_RESULT([yes, forced]) |
|
373 |
else |
|
374 |
AC_MSG_RESULT([yes]) |
|
375 |
fi |
|
376 |
JVM_FEATURES_aot="aot" |
|
377 |
else |
|
378 |
if test "x$enable_aot" = "xno"; then |
|
379 |
AC_MSG_RESULT([no, forced]) |
|
380 |
else |
|
381 |
AC_MSG_RESULT([no]) |
|
382 |
fi |
|
383 |
JVM_FEATURES_aot="" |
|
384 |
fi |
|
385 |
||
42538 | 386 |
if test "x$OPENJDK_TARGET_CPU" = xarm ; then |
387 |
# Default to use link time optimizations on minimal on arm |
|
388 |
JVM_FEATURES_link_time_opt="link-time-opt" |
|
389 |
else |
|
390 |
JVM_FEATURES_link_time_opt="" |
|
391 |
fi |
|
392 |
||
37402 | 393 |
# All variants but minimal (and custom) get these features |
56533 | 394 |
NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES cmsgc g1gc parallelgc serialgc epsilongc jni-check jvmti management nmt services vm-structs" |
47060 | 395 |
if test "x$ENABLE_CDS" = "xtrue"; then |
396 |
NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES cds" |
|
47871
5ab3961d20dd
8191204: Post-consolidation cleaning up of the build system
ihse
parents:
47687
diff
changeset
|
397 |
fi |
37402 | 398 |
|
49582 | 399 |
# Enable default features depending on variant. |
42532 | 400 |
JVM_FEATURES_server="compiler1 compiler2 $NON_MINIMAL_FEATURES $JVM_FEATURES $JVM_FEATURES_jvmci $JVM_FEATURES_aot $JVM_FEATURES_graal" |
39946
c82f919f4454
8159888: [JVMCI] the client VM build is broken when INCLUDE_JVMCI is defined
dnsimon
parents:
39191
diff
changeset
|
401 |
JVM_FEATURES_client="compiler1 $NON_MINIMAL_FEATURES $JVM_FEATURES $JVM_FEATURES_jvmci" |
37402 | 402 |
JVM_FEATURES_core="$NON_MINIMAL_FEATURES $JVM_FEATURES" |
49982 | 403 |
JVM_FEATURES_minimal="compiler1 minimal serialgc $JVM_FEATURES $JVM_FEATURES_link_time_opt" |
37402 | 404 |
JVM_FEATURES_zero="zero $NON_MINIMAL_FEATURES $JVM_FEATURES" |
405 |
JVM_FEATURES_custom="$JVM_FEATURES" |
|
406 |
||
407 |
AC_SUBST(JVM_FEATURES_server) |
|
408 |
AC_SUBST(JVM_FEATURES_client) |
|
409 |
AC_SUBST(JVM_FEATURES_core) |
|
410 |
AC_SUBST(JVM_FEATURES_minimal) |
|
411 |
AC_SUBST(JVM_FEATURES_zero) |
|
412 |
AC_SUBST(JVM_FEATURES_custom) |
|
413 |
||
414 |
# Used for verification of Makefiles by check-jvm-feature |
|
415 |
AC_SUBST(VALID_JVM_FEATURES) |
|
416 |
||
417 |
# We don't support --with-jvm-interpreter anymore, use zero instead. |
|
418 |
BASIC_DEPRECATED_ARG_WITH(jvm-interpreter) |
|
419 |
]) |
|
420 |
||
421 |
############################################################################### |
|
49582 | 422 |
# Finalize JVM features once all setup is complete, including custom setup. |
37402 | 423 |
# |
49582 | 424 |
AC_DEFUN_ONCE([HOTSPOT_FINALIZE_JVM_FEATURES], |
37402 | 425 |
[ |
426 |
for variant in $JVM_VARIANTS; do |
|
427 |
AC_MSG_CHECKING([JVM features for JVM variant '$variant']) |
|
428 |
features_var_name=JVM_FEATURES_$variant |
|
49582 | 429 |
JVM_FEATURES_FOR_VARIANT=${!features_var_name} |
430 |
||
431 |
# Filter out user-requested disabled features |
|
432 |
BASIC_GET_NON_MATCHING_VALUES(JVM_FEATURES_FOR_VARIANT, $JVM_FEATURES_FOR_VARIANT, $DISABLED_JVM_FEATURES) |
|
433 |
||
434 |
# Keep feature lists sorted and free of duplicates |
|
435 |
BASIC_SORT_LIST(JVM_FEATURES_FOR_VARIANT, $JVM_FEATURES_FOR_VARIANT) |
|
436 |
||
437 |
# Update real feature set variable |
|
438 |
eval $features_var_name='"'$JVM_FEATURES_FOR_VARIANT'"' |
|
439 |
AC_MSG_RESULT(["$JVM_FEATURES_FOR_VARIANT"]) |
|
440 |
||
49982 | 441 |
# Verify that we have at least one gc selected |
442 |
GC_FEATURES=`$ECHO $JVM_FEATURES_FOR_VARIANT | $GREP gc` |
|
443 |
if test "x$GC_FEATURES" = x; then |
|
444 |
AC_MSG_WARN([Invalid JVM features: No gc selected for variant $variant.]) |
|
445 |
fi |
|
446 |
||
49582 | 447 |
# Validate features (for configure script errors, not user errors) |
49705 | 448 |
BASIC_GET_NON_MATCHING_VALUES(INVALID_FEATURES, $JVM_FEATURES_FOR_VARIANT, $VALID_JVM_FEATURES) |
37402 | 449 |
if test "x$INVALID_FEATURES" != x; then |
49582 | 450 |
AC_MSG_ERROR([Internal configure script error. Invalid JVM feature(s): $INVALID_FEATURES]) |
37402 | 451 |
fi |
452 |
done |
|
453 |
]) |
|
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
454 |
|
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
455 |
################################################################################ |
42538 | 456 |
# |
457 |
# Specify which sources will be used to build the 64-bit ARM port |
|
458 |
# |
|
459 |
# --with-cpu-port=arm64 will use hotspot/src/cpu/arm |
|
460 |
# --with-cpu-port=aarch64 will use hotspot/src/cpu/aarch64 |
|
461 |
# |
|
462 |
AC_DEFUN([SETUP_HOTSPOT_TARGET_CPU_PORT], |
|
463 |
[ |
|
464 |
AC_ARG_WITH(cpu-port, [AS_HELP_STRING([--with-cpu-port], |
|
465 |
[specify sources to use for Hotspot 64-bit ARM port (arm64,aarch64) @<:@aarch64@:>@ ])]) |
|
466 |
||
467 |
if test "x$with_cpu_port" != x; then |
|
468 |
if test "x$OPENJDK_TARGET_CPU" != xaarch64; then |
|
469 |
AC_MSG_ERROR([--with-cpu-port only available on aarch64]) |
|
470 |
fi |
|
471 |
if test "x$with_cpu_port" != xarm64 && \ |
|
472 |
test "x$with_cpu_port" != xaarch64; then |
|
473 |
AC_MSG_ERROR([--with-cpu-port must specify arm64 or aarch64]) |
|
474 |
fi |
|
475 |
HOTSPOT_TARGET_CPU_PORT="$with_cpu_port" |
|
476 |
fi |
|
477 |
]) |
|
478 |
||
479 |
||
480 |
################################################################################ |
|
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
481 |
# Check if gtest should be built |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
482 |
# |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
483 |
AC_DEFUN_ONCE([HOTSPOT_ENABLE_DISABLE_GTEST], |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
484 |
[ |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
485 |
AC_ARG_ENABLE([hotspot-gtest], [AS_HELP_STRING([--disable-hotspot-gtest], |
47871
5ab3961d20dd
8191204: Post-consolidation cleaning up of the build system
ihse
parents:
47687
diff
changeset
|
486 |
[Disables building of the Hotspot unit tests @<:@enabled@:>@])]) |
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
487 |
|
47217 | 488 |
if test -e "${TOPDIR}/test/hotspot/gtest"; then |
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
489 |
GTEST_DIR_EXISTS="true" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
490 |
else |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
491 |
GTEST_DIR_EXISTS="false" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
492 |
fi |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
493 |
|
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
494 |
AC_MSG_CHECKING([if Hotspot gtest unit tests should be built]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
495 |
if test "x$enable_hotspot_gtest" = "xyes"; then |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
496 |
if test "x$GTEST_DIR_EXISTS" = "xtrue"; then |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
497 |
AC_MSG_RESULT([yes, forced]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
498 |
BUILD_GTEST="true" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
499 |
else |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
500 |
AC_MSG_ERROR([Cannot build gtest without the test source]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
501 |
fi |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
502 |
elif test "x$enable_hotspot_gtest" = "xno"; then |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
503 |
AC_MSG_RESULT([no, forced]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
504 |
BUILD_GTEST="false" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
505 |
elif test "x$enable_hotspot_gtest" = "x"; then |
42855 | 506 |
if test "x$GTEST_DIR_EXISTS" = "xtrue"; then |
37978
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
507 |
AC_MSG_RESULT([yes]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
508 |
BUILD_GTEST="true" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
509 |
else |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
510 |
AC_MSG_RESULT([no]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
511 |
BUILD_GTEST="false" |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
512 |
fi |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
513 |
else |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
514 |
AC_MSG_ERROR([--enable-gtest must be either yes or no]) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
515 |
fi |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
516 |
|
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
517 |
AC_SUBST(BUILD_GTEST) |
2614022b9fa5
8157348: Build fails with certain source configurations
erikj
parents:
37960
diff
changeset
|
518 |
]) |