Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v19]

2023-08-10 Thread Christoph
On Fri, 14 Jul 2023 16:08:12 GMT, Mandy Chung wrote: >>> It's looking pretty good. >> >> Thank you! >> >>> About the test, I don't see `ArrayList::add` in the generated bytecode of >>> `sub2-13`. The dedup string set is used for the targets of qualified >>> exports and opens and uses. The

Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v19]

2023-07-15 Thread Oliver Kopp
On Wed, 5 Jul 2023 23:30:03 GMT, Oliver Kopp wrote: >> It's looking pretty good. >> >> About the test, I don't see `ArrayList::add` in the generated bytecode of >> `sub2-13`. The dedup string set is used for the targets of qualified >> exports and opens and uses. The modifiers set of

Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v19]

2023-07-14 Thread Mandy Chung
On Wed, 5 Jul 2023 23:30:03 GMT, Oliver Kopp wrote: >> It's looking pretty good. >> >> About the test, I don't see `ArrayList::add` in the generated bytecode of >> `sub2-13`. The dedup string set is used for the targets of qualified >> exports and opens and uses. The modifiers set of

Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v19]

2023-07-05 Thread Oliver Kopp
On Wed, 5 Jul 2023 17:25:03 GMT, Mandy Chung wrote: > It's looking pretty good. Thank you! > About the test, I don't see `ArrayList::add` in the generated bytecode of > `sub2-13`. The dedup string set is used for the targets of qualified exports > and opens and uses. The modifiers set of

Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v19]

2023-07-05 Thread Mandy Chung
On Tue, 4 Jul 2023 11:00:13 GMT, Oliver Kopp wrote: >> Fix for [JDK-8240567](https://bugs.openjdk.org/browse/JDK-8240567): >> "MethodTooLargeException thrown while creating a jlink image". >> >> Java still has a 64kb limit: A method may not be longer than 64kb. The idea >> of the fix is to

Re: RFR: 8240567: MethodTooLargeException thrown while creating a jlink image [v19]

2023-07-04 Thread Oliver Kopp
> Fix for [JDK-8240567](https://bugs.openjdk.org/browse/JDK-8240567): > "MethodTooLargeException thrown while creating a jlink image". > > Java still has a 64kb limit: A method may not be longer than 64kb. The idea > of the fix is to split up the generated methods in several smaller methods >