Skip to content

Commit 0131c1b

Browse files
committedFeb 20, 2025
8349953: Avoid editing AOTConfiguration file in "make test JTREG=AOT_JDK=true"
Reviewed-by: erikj, ccheung
1 parent 3ebed78 commit 0131c1b

File tree

5 files changed

+176
-36
lines changed

5 files changed

+176
-36
lines changed
 

‎make/Main.gmk

+13-1
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,17 @@ $(eval $(call SetupTarget, test-image-lib, \
753753
DEPS := build-test-lib, \
754754
))
755755

756+
$(eval $(call SetupTarget, build-test-setup-aot, \
757+
MAKEFILE := test/BuildTestSetupAOT, \
758+
DEPS := interim-langtools exploded-image, \
759+
))
760+
761+
$(eval $(call SetupTarget, test-image-setup-aot, \
762+
MAKEFILE := test/BuildTestSetupAOT, \
763+
TARGET := images, \
764+
DEPS := build-test-setup-aot, \
765+
))
766+
756767
ifeq ($(BUILD_FAILURE_HANDLER), true)
757768
# Builds the failure handler jtreg extension
758769
$(eval $(call SetupTarget, build-test-failure-handler, \
@@ -1281,7 +1292,8 @@ all-docs-bundles: docs-jdk-bundles docs-javase-bundles docs-reference-bundles
12811292
# This target builds the test image
12821293
test-image: prepare-test-image test-image-jdk-jtreg-native \
12831294
test-image-demos-jdk test-image-libtest-jtreg-native \
1284-
test-image-lib test-image-lib-native
1295+
test-image-lib test-image-lib-native \
1296+
test-image-setup-aot
12851297

12861298
ifneq ($(JVM_TEST_IMAGE_TARGETS), )
12871299
# If JVM_TEST_IMAGE_TARGETS is externally defined, use it instead of the

‎make/RunTests.gmk

+32-31
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,9 @@ define SetJtregValue
703703
endif
704704
endef
705705

706+
################################################################################
707+
# Helper function for creating a customized AOT cache for running tests
708+
################################################################################
706709

707710
# Parameter 1 is the name of the rule.
708711
#
@@ -713,48 +716,47 @@ endef
713716
# $1_AOT_TARGETS List of all targets that the test rule will need to depend on
714717
# $1_AOT_JDK_CACHE The AOT cache file to be used to run the test with
715718
#
716-
SetupAot = $(NamedParamsMacroTemplate)
717-
define SetupAotBody
718-
$1_AOT_JDK_CONF := $$($1_TEST_SUPPORT_DIR)/aot/jdk.aotconf
719+
SetupAOT = $(NamedParamsMacroTemplate)
720+
define SetupAOTBody
721+
$1_AOT_JDK_CONF := $$($1_TEST_SUPPORT_DIR)/aot/jdk.aotconf
719722
$1_AOT_JDK_CACHE := $$($1_TEST_SUPPORT_DIR)/aot/jdk.aotcache
720-
721-
$1_JAVA_TOOL_OPTS := $$(addprefix -J, $$($1_VM_OPTIONS))
723+
$1_AOT_JDK_LOG := $$($1_TEST_SUPPORT_DIR)/aot/TestSetupAOT.log
724+
725+
# We execute the training run with $(TEST_IMAGE_DIR)/setup_aot/TestSetupAOT.class
726+
# to touch a fair number of classes inside the JDK. Note that we can't specify a classpath,
727+
# or else the AOT cache cannot be used with jtreg test cases that use a different value
728+
# for their classpaths. Instead, we run in the $(TEST_IMAGE_DIR)/setup_aot/ directory.
729+
# The "java" launcher will have an implicit classpath of ".", so it can pick up the TestSetupAOT
730+
# class from the JVM's current directory.
731+
#
732+
# The TestSetupAOT class (or any other classes that are loaded from ".") will be excluded
733+
# from the the AOT cache as "." is an unsupported location. As a result, the AOT cache will contain
734+
# only classes from the JDK.
722735

723736
$$($1_AOT_JDK_CACHE): $$(JDK_IMAGE_DIR)/release
724737
$$(call MakeDir, $$($1_TEST_SUPPORT_DIR)/aot)
725738

726-
$(foreach jtool, javac javap jlink jar, \
727-
$(info AOT: Create cache configuration for $(jtool)) \
728-
$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/aot.$(jtool), ( \
729-
$$(FIXPATH) $(JDK_UNDER_TEST)/bin/$(jtool) $$($1_JAVA_TOOL_OPTS) \
730-
-J-XX:AOTMode=record -J-XX:AOTConfiguration=$$($1_AOT_JDK_CONF).$(jtool) --help \
731-
))
732-
)
733-
734-
$$(info AOT: Copy $(JDK_UNDER_TEST)/lib/classlist to $$($1_AOT_JDK_CONF).jdk )
739+
$$(call LogWarn, AOT: Create cache configuration) \
735740
$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/aot, ( \
736-
$$(FIXPATH) $(CP) $(JDK_UNDER_TEST)/lib/classlist $$($1_AOT_JDK_CONF).jdk \
741+
$(CD) $(TEST_IMAGE_DIR)/setup_aot; \
742+
$$(FIXPATH) $(JDK_UNDER_TEST)/bin/java $$($1_VM_OPTIONS) \
743+
-Xlog:cds,cds+class=debug:file=$$($1_AOT_JDK_CONF).log -Xlog:cds*=error \
744+
-XX:AOTMode=record -XX:AOTConfiguration=$$($1_AOT_JDK_CONF) \
745+
TestSetupAOT > $$($1_AOT_JDK_LOG) \
737746
))
738747

