-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8352020: [CompileFramework] enable compilation for VectorAPI #24082
8352020: [CompileFramework] enable compilation for VectorAPI #24082
Conversation
👋 Welcome back epeter! A progress list of the required criteria for merging this PR into |
@eme64 This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 10 new commits pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
Webrevs
|
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.
Very good.
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.
Otherwise, it looks good to me, too.
// Note: the output can be non-empty even if the compilation succeeds, e.g. for warnings. | ||
if (exitCode != 0) { |
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.
Would -XX:-PrintWarnings
also work?
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.
Maybe... but I don't want to risk it. There have recently been a few sightings where javac
printed some messages, see JDK-8351998. I think it's just not worth it to fail if it prints anything. Exit code should be sufficient.
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.
Agreed, it's safer.
|
||
/** | ||
* This test shows that the IR verification can be done on code compiled by the Compile Framework. | ||
* The "@compile" command for JTREG is required so that the IRFramework is compiled, other javac |
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.
What about a CompileFilework::invokeIRTest()
or something like that, that just additionally loads the TestFramework
class somehow (for example just creating an instance or accessing a field etc., we could also provide an empty static method in TestFramework.java
that can be called to minimize the overhead), would that work? Then we do not need to worry about adding @compile
or figuring out why the IR test is not working.
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.
Maybe... but is this kind of magic really worth it? It would also mean that any CompileFraework
test always compiles the TestFramework
. And if we decide to do this, I think it would be a separate RFE, since I'm just copying from test/hotspot/jtreg/testlibrary_tests/compile_framework/examples/IRFrameworkJavaExample.java
here ;)
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.
FYI: the issue will probably get worse over time, as there may be more and more test-library parts that are not used in the JTREG test directly, but only in the CompileFramework compiled code. I currently have a test under development where I have to write this:
/*
* @test
* @summary Test the Template Library's expression generation for the Vector API.
* @modules jdk.incubator.vector
* @modules java.base/jdk.internal.misc
* @library /test/lib /
* @compile ../../../compiler/lib/ir_framework/TestFramework.java
* @compile ../../../compiler/lib/generators/Generators.java
* @compile ../../../compiler/lib/verify/Verify.java
* @run driver template_library.examples.TestFuzzVectorAPI
*/
But I'm not sure which test libraries we should always load... maybe we can address this down the road, when it really becomes cumbersome for people, and we know more what we want?
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.
It would also mean that any CompileFraework test always compiles the TestFramework
I don't think so, wouldn't it only load it when you call invokeIrTest()
? So, when you only call something from the TestFramework
class there, I think it will only be loaded and initialized when you actually call invokeIrTest()
:
Object invokeIrTest(String className, String methodName, Object[] args) {
TestFramework.loadClass();
return invoke(className, methodName, args);
}
And if we decide to do this, I think it would be a separate RFE,
Sure, that's fine. I only just noticed this when reading the comment :-)
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.
It would also mean that any CompileFraework test always compiles the TestFramework
I don't think so, wouldn't it only load it when you call invokeIrTest()?
JTREG would always compile the TestFramework, but the test would not always load the TestFramework class ;)
And if we decide to do this, I think it would be a separate RFE,
Sure, that's fine. I only just noticed this when reading the comment :-)
Ok, good, I'll keep it in mind. I mean it's bothering me a little too, I'm just not sure yet if or how to fix it best. Especially because there are now multiple test-frameworks, and we may want to compile and load any combination of them...
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.
It would also mean that any CompileFraework test always compiles the TestFramework
I don't think so, wouldn't it only load it when you call invokeIrTest()?
JTREG would always compile the TestFramework, but the test would not always load the TestFramework class ;)
Ah yes, you're right, that's true.
And if we decide to do this, I think it would be a separate RFE,
Sure, that's fine. I only just noticed this when reading the comment :-)
Ok, good, I'll keep it in mind. I mean it's bothering me a little too, I'm just not sure yet if or how to fix it best. Especially because there are now multiple test-frameworks, and we may want to compile and load any combination of them...
Yeah, me too - maybe it's worth to revisit this again and discuss possible low-overhead solutions.
But I'm not sure which test libraries we should always load... maybe we can address this down the road, when it really becomes cumbersome for people, and we know more what we want?
That's really a lot of compile statements you need to make sure to add. Let's discuss this again later and go with what we have now.
@vnkozlov @chhagedorn thanks for the reviews! /integrate |
Going to push as commit 3ed010a.
Your commit was automatically rebased without conflicts. |
During work on JDK-8344942 I discovered that it is currently not possible to compile VectorAPI code because it is still in incubator mode and needs flag "--add-modules=jdk.incubator.vector" for "javac".
Also: "javac" can produce warnings, and that leads to issues like this: JDK-8351998. We should allow such warnings, they are not compile failures.
Example:
I added an example test as well.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/24082/head:pull/24082
$ git checkout pull/24082
Update a local copy of the PR:
$ git checkout pull/24082
$ git pull https://git.openjdk.org/jdk.git pull/24082/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 24082
View PR using the GUI difftool:
$ git pr show -t 24082
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/24082.diff
Using Webrev
Link to Webrev Comment