Skip to content
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

8247569: [lworld] Align with spec for <vnew> methods #788

Closed
wants to merge 31 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
3614dee
8247569: [lworld] Align with spec for <vnew> methods
vicente-romero-oracle Sep 25, 2022
6e2d19c
removing experimental code
vicente-romero-oracle Sep 28, 2022
6264d34
fixing regression tests
vicente-romero-oracle Sep 29, 2022
1052091
Initial VM implementation
MrSimms Oct 5, 2022
2713b8e
Match javac changes
MrSimms Oct 5, 2022
6065b53
Bring back the more descriptive class_note for illegal modifier error…
MrSimms Oct 5, 2022
ac6ab33
Adjust runtime tests for vnew
MrSimms Oct 5, 2022
eaa6b66
javac is generating <vnew> method for abstract value classes
vicente-romero-oracle Oct 5, 2022
f984f66
Merge branch 'lworld' into JDK-8247569
vicente-romero-oracle Oct 6, 2022
7f01be1
adding regression tests
vicente-romero-oracle Oct 6, 2022
b4d6929
adding missing comment
vicente-romero-oracle Oct 7, 2022
6d3cdf6
Merge branch 'lworld' into vnew
MrSimms Oct 11, 2022
59f4914
Abstract value class constructor is vanilla <init>
MrSimms Oct 11, 2022
1da3a84
Adjust hotspot_valhalla tests
MrSimms Oct 11, 2022
3bd4abb
Compile issue
MrSimms Oct 11, 2022
a7d6bd1
Merge remote-tracking branch 'vicente_vnew/JDK-8247569' into vnew_jav…
MrSimms Oct 11, 2022
e218728
Merge branch 'vnew' into vnew_javac_hotspot
MrSimms Oct 11, 2022
f017eeb
fixing failing regression tests
vicente-romero-oracle Oct 11, 2022
61e7af3
Merge pull request #2 from MrSimms/fixing.failing.regression.tests
vicente-romero-oracle Oct 11, 2022
16381d5
MethodHandles::resolve_MemberName for <vnew>
MrSimms Oct 11, 2022
a71bad8
MethodHandles.java aware of vnew, no longer static/non-static <init>
MrSimms Oct 11, 2022
ccbbac8
Merge branch 'lworld' into vnew_javac_hotspot
MrSimms Oct 12, 2022
953c206
Fixes for valhalla/valuetypes/Serialization.java
MrSimms Oct 12, 2022
676960b
mchung: core-libs fixes
MrSimms Oct 19, 2022
2e41e7c
Merge branch 'lworld' into vnew_javac_hotspot
MrSimms Oct 19, 2022
c9d2bb6
Post 8281295: revert MethodAccessorGenerator, no longer needed
MrSimms Oct 19, 2022
55e570e
Update test/jdk/valhalla/valuetypes/StaticFactoryMethodHandleTest.java
MrSimms Oct 19, 2022
c33ed33
Update src/java.compiler/share/classes/javax/lang/model/element/Execu…
MrSimms Oct 20, 2022
8074b30
Update src/java.base/share/classes/java/lang/invoke/MethodHandleInfo.…
MrSimms Oct 20, 2022
7634815
Applied fparain comments
MrSimms Oct 20, 2022
2acc29c
github "commit comment" seems to be capable of adding trailing whites…
MrSimms Oct 20, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -82,7 +82,7 @@ public Value(int x) {
*/
@Test
public void testNoArgStaticFactory() throws Throwable {
// test default vnew init factory
// test default static vnew factory
Class<? extends Cons> cls = (Class<? extends Cons>)PrimitiveClass.asValueType(DefaultConstructor.class);
MethodHandle mh = staticValueFactory(cls, methodType(cls));
DefaultConstructor o = (DefaultConstructor)mh.invokeExact();