739-
$$(FIXPATH) $$(CAT) $$($1_AOT_JDK_CONF).* > $$($1_AOT_JDK_CONF).temp
740-
$$(FIXPATH) $$(CAT) $$($1_AOT_JDK_CONF).temp | $(GREP) -v '#' | $(GREP) -v '@' | $(SORT) | \
741-
$(SED) -e 's/id:.*//g' | uniq \
742-
> $$($1_AOT_JDK_CONF)
743-
$$(FIXPATH) $$(CAT) $$($1_AOT_JDK_CONF).temp | $(GREP) '@cp' | $(SORT) \
744-
>> $$($1_AOT_JDK_CONF)
745-
746-
$$(info AOT: Generate AOT cache $$($1_AOT_JDK_CACHE) with flags: $$($1_VM_OPTIONS))
748+
$$(call LogWarn, AOT: Generate AOT cache $$($1_AOT_JDK_CACHE) with flags: $$($1_VM_OPTIONS))
747749
$$(call ExecuteWithLog, $$($1_TEST_SUPPORT_DIR)/aot, ( \
748-
$$(FIXPATH) $(JDK_UNDER_TEST)/bin/java \
749-
$$($1_VM_OPTIONS) -Xlog:cds,cds+class=debug:file=$$($1_AOT_JDK_CACHE).log \
750-
-XX:AOTMode=create -XX:AOTConfiguration=$$($1_AOT_JDK_CONF) -XX:AOTCache=$$($1_AOT_JDK_CACHE) \
750+
$$(FIXPATH) $(JDK_UNDER_TEST)/bin/java \
751+
$$($1_VM_OPTIONS) -Xlog:cds,cds+class=debug:file=$$($1_AOT_JDK_CACHE).log -Xlog:cds*=error \
752+
-XX:ExtraSharedClassListFile=$(JDK_UNDER_TEST)/lib/classlist \
753+
-XX:AOTMode=create -XX:AOTConfiguration=$$($1_AOT_JDK_CONF) -XX:AOTCache=$$($1_AOT_JDK_CACHE) \
751754
))
752755

753756
$1_AOT_TARGETS += $$($1_AOT_JDK_CACHE)
754757

755758
endef
756759

757-
758760
SetupRunJtregTest = $(NamedParamsMacroTemplate)
759761
define SetupRunJtregTestBody
760762
$1_TEST_RESULTS_DIR := $$(TEST_RESULTS_DIR)/$1
@@ -946,11 +948,10 @@ define SetupRunJtregTestBody
946948
endif
947949

948950
ifeq ($$(JTREG_AOT_JDK), true)
949-
$$(info Add AOT target for $1)
950-
$$(eval $$(call SetupAot, $1, VM_OPTIONS := $$(JTREG_ALL_OPTIONS) ))
951+
$$(call LogWarn, Add AOT target for $1)
952+
$$(eval $$(call SetupAOT, $1, VM_OPTIONS := $$(JTREG_ALL_OPTIONS) ))
951953

952-
$$(info AOT_TARGETS=$$($1_AOT_TARGETS))
953-
$$(info AOT_JDK_CACHE=$$($1_AOT_JDK_CACHE))
954+
$$(call LogWarn, AOT_JDK_CACHE=$$($1_AOT_JDK_CACHE))
954955

955956
$1_JTREG_BASIC_OPTIONS += -vmoption:-XX:AOTCache="$$($1_AOT_JDK_CACHE)"
956957
endif

