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

8340205: Native linker allows MemoryLayout consisting of only PaddingLayout #21041

Closed
wants to merge 37 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
1ac1998
Prevent embeded only padding layout in linker
minborg Sep 17, 2024
b9833b4
Update copyright year
minborg Sep 17, 2024
d11b700
Document a sequence layout cannot contain a padding layout
minborg Sep 20, 2024
59d0569
Improve excception message
minborg Sep 20, 2024
c1d3b65
Merge branch 'master' into linker-padding-layout-only
minborg Sep 20, 2024
5f0c509
Remove redundant doc section
minborg Sep 23, 2024
d0575fd
Check exception message
minborg Sep 23, 2024
5cb406d
Merge branch 'master' into linker-padding-layout-only
minborg Sep 23, 2024
78d38ef
Add specific message for group layouts with only padding layouts
minborg Sep 23, 2024
bba0b78
Add to specification and refine detection of PL GLs
minborg Sep 23, 2024
b755c61
Reword doce
minborg Sep 23, 2024
8381d57
Merge branch 'master' into linker-padding-layout-only
minborg Oct 14, 2024
b5e795f
Update Linker docs
minborg Oct 14, 2024
0c13e8a
Merge branch 'master' into linker-padding-layout-only
minborg Oct 29, 2024
8e4ee28
Add rule checkings in AbstractLinker and add tests
minborg Oct 29, 2024
9344daa
Merge branch 'master' into linker-padding-layout-only
minborg Nov 4, 2024
0f4e93f
Rephrase liker arg requirements
minborg Nov 4, 2024
d5a667c
Update src/java.base/share/classes/java/lang/foreign/Linker.java
minborg Nov 5, 2024
52a60d0
Update src/java.base/share/classes/java/lang/foreign/Linker.java
minborg Nov 5, 2024
dfcec4e
Update src/java.base/share/classes/jdk/internal/foreign/abi/AbstractL…
minborg Nov 5, 2024
ab106f1
Update src/java.base/share/classes/jdk/internal/foreign/abi/AbstractL…
minborg Nov 5, 2024
dc3330e
Update src/java.base/share/classes/jdk/internal/foreign/abi/AbstractL…
minborg Nov 5, 2024
1b00b2a
Update src/java.base/share/classes/jdk/internal/foreign/abi/AbstractL…
minborg Nov 5, 2024
e81b34f
Update test/jdk/java/foreign/TestLinker.java
minborg Nov 5, 2024
3f53760
Add checks of exception messages
minborg Nov 5, 2024
8f89d4f
Improve language
minborg Nov 5, 2024
b92ff23
Rephrase doc
minborg Nov 5, 2024
0c13482
Remove redundant check
minborg Nov 5, 2024
7bd1e3d
Merge branch 'master' into linker-padding-layout-only
minborg Nov 6, 2024
6a97fe5
Simplify exception testing
minborg Nov 6, 2024
3274a46
Merge branch 'master' into linker-padding-layout-only
minborg Nov 13, 2024
786b173
Update after comments
minborg Nov 13, 2024
97f8da6
Merge branch 'master' into linker-padding-layout-only
minborg Nov 13, 2024
69e6593
Fix failing test
minborg Nov 13, 2024
59ecf49
Merge branch 'master' into linker-padding-layout-only
minborg Nov 20, 2024
28b3ad6
Update after comments
minborg Nov 20, 2024
0102e56
Fix checking of padding layouts
minborg Nov 21, 2024
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
18 changes: 6 additions & 12 deletions test/jdk/java/foreign/TestLinker.java
Original file line number Diff line number Diff line change
@@ -180,12 +180,9 @@ public void interwovenPadding() {
var struct = MemoryLayout.structLayout(JAVA_BYTE, padding1, padding2, JAVA_INT);

var fd = FunctionDescriptor.of(struct, struct, struct);
try {
linker.downcallHandle(fd);
} catch (IllegalArgumentException e) {
assertEquals(e.getMessage(),
"The padding layout x2 was preceded by another padding layout x1 in [b1x1x2i4]");
}
var e = expectThrows(IllegalArgumentException.class, () -> linker.downcallHandle(fd));
assertEquals(e.getMessage(),
"The padding layout x2 was preceded by another padding layout x1 in [b1x1x2i4]");
}

@Test
@@ -201,12 +198,9 @@ public void stackedPadding() {
var union = MemoryLayout.unionLayout(struct32, padding32);
var struct = MemoryLayout.structLayout(JAVA_BYTE, padding1, padding2, padding4, padding8, padding16, union);
var fd = FunctionDescriptor.of(struct, struct, struct);
try {
linker.downcallHandle(fd);
} catch (IllegalArgumentException e) {
assertEquals(e.getMessage(),
"The padding layout x2 was preceded by another padding layout x1 in [b1x1x2x4x8x16[[[4:j8]]|x32]]");
}
var e = expectThrows(IllegalArgumentException.class, () -> linker.downcallHandle(fd));
assertEquals(e.getMessage(),
"The padding layout x2 was preceded by another padding layout x1 in [b1x1x2x4x8x16[[[4:j8]]|x32]]");
}

@Test