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

8240567: MethodTooLargeException thrown while creating a jlink image #14408

Closed
wants to merge 32 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
7c48693
8240567: MethodTooLargeException thrown while creating a jlink image
koppor Jun 11, 2023
23bbc0c
Remove comments
koppor Jun 12, 2023
9d4142c
Remove "final" at "enabled" - not part of the point of this PR
koppor Jun 12, 2023
e158a2c
Merge remote-tracking branch 'upstream/master' into fix-8240567
koppor Jun 14, 2023
e973295
Merge remote-tracking branch 'upstream/master' into fix-8240567
koppor Jun 16, 2023
a084ca5
Merge branch 'openjdk:master' into fix-8240567
koppor Jun 23, 2023
b61c1dc
Fix threshold
koppor Jun 29, 2023
a380441
Add parameterization for the number of moduleDescriptors per helper m…
koppor Jul 1, 2023
4898ba8
Fix nit (indent)
koppor Jul 1, 2023
edd85c9
Add description
koppor Jul 1, 2023
a6c9c98
Merge remote-tracking branch 'upstream/master' into fix-8240567
koppor Jul 1, 2023
4704349
Apply suggestions from code review
koppor Jul 1, 2023
b2051c3
No final for class parameters
koppor Jul 1, 2023
912f34c
Reuse helper array list
koppor Jul 1, 2023
fe5be2f
Try to execute java(.exe) of build runtime
koppor Jul 1, 2023
5b3d712
Fix ArrayList initialization and off-by-one errors
koppor Jul 1, 2023
cdc9aee
Fix test
koppor Jul 1, 2023
b31a017
Merge remote-tracking branch 'upstream/master' into fix-8240567
koppor Jul 3, 2023
6abca9f
Reposition DEDUP_LIST_VAR and BUILDER_VAR
koppor Jul 3, 2023
9835a64
Add --system-modules [batch-size=<N>]
koppor Jul 3, 2023
ae1bbe7
Refine comment
koppor Jul 3, 2023
b150a28
Update src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/S…
koppor Jul 4, 2023
142b555
Update src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/S…
koppor Jul 4, 2023
f50ec77
Update src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/S…
koppor Jul 4, 2023
b2b9036
Replace non-final wrapper by local variable
koppor Jul 4, 2023
bbbbb0e
Merge remote-tracking branch 'upstream/master' into fix-8240567
koppor Jul 4, 2023
15d7448
Refine test to fill DedupSetBuilder
koppor Jul 4, 2023
8d02911
Update test/jdk/tools/jlink/JLink100Modules.java
koppor Jul 5, 2023
13797d2
Reformat
koppor Jul 5, 2023
e112f03
Merge remote-tracking branch 'upstream/master' into fix-8240567
koppor Jul 5, 2023
8494517
Revert (non-working) DedupSetBuilder filling
koppor Jul 5, 2023
584edba
Merge remote-tracking branch 'upstream/master' into fix-8240567
koppor Jul 6, 2023
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
@@ -736,7 +736,7 @@ private void genModuleDescriptorsMethod(ClassBuilder clb) {
currentModuleInfos.add(moduleInfos.get(index));
}

final String helperMethodNamePrefix = "moduleDescriptorsSub";
String helperMethodNamePrefix = "sub";
final ClassDesc arrayListClassDesc = ClassDesc.ofInternalName("java/util/ArrayList");

final int firstVariableForDedup = nextLocalVar;
@@ -765,14 +765,15 @@ private void genModuleDescriptorsMethod(ClassBuilder clb) {
.areturn();
});

final int[] globalCount = {0};
for (final int[] index = {0}; index[0] < splitModuleInfos.size(); index[0]++) {
for (int n = 0, count = 0; n < splitModuleInfos.size(); count += splitModuleInfos.get(n).size(), n++) {
int index = n; // the index of which ModuleInfo being processed in the current batch
int start = count; // the start index to the return ModuleDescriptor array for the current batch
clb.withMethodBody(
helperMethodNamePrefix + index[0],
MethodTypeDesc.of(CD_void, CD_MODULE_DESCRIPTOR.arrayType(), arrayListClassDesc),
ACC_PUBLIC,
cob -> {
List<ModuleInfo> moduleInfosPackage = splitModuleInfos.get(index[0]);
List<ModuleInfo> currentBatch = splitModuleInfos.get(index[0]);

if (nextLocalVar > firstVariableForDedup) {
for (int i = nextLocalVar-1; i >= firstVariableForDedup; i--) {