‎make/test/BuildTestSetupAOT.gmk

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
#
2+
# Copyright (c) 2025, 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+
include MakeFileStart.gmk
27+
28+
################################################################################
29+
# This file builds the TestSetupAOT.class, which is used by SetupAOT
30+
# in ../RunTests.gmk
31+
################################################################################
32+
33+
include CopyFiles.gmk
34+
include JavaCompilation.gmk
35+
36+
################################################################################
37+
38+
SETUP_AOT_BASEDIR := $(TOPDIR)/test/setup_aot
39+
SETUP_AOT_SUPPORT := $(SUPPORT_OUTPUTDIR)/test/setup_aot
40+
SETUP_AOT_CLASS := $(SETUP_AOT_SUPPORT)/classes/TestSetupAOT.class
41+
42+
$(eval $(call SetupJavaCompilation, BUILD_SETUP_AOT, \
43+
TARGET_RELEASE := $(TARGET_RELEASE_NEWJDK_UPGRADED), \
44+
SRC := $(SETUP_AOT_BASEDIR), \
45+
BIN := $(SETUP_AOT_SUPPORT)/classes, \
46+
))
47+
48+
TARGETS += $(BUILD_SETUP_AOT)
49+
50+
################################################################################
51+
# Targets for building test-image.
52+
################################################################################
53+
54+
# Copy to hotspot jtreg test image
55+
$(eval $(call SetupCopyFiles, COPY_SETUP_AOT, \
56+
SRC := $(SETUP_AOT_SUPPORT)/classes, \
57+
DEST := $(TEST_IMAGE_DIR)/setup_aot, \
58+
FILES := TestSetupAOT.class, \
59+
))
60+
61+
IMAGES_TARGETS += $(COPY_SETUP_AOT)
62+
63+
images: $(IMAGES_TARGETS)
64+
65+
.PHONY: images
66+
67+
################################################################################
68+
69+
include MakeFileEnd.gmk

‎src/hotspot/share/cds/classListParser.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -443,10 +443,9 @@ void ClassListParser::print_diagnostic_info(outputStream* st, const char* msg, v
443443
error_index = 0;
444444
}
445445

446-
jio_fprintf(defaultStream::error_stream(),
447-
"An error has occurred while processing class list file %s %zu:%d.\n",
448-
_classlist_file, lineno(), (error_index + 1));
449-
jio_vfprintf(defaultStream::error_stream(), msg, ap);
446+
st->print("An error has occurred while processing class list file %s %zu:%d.\n",
447+
_classlist_file, lineno(), (error_index + 1));
448+
st->vprint(msg, ap);
450449

451450
if (_line_len <= 0) {
452451
st->print("\n");

‎test/setup_aot/TestSetupAOT.java

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
/*
2+
* Copyright (c) 2025, 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+
import java.util.spi.ToolProvider;
27+
28+
// This program is executed by make/RunTests.gmk to support running HotSpot tests
29+
// in the "AOT mode", for example:
30+
//
31+
// make test JTREG=AOT_JDK=true TEST=open/test/hotspot/jtreg/runtime/invokedynamic
32+
//
33+
// All JDK classes touched by this program will be stored into a customized AOT cache.
34+
// This is a larger set of classes than those stored in the JDK's default CDS archive.
35+
// This customized cache can also have additional optimizations that are not
36+
// enabled in the default CDS archive. For example, AOT-linked classes and lambda
37+
// expressions. In the future, it can also contain AOT profiles and AOT compiled methods.
38+
//
39+
// We can use this customized AOT cache to run various HotSpot tests to improve
40+
// coverage on AOT.
41+
//
42+
// Note that make/RunTests.gmk loads this class using an implicit classpath of ".", so
43+
// this class will be excluded from the customized AOT cache. As a result,
44+
// the customized AOT cache contains *only* classes from the JDK itself.
45+
46+
public class TestSetupAOT {
47+
public static void main(String[] args) throws Throwable {
48+
String[] tools = {
49+
"javac", "javap", "jlink", "jar",
50+
};
51+
// TODO: we should do more substantial work than just running with "--help".
52+
// E.g., use javac to compile a program.
53+
for (String tool : tools) {
54+
ToolProvider t = ToolProvider.findFirst(tool)
55+
.orElseThrow(() -> new RuntimeException(tool + " not found"));
56+
t.run(System.out, System.out, "--help");
57+
}
58+
}
59+
}

0 commit comments

Comments
 (0)
Please sign in to comment.