-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[GR-62124] Remove jdk.graal.compiler dependency on org.graalvm.nativeimage. #10863
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
54c0c06
added regression test for JDK-8351036
dougxc f45b5c9
fixed spelling
dougxc 855ae70
replace strings with class literals in ServiceLoaderFeature to better…
dougxc 5e03fdd
cache edge indexes used regularly in static final fields
dougxc 9fea46a
move hot OptionValue access on assertion-only branch into assertion c…
dougxc da122f9
explicitly set maven artifactId for NATIVEIMAGE_LIBGRAAL
dougxc 07564f5
added LibGraalSupport.HostedOnly annotation
dougxc 39ea681
remove org.graalvm.nativeimage dependency from jdk.graal.compiler
dougxc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
....graal.compiler.test/src/jdk/graal/compiler/hotspot/test/GraalModuleDependenciesTest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* Copyright (c) 2025, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Oracle designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Oracle in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package jdk.graal.compiler.hotspot.test; | ||
|
||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.util.List; | ||
import java.util.Set; | ||
import java.util.regex.Pattern; | ||
import java.util.stream.Collectors; | ||
|
||
import org.graalvm.nativeimage.ImageInfo; | ||
import org.junit.Test; | ||
|
||
import jdk.graal.compiler.core.GraalCompiler; | ||
import jdk.graal.compiler.core.test.GraalCompilerTest; | ||
import jdk.graal.compiler.debug.GraalError; | ||
import jdk.graal.compiler.serviceprovider.GraalServices; | ||
import jdk.graal.compiler.test.SubprocessUtil; | ||
import jdk.graal.compiler.test.SubprocessUtil.Subprocess; | ||
|
||
/** | ||
* Tests that {@code jdk.graal.compiler} does not have unwanted dependencies such as | ||
* {@code org.graalvm.nativeimage}. | ||
*/ | ||
public class GraalModuleDependenciesTest extends GraalCompilerTest { | ||
|
||
static Path getJavaExe() { | ||
Path javaHome = Path.of(System.getProperty("java.home")); | ||
boolean isWindows = GraalServices.getSavedProperty("os.name").contains("Windows"); | ||
Path javaExe = javaHome.resolve(Path.of("bin", isWindows ? "java.exe" : "java")); | ||
if (!Files.isExecutable(javaExe)) { | ||
throw new GraalError("Java launcher %s does not exist or is not executable", javaExe); | ||
} | ||
return javaExe; | ||
} | ||
|
||
private static Subprocess run(String... command) throws InterruptedException, IOException { | ||
Subprocess proc = SubprocessUtil.java(List.of(command)); | ||
if (proc.exitCode != 0) { | ||
fail("Non-zero exit code:%n%s", proc.preserveArgfile()); | ||
} | ||
return proc; | ||
} | ||
|
||
private static String removeVersionSuffix(String moduleName) { | ||
int at = moduleName.indexOf('@'); | ||
if (at == -1) { | ||
return moduleName; | ||
} | ||
return moduleName.substring(0, at); | ||
} | ||
|
||
@Test | ||
public void test() throws InterruptedException, IOException { | ||
String javaExe = getJavaExe().toString(); | ||
Subprocess proc = run(javaExe, | ||
"--limit-modules=jdk.graal.compiler", | ||
"--list-modules"); | ||
|
||
String graal = GraalCompiler.class.getModule().getName(); | ||
String nativeImage = ImageInfo.class.getModule().getName(); | ||
Set<String> moduleNames = proc.output.stream().map(GraalModuleDependenciesTest::removeVersionSuffix).collect(Collectors.toSet()); | ||
if (!moduleNames.contains(graal)) { | ||
fail("Missing Graal (%s):%n%s", graal, proc.preserveArgfile()); | ||
} | ||
if (moduleNames.contains(nativeImage)) { | ||
fail("Native Image API (%s) should not be a dependency of Graal (%s):%n%s", nativeImage, graal, proc.preserveArgfile()); | ||
} | ||
|
||
proc = run(javaExe, | ||
"--limit-modules=jdk.graal.compiler", | ||
"-XX:+EagerJVMCI", | ||
"-Djdk.graal.ShowConfiguration=info", | ||
"--version"); | ||
Pattern expect = Pattern.compile("^Using .* loaded from class files"); | ||
if (proc.output.stream().noneMatch(line -> expect.matcher(line).find())) { | ||
fail("Did not find line matching %s%n%s", expect, proc.preserveArgfile()); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sample